From e8897c2b7e3a392f193e3e53dbbeb8178f5c2078 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 12 Dec 2012 12:55:29 +0100 Subject: prevent keyboardshortcuts from catching events outside the main doc - e.g. the share popup --- apps/files/js/keyboardshortcuts.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/files/js/keyboardshortcuts.js b/apps/files/js/keyboardshortcuts.js index 562755f55b7..cc2b5d42139 100644 --- a/apps/files/js/keyboardshortcuts.js +++ b/apps/files/js/keyboardshortcuts.js @@ -127,6 +127,9 @@ var Files = Files || {}; } Files.bindKeyboardShortcuts = function(document, $) { $(document).keydown(function(event) { //check for modifier keys + if(!$(event.target).is('body')) { + return; + } var preventDefault = false; if ($.inArray(event.keyCode, keys) === -1) keys.push(event.keyCode); if ( -- cgit v1.2.3 From 4265419bbd1bae1fb62e7f07b6ef46cd60d1325f Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Wed, 12 Dec 2012 16:27:37 +0100 Subject: Try to fix #836 https://github.com/owncloud/core/issues/836 --- lib/MDB2/Driver/sqlite3.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/MDB2/Driver/sqlite3.php b/lib/MDB2/Driver/sqlite3.php index fa4c91c1269..9839dafbce1 100644 --- a/lib/MDB2/Driver/sqlite3.php +++ b/lib/MDB2/Driver/sqlite3.php @@ -98,8 +98,7 @@ class MDB2_Driver_sqlite3 extends MDB2_Driver_Common if ($this->connection) { $native_code = $this->connection->lastErrorCode(); } - $native_msg = $this->_lasterror - ? html_entity_decode($this->_lasterror) : $this->connection->lastErrorMsg(); + $native_msg = html_entity_decode($this->_lasterror); // PHP 5.2+ prepends the function name to $php_errormsg, so we need // this hack to work around it, per bug #9599. -- cgit v1.2.3 From f85106b6b5d2e37ebf4cb850a076c4bb67f2a735 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Wed, 12 Dec 2012 22:41:12 +0100 Subject: first version of the new documentation system integration. --- core/docu/admin/index.php | 1 + core/docu/user/index.php | 3 +++ settings/help.php | 22 +++++++++------- settings/templates/help.php | 62 +++++++++++++++++++++------------------------ 4 files changed, 46 insertions(+), 42 deletions(-) create mode 100644 core/docu/admin/index.php create mode 100644 core/docu/user/index.php diff --git a/core/docu/admin/index.php b/core/docu/admin/index.php new file mode 100644 index 00000000000..3f754998084 --- /dev/null +++ b/core/docu/admin/index.php @@ -0,0 +1 @@ +here goes the admin documentation diff --git a/core/docu/user/index.php b/core/docu/user/index.php new file mode 100644 index 00000000000..dc167c01bd9 --- /dev/null +++ b/core/docu/user/index.php @@ -0,0 +1,3 @@ +here goes the user documentation + + diff --git a/settings/help.php b/settings/help.php index 69a5ec9c146..6f99596b2ba 100644 --- a/settings/help.php +++ b/settings/help.php @@ -12,15 +12,19 @@ OC_App::loadApps(); OC_Util::addStyle( "settings", "settings" ); OC_App::setActiveNavigationEntry( "help" ); -$pagesize=7; -if(isset($_GET['page'])) $page=$_GET['page']; else $page=0; -$kbe=OC_OCSClient::getKnownledgebaseEntries($page, $pagesize); -$totalitems=$kbe['totalitems']; -unset($kbe['totalitems']); -$pagecount=ceil($totalitems/$pagesize); + +if(isset($_GET['mode']) and $_GET['mode']=='admin') { + $url=OC_Helper::linkToAbsolute( 'core', 'docu/admin' ); +}else{ + $url=OC_Helper::linkToAbsolute( 'core', 'docu/user' ); +} + +$url1=OC_Helper::linkToRoute( "settings_help" ).'?mode=user'; +$url2=OC_Helper::linkToRoute( "settings_help" ).'?mode=admin'; $tmpl = new OC_Template( "settings", "help", "user" ); -$tmpl->assign( "kbe", $kbe ); -$tmpl->assign( "pagecount", $pagecount ); -$tmpl->assign( "page", $page ); +$tmpl->assign( "admin", OC_Group::inGroup(OC_User::getUser(), 'admin') ); +$tmpl->assign( "url", $url ); +$tmpl->assign( "url1", $url1 ); +$tmpl->assign( "url2", $url2 ); $tmpl->printPage(); diff --git a/settings/templates/help.php b/settings/templates/help.php index 75201a86a9f..5ed99420cf4 100644 --- a/settings/templates/help.php +++ b/settings/templates/help.php @@ -1,34 +1,30 @@ - - - -
-

t('Problems connecting to help database.');?>

-

t('Go there manually.');?>

-
- - -
- "") echo(''); ?> - '') echo('

'.$kb["name"].'

');?> -

- '') echo('

'.$l->t('Answer').':

'.$kb['answer'].'

');?> -
- + t( 'User Documentation' ); ?> + t( 'Administrator Documentation' ); ?> + t( 'Online Documentation' ); ?> + t( 'Forum' ); ?> + t( 'Bugtracker' ); ?> + +

+ + + + -- cgit v1.2.3 From 89bbabd77bac2d21739b232e6315f2f09b9c9b56 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Thu, 13 Dec 2012 09:26:25 +0100 Subject: a bit more polish. We are getting there. --- settings/css/settings.css | 3 +++ settings/help.php | 6 ++++++ settings/templates/help.php | 5 +++-- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/settings/css/settings.css b/settings/css/settings.css index 560862fa12f..36457481911 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -68,3 +68,6 @@ span.securitywarning {color:#C33; font-weight:bold; } span.connectionwarning {color:#933; font-weight:bold; } input[type=radio] { width:1em; } table.shareAPI td { padding-bottom: 0.8em; } + +/* HELP */ +.pressed {background-color:#DDD;} diff --git a/settings/help.php b/settings/help.php index 6f99596b2ba..cdf0c549e44 100644 --- a/settings/help.php +++ b/settings/help.php @@ -15,8 +15,12 @@ OC_App::setActiveNavigationEntry( "help" ); if(isset($_GET['mode']) and $_GET['mode']=='admin') { $url=OC_Helper::linkToAbsolute( 'core', 'docu/admin' ); + $style1=''; + $style2=' pressed'; }else{ $url=OC_Helper::linkToAbsolute( 'core', 'docu/user' ); + $style1=' pressed'; + $style2=''; } $url1=OC_Helper::linkToRoute( "settings_help" ).'?mode=user'; @@ -27,4 +31,6 @@ $tmpl->assign( "admin", OC_Group::inGroup(OC_User::getUser(), 'admin') ); $tmpl->assign( "url", $url ); $tmpl->assign( "url1", $url1 ); $tmpl->assign( "url2", $url2 ); +$tmpl->assign( "style1", $style1 ); +$tmpl->assign( "style2", $style2 ); $tmpl->printPage(); diff --git a/settings/templates/help.php b/settings/templates/help.php index 5ed99420cf4..06f53746c29 100644 --- a/settings/templates/help.php +++ b/settings/templates/help.php @@ -1,9 +1,10 @@

-- cgit v1.2.3 From 2330d6bcc7a178d15b74eb8352f86e778afd717d Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Thu, 13 Dec 2012 11:08:12 +0100 Subject: show the link to the issue tracker only for Admins as discussed with Björn and Jan. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- settings/templates/help.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/templates/help.php b/settings/templates/help.php index 06f53746c29..473219024b7 100644 --- a/settings/templates/help.php +++ b/settings/templates/help.php @@ -3,7 +3,7 @@ t( 'Administrator Documentation' ); ?> t( 'Online Documentation' ); ?> t( 'Forum' ); ?> - t( 'Bugtracker' ); ?> + t( 'Bugtracker' ); ?> t( 'Commercial Support' ); ?>

-- cgit v1.2.3 From 316a29f7ac09d71cfedc4bea5be892b56e27433f Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Thu, 13 Dec 2012 19:04:27 +0100 Subject: fix new button popup looking blurry --- apps/files/css/files.css | 8 ++++---- apps/files/templates/index.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/files/css/files.css b/apps/files/css/files.css index afc72916e09..59aa4dbf0fb 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -12,16 +12,16 @@ #new.active { border-bottom-left-radius:0; border-bottom-right-radius:0; border-bottom:none; } #new>a { padding:.5em 1.2em .3em; } #new>ul { - display:none; position:fixed; min-width:7em; z-index:-1; - padding:.5em; margin-top:0.075em; margin-left:-.5em; + display:none; position:fixed; min-width:7em; z-index:10; + padding:.5em; padding-bottom:0; margin-top:.075em; margin-left:-.5em; text-align:left; - background:#f8f8f8; border:1px solid #ddd; + background:#f8f8f8; border:1px solid #ddd; border-radius:10px; border-top-left-radius:0; + box-shadow:0 2px 7px rgba(170,170,170,.4); } #new>ul>li { height:20px; margin:.3em; padding-left:2em; padding-bottom:0.1em; background-repeat:no-repeat; cursor:pointer; } #new>ul>li>p { cursor:pointer; } #new>ul>li>input { padding:0.3em; margin:-0.3em; } -#new .popup { border-top-left-radius:0; z-index:10; } #upload { height:27px; padding:0; margin-left:0.2em; overflow:hidden; diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index bd34c9a76d9..edf048c7e13 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -5,7 +5,7 @@
t('New');?> -
-
- t('Desktop and Mobile Syncing Clients');?> - t('Download');?> -
+
+ t('Clients');?> + t('Download Desktop Clients');?> + t('Download Android Client');?> + t('Download iOS Client');?> +
+ t('Password');?>
t('Your password was changed');?>
t('Unable to change your password');?>
- +
- + t('Email');?>
t('Fill in an email address to enable password recovery');?>
@@ -35,7 +38,7 @@
- + t('Language');?> '; - html += ''; html += '
'; html += ''; + html += ''; html += '
'; html += ''; html += '
'; @@ -347,9 +347,12 @@ OC.Share={ } $('#linkText').val(link); $('#linkText').show('blind'); + $('#linkText').css('display','block'); $('#showPassword').show(); + $('#showPassword+label').show(); if (password != null) { $('#linkPass').show('blind'); + $('#showPassword').attr('checked', true); $('#linkPassText').attr('placeholder', t('core', 'Password protected')); } $('#expiration').show(); @@ -359,6 +362,7 @@ OC.Share={ hideLink:function() { $('#linkText').hide('blind'); $('#showPassword').hide(); + $('#showPassword+label').hide(); $('#linkPass').hide(); $('#emailPrivateLink #email').hide(); $('#emailPrivateLink #emailButton').hide(); @@ -518,6 +522,11 @@ $(document).ready(function() { $('#showPassword').live('click', function() { $('#linkPass').toggle('blind'); + if (!$('#showPassword').is(':checked') ) { + var itemType = $('#dropdown').data('item-type'); + var itemSource = $('#dropdown').data('item-source'); + OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', OC.PERMISSION_READ); + } }); $('#linkPassText').live('focusout keyup', function(event) { -- cgit v1.2.3 From d873f0da3500e1f9eef89d4b73ec635f9c927636 Mon Sep 17 00:00:00 2001 From: Björn Schießle Date: Fri, 14 Dec 2012 13:13:01 +0100 Subject: autofocus to password input after clicking the checkbox; code restructured; debug output added --- core/js/share.js | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/core/js/share.js b/core/js/share.js index c218c2c1233..98ceceb3a49 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -526,29 +526,23 @@ $(document).ready(function() { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, '', OC.PERMISSION_READ); + } else { + $('#linkPassText').focus(); } }); $('#linkPassText').live('focusout keyup', function(event) { - if ( event.type == 'focusout' || event.keyCode == 13 ) { + if ( $('#linkPassText').val() != '' && (event.type == 'focusout' || event.keyCode == 13) ) { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); - if ( $('#linkPassText').attr('passwordChanged') == 'true' ) { - OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $(this).val(), OC.PERMISSION_READ, function() { - $('#linkPassText').val(''); - $('#linkPassText').attr('placeholder', t('core', 'Password protected')); - $('#linkPassText').attr('passwordChanged', 'false'); - }); - } + OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $(this).val(), OC.PERMISSION_READ, function() { + console.log("password set to: '" + $('#linkPassText').val() +"' by event: " + event.type); + $('#linkPassText').val(''); + $('#linkPassText').attr('placeholder', t('core', 'Password protected')); + }); } }); - $('#linkPassText').live('focusout keyup', function(event) { - if ( event.keyCode != 13 ) { - $('#linkPassText').attr('passwordChanged', 'true'); - } - }); - $('#expirationCheckbox').live('click', function() { if (this.checked) { OC.Share.showExpirationDate(''); -- cgit v1.2.3 From 3adfb91ad895dc9371834c0e42cfd3605fdd7054 Mon Sep 17 00:00:00 2001 From: Björn Schießle Date: Fri, 14 Dec 2012 13:25:57 +0100 Subject: call the password input field by name --- core/js/share.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/js/share.js b/core/js/share.js index 98ceceb3a49..bb3ec010ff5 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -535,7 +535,7 @@ $(document).ready(function() { if ( $('#linkPassText').val() != '' && (event.type == 'focusout' || event.keyCode == 13) ) { var itemType = $('#dropdown').data('item-type'); var itemSource = $('#dropdown').data('item-source'); - OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $(this).val(), OC.PERMISSION_READ, function() { + OC.Share.share(itemType, itemSource, OC.Share.SHARE_TYPE_LINK, $('#linkPassText').val(), OC.PERMISSION_READ, function() { console.log("password set to: '" + $('#linkPassText').val() +"' by event: " + event.type); $('#linkPassText').val(''); $('#linkPassText').attr('placeholder', t('core', 'Password protected')); -- cgit v1.2.3 From 8a3d21dfacec40557842232fb7579d774f89c5a9 Mon Sep 17 00:00:00 2001 From: Jörn Friedrich Dreyer Date: Tue, 18 Dec 2012 15:57:42 +0100 Subject: ignore autogenerated testfiles and folders --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 7c0df64b864..819347f540f 100644 --- a/.gitignore +++ b/.gitignore @@ -55,3 +55,9 @@ nbproject # WebFinger .well-known /.buildpath + +#tests - autogenerated filed +data-autotest +/tests/coverage* +/tests/autoconfig* +/tests/autotest* -- cgit v1.2.3 From 982e46cd29fbc02028cf26876f298f681e0e8e99 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 19 Dec 2012 00:04:14 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/ru_RU.php | 1 + apps/files_external/l10n/de_DE.php | 2 + apps/files_external/l10n/ru_RU.php | 2 + apps/user_ldap/l10n/de.php | 1 + apps/user_ldap/l10n/es.php | 2 + apps/user_ldap/l10n/pl.php | 2 + apps/user_ldap/l10n/ru_RU.php | 2 + apps/user_ldap/l10n/uk.php | 2 + core/l10n/de.php | 4 ++ core/l10n/ru_RU.php | 7 ++++ l10n/de/core.po | 33 +++++++-------- l10n/de/user_ldap.po | 9 +++-- l10n/de_DE/files_external.po | 11 ++--- l10n/es/user_ldap.po | 11 ++--- l10n/pl/user_ldap.po | 11 ++--- l10n/ru_RU/core.po | 70 ++++++++++++++++---------------- l10n/ru_RU/files.po | 80 ++++++++++++++++++------------------- l10n/ru_RU/files_external.po | 10 ++--- l10n/ru_RU/settings.po | 8 ++-- l10n/ru_RU/user_ldap.po | 10 ++--- 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_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/uk/user_ldap.po | 11 ++--- settings/l10n/ru_RU.php | 1 + 32 files changed, 180 insertions(+), 148 deletions(-) diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index 5a6c032ed96..bb701aac002 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -1,5 +1,6 @@ "Ошибка отсутствует, файл загружен успешно.", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Размер загружаемого файла превышает upload_max_filesize директиву в php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Размер загруженного", "The uploaded file was only partially uploaded" => "Загружаемый файл был загружен частично", "No file was uploaded" => "Файл не был загружен", diff --git a/apps/files_external/l10n/de_DE.php b/apps/files_external/l10n/de_DE.php index 357968bd462..fb969006d66 100644 --- a/apps/files_external/l10n/de_DE.php +++ b/apps/files_external/l10n/de_DE.php @@ -5,6 +5,8 @@ "Fill out all required fields" => "Bitte alle notwendigen Felder füllen", "Please provide a valid Dropbox app key and secret." => "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein.", "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." => "Achtung: \"smbclient\" ist nicht installiert. Das Laden von CIFS/SMB shares ist nicht möglich. Bitte wenden Sie sich an Ihren Systemadministrator.", +"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." => "Achtung: Die FTP Unterstützung von PHP ist nicht initialisiert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator.", "External Storage" => "Externer Speicher", "Mount point" => "Mount-Point", "Backend" => "Backend", diff --git a/apps/files_external/l10n/ru_RU.php b/apps/files_external/l10n/ru_RU.php index 493e3f5bee4..05a784100c2 100644 --- a/apps/files_external/l10n/ru_RU.php +++ b/apps/files_external/l10n/ru_RU.php @@ -5,6 +5,8 @@ "Fill out all required fields" => "Заполните все требуемые поля", "Please provide a valid Dropbox app key and secret." => "Пожалуйста представьте допустимый ключ приложения Dropbox и пароль.", "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\" не установлен. Mounting of CIFS/SMB shares is not possible. Пожалуйста, обратитесь к системному администратору, чтобы установить его.", +"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 невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить ее.", "External Storage" => "Внешние системы хранения данных", "Mount point" => "Точка монтирования", "Backend" => "Бэкэнд", diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index ed9fb6f8123..bcd8ccfe343 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -1,5 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Warnung: Die Apps user_ldap und user_webdavauth sind nicht kompatible. Unerwartetes Verhalten kann auftreten. Bitte Deinen System-Verwalter eine von beiden zu de-aktivieren.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen System-Administrator das Modul zu installieren.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://", "Base DN" => "Basis-DN", diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index c89ceb8eee2..4931af79eaf 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -1,4 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "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.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Advertencia: El módulo PHP LDAP necesario no está instalado, el sistema no funcionará. Pregunte al administrador del sistema para instalarlo.", "Host" => "Servidor", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://", "Base DN" => "DN base", diff --git a/apps/user_ldap/l10n/pl.php b/apps/user_ldap/l10n/pl.php index 7ebebe1e073..0a3dea14c94 100644 --- a/apps/user_ldap/l10n/pl.php +++ b/apps/user_ldap/l10n/pl.php @@ -1,4 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Ostrzeżenie: Aplikacje user_ldap i user_webdavauth nie są kompatybilne. Mogą powodować nieoczekiwane zachowanie. Poproś administratora o wyłączenie jednej z nich.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Ostrzeżenie: Moduł PHP LDAP nie jest zainstalowany i nie będzie działał. Poproś administratora o włączenie go.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Można pominąć protokół, z wyjątkiem wymaganego protokołu SSL. Następnie uruchom z ldaps://", "Base DN" => "Baza DN", diff --git a/apps/user_ldap/l10n/ru_RU.php b/apps/user_ldap/l10n/ru_RU.php index d5adb9fffd3..09d7899249a 100644 --- a/apps/user_ldap/l10n/ru_RU.php +++ b/apps/user_ldap/l10n/ru_RU.php @@ -1,4 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Предупреждение: Приложения user_ldap и user_webdavauth несовместимы. Вы можете столкнуться с неожиданным поведением системы. Пожалуйста, обратитесь к системному администратору для отключения одного из них.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Предупреждение: Необходимый PHP LDAP-модуль не установлен, backend не будет работать. Пожалуйста, обратитесь к системному администратору, чтобы установить его.", "Host" => "Хост", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Вы можете пропустить протокол, если Вам не требуется SSL. Затем начните с ldaps://", "Base DN" => "База DN", diff --git a/apps/user_ldap/l10n/uk.php b/apps/user_ldap/l10n/uk.php index 1bbd24f679b..f82e9f2a420 100644 --- a/apps/user_ldap/l10n/uk.php +++ b/apps/user_ldap/l10n/uk.php @@ -1,4 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Увага: Застосунки user_ldap та user_webdavauth не сумісні. Ви можете зіткнутися з несподіваною поведінкою. Будь ласка, зверніться до системного адміністратора, щоб відключити одну з них.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Увага: Потрібний модуль PHP LDAP не встановлено, базова програма працювати не буде. Будь ласка, зверніться до системного адміністратора, щоб встановити його.", "Host" => "Хост", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Можна не вказувати протокол, якщо вам не потрібен SSL. Тоді почніть з ldaps://", "Base DN" => "Базовий DN", diff --git a/core/l10n/de.php b/core/l10n/de.php index 5ad16273fb9..08a120763a3 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -1,4 +1,8 @@ "%s möchte eine Datei mit dir teilen", +"User %s shared a folder with you" => "%s möchte ein Verzeichnis mit dir teilen", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s möchte die Datei %s mit dir teilen. Sie liegt hier zum Download bereit: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s möchte das Verzeichnis %s mit dir teilen. Es liegt hier zum Download bereit: %s", "Category type not provided." => "Kategorie nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: " => "Kategorie existiert bereits:", diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index 7dea4062809..3d67179c14e 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -1,4 +1,8 @@ "Пользователь %s открыл Вам доступ к файлу", +"User %s shared a folder with you" => "Пользователь %s открыл Вам доступ к папке", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Пользователь %s открыл Вам доступ к файлу \"%s\". Он доступен для загрузки здесь: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Пользователь %s открыл Вам доступ к папке \"%s\". Она доступена для загрузки здесь: %s", "Category type not provided." => "Тип категории не предоставлен.", "No category to add?" => "Нет категории для добавления?", "This category already exists: " => "Эта категория уже существует:", @@ -39,6 +43,7 @@ "Share with link" => "Опубликовать с ссылкой", "Password protect" => "Защитить паролем", "Password" => "Пароль", +"Send" => "Отправить", "Set expiration date" => "Установить срок действия", "Expiration date" => "Дата истечения срока действия", "Share via email:" => "Сделать общедоступным посредством email:", @@ -55,6 +60,8 @@ "Password protected" => "Пароль защищен", "Error unsetting expiration date" => "Ошибка при отключении даты истечения срока действия", "Error setting expiration date" => "Ошибка при установке даты истечения срока действия", +"Sending ..." => "Отправка ...", +"Email sent" => "Письмо отправлено", "ownCloud password reset" => "Переназначение пароля", "Use the following link to reset your password: {link}" => "Воспользуйтесь следующей ссылкой для переназначения пароля: {link}", "You will receive a link to reset your password via Email." => "Вы получите ссылку для восстановления пароля по электронной почте.", diff --git a/l10n/de/core.po b/l10n/de/core.po index 0913372a1d7..4d2fac3a45e 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -16,15 +16,16 @@ # , 2012. # , 2012. # Phi Lieb <>, 2012. +# Susi <>, 2012. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 16:40+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"PO-Revision-Date: 2012-12-18 08:06+0000\n" +"Last-Translator: Susi <>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,26 +36,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "%s möchte eine Datei mit dir teilen" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "%s möchte ein Verzeichnis mit dir teilen" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "%s möchte die Datei %s mit dir teilen. Sie liegt hier zum Download bereit: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "%s möchte das Verzeichnis %s mit dir teilen. Es liegt hier zum Download bereit: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -176,8 +177,8 @@ msgid "The object type is not specified." msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Fehler" @@ -189,7 +190,7 @@ msgstr "Der App-Name ist nicht angegeben." msgid "The required file {file} is not installed!" msgstr "Die benötigte Datei {file} ist nicht installiert." -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Fehler beim Freigeben" @@ -217,7 +218,7 @@ msgstr "Freigeben für" msgid "Share with link" msgstr "Über einen Link freigeben" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Passwortschutz" @@ -286,23 +287,23 @@ msgstr "löschen" msgid "share" msgstr "freigeben" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Fehler beim entfernen des Ablaufdatums" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "E-Mail wurde verschickt" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index f0023452578..2d9cbf3b697 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -9,14 +9,15 @@ # Maurice Preuß <>, 2012. # , 2012. # Phi Lieb <>, 2012. +# Susi <>, 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" -"PO-Revision-Date: 2012-12-15 19:41+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"PO-Revision-Date: 2012-12-18 08:19+0000\n" +"Last-Translator: Susi <>\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,7 +36,7 @@ msgstr "Warnung: Die Apps user_ldap und user_webdavauth sind nicht kompat msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen System-Administrator das Modul zu installieren." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 321c2a78ef5..1b603f1ee39 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -4,6 +4,7 @@ # # Translators: # , 2012. +# , 2012. # I Robot , 2012. # , 2012. # , 2012. @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"PO-Revision-Date: 2012-12-18 11:52+0000\n" +"Last-Translator: deh3nne \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,14 +50,14 @@ msgstr "Fehler beim Einrichten von Google Drive" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Achtung: \"smbclient\" ist nicht installiert. Das Laden von CIFS/SMB shares ist nicht möglich. Bitte wenden Sie sich an Ihren Systemadministrator." #: lib/config.php:435 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 "Achtung: Die FTP Unterstützung von PHP ist nicht initialisiert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 764ee2f3365..32c72e60755 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -5,6 +5,7 @@ # Translators: # Javier Llorente , 2012. # , 2012. +# , 2012. # Raul Fernandez Garcia , 2012. # Rubén Trujillo , 2012. # , 2012. @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"PO-Revision-Date: 2012-12-18 00:58+0000\n" +"Last-Translator: valarauco \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" @@ -27,13 +28,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 "" +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." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Advertencia: El módulo PHP LDAP necesario no está instalado, el sistema no funcionará. Pregunte al administrador del sistema para instalarlo." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index cc48efb7dfe..25b35d770df 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -4,14 +4,15 @@ # # Translators: # Cyryl Sochacki <>, 2012. +# 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: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"PO-Revision-Date: 2012-12-18 18:12+0000\n" +"Last-Translator: Marcin Małecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,13 +25,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 "" +msgstr "Ostrzeżenie: Aplikacje user_ldap i user_webdavauth nie są kompatybilne. Mogą powodować nieoczekiwane zachowanie. Poproś administratora o wyłączenie jednej z nich." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Ostrzeżenie: Moduł PHP LDAP nie jest zainstalowany i nie będzie działał. Poproś administratora o włączenie go." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index ede57ac4db4..007386b6eb0 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"PO-Revision-Date: 2012-12-18 10:54+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,26 +21,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Пользователь %s открыл Вам доступ к файлу" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Пользователь %s открыл Вам доступ к папке" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "Пользователь %s открыл Вам доступ к файлу \"%s\". Он доступен для загрузки здесь: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "Пользователь %s открыл Вам доступ к папке \"%s\". Она доступена для загрузки здесь: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -162,8 +162,8 @@ msgid "The object type is not specified." msgstr "Тип объекта не указан." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Ошибка" @@ -175,7 +175,7 @@ msgstr "Имя приложения не указано." msgid "The required file {file} is not installed!" msgstr "Требуемый файл {файл} не установлен!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Ошибка создания общего доступа" @@ -203,11 +203,11 @@ msgstr "Сделать общим с" msgid "Share with link" msgstr "Опубликовать с ссылкой" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Защитить паролем" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:26 #: templates/verify.php:13 msgid "Password" msgstr "Пароль" @@ -218,7 +218,7 @@ msgstr "" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Отправить" #: js/share.js:177 msgid "Set expiration date" @@ -272,25 +272,25 @@ msgstr "удалить" msgid "share" msgstr "сделать общим" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Пароль защищен" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Ошибка при отключении даты истечения срока действия" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Ошибка при установке даты истечения срока действия" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Отправка ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Письмо отправлено" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -312,8 +312,8 @@ msgstr "Сброс отправки email." msgid "Request failed!" msgstr "Не удалось выполнить запрос!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:21 msgid "Username" msgstr "Имя пользователя" @@ -402,44 +402,44 @@ msgstr "Ваши каталоги данных и файлы, вероятно, msgid "Create an admin account" msgstr "Создать admin account" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Расширенный" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Папка данных" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Настроить базу данных" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "будет использоваться" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Пользователь базы данных" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Пароль базы данных" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Имя базы данных" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Табличная область базы данных" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Сервер базы данных" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Завершение настройки" @@ -545,11 +545,11 @@ msgstr "Пожалуйста, измените пароль, чтобы защи msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:27 +#: templates/login.php:29 msgid "remember" msgstr "запомнить" -#: templates/login.php:28 +#: templates/login.php:30 msgid "Log in" msgstr "Войти" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index b330223c8c2..acd6779fcd6 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"PO-Revision-Date: 2012-12-18 07:59+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "Ошибка отсутствует, файл загружен успе #: ajax/upload.php:21 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "Размер загружаемого файла превышает upload_max_filesize директиву в php.ini:" #: ajax/upload.php:23 msgid "" @@ -54,11 +54,11 @@ msgstr "Не удалось записать на диск" msgid "Files" msgstr "Файлы" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Скрыть" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Удалить" @@ -66,39 +66,39 @@ msgstr "Удалить" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{новое_имя} уже существует" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "отмена" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "подобрать название" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "отменить" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "заменено {новое_имя}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "отменить действие" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "заменено {новое_имя} с {старое_имя}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "Cовместное использование прекращено {файлы}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "удалено {файлы}" @@ -108,80 +108,80 @@ msgid "" "allowed." msgstr "Некорректное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не допустимы." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "Создание ZIP-файла, это может занять некоторое время." -#: js/files.js:218 +#: js/files.js:209 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Невозможно загрузить файл,\n так как он имеет нулевой размер или является директорией" -#: js/files.js:218 +#: js/files.js:209 msgid "Upload Error" msgstr "Ошибка загрузки" -#: js/files.js:235 +#: js/files.js:226 msgid "Close" msgstr "Закрыть" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:245 js/files.js:359 js/files.js:389 msgid "Pending" msgstr "Ожидающий решения" -#: js/files.js:274 +#: js/files.js:265 msgid "1 file uploading" msgstr "загрузка 1 файла" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:268 js/files.js:322 js/files.js:337 msgid "{count} files uploading" msgstr "{количество} загружено файлов" -#: js/files.js:349 js/files.js:382 +#: js/files.js:340 js/files.js:373 msgid "Upload cancelled." msgstr "Загрузка отменена" -#: js/files.js:451 +#: js/files.js:442 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена." -#: js/files.js:523 +#: js/files.js:512 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "Некорректное имя папки. Нименование \"Опубликовано\" зарезервировано ownCloud" -#: js/files.js:704 +#: js/files.js:693 msgid "{count} files scanned" msgstr "{количество} файлов отсканировано" -#: js/files.js:712 +#: js/files.js:701 msgid "error while scanning" msgstr "ошибка при сканировании" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:774 templates/index.php:66 msgid "Name" msgstr "Имя" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:775 templates/index.php:77 msgid "Size" msgstr "Размер" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:776 templates/index.php:79 msgid "Modified" msgstr "Изменен" -#: js/files.js:814 +#: js/files.js:803 msgid "1 folder" msgstr "1 папка" -#: js/files.js:816 +#: js/files.js:805 msgid "{count} folders" msgstr "{количество} папок" -#: js/files.js:824 +#: js/files.js:813 msgid "1 file" msgstr "1 файл" -#: js/files.js:826 +#: js/files.js:815 msgid "{count} files" msgstr "{количество} файлов" @@ -241,28 +241,28 @@ msgstr "Загрузить " msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Здесь ничего нет. Загрузите что-нибудь!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Загрузить" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Загрузка слишком велика" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "Размер файлов, которые Вы пытаетесь загрузить, превышает максимально допустимый размер для загрузки на данный сервер." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Файлы сканируются, пожалуйста, подождите." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Текущее сканирование" diff --git a/l10n/ru_RU/files_external.po b/l10n/ru_RU/files_external.po index f82e872da95..66ab6707a11 100644 --- a/l10n/ru_RU/files_external.po +++ b/l10n/ru_RU/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: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"PO-Revision-Date: 2012-12-18 11:24+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,14 +46,14 @@ msgstr "Ошибка настройки хранилища Google Drive" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Предупреждение: \"smbclient\" не установлен. Mounting of CIFS/SMB shares is not possible. Пожалуйста, обратитесь к системному администратору, чтобы установить его." #: lib/config.php:435 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 "Предупреждение: Поддержка FTP в PHP не включена или не установлена. Подключение по FTP невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить ее." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index fabcb827160..74fe2bec5ae 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"PO-Revision-Date: 2012-12-18 08:06+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,7 +68,7 @@ msgstr "Язык изменен" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "Администраторы не могут удалить сами себя из группы администраторов" #: ajax/togglegroups.php:28 #, php-format diff --git a/l10n/ru_RU/user_ldap.po b/l10n/ru_RU/user_ldap.po index 487a8e46222..4a514279ab3 100644 --- a/l10n/ru_RU/user_ldap.po +++ b/l10n/ru_RU/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"PO-Revision-Date: 2012-12-18 08:59+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,13 +23,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 "" +msgstr "Предупреждение: Приложения user_ldap и user_webdavauth несовместимы. Вы можете столкнуться с неожиданным поведением системы. Пожалуйста, обратитесь к системному администратору для отключения одного из них." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Предупреждение: Необходимый PHP LDAP-модуль не установлен, backend не будет работать. Пожалуйста, обратитесь к системному администратору, чтобы установить его." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index a1174adf32c..10905d6f905 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" +"POT-Creation-Date: 2012-12-19 00:03+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -161,8 +161,8 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "" @@ -174,7 +174,7 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "" @@ -202,7 +202,7 @@ msgstr "" msgid "Share with link" msgstr "" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "" @@ -271,23 +271,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index da55f790125..a6b3d12b964 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" +"POT-Creation-Date: 2012-12-19 00:03+0100\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 0afa6f1543c..b68931a6b55 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" +"POT-Creation-Date: 2012-12-19 00:03+0100\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 41f9c47aeda..66472769286 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" +"POT-Creation-Date: 2012-12-19 00:03+0100\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 71ef135e0e1..18b11e12304 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" +"POT-Creation-Date: 2012-12-19 00:03+0100\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 874d5f4d2d4..9fd76727d8d 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" +"POT-Creation-Date: 2012-12-19 00:03+0100\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 f94e9daa7d6..faea81edd90 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" +"POT-Creation-Date: 2012-12-19 00:03+0100\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 e2d2e5ce966..25dec8fd9a5 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-18 00:14+0100\n" +"POT-Creation-Date: 2012-12-19 00:03+0100\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 1cb45878f29..61376c6d808 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" +"POT-Creation-Date: 2012-12-19 00:03+0100\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 7ae5590e110..3c6b785b90b 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-18 00:13+0100\n" +"POT-Creation-Date: 2012-12-19 00:03+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 5c74f85fff2..b6601497ecb 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"PO-Revision-Date: 2012-12-18 12:52+0000\n" +"Last-Translator: volodya327 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,13 +24,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 "" +msgstr "Увага: Застосунки user_ldap та user_webdavauth не сумісні. Ви можете зіткнутися з несподіваною поведінкою. Будь ласка, зверніться до системного адміністратора, щоб відключити одну з них." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Увага: Потрібний модуль PHP LDAP не встановлено, базова програма працювати не буде. Будь ласка, зверніться до системного адміністратора, щоб встановити його." #: templates/settings.php:15 msgid "Host" diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index 83eb603ba3d..209d0b00847 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -11,6 +11,7 @@ "Authentication error" => "Ошибка авторизации", "Unable to delete user" => "Невозможно удалить пользователя", "Language changed" => "Язык изменен", +"Admins can't remove themself from the admin group" => "Администраторы не могут удалить сами себя из группы администраторов", "Unable to add user to group %s" => "Невозможно добавить пользователя в группу %s", "Unable to remove user from group %s" => "Невозможно удалить пользователя из группы %s", "Disable" => "Отключить", -- cgit v1.2.3 From d2828bab0792ce945f658e3fa66a62341c582d5e Mon Sep 17 00:00:00 2001 From: Randolph Carter Date: Wed, 19 Dec 2012 01:09:14 +0100 Subject: fixes default email sender address --- core/ajax/share.php | 6 +----- core/lostpassword/controller.php | 2 +- lib/public/util.php | 36 ++++++++++++++++++++++++++++++++++++ 3 files changed, 38 insertions(+), 6 deletions(-) diff --git a/core/ajax/share.php b/core/ajax/share.php index 12206e0fd79..72ffc52e997 100644 --- a/core/ajax/share.php +++ b/core/ajax/share.php @@ -89,12 +89,8 @@ if (isset($_POST['action']) && isset($_POST['itemType']) && isset($_POST['itemSo if ($type === 'dir') $text = (string)$l->t('User %s shared the folder "%s" with you. It is available for download here: %s', array($user, $file, $link)); - // handle localhost installations - $server_host = OCP\Util::getServerHost(); - if ($server_host === 'localhost') - $server_host = "example.com"; - $default_from = 'sharing-noreply@' . $server_host; + $default_from = OCP\Util::getDefaultEmailAddress('sharing-noreply'); $from_address = OCP\Config::getUserValue($user, 'settings', 'email', $default_from ); // send it out now diff --git a/core/lostpassword/controller.php b/core/lostpassword/controller.php index 523520dc754..e64b16d3b83 100644 --- a/core/lostpassword/controller.php +++ b/core/lostpassword/controller.php @@ -43,7 +43,7 @@ class OC_Core_LostPassword_Controller { $tmpl->assign('link', $link, false); $msg = $tmpl->fetchPage(); $l = OC_L10N::get('core'); - $from = 'lostpassword-noreply@' . OCP\Util::getServerHost(); + $from = OCP\Util::getDefaultEmailAddress('lostpassword-noreply'); OC_Mail::send($email, $_POST['user'], $l->t('ownCloud password reset'), $msg, $from, 'ownCloud'); echo('Mailsent'); diff --git a/lib/public/util.php b/lib/public/util.php index 7b5b1abbded..9727cfda284 100644 --- a/lib/public/util.php +++ b/lib/public/util.php @@ -172,6 +172,42 @@ class Util { return(\OC_Request::serverHost()); } + /** + * @brief returns the server hostname + * @returns the server hostname + * + * Returns the server host name without an eventual port number + */ + public static function getServerHostName() { + $host_name = self::getServerHost(); + // strip away port number (if existing) + $colon_pos = strpos($host_name, ':'); + if ($colon_pos != FALSE) { + $host_name = substr($host_name, 0, $colon_pos); + } + return $host_name; + } + + /** + * @brief Returns the default email address + * @param $user_part the user part of the address + * @returns the default email address + * + * Assembles a default email address (using the server hostname + * and the given user part, and returns it + * Example: when given lostpassword-noreply as $user_part param, + * and is currently accessed via http(s)://example.com/, + * it would return 'lostpassword-noreply@example.com' + */ + public static function getDefaultEmailAddress($user_part) { + $host_name = self::getServerHostName(); + // handle localhost installations + if ($server_host === 'localhost') { + $server_host = "example.com"; + } + return $user_part.'@'.$host_name; + } + /** * @brief Returns the server protocol * @returns the server protocol -- cgit v1.2.3 From 186147d1eefaffc4c548746a30e417f7ce4d3a36 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Wed, 19 Dec 2012 11:22:01 +0100 Subject: refs #933 send content length header - this will allow the browser to show the progressbar --- lib/files.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/files.php b/lib/files.php index f8bae778ed2..69097e41074 100644 --- a/lib/files.php +++ b/lib/files.php @@ -212,6 +212,7 @@ class OC_Files { self::addSendfileHeader($filename); }else{ header('Content-Type: '.OC_Filesystem::getMimeType($filename)); + header("Content-Length: ".OC_Filesystem::filesize($filename)); $storage = OC_Filesystem::getStorage($filename); if ($storage instanceof OC_Filestorage_Local) { self::addSendfileHeader(OC_Filesystem::getLocalFile($filename)); @@ -227,8 +228,6 @@ class OC_Files { die('403 Forbidden'); } if($only_header) { - if(!$zip) - header("Content-Length: ".OC_Filesystem::filesize($filename)); return ; } if($zip) { -- cgit v1.2.3 From 196f1c3786ca009b3180e8ca11d0bf0258f5be92 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Wed, 19 Dec 2012 15:10:33 +0100 Subject: add a check and a warning if setlocale is working --- lib/base.php | 5 +++++ lib/util.php | 12 ++++++++++++ settings/admin.php | 1 + settings/templates/admin.php | 14 ++++++++++++++ 4 files changed, 32 insertions(+) diff --git a/lib/base.php b/lib/base.php index 0b75f6f085e..9cdadbb7991 100644 --- a/lib/base.php +++ b/lib/base.php @@ -474,6 +474,11 @@ class OC{ exit; } } + + // write error into log if locale can't be set + if(OC_Util::issetlocaleworking()==false) { + OC_Log::write('core', 'setting locate to en_US.UTF-8 failed. Support is probably not installed on your system', OC_Log::ERROR); + } } /** diff --git a/lib/util.php b/lib/util.php index fc50123b4fe..88f36e79544 100755 --- a/lib/util.php +++ b/lib/util.php @@ -582,6 +582,18 @@ class OC_Util { } + /** + * Check if the setlocal call doesn't work. This can happen if the right local packages are not available on the server. + */ + public static function issetlocaleworking() { + $result=setlocale(LC_ALL, 'en_US.UTF-8'); + if($result==false) { + return(false); + }else{ + return(true); + } + } + /** * Check if the ownCloud server can connect to the internet */ diff --git a/settings/admin.php b/settings/admin.php index 0cf449ef2ba..04905391138 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -30,6 +30,7 @@ $tmpl->assign('entries', $entries); $tmpl->assign('entriesremain', $entriesremain); $tmpl->assign('htaccessworking', $htaccessworking); $tmpl->assign('internetconnectionworking', OC_Util::isinternetconnectionworking()); +$tmpl->assign('islocaleworking', OC_Util::issetlocaleworking()); $tmpl->assign('backgroundjobs_mode', OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax')); $tmpl->assign('shareAPIEnabled', OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes')); $tmpl->assign('allowLinks', OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes')); diff --git a/settings/templates/admin.php b/settings/templates/admin.php index a110e09b692..a8e3375ab24 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -8,6 +8,7 @@ $levels=array('Debug','Info','Warning','Error', 'Fatal');
@@ -20,9 +21,22 @@ if(!$_['htaccessworking']) {
+
+ t('Locale not working');?> + + + t('This ownCloud server can\'t set system locale to "en_US.UTF-8". This means that there might be problems with certain caracters in file names. We strongly suggest to install the requirend packages on your system to support en_US.UTF-8.'); ?> + +
-- cgit v1.2.3 From 019da9943a594cb2e4c727140dbd87cd103231d8 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Fri, 14 Dec 2012 18:52:16 +0100 Subject: add curl proxy support. Fixes #504 https://github.com/owncloud/core/issues/504 --- config/config.sample.php | 6 ++++++ lib/util.php | 55 ++++++++++++++++++++++++------------------------ 2 files changed, 34 insertions(+), 27 deletions(-) diff --git a/config/config.sample.php b/config/config.sample.php index f531d5f146b..c915a877291 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -42,6 +42,12 @@ $CONFIG = array( /* Time in seconds how long an user is authenticated without entering his password again before performing sensitive actions like creating or deleting users etc...*/ "enhancedauthtime" => 15 * 60, +/* A proxy to use to connect to the internet. For example "myproxy.org:88" */ +"curlproxy" => "", + +/* The optional authentication for the proxy to use to connect to the internet. The format is: [username]:[password] */ +"curlproxyuserpwd" => "", + /* Theme to use for ownCloud */ "theme" => "", diff --git a/lib/util.php b/lib/util.php index 4d69f3d86db..8c71d3cb4ed 100755 --- a/lib/util.php +++ b/lib/util.php @@ -667,34 +667,35 @@ class OC_Util { * If not, file_get_element is used. */ - public static function getUrlContent($url){ + public static function getUrlContent($url){ - if (function_exists('curl_init')) { - - $curl = curl_init(); - - curl_setopt($curl, CURLOPT_HEADER, 0); - curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); - curl_setopt($curl, CURLOPT_URL, $url); - curl_setopt($curl, CURLOPT_USERAGENT, "ownCloud Server Crawler"); - $data = curl_exec($curl); - curl_close($curl); - - } else { - - $ctx = stream_context_create( - array( - 'http' => array( - 'timeout' => 10 - ) - ) - ); - $data=@file_get_contents($url, 0, $ctx); - - } - - return $data; + if (function_exists('curl_init')) { + + $curl = curl_init(); + + curl_setopt($curl, CURLOPT_HEADER, 0); + curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); + curl_setopt($curl, CURLOPT_URL, $url); + curl_setopt($curl, CURLOPT_USERAGENT, "ownCloud Server Crawler"); + if(OC_Config::getValue('curlproxy','')=='') curl_setopt($curl, CURLOPT_PROXY, OC_Config::getValue('curlproxy')); + if(OC_Config::getValue('curlproxyuserpwd','')=='') curl_setopt($curl, CURLOPT_PROXYUSERPWD, OC_Config::getValue('curlproxyuserpwd')); + $data = curl_exec($curl); + curl_close($curl); + + } else { + + $ctx = stream_context_create( + array( + 'http' => array( + 'timeout' => 10 + ) + ) + ); + $data=@file_get_contents($url, 0, $ctx); + + } + return $data; } } -- cgit v1.2.3 From f012135992df29d48bb61f7c71315f2e54b1366b Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Fri, 14 Dec 2012 22:54:21 +0100 Subject: make it more readable as deepdiver suggested --- lib/util.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/util.php b/lib/util.php index 8c71d3cb4ed..65d66abc59d 100755 --- a/lib/util.php +++ b/lib/util.php @@ -678,8 +678,12 @@ class OC_Util { curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_USERAGENT, "ownCloud Server Crawler"); - if(OC_Config::getValue('curlproxy','')=='') curl_setopt($curl, CURLOPT_PROXY, OC_Config::getValue('curlproxy')); - if(OC_Config::getValue('curlproxyuserpwd','')=='') curl_setopt($curl, CURLOPT_PROXYUSERPWD, OC_Config::getValue('curlproxyuserpwd')); + if(OC_Config::getValue('curlproxy','')=='') { + curl_setopt($curl, CURLOPT_PROXY, OC_Config::getValue('curlproxy')); + } + if(OC_Config::getValue('curlproxyuserpwd','')=='') { + curl_setopt($curl, CURLOPT_PROXYUSERPWD, OC_Config::getValue('curlproxyuserpwd')); + } $data = curl_exec($curl); curl_close($curl); -- cgit v1.2.3 From a64a923d5618de68ced9aaacbb3aa490e3d7594d Mon Sep 17 00:00:00 2001 From: root Date: Sat, 15 Dec 2012 00:09:39 +0100 Subject: call it "proxy" instead of "curlproxy" Thanks Bart for the hint. This also switches "==" to "<>" and not the code actually works ;-) --- config/config.sample.php | 4 ++-- lib/util.php | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/config/config.sample.php b/config/config.sample.php index c915a877291..78dfe17ea79 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -43,10 +43,10 @@ $CONFIG = array( "enhancedauthtime" => 15 * 60, /* A proxy to use to connect to the internet. For example "myproxy.org:88" */ -"curlproxy" => "", +"proxy" => "", /* The optional authentication for the proxy to use to connect to the internet. The format is: [username]:[password] */ -"curlproxyuserpwd" => "", +"proxyuserpwd" => "", /* Theme to use for ownCloud */ "theme" => "", diff --git a/lib/util.php b/lib/util.php index 65d66abc59d..4170de2125a 100755 --- a/lib/util.php +++ b/lib/util.php @@ -678,11 +678,11 @@ class OC_Util { curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_USERAGENT, "ownCloud Server Crawler"); - if(OC_Config::getValue('curlproxy','')=='') { - curl_setopt($curl, CURLOPT_PROXY, OC_Config::getValue('curlproxy')); + if(OC_Config::getValue('proxy','')<>'') { + curl_setopt($curl, CURLOPT_PROXY, OC_Config::getValue('proxy')); } - if(OC_Config::getValue('curlproxyuserpwd','')=='') { - curl_setopt($curl, CURLOPT_PROXYUSERPWD, OC_Config::getValue('curlproxyuserpwd')); + if(OC_Config::getValue('proxyuserpwd','')<>'') { + curl_setopt($curl, CURLOPT_PROXYUSERPWD, OC_Config::getValue('proxyuserpwd')); } $data = curl_exec($curl); curl_close($curl); -- cgit v1.2.3 From bca02f4b40fb824ea883ae40a05b60340d81dd56 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Wed, 19 Dec 2012 23:43:07 +0100 Subject: [l18n] fixing typos in source text --- settings/templates/admin.php | 221 +++++++++++++++++++++++-------------------- 1 file changed, 121 insertions(+), 100 deletions(-) diff --git a/settings/templates/admin.php b/settings/templates/admin.php index a8e3375ab24..26335063d4b 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -3,33 +3,33 @@ * This file is licensed under the Affero General Public License version 3 or later. * See the COPYING-README file. */ -$levels=array('Debug','Info','Warning','Error', 'Fatal'); +$levels = array('Debug', 'Info', 'Warning', 'Error', 'Fatal'); ?> +if (!$_['htaccessworking']) { + ?>
- t('Security Warning');?> + t('Security Warning');?> t('Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We 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.'); ?> - -
- + +if (!$_['islocaleworking']) { + ?>
- t('Locale not working');?> + t('Locale not working');?> - t('This ownCloud server can\'t set system locale to "en_US.UTF-8". This means that there might be problems with certain caracters in file names. We strongly suggest to install the requirend packages on your system to support en_US.UTF-8.'); ?> + t('This ownCloud server can\'t set system locale to "en_US.UTF-8". 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 en_US.UTF-8.'); ?>
@@ -37,10 +37,10 @@ if(!$_['islocaleworking']) { } // is internet connection working ? -if(!$_['internetconnectionworking']) { -?> +if (!$_['internetconnectionworking']) { + ?>
- t('Internet connection not working');?> + t('Internet connection not working');?> t('This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from 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.'); ?> @@ -51,105 +51,126 @@ if(!$_['internetconnectionworking']) { } ?> - +
- t('Cron');?> - - - - - - - - -
- > -
- t("Execute one task with each page loaded"); ?> -
- > -
- t("cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http."); ?> -
- > -
- t("Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute."); ?> -
+ t('Cron');?> + + + + + + + + + + +
+ > +
+ t("Execute one task with each page loaded"); ?> +
+ > +
+ t("cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http."); ?> +
+ > +
+ t("Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute."); ?> +
- t('Sharing');?> - - - - - - - - - - -
- /> -
- t('Allow apps to use the Share API'); ?> -
> - /> -
- t('Allow users to share items to the public with links'); ?> -
> - /> -
- t('Allow users to share items shared with them again'); ?> -
> - /> -
- /> -
-
+ t('Sharing');?> + + + + + + + + + + + + + +
+ /> +
+ t('Allow apps to use the Share API'); ?> +
> + /> +
+ t('Allow users to share items to the public with links'); ?> +
> + /> +
+ t('Allow users to share items shared with them again'); ?> +
> + /> +
+ /> +
+
- t('Log');?> - t('Log level');?> - - - - - - - - - -
- level];?> - - app;?> - - message;?> - - time);?> -
- -...'> - + t('Log');?> + t('Log level');?> + + + + + + + + + +
+ level];?> + + app;?> + + message;?> + + time);?> +
+ + ...'> +
- t('Version');?> - ownCloud ()
+ t('Version');?> + ownCloud + ()
t('Developed by the ownCloud community, the source code is licensed under the AGPL.'); ?>
-- cgit v1.2.3 From ecf82d22180644504fb2ffad8653394ff72ab6ce Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 20 Dec 2012 00:13:09 +0100 Subject: [tx-robot] updated from transifex --- core/l10n/eo.php | 8 +++ l10n/ar/settings.po | 98 +++++++++++++++++++-------------- l10n/ar/user_webdavauth.po | 17 ++++-- l10n/bg_BG/settings.po | 98 +++++++++++++++++++-------------- l10n/bg_BG/user_webdavauth.po | 15 +++-- l10n/ca/settings.po | 104 ++++++++++++++++++++--------------- l10n/ca/user_webdavauth.po | 17 ++++-- l10n/cs_CZ/settings.po | 104 ++++++++++++++++++++--------------- l10n/cs_CZ/user_webdavauth.po | 17 ++++-- l10n/da/settings.po | 102 +++++++++++++++++++--------------- l10n/da/user_webdavauth.po | 15 +++-- l10n/de/settings.po | 104 ++++++++++++++++++++--------------- l10n/de/user_webdavauth.po | 17 ++++-- l10n/de_DE/settings.po | 104 ++++++++++++++++++++--------------- l10n/de_DE/user_webdavauth.po | 17 ++++-- l10n/el/settings.po | 104 ++++++++++++++++++++--------------- l10n/el/user_webdavauth.po | 17 ++++-- l10n/eo/core.po | 72 ++++++++++++------------ l10n/eo/settings.po | 104 ++++++++++++++++++++--------------- l10n/eo/user_webdavauth.po | 17 ++++-- l10n/es/settings.po | 104 ++++++++++++++++++++--------------- l10n/es/user_webdavauth.po | 17 ++++-- l10n/es_AR/settings.po | 104 ++++++++++++++++++++--------------- l10n/es_AR/user_webdavauth.po | 17 ++++-- l10n/et_EE/settings.po | 102 +++++++++++++++++++--------------- l10n/et_EE/user_webdavauth.po | 17 ++++-- l10n/eu/settings.po | 104 ++++++++++++++++++++--------------- l10n/eu/user_webdavauth.po | 17 ++++-- l10n/fa/settings.po | 104 ++++++++++++++++++++--------------- l10n/fa/user_webdavauth.po | 15 +++-- l10n/fi_FI/settings.po | 104 ++++++++++++++++++++--------------- l10n/fi_FI/user_webdavauth.po | 17 ++++-- l10n/fr/settings.po | 104 ++++++++++++++++++++--------------- l10n/fr/user_webdavauth.po | 17 ++++-- l10n/gl/settings.po | 104 ++++++++++++++++++++--------------- l10n/gl/user_webdavauth.po | 17 ++++-- l10n/he/settings.po | 104 ++++++++++++++++++++--------------- l10n/he/user_webdavauth.po | 15 +++-- l10n/hi/settings.po | 84 ++++++++++++++++------------ l10n/hi/user_webdavauth.po | 15 +++-- l10n/hr/settings.po | 102 +++++++++++++++++++--------------- l10n/hr/user_webdavauth.po | 15 +++-- l10n/hu_HU/settings.po | 102 +++++++++++++++++++--------------- l10n/hu_HU/user_webdavauth.po | 15 +++-- l10n/ia/settings.po | 94 ++++++++++++++++++------------- l10n/ia/user_webdavauth.po | 15 +++-- l10n/id/settings.po | 102 +++++++++++++++++++--------------- l10n/id/user_webdavauth.po | 15 +++-- l10n/is/settings.po | 86 +++++++++++++++++------------ l10n/is/user_webdavauth.po | 15 +++-- l10n/it/settings.po | 104 ++++++++++++++++++++--------------- l10n/it/user_webdavauth.po | 17 ++++-- l10n/ja_JP/settings.po | 104 ++++++++++++++++++++--------------- l10n/ja_JP/user_webdavauth.po | 17 ++++-- l10n/ka_GE/settings.po | 102 +++++++++++++++++++--------------- l10n/ka_GE/user_webdavauth.po | 15 +++-- l10n/ko/settings.po | 104 ++++++++++++++++++++--------------- l10n/ko/user_webdavauth.po | 17 ++++-- l10n/ku_IQ/settings.po | 88 +++++++++++++++++------------ l10n/ku_IQ/user_webdavauth.po | 15 +++-- l10n/lb/settings.po | 102 +++++++++++++++++++--------------- l10n/lb/user_webdavauth.po | 15 +++-- l10n/lt_LT/settings.po | 96 ++++++++++++++++++-------------- l10n/lt_LT/user_webdavauth.po | 15 +++-- l10n/lv/settings.po | 102 +++++++++++++++++++--------------- l10n/lv/user_webdavauth.po | 15 +++-- l10n/mk/settings.po | 104 ++++++++++++++++++++--------------- l10n/mk/user_webdavauth.po | 15 +++-- l10n/ms_MY/settings.po | 102 +++++++++++++++++++--------------- l10n/ms_MY/user_webdavauth.po | 15 +++-- l10n/nb_NO/settings.po | 102 +++++++++++++++++++--------------- l10n/nb_NO/user_webdavauth.po | 15 +++-- l10n/nl/settings.po | 104 ++++++++++++++++++++--------------- l10n/nl/user_webdavauth.po | 17 ++++-- l10n/nn_NO/settings.po | 96 ++++++++++++++++++-------------- l10n/nn_NO/user_webdavauth.po | 15 +++-- l10n/oc/settings.po | 100 +++++++++++++++++++-------------- l10n/oc/user_webdavauth.po | 15 +++-- l10n/pl/settings.po | 104 ++++++++++++++++++++--------------- l10n/pl/user_webdavauth.po | 17 ++++-- l10n/pl_PL/settings.po | 84 ++++++++++++++++------------ l10n/pl_PL/user_webdavauth.po | 15 +++-- l10n/pt_BR/settings.po | 104 ++++++++++++++++++++--------------- l10n/pt_BR/user_webdavauth.po | 17 ++++-- l10n/pt_PT/settings.po | 104 ++++++++++++++++++++--------------- l10n/pt_PT/user_webdavauth.po | 17 ++++-- l10n/ro/settings.po | 102 +++++++++++++++++++--------------- l10n/ro/user_webdavauth.po | 15 +++-- l10n/ru/settings.po | 104 ++++++++++++++++++++--------------- l10n/ru/user_webdavauth.po | 17 ++++-- l10n/ru_RU/settings.po | 104 ++++++++++++++++++++--------------- l10n/ru_RU/user_webdavauth.po | 17 ++++-- l10n/si_LK/settings.po | 100 +++++++++++++++++++-------------- l10n/si_LK/user_webdavauth.po | 17 ++++-- l10n/sk_SK/settings.po | 104 ++++++++++++++++++++--------------- l10n/sk_SK/user_webdavauth.po | 17 ++++-- l10n/sl/settings.po | 104 ++++++++++++++++++++--------------- l10n/sl/user_webdavauth.po | 17 ++++-- l10n/sq/settings.po | 84 ++++++++++++++++------------ l10n/sq/user_webdavauth.po | 15 +++-- l10n/sr/settings.po | 104 ++++++++++++++++++++--------------- l10n/sr/user_webdavauth.po | 15 +++-- l10n/sr@latin/settings.po | 96 ++++++++++++++++++-------------- l10n/sr@latin/user_webdavauth.po | 15 +++-- l10n/sv/settings.po | 104 ++++++++++++++++++++--------------- l10n/sv/user_webdavauth.po | 17 ++++-- l10n/ta_LK/settings.po | 102 +++++++++++++++++++--------------- l10n/ta_LK/user_webdavauth.po | 17 ++++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 10 ++-- l10n/templates/files_external.pot | 8 +-- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_versions.pot | 6 +- l10n/templates/lib.pot | 10 ++-- l10n/templates/settings.pot | 82 ++++++++++++++++----------- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 10 +++- l10n/th_TH/settings.po | 102 +++++++++++++++++++--------------- l10n/th_TH/user_webdavauth.po | 17 ++++-- l10n/tr/settings.po | 104 ++++++++++++++++++++--------------- l10n/tr/user_webdavauth.po | 17 ++++-- l10n/uk/settings.po | 104 ++++++++++++++++++++--------------- l10n/uk/user_webdavauth.po | 17 ++++-- l10n/vi/settings.po | 104 ++++++++++++++++++++--------------- l10n/vi/user_webdavauth.po | 17 ++++-- l10n/zh_CN.GB2312/settings.po | 102 +++++++++++++++++++--------------- l10n/zh_CN.GB2312/user_webdavauth.po | 15 +++-- l10n/zh_CN/settings.po | 104 ++++++++++++++++++++--------------- l10n/zh_CN/user_webdavauth.po | 17 ++++-- l10n/zh_HK/settings.po | 84 ++++++++++++++++------------ l10n/zh_HK/user_webdavauth.po | 15 +++-- l10n/zh_TW/settings.po | 104 ++++++++++++++++++++--------------- l10n/zh_TW/user_webdavauth.po | 17 ++++-- l10n/zu_ZA/settings.po | 84 ++++++++++++++++------------ l10n/zu_ZA/user_webdavauth.po | 15 +++-- settings/l10n/ar.php | 9 +-- settings/l10n/bg_BG.php | 9 +-- settings/l10n/ca.php | 11 +--- settings/l10n/cs_CZ.php | 11 +--- settings/l10n/da.php | 11 +--- settings/l10n/de.php | 11 +--- settings/l10n/de_DE.php | 11 +--- settings/l10n/el.php | 11 +--- settings/l10n/eo.php | 11 +--- settings/l10n/es.php | 11 +--- settings/l10n/es_AR.php | 11 +--- settings/l10n/et_EE.php | 11 +--- settings/l10n/eu.php | 11 +--- settings/l10n/fa.php | 11 +--- settings/l10n/fi_FI.php | 11 +--- settings/l10n/fr.php | 11 +--- settings/l10n/gl.php | 11 +--- settings/l10n/he.php | 11 +--- settings/l10n/hi.php | 4 +- settings/l10n/hr.php | 11 +--- settings/l10n/hu_HU.php | 11 +--- settings/l10n/ia.php | 7 +-- settings/l10n/id.php | 11 +--- settings/l10n/it.php | 11 +--- settings/l10n/ja_JP.php | 11 +--- settings/l10n/ka_GE.php | 11 +--- settings/l10n/ko.php | 11 +--- settings/l10n/ku_IQ.php | 6 +- settings/l10n/lb.php | 11 +--- settings/l10n/lt_LT.php | 8 +-- settings/l10n/lv.php | 11 +--- settings/l10n/mk.php | 11 +--- settings/l10n/ms_MY.php | 11 +--- settings/l10n/nb_NO.php | 11 +--- settings/l10n/nl.php | 11 +--- settings/l10n/nn_NO.php | 8 +-- settings/l10n/oc.php | 10 +--- settings/l10n/pl.php | 11 +--- settings/l10n/pt_BR.php | 11 +--- settings/l10n/pt_PT.php | 11 +--- settings/l10n/ro.php | 11 +--- settings/l10n/ru.php | 11 +--- settings/l10n/ru_RU.php | 11 +--- settings/l10n/si_LK.php | 10 +--- settings/l10n/sk_SK.php | 11 +--- settings/l10n/sl.php | 11 +--- settings/l10n/sr.php | 11 +--- settings/l10n/sr@latin.php | 8 +-- settings/l10n/sv.php | 11 +--- settings/l10n/ta_LK.php | 11 +--- settings/l10n/th_TH.php | 11 +--- settings/l10n/tr.php | 11 +--- settings/l10n/uk.php | 11 +--- settings/l10n/vi.php | 11 +--- settings/l10n/zh_CN.GB2312.php | 11 +--- settings/l10n/zh_CN.php | 11 +--- settings/l10n/zh_TW.php | 11 +--- 193 files changed, 4509 insertions(+), 3531 deletions(-) diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 7b65652d67c..a605b27ed80 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -1,4 +1,8 @@ "La uzanto %s kunhavigis dosieron kun vi", +"User %s shared a folder with you" => "La uzanto %s kunhavigis dosierujon kun vi", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "La uzanto %s kunhavigis la dosieron “%s” kun vi. Ĝi elŝuteblas el tie ĉi: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "La uzanto %s kunhavigis la dosierujon “%s” kun vi. Ĝi elŝuteblas el tie ĉi: %s", "Category type not provided." => "Ne proviziĝis tipon de kategorio.", "No category to add?" => "Ĉu neniu kategorio estas aldonota?", "This category already exists: " => "Ĉi tiu kategorio jam ekzistas: ", @@ -39,6 +43,8 @@ "Share with link" => "Kunhavigi per ligilo", "Password protect" => "Protekti per pasvorto", "Password" => "Pasvorto", +"Email link to person" => "Retpoŝti la ligilon al ulo", +"Send" => "Sendi", "Set expiration date" => "Agordi limdaton", "Expiration date" => "Limdato", "Share via email:" => "Kunhavigi per retpoŝto:", @@ -55,6 +61,8 @@ "Password protected" => "Protektita per pasvorto", "Error unsetting expiration date" => "Eraro dum malagordado de limdato", "Error setting expiration date" => "Eraro dum agordado de limdato", +"Sending ..." => "Sendante...", +"Email sent" => "La retpoŝtaĵo sendiĝis", "ownCloud password reset" => "La pasvorto de ownCloud restariĝis.", "Use the following link to reset your password: {link}" => "Uzu la jenan ligilon por restarigi vian pasvorton: {link}", "You will receive a link to reset your password via Email." => "Vi ricevos ligilon retpoŝte por rekomencigi vian pasvorton.", diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index e84963aded2..4ccf4fd4202 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -117,29 +117,29 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" -msgstr "التوثيق" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" +#: templates/help.php:4 +msgid "Administrator Documentation" msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "إسأل سؤال" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "الاتصال بقاعدة بيانات المساعدة لم يتم بنجاح" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "إذهب هنالك بنفسك" +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "الجواب" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -147,62 +147,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" +msgid "Clients" msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "انزال" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "كلمات السر" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "لم يتم تعديل كلمة السر بنجاح" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "كلمات السر الحالية" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "كلمات سر جديدة" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "أظهر" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "عدل كلمة السر" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "العنوان البريدي" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "عنوانك البريدي" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "أدخل عنوانك البريدي لتفعيل استرجاع كلمة المرور" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "اللغة" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "ساعد في الترجمه" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "إستخدم هذا العنوان للإتصال ب ownCloud داخل نظام الملفات " +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" + +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 3b8329c58be..76380b18681 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -118,29 +118,29 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" -msgstr "Документация" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" +#: templates/help.php:4 +msgid "Administrator Documentation" msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Задайте въпрос" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Проблеми при свързване с помощната база" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Отидете ръчно." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Отговор" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -148,62 +148,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" +msgid "Clients" msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Изтегляне" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Парола" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Невъзможна промяна на паролата" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Текуща парола" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Нова парола" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "показва" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Промяна на парола" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Е-поща" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Адресът на е-пощата ви" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Въведете е-поща за възстановяване на паролата" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Език" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Помощ за превода" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "ползвай този адрес за връзка с Вашия ownCloud във файловия мениджър" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" + +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index b17a5d30e30..331a63af1a7 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" -"Last-Translator: Josep Tomàs \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -120,29 +120,29 @@ msgstr "Mireu la pàgina d'aplicacions a apps.owncloud.com" msgid "-licensed by " msgstr "-propietat de " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Documentació" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Gestió de fitxers grans" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Feu una pregunta" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problemes per connectar amb la base de dades d'ajuda." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Vés-hi manualment." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Resposta" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -150,62 +150,82 @@ msgid "You have used %s of the available %s" msgstr "Heu utilitzat %s d'un total disponible de %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Clients de sincronització d'escriptori i de mòbil" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Baixada" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Contrasenya" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "La seva contrasenya s'ha canviat" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "No s'ha pogut canviar la contrasenya" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Contrasenya actual" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Contrasenya nova" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "mostra" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Canvia la contrasenya" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Correu electrònic" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Correu electrònic" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Ompliu el correu electrònic per activar la recuperació de contrasenya" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Idioma" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Ajudeu-nos amb la traducció" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "useu aquesta adreça per connectar-vos a ownCloud des del gestor de fitxers" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "Adreça WebDAV: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index e2e213e5fcb..30b993246e2 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -121,29 +121,29 @@ msgstr "Více na stránce s aplikacemi na apps.owncloud.com" msgid "-licensed by " msgstr "-licencováno " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentace" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Správa velkých souborů" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Zeptat se" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problémy s připojením k databázi s nápovědou." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Přejít ručně." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Odpověď" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -151,62 +151,82 @@ msgid "You have used %s of the available %s" msgstr "Používáte %s z %s dostupných" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Klienti pro synchronizaci" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Stáhnout" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Heslo" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Vaše heslo bylo změněno" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Vaše heslo nelze změnit" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Současné heslo" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "zobrazit" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Změnit heslo" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "E-mail" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Vaše e-mailová adresa" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Pro povolení změny hesla vyplňte adresu e-mailu" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Pomoci s překladem" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "tuto adresu použijte pro připojení k ownCloud ve Vašem správci souborů" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the komun msgid "Name" msgstr "Jméno" -#: templates/users.php:23 templates/users.php:77 -msgid "Password" -msgstr "Heslo" - #: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Skupiny" diff --git a/l10n/cs_CZ/user_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po index 6f4e008376e..c6d6edace6f 100644 --- a/l10n/cs_CZ/user_webdavauth.po +++ b/l10n/cs_CZ/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-11 00:01+0100\n" -"PO-Revision-Date: 2012-11-10 10:16+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "URL WebDAV: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 948c398c076..9fb7f125016 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -124,29 +124,29 @@ msgstr "Se applikationens side på apps.owncloud.com" msgid "-licensed by " msgstr "-licenseret af " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentation" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Håndter store filer" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Stil et spørgsmål" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problemer med at forbinde til hjælpe-databasen." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Gå derhen manuelt." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Svar" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -154,62 +154,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Synkroniserings programmer for desktop og mobil" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Download" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Kodeord" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Din adgangskode blev ændret" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Ude af stand til at ændre dit kodeord" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Nuværende adgangskode" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Ny adgangskode" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "vis" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Skift kodeord" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Email" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Din emailadresse" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Indtast en emailadresse for at kunne få påmindelse om adgangskode" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Sprog" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Hjælp med oversættelsen" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "benyt denne adresse til at forbinde til din ownCloud i din filbrowser" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the ow msgid "Name" msgstr "Navn" -#: templates/users.php:23 templates/users.php:77 -msgid "Password" -msgstr "Kodeord" - #: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupper" diff --git a/l10n/da/user_webdavauth.po b/l10n/da/user_webdavauth.po index d91890971df..3ff9f07c589 100644 --- a/l10n/da/user_webdavauth.po +++ b/l10n/da/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-09 10:06+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 4d80da3751f..cbc4d58803d 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-05 00:04+0100\n" -"PO-Revision-Date: 2012-12-04 13:54+0000\n" -"Last-Translator: AndryXY \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -132,29 +132,29 @@ msgstr "Weitere Anwendungen findest Du auf apps.owncloud.com" msgid "-licensed by " msgstr "-lizenziert von " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentation" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Große Dateien verwalten" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Stelle eine Frage" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Probleme bei der Verbindung zur Hilfe-Datenbank." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Datenbank direkt besuchen." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Antwort" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -162,62 +162,82 @@ msgid "You have used %s of the available %s" msgstr "Du verwendest %s der verfügbaren %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Desktop- und mobile Clients für die Synchronisation" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Download" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Passwort" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Dein Passwort wurde geändert." -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Passwort konnte nicht geändert werden" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "zeigen" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Deine E-Mail-Adresse" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Sprache" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Hilf bei der Übersetzung" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "Verwende diese Adresse, um Deine ownCloud mit Deinem Dateimanager zu verbinden." +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,5 +20,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 064c038d576..62f52d34b42 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -23,9 +23,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 21:41+0000\n" -"Last-Translator: seeed \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -131,29 +131,29 @@ msgstr "Weitere Anwendungen finden Sie auf apps.owncloud.com" msgid "-licensed by " msgstr "-lizenziert von " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentation" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Große Dateien verwalten" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Stellen Sie eine Frage" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Probleme bei der Verbindung zur Hilfe-Datenbank." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Datenbank direkt besuchen." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Antwort" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -161,62 +161,82 @@ msgid "You have used %s of the available %s" msgstr "Sie verwenden %s der verfügbaren %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Desktop- und mobile Clients für die Synchronisation" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Download" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Passwort" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Ihr Passwort wurde geändert." -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Das Passwort konnte nicht geändert werden" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "zeigen" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Ihre E-Mail-Adresse" -#: templates/personal.php:32 +#: templates/personal.php:35 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." -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Sprache" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Helfen Sie bei der Übersetzung" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "Benutzen Sie diese Adresse, um Ihre ownCloud mit Ihrem Dateimanager zu verbinden." +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 62961834e0e..f4a0b03ecf3 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 11:21+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -126,29 +126,29 @@ msgstr "Δείτε την σελίδα εφαρμογών στο apps.owncloud.c msgid "-licensed by " msgstr "-άδεια από " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Τεκμηρίωση" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Διαχείριση Μεγάλων Αρχείων" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Ρωτήστε μια ερώτηση" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Προβλήματα κατά τη σύνδεση με τη βάση δεδομένων βοήθειας." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Χειροκίνητη μετάβαση." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Απάντηση" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -156,62 +156,82 @@ msgid "You have used %s of the available %s" msgstr "Χρησιμοποιήσατε %s από διαθέσιμα %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Πελάτες συγχρονισμού για Desktop και Mobile" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Λήψη" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Συνθηματικό" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Το συνθηματικό σας έχει αλλάξει" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Τρέχων συνθηματικό" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Νέο συνθηματικό" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "εμφάνιση" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Αλλαγή συνθηματικού" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Email" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Γλώσσα" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Βοηθήστε στη μετάφραση" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "χρησιμοποιήστε αυτήν τη διεύθυνση για να συνδεθείτε στο ownCloud σας από το διαχειριστή αρχείων σας" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 03095412f69..ae8dd9eeedc 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 07:11+0000\n" +"Last-Translator: Mariano \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,26 +23,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "La uzanto %s kunhavigis dosieron kun vi" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "La uzanto %s kunhavigis dosierujon kun vi" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "La uzanto %s kunhavigis la dosieron “%s” kun vi. Ĝi elŝuteblas el tie ĉi: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "La uzanto %s kunhavigis la dosierujon “%s” kun vi. Ĝi elŝuteblas el tie ĉi: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -164,8 +164,8 @@ msgid "The object type is not specified." msgstr "Ne indikiĝis tipo de la objekto." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Eraro" @@ -177,7 +177,7 @@ msgstr "Ne indikiĝis nomo de la aplikaĵo." msgid "The required file {file} is not installed!" msgstr "La necesa dosiero {file} ne instaliĝis!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" @@ -205,22 +205,22 @@ msgstr "Kunhavigi kun" msgid "Share with link" msgstr "Kunhavigi per ligilo" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Protekti per pasvorto" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:26 #: templates/verify.php:13 msgid "Password" msgstr "Pasvorto" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Retpoŝti la ligilon al ulo" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Sendi" #: js/share.js:177 msgid "Set expiration date" @@ -274,25 +274,25 @@ msgstr "forigi" msgid "share" msgstr "kunhavigi" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protektita per pasvorto" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Eraro dum malagordado de limdato" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Eraro dum agordado de limdato" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Sendante..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "La retpoŝtaĵo sendiĝis" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -314,8 +314,8 @@ msgstr "" msgid "Request failed!" msgstr "Peto malsukcesis!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:21 msgid "Username" msgstr "Uzantonomo" @@ -404,44 +404,44 @@ msgstr "" msgid "Create an admin account" msgstr "Krei administran konton" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Progresinta" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Datuma dosierujo" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Agordi la datumbazon" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "estos uzata" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Datumbaza uzanto" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Datumbaza pasvorto" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Datumbaza nomo" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Datumbaza tabelospaco" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Datumbaza gastigo" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Fini la instalon" @@ -547,11 +547,11 @@ msgstr "Bonvolu ŝanĝi vian pasvorton por sekurigi vian konton ree." msgid "Lost your password?" msgstr "Ĉu vi perdis vian pasvorton?" -#: templates/login.php:27 +#: templates/login.php:29 msgid "remember" msgstr "memori" -#: templates/login.php:28 +#: templates/login.php:30 msgid "Log in" msgstr "Ensaluti" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 49a5a9135e4..8614b6b1fe6 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 22:14+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -117,29 +117,29 @@ msgstr "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com" msgid "-licensed by " msgstr "-permesilhavigita de " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentaro" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Administrante grandajn dosierojn" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Faru demandon" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problemoj okazis dum konektado al la helpa datumbazo." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Iri tien mane." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Respondi" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -147,62 +147,82 @@ msgid "You have used %s of the available %s" msgstr "Vi uzas %s el la haveblaj %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Labortablaj kaj porteblaj sinkronigoklientoj" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Elŝuti" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Pasvorto" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Via pasvorto ŝanĝiĝis" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Ne eblis ŝanĝi vian pasvorton" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Nuna pasvorto" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Nova pasvorto" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "montri" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Ŝanĝi la pasvorton" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Retpoŝto" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Via retpoŝta adreso" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Enigu retpoŝtadreson por kapabligi pasvortan restaŭron" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Lingvo" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Helpu traduki" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "uzu ĉi tiun adreson por konektiĝi al via ownCloud per via dosieradministrilo" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV-a URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 8e8c25c4e24..a705db8b0d9 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" -"Last-Translator: xsergiolpx \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -126,29 +126,29 @@ msgstr "Echa un vistazo a la web de aplicaciones apps.owncloud.com" msgid "-licensed by " msgstr "-licenciado por " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Documentación" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Administra archivos grandes" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Hacer una pregunta" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problemas al conectar con la base de datos de ayuda." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Ir manualmente" +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Respuesta" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -156,62 +156,82 @@ msgid "You have used %s of the available %s" msgstr "Ha usado %s de %s disponibles" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Clientes de sincronización móviles y de escritorio" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Descargar" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Contraseña" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Su contraseña ha sido cambiada" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "No se ha podido cambiar tu contraseña" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Nueva contraseña:" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "mostrar" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Correo electrónico" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Tu dirección de correo" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Escribe una dirección de correo electrónico para restablecer la contraseña" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Idioma" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Ayúdanos a traducir" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "utiliza esta dirección para conectar a tu ownCloud desde tu gestor de archivos" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 89e8050adf8..3c23f272dbf 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-11 00:04+0100\n" -"PO-Revision-Date: 2012-12-10 00:39+0000\n" -"Last-Translator: Agustin Ferrario \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -117,29 +117,29 @@ msgstr "Mirá la web de aplicaciones apps.owncloud.com" msgid "-licensed by " msgstr "-licenciado por " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Documentación" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Administrar archivos grandes" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Hacer una pregunta" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problemas al conectar con la base de datos de ayuda." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Ir de forma manual" +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Respuesta" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -147,62 +147,82 @@ msgid "You have used %s of the available %s" msgstr "Usaste %s de los %s disponibles" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Clientes de sincronización para celulares, tablets y de escritorio" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Descargar" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Contraseña" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Tu contraseña fue cambiada" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "No fue posible cambiar tu contraseña" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Nueva contraseña:" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "mostrar" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Correo electrónico" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Tu dirección de e-mail" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Escribí una dirección de correo electrónico para restablecer la contraseña" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Idioma" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Ayudanos a traducir" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "usá esta dirección para conectarte a tu ownCloud desde tu gestor de archivos" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "URL de WebDAV: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index d758c91271d..17e9aaeab7f 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -117,29 +117,29 @@ msgstr "Vaata rakenduste lehte aadressil apps.owncloud.com" msgid "-licensed by " msgstr "-litsenseeritud " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentatsioon" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Suurte failide haldamine" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Küsi küsimus" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Probleemid abiinfo andmebaasiga ühendumisel." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Mine sinna käsitsi." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Vasta" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -147,62 +147,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Töölaua ja mobiiliga sünkroniseerimise rakendused" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Lae alla" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Parool" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Sinu parooli on muudetud" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Sa ei saa oma parooli muuta" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Praegune parool" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Uus parool" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "näita" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Muuda parooli" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "E-post" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Sinu e-posti aadress" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Parooli taastamise sisse lülitamiseks sisesta e-posti aadress" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Keel" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Aita tõlkida" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "kasuta seda aadressi oma ownCloudiga ühendamiseks failihalduriga" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 56ad7508eff..b3a9725781d 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/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: 2012-12-14 00:17+0100\n" -"PO-Revision-Date: 2012-12-13 11:48+0000\n" -"Last-Translator: Piarres Beobide \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -118,29 +118,29 @@ msgstr "Ikusi programen orria apps.owncloud.com en" msgid "-licensed by " msgstr "-lizentziatua " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentazioa" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Fitxategi handien kudeaketa" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Egin galdera bat" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Arazoak daude laguntza datubasera konektatzeko." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Joan hara eskuz." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Erantzun" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -148,62 +148,82 @@ msgid "You have used %s of the available %s" msgstr "Dagoeneko %s erabili duzu eskuragarri duzun %setatik" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Mahaigain eta mugikorren sinkronizazio bezeroak" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Deskargatu" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Pasahitza" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Zere pasahitza aldatu da" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Ezin izan da zure pasahitza aldatu" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Uneko pasahitza" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Pasahitz berria" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "erakutsi" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Aldatu pasahitza" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "E-Posta" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Zure e-posta" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Hizkuntza" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Lagundu itzultzen" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "erabili helbide hau zure fitxategi kudeatzailean zure ownCloudera konektatzeko" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the ownCloud komun msgid "Name" msgstr "Izena" -#: templates/users.php:23 templates/users.php:77 -msgid "Password" -msgstr "Pasahitza" - #: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Taldeak" diff --git a/l10n/eu/user_webdavauth.po b/l10n/eu/user_webdavauth.po index eca9edb6ff5..b7e5b1a0d37 100644 --- a/l10n/eu/user_webdavauth.po +++ b/l10n/eu/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-26 00:01+0100\n" -"PO-Revision-Date: 2012-11-25 22:56+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index e0c3b853c89..8b195e20c4d 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" -"Last-Translator: ho2o2oo \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -119,29 +119,29 @@ msgstr "صفحه این اٌپ را در apps.owncloud.com ببینید" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" -msgstr "مستندات" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "مدیریت پرونده های بزرگ" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "یک سوال بپرسید" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "مشکلاتی برای وصل شدن به پایگاه داده کمکی" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "بروید آنجا به صورت دستی" +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "پاسخ" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -149,62 +149,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr " ابزار مدیریت با دسکتاپ و موبایل" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "بارگیری" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "گذرواژه" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "رمز عبور شما تغییر یافت" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "ناتوان در تغییر گذرواژه" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "گذرواژه کنونی" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "گذرواژه جدید" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "نمایش" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "تغییر گذر واژه" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "پست الکترونیکی" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "پست الکترونیکی شما" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "پست الکترونیکی را پرکنید تا بازیابی گذرواژه فعال شود" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "زبان" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "به ترجمه آن کمک کنید" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "از این نشانی برای وصل شدن به ابرهایتان در مدیرپرونده استفاده کنید" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index bfb17285b22..c65a8d3da40 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/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: 2012-12-06 00:11+0100\n" -"PO-Revision-Date: 2012-12-05 10:40+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -118,29 +118,29 @@ msgstr "Katso sovellussivu osoitteessa apps.owncloud.com" msgid "-licensed by " msgstr "-lisensoija " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentaatio" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Suurten tiedostojen hallinta" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Kysy jotain" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Virhe yhdistettäessä tietokantaan." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Siirry sinne itse." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Vastaus" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -148,62 +148,82 @@ msgid "You have used %s of the available %s" msgstr "Käytössäsi on %s/%s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Tietokoneen ja mobiililaitteiden synkronointisovellukset" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Lataa" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Salasana" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Salasanasi vaihdettiin" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Salasanaasi ei voitu vaihtaa" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Nykyinen salasana" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Uusi salasana" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "näytä" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Vaihda salasana" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Sähköposti" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Sähköpostiosoitteesi" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Kieli" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Auta kääntämisessä" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "voit yhdistää tiedostonhallintasovelluksellasi ownCloudiin käyttämällä tätä osoitetta" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV-osoite: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index c3e8712f322..60e593f91e7 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-05 00:04+0100\n" -"PO-Revision-Date: 2012-12-04 10:26+0000\n" -"Last-Translator: Robert Di Rosa <>\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -128,29 +128,29 @@ msgstr "Voir la page des applications à l'url apps.owncloud.com" msgid "-licensed by " msgstr "Distribué sous licence , par " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Documentation" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Gérer les gros fichiers" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Poser une question" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problème de connexion à la base de données d'aide." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "S'y rendre manuellement." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Réponse" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -158,62 +158,82 @@ msgid "You have used %s of the available %s" msgstr "Vous avez utilisé %s des %s disponibles" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Clients de synchronisation Mobile et Ordinateur" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Télécharger" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Mot de passe" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Votre mot de passe a été changé" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Impossible de changer votre mot de passe" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Mot de passe actuel" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Nouveau mot de passe" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "Afficher" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Changer de mot de passe" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "E-mail" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Votre adresse e-mail" -#: templates/personal.php:32 +#: templates/personal.php:35 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" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Langue" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Aidez à traduire" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "utilisez cette adresse pour vous connecter à votre ownCloud depuis un explorateur de fichiers" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -20,5 +20,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "URL WebDAV : http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 335d35593ba..aee8d7785c5 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 21:49+0000\n" -"Last-Translator: Miguel Branco \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -117,29 +117,29 @@ msgstr "Vexa a páxina do aplicativo en apps.owncloud.com" msgid "-licensed by " msgstr "-licenciado por" -#: templates/help.php:9 -msgid "Documentation" -msgstr "Documentación" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Xestionar Grandes Ficheiros" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Pregunte" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problemas conectando coa base de datos de axuda" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Ir manualmente." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Resposta" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -147,62 +147,82 @@ msgid "You have used %s of the available %s" msgstr "Tes usados %s do total dispoñíbel de %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Cliente de sincronización de escritorio e móbil" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Descargar" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Contrasinal" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "O seu contrasinal foi cambiado" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Incapaz de trocar o seu contrasinal" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Contrasinal actual" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Novo contrasinal" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "amosar" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Mudar contrasinal" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Correo electrónico" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "O seu enderezo de correo electrónico" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Escriba un enderezo de correo electrónico para habilitar a recuperación do contrasinal" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Idioma" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Axude na tradución" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "utilice este enderezo para conectar ao seu ownCloud no xestor de ficheiros" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "URL WebDAV: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 50e610dd371..f116ca17bb4 100644 --- a/l10n/he/settings.po +++ b/l10n/he/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" -"Last-Translator: Yaron Shahrabani \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -118,29 +118,29 @@ msgstr "צפה בעמוד הישום ב apps.owncloud.com" msgid "-licensed by " msgstr "ברישיון לטובת " -#: templates/help.php:9 -msgid "Documentation" -msgstr "תיעוד" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "ניהול קבצים גדולים" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "שאל שאלה" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "בעיות בהתחברות לבסיס נתוני העזרה" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "גש לשם באופן ידני" +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "מענה" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -148,62 +148,82 @@ msgid "You have used %s of the available %s" msgstr "השתמשת ב־%s מתוך %s הזמינים לך" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "לקוחות סנכרון למחשב שולחני ולנייד" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "הורדה" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "ססמה" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "הססמה שלך הוחלפה" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "לא ניתן לשנות את הססמה שלך" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "ססמה נוכחית" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "ססמה חדשה" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "הצגה" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "שינוי ססמה" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "דוא״ל" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "כתובת הדוא״ל שלך" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "נא למלא את כתובת הדוא״ל שלך כדי לאפשר שחזור ססמה" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "פה" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "עזרה בתרגום" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "השתמש בכתובת זו כדי להתחבר ל־ownCloude שלך ממנהל הקבצים" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 4f0ccd14335..76241d2e5a1 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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -115,28 +115,28 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" +#: templates/help.php:3 +msgid "User Documentation" msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" +#: templates/help.php:4 +msgid "Administrator Documentation" msgstr "" -#: templates/help.php:11 -msgid "Ask a question" +#: templates/help.php:6 +msgid "Online Documentation" msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." +#: templates/help.php:7 +msgid "Forum" msgstr "" -#: templates/help.php:23 -msgid "Go there manually." +#: templates/help.php:9 +msgid "Bugtracker" msgstr "" -#: templates/help.php:31 -msgid "Answer" +#: templates/help.php:11 +msgid "Commercial Support" msgstr "" #: templates/personal.php:8 @@ -145,62 +145,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" +msgid "Clients" msgstr "" #: templates/personal.php:13 -msgid "Download" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "पासवर्ड" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "नया पासवर्ड" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 5410216db21..2597c4cf005 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -118,29 +118,29 @@ msgstr "Pogledajte stranicu s aplikacijama na apps.owncloud.com" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" -msgstr "dokumentacija" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Upravljanje velikih datoteka" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Postavite pitanje" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problem pri spajanju na bazu podataka pomoći" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Idite tamo ručno." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Odgovor" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -148,62 +148,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Desktop i Mobile sinkronizaciji klijenti" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "preuzimanje" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Lozinka" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Nemoguće promijeniti lozinku" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "prikaz" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Izmjena lozinke" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "e-mail adresa" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Vaša e-mail adresa" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Ispunite vase e-mail adresa kako bi se omogućilo oporavak lozinke" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Jezik" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Pomoć prevesti" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "koristite ovu adresu za spajanje na Cloud u vašem upravitelju datoteka" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index f83e6251d1b..b4a0c243974 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -117,29 +117,29 @@ msgstr "Lásd apps.owncloud.com, alkalmazások oldal" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentáció" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Nagy fájlok kezelése" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Tégy fel egy kérdést" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Sikertelen csatlakozás a Súgó adatbázishoz" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Menj oda kézzel" +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Válasz" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -147,62 +147,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Asztali- és mobilkliensek kezelése" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Letöltés" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Jelszó" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Nem lehet megváltoztatni a jelszavad" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Jelenlegi jelszó" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Új jelszó" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "Mutat" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Jelszó megváltoztatása" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Email" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Email címed" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Töltsd ki az email címet, hogy engedélyezhesd a jelszó-visszaállítást" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Nyelv" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Segíts lefordítani!" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "Használd ezt a címet hogy csatlakozz a saját ownCloud rendszeredhez a fájlkezelődben" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 45647784aed..1908def76a4 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -117,29 +117,29 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" -msgstr "Documentation" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" +#: templates/help.php:4 +msgid "Administrator Documentation" msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Facer un question" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." +#: templates/help.php:7 +msgid "Forum" msgstr "" -#: templates/help.php:23 -msgid "Go there manually." +#: templates/help.php:9 +msgid "Bugtracker" msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Responsa" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -147,62 +147,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" +msgid "Clients" msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Discargar" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Contrasigno" -#: templates/personal.php:19 +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Non pote cambiar tu contrasigno" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Contrasigno currente" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Nove contrasigno" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "monstrar" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Cambiar contrasigno" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "E-posta" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Tu adresse de e-posta" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Linguage" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Adjuta a traducer" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "usa iste addresse pro connecter a tu ownCloud in tu administrator de files" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 478557f09e0..cbca52ee8d2 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -119,29 +119,29 @@ msgstr "Lihat halaman aplikasi di apps.owncloud.com" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentasi" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Mengelola berkas besar" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Ajukan pertanyaan" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Bermasalah saat menghubungi database bantuan." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Pergi kesana secara manual." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Jawab" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -149,62 +149,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Klien sync Desktop dan Mobile" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Unduh" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Password" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Tidak dapat merubah password anda" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Password saat ini" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "kata kunci baru" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "perlihatkan" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Rubah password" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Email" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Alamat email anda" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Masukkan alamat email untuk mengaktifkan pemulihan password" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Bantu menerjemahkan" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "gunakan alamat ini untuk terhubung dengan ownCloud anda dalam file manager anda" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index fadc3690e0a..5872b39972e 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-06 00:11+0100\n" -"PO-Revision-Date: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -115,28 +115,28 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" +#: templates/help.php:3 +msgid "User Documentation" msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" +#: templates/help.php:4 +msgid "Administrator Documentation" msgstr "" -#: templates/help.php:11 -msgid "Ask a question" +#: templates/help.php:6 +msgid "Online Documentation" msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." +#: templates/help.php:7 +msgid "Forum" msgstr "" -#: templates/help.php:23 -msgid "Go there manually." +#: templates/help.php:9 +msgid "Bugtracker" msgstr "" -#: templates/help.php:31 -msgid "Answer" +#: templates/help.php:11 +msgid "Commercial Support" msgstr "" #: templates/personal.php:8 @@ -145,62 +145,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" +msgid "Clients" msgstr "" #: templates/personal.php:13 -msgid "Download" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 2313377614a..c678a89ccf9 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -122,29 +122,29 @@ msgstr "Vedere la pagina dell'applicazione su apps.owncloud.com" msgid "-licensed by " msgstr "-licenziato da " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Documentazione" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Gestione file grandi" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Fai una domanda" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problemi di connessione al database di supporto." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Raggiungilo manualmente." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Risposta" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -152,62 +152,82 @@ msgid "You have used %s of the available %s" msgstr "Hai utilizzato %s dei %s disponibili" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Client di sincronizzazione desktop e mobile" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Scaricamento" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Password" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "La tua password è cambiata" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Modifica password non riuscita" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Password attuale" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Nuova password" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "mostra" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Modifica password" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Email" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Il tuo indirizzo email" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Inserisci il tuo indirizzo email per abilitare il recupero della password" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Lingua" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Migliora la traduzione" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "usa questo indirizzo per connetterti al tuo ownCloud dal gestore file" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "URL WebDAV: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 8d92134dba5..e4303fd636b 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -118,29 +118,29 @@ msgstr "apps.owncloud.com でアプリケーションのページを見てくだ msgid "-licensed by " msgstr "-ライセンス: " -#: templates/help.php:9 -msgid "Documentation" -msgstr "ドキュメント" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "大きなファイルを扱うには" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "質問してください" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "ヘルプデータベースへの接続時に問題が発生しました" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "手動で移動してください。" +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "解答" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -148,62 +148,82 @@ msgid "You have used %s of the available %s" msgstr "現在、%s / %s を利用しています" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "デスクトップおよびモバイル用の同期クライアント" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "ダウンロード" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "パスワード" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "パスワードを変更しました" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "パスワードを変更することができません" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "現在のパスワード" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "新しいパスワード" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "表示" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "パスワードを変更" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Email" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "あなたのメールアドレス" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "※パスワード回復を有効にするにはメールアドレスの入力が必要です" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "言語" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "翻訳に協力する" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "ファイルマネージャーであなたのownCloudに接続する際は、このアドレスを使用してください" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the ownCloud commu msgid "Name" msgstr "名前" -#: templates/users.php:23 templates/users.php:77 -msgid "Password" -msgstr "パスワード" - #: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "グループ" diff --git a/l10n/ja_JP/user_webdavauth.po b/l10n/ja_JP/user_webdavauth.po index 7cf5205b76d..5873fda3833 100644 --- a/l10n/ja_JP/user_webdavauth.po +++ b/l10n/ja_JP/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-14 00:02+0100\n" -"PO-Revision-Date: 2012-11-13 03:13+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index b957617cec3..1c117e37a90 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -116,29 +116,29 @@ msgstr "ნახეთ აპლიკაციის გვერდი apps.o msgid "-licensed by " msgstr "-ლიცენსირებულია " -#: templates/help.php:9 -msgid "Documentation" -msgstr "დოკუმენტაცია" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "დიდი ფაილების მენეჯმენტი" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "დასვით შეკითხვა" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "დახმარების ბაზასთან წვდომის პრობლემა" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "წადი იქ შენით." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "პასუხი" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -146,62 +146,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "დესკტოპ და მობილური კლიენტების სინქრონიზაცია" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "ჩამოტვირთვა" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "პაროლი" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "თქვენი პაროლი შეიცვალა" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "თქვენი პაროლი არ შეიცვალა" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "მიმდინარე პაროლი" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "ახალი პაროლი" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "გამოაჩინე" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "პაროლის შეცვლა" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "იმეილი" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "თქვენი იმეილ მისამართი" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "შეავსეთ იმეილ მისამართის ველი პაროლის აღსადგენად" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "ენა" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "თარგმნის დახმარება" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "გამოიყენე შემდეგი მისამართი ownCloud–თან დასაკავშირებლად შენს ფაილმენეჯერში" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 5cf547ad047..f3a933894cc 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/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: 2012-12-10 00:11+0100\n" -"PO-Revision-Date: 2012-12-09 05:40+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -118,29 +118,29 @@ msgstr "apps.owncloud.com에 있는 앱 페이지를 참고하십시오" msgid "-licensed by " msgstr "-라이선스 보유자 " -#: templates/help.php:9 -msgid "Documentation" -msgstr "문서" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "큰 파일 관리" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "질문하기" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "데이터베이스에 연결하는 데 문제가 발생하였습니다." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "직접 갈 수 있습니다." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "대답" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -148,62 +148,82 @@ msgid "You have used %s of the available %s" msgstr "현재 공간 %s/%s을(를) 사용 중입니다" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "데스크톱 및 모바일 동기화 클라이언트" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "다운로드" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "암호" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "암호가 변경되었습니다" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "암호를 변경할 수 없음" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "현재 암호" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "새 암호" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "보이기" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "암호 변경" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "이메일" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "이메일 주소" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오." -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "언어" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "번역 돕기" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "파일 관리자에서 내 ownCloud에 연결할 때 이 주소를 사용하십시오" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the ownCloud 커 msgid "Name" msgstr "이름" -#: templates/users.php:23 templates/users.php:77 -msgid "Password" -msgstr "암호" - #: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "그룹" diff --git a/l10n/ko/user_webdavauth.po b/l10n/ko/user_webdavauth.po index 8eb43e9a757..621bee70462 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-10 00:11+0100\n" -"PO-Revision-Date: 2012-12-09 05:57+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index c64763c9cfc..535d2af3759 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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -115,28 +115,28 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" -msgstr "به‌ڵگه‌نامه" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" +#: templates/help.php:4 +msgid "Administrator Documentation" msgstr "" -#: templates/help.php:11 -msgid "Ask a question" +#: templates/help.php:6 +msgid "Online Documentation" msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." +#: templates/help.php:7 +msgid "Forum" msgstr "" -#: templates/help.php:23 -msgid "Go there manually." +#: templates/help.php:9 +msgid "Bugtracker" msgstr "" -#: templates/help.php:31 -msgid "Answer" +#: templates/help.php:11 +msgid "Commercial Support" msgstr "" #: templates/personal.php:8 @@ -145,62 +145,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" +msgid "Clients" msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "داگرتن" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "وشەی تێپەربو" -#: templates/personal.php:19 +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "وشەی نهێنی نوێ" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "ئیمه‌یل" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:52 +msgid "WebDAV" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" + +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 2b969101b5f..7f7bba58429 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -116,29 +116,29 @@ msgstr "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentatioun" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Grouss Fichieren verwalten" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Stell eng Fro" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problemer sinn opgetrueden beim Versuch sech un d'Hëllef Datebank ze verbannen." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Gei manuell dohinner." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Äntwert" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -146,62 +146,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Desktop an Mobile Syncing Clienten" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Download" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Passwuert" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Konnt däin Passwuert net änneren" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Momentan 't Passwuert" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Neit Passwuert" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "weisen" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Passwuert änneren" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Email" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Deng Email Adress" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Gëff eng Email Adress an fir d'Passwuert recovery ze erlaben" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Sprooch" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Hëllef iwwersetzen" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "benotz dës Adress fir dech un deng ownCloud iwwert däin Datei Manager ze verbannen" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 10dd1bb7eb1..4b5d562b1d0 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -117,29 +117,29 @@ msgstr "" msgid "-licensed by " msgstr "- autorius" -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentacija" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" +#: templates/help.php:4 +msgid "Administrator Documentation" msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Užduoti klausimą" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problemos jungiantis prie duomenų bazės" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." +#: templates/help.php:9 +msgid "Bugtracker" msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Atsakyti" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -147,62 +147,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" +msgid "Clients" msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Atsisiųsti" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Slaptažodis" -#: templates/personal.php:19 +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Jūsų slaptažodis buvo pakeistas" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Neįmanoma pakeisti slaptažodžio" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Dabartinis slaptažodis" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Naujas slaptažodis" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "rodyti" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Pakeisti slaptažodį" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "El. paštas" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Jūsų el. pašto adresas" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Pamiršto slaptažodžio atkūrimui įveskite savo el. pašto adresą" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Kalba" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Padėkite išversti" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "naudokite šį adresą, jei norite pasiekti savo ownCloud per failų tvarkyklę" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" + +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index bb71a36d28a..22fd0c4bb2e 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -117,29 +117,29 @@ msgstr "Apskatie aplikāciju lapu - apps.owncloud.com" msgid "-licensed by " msgstr "-licencēts no " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentācija" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Rīkoties ar apjomīgiem failiem" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Uzdod jautajumu" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problēmas ar datubāzes savienojumu" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Nokļūt tur pašrocīgi" +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Atbildēt" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -147,62 +147,82 @@ msgid "You have used %s of the available %s" msgstr "Jūs lietojat %s no pieejamajiem %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Desktop un mobīlo ierīču sinhronizācijas rīks" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Lejuplādēt" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Parole" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Jūru parole tika nomainīta" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Nav iespējams nomainīt jūsu paroli" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Pašreizējā parole" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Jauna parole" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "parādīt" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Nomainīt paroli" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Epasts" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Jūsu epasta adrese" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Ievadiet epasta adresi, lai vēlak būtu iespēja atgūt paroli, ja būs nepieciešamība" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Valoda" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Palīdzi tulkot" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "izmanto šo adresi lai ielogotos ownCloud no sava failu pārlūka" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the msgid "Name" msgstr "Vārds" -#: templates/users.php:23 templates/users.php:77 -msgid "Password" -msgstr "Parole" - #: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupas" diff --git a/l10n/lv/user_webdavauth.po b/l10n/lv/user_webdavauth.po index afb2045c92c..c2af7da931a 100644 --- a/l10n/lv/user_webdavauth.po +++ b/l10n/lv/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-09 10:06+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 996f3f83928..0dac229dcd7 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/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: 2012-12-18 00:14+0100\n" -"PO-Revision-Date: 2012-12-17 12:13+0000\n" -"Last-Translator: Georgi Stanojevski \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -118,29 +118,29 @@ msgstr "Види ја страницата со апликации на apps.own msgid "-licensed by " msgstr "-лиценцирано од " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Документација" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Управување со големи датотеки" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Постави прашање" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Проблем при поврзување со базата за помош" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Оди таму рачно." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Одговор" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -148,62 +148,82 @@ msgid "You have used %s of the available %s" msgstr "Имате искористено %s од достапните %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Десктоп и мобилник клиенти за синхронизирање" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Преземање" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Лозинка" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Вашата лозинка беше променета." -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Вашата лозинка неможе да се смени" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Моментална лозинка" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "прикажи" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Смени лозинка" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Вашата адреса за е-пошта" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Пополни ја адресата за е-пошта за да може да ја обновуваш лозинката" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Јазик" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Помогни во преводот" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "користете ја оваа адреса во менаџерот за датотеки да се поврзете со Вашиот ownCloud" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 1de42e3e9c3..11b17fa24a9 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -119,29 +119,29 @@ msgstr "Lihat halaman applikasi di apps.owncloud.com" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentasi" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Mengurus Fail Besar" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Tanya soalan" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Masalah menghubung untuk membantu pengkalan data" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Pergi ke sana secara manual" +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Jawapan" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -149,62 +149,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Klien Selarian untuk Desktop dan Mobile" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Muat turun" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Kata laluan " + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Gagal mengubah kata laluan anda " -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Kata laluan semasa" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Kata laluan baru" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "Papar" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Ubah kata laluan" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Emel" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Alamat emel anda" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Isi alamat emel anda untuk membolehkan pemulihan kata laluan" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Bantu terjemah" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "guna alamat ini untuk menyambung owncloud anda dalam pengurus fail anda" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index ab234540e25..f95fe62e3ea 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -122,29 +122,29 @@ msgstr "Se applikasjonens side på apps.owncloud.org" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentasjon" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Håndtere store filer" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Still et spørsmål" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problemer med å koble til hjelp-databasen" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Gå dit manuelt" +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Svar" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -152,62 +152,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Klienter for datamaskiner og mobile enheter" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Last ned" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Passord" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Passord har blitt endret" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Kunne ikke endre passordet ditt" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Nåværende passord" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "vis" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Endre passord" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "E-post" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Din e-postadresse" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Oppi epostadressen du vil tilbakestille passordet for" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Språk" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Bidra til oversettelsen" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "bruk denne adressen for å koble til din ownCloud gjennom filhåndtereren" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 1b28da61ba6..1447d5696c9 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" -"Last-Translator: Len \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -125,29 +125,29 @@ msgstr "Zie de applicatiepagina op apps.owncloud.com" msgid "-licensed by " msgstr "-Gelicenseerd door " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Documentatie" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Instellingen voor grote bestanden" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Stel een vraag" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problemen bij het verbinden met de helpdatabank." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Ga er zelf heen." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Beantwoord" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -155,62 +155,82 @@ msgid "You have used %s of the available %s" msgstr "U heeft %s van de %s beschikbaren gebruikt" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Desktop en mobiele synchronisatie applicaties" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Download" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Wachtwoord" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Je wachtwoord is veranderd" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Niet in staat om uw wachtwoord te wijzigen" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Huidig wachtwoord" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Nieuw wachtwoord" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "weergeven" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Wijzig wachtwoord" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "E-mailadres" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Uw e-mailadres" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Vul een e-mailadres in om wachtwoord reset uit te kunnen voeren" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Taal" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Help met vertalen" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "Gebruik het bovenstaande adres om verbinding te maken met ownCloud in uw bestandbeheerprogramma" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index b38152f949c..e66fabad4ed 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -117,29 +117,29 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" +#: templates/help.php:3 +msgid "User Documentation" msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" +#: templates/help.php:4 +msgid "Administrator Documentation" msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Spør om noko" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problem ved tilkopling til hjelpedatabasen." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Gå der på eigen hand." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Svar" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -147,62 +147,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" +msgid "Clients" msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Last ned" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Passord" -#: templates/personal.php:19 +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Klarte ikkje å endra passordet" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Passord" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "vis" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Endra passord" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Epost" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Din epost addresse" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Fyll inn din e-post addresse for og kunne motta passord tilbakestilling" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Språk" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Hjelp oss å oversett" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "bruk denne adressa for å kopla til ownCloud i filhandsamaren din" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" + +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index a4f159a9c57..ae2f77de6c0 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -116,29 +116,29 @@ msgstr "Agacha la pagina d'applications en cò de apps.owncloud.com" msgid "-licensed by " msgstr "-licençiat per " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Documentacion" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Al bailejar de fichièrs pesucasses" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Respond a una question" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problemas al connectar de la basa de donadas d'ajuda" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Vas çai manualament" +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Responsa" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -146,62 +146,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" +msgid "Clients" msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Avalcarga" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Senhal" -#: templates/personal.php:19 +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Ton senhal a cambiat" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Pas possible de cambiar ton senhal" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Senhal en cors" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Senhal novèl" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "mòstra" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Cambia lo senhal" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Corrièl" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Ton adreiça de corrièl" -#: templates/personal.php:32 +#: templates/personal.php:35 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" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Lenga" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Ajuda a la revirada" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "utiliza aquela adreiça per te connectar al ownCloud amb ton explorator de fichièrs" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index beb685551e5..4c1931f5277 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 10:16+0000\n" -"Last-Translator: Thomasso \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -125,29 +125,29 @@ msgstr "Zobacz stronę aplikacji na apps.owncloud.com" msgid "-licensed by " msgstr "-licencjonowane przez " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentacja" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Zarządzanie dużymi plikami" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Zadaj pytanie" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problem z połączeniem z bazą danych." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Przejdź na stronę ręcznie." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Odpowiedź" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -155,62 +155,82 @@ msgid "You have used %s of the available %s" msgstr "Korzystasz z %s z dostępnych %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Klienci synchronizacji" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Ściągnij" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Hasło" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Twoje hasło zostało zmienione" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Nie można zmienić hasła" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Bieżące hasło" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Nowe hasło" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "Wyświetlanie" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Zmień hasło" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "E-mail" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Adres e-mail użytkownika" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Proszę wprowadzić adres e-mail, aby uzyskać możliwość odzyskania hasła" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Język" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Pomóż w tłumaczeniu" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "Proszę użyć tego adresu, aby uzyskać dostęp do usługi ownCloud w menedżerze plików." +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index 9b602355608..f90f3c11162 100644 --- a/l10n/pl_PL/settings.po +++ b/l10n/pl_PL/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -115,28 +115,28 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" +#: templates/help.php:3 +msgid "User Documentation" msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" +#: templates/help.php:4 +msgid "Administrator Documentation" msgstr "" -#: templates/help.php:11 -msgid "Ask a question" +#: templates/help.php:6 +msgid "Online Documentation" msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." +#: templates/help.php:7 +msgid "Forum" msgstr "" -#: templates/help.php:23 -msgid "Go there manually." +#: templates/help.php:9 +msgid "Bugtracker" msgstr "" -#: templates/help.php:31 -msgid "Answer" +#: templates/help.php:11 +msgid "Commercial Support" msgstr "" #: templates/personal.php:8 @@ -145,62 +145,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" +msgid "Clients" msgstr "" #: templates/personal.php:13 -msgid "Download" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Email" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index a8b2a98a550..84ffc9b282a 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" -"Last-Translator: FredMaranhao \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -124,29 +124,29 @@ msgstr "Ver página do aplicativo em apps.owncloud.com" msgid "-licensed by " msgstr "-licenciado por " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Documentação" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Gerênciando Arquivos Grandes" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Faça uma pergunta" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problemas ao conectar na base de dados." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Ir manualmente." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Resposta" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -154,62 +154,82 @@ msgid "You have used %s of the available %s" msgstr "Você usou %s do seu espaço de %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Sincronizando Desktop e Mobile" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Download" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Senha" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Sua senha foi alterada" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Não é possivel alterar a sua senha" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Senha atual" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Nova senha" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "mostrar" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Alterar senha" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Email" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Seu endereço de email" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Preencha um endereço de email para habilitar a recuperação de senha" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Idioma" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "use este endereço para se conectar ao seu ownCloud no seu gerenciador de arquvos" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "URL do WebDAV: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 38b4491aa64..e5dee687e28 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -120,29 +120,29 @@ msgstr "Ver a página da aplicação em apps.owncloud.com" msgid "-licensed by " msgstr "-licenciado por " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Documentação" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Gestão de ficheiros grandes" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Coloque uma questão" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problemas ao ligar à base de dados de ajuda" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Vá lá manualmente" +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Resposta" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -150,62 +150,82 @@ msgid "You have used %s of the available %s" msgstr "Usou %s do disponivel %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Clientes de sincronização desktop e móvel" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Transferir" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Palavra-chave" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "A sua palavra-passe foi alterada" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Não foi possivel alterar a sua palavra-chave" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Palavra-chave actual" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Nova palavra-chave" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "mostrar" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Alterar palavra-chave" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "endereço de email" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "O seu endereço de email" -#: templates/personal.php:32 +#: templates/personal.php:35 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" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Idioma" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "utilize este endereço para ligar ao seu ownCloud através do seu gestor de ficheiros" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "Endereço WebDAV: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index f963f93caf9..1c57e59c9c5 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -121,29 +121,29 @@ msgstr "Vizualizează pagina applicației pe apps.owncloud.com" msgid "-licensed by " msgstr "-licențiat " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Documetație" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Gestionînd fișiere mari" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Întreabă" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Probleme de conectare la baza de date." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Pe cale manuală." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Răspuns" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -151,62 +151,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Clienți de sincronizare pentru telefon mobil și desktop" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Descărcări" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Parolă" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Parola a fost modificată" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Imposibil de-ați schimbat parola" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Parola curentă" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Noua parolă" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "afișează" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Schimbă parola" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Email" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Adresa ta de email" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Completează o adresă de mail pentru a-ți putea recupera parola" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Limba" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Ajută la traducere" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "folosește această adresă pentru a te conecta la managerul tău de fișiere din ownCloud" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 9d3b7819139..90a09200a89 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-14 00:17+0100\n" -"PO-Revision-Date: 2012-12-13 15:49+0000\n" -"Last-Translator: sam002 \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -126,29 +126,29 @@ msgstr "Смотрите дополнения на apps.owncloud.com" msgid "-licensed by " msgstr " лицензия. Автор " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Документация" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Управление большими файлами" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Задать вопрос" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Проблема соединения с базой данных помощи." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Войти самостоятельно." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Ответ" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -156,62 +156,82 @@ msgid "You have used %s of the available %s" msgstr "Вы использовали %s из доступных %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Клиенты синхронизации для рабочих станций и мобильных устройств" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Загрузка" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Пароль" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Ваш пароль изменён" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Невозможно сменить пароль" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Текущий пароль" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Новый пароль" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "показать" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Сменить пароль" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "e-mail" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Ваш адрес электронной почты" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Введите адрес электронной почты, чтобы появилась возможность восстановления пароля" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Язык" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Помочь с переводом" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "используйте данный адрес для подключения к ownCloud в вашем файловом менеджере" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 74fe2bec5ae..322c4dfdbfa 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 08:06+0000\n" -"Last-Translator: AnnaSch \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -116,29 +116,29 @@ msgstr "Обратитесь к странице приложений на apps. msgid "-licensed by " msgstr "-licensed by " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Документация" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Управление большими файлами" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Задать вопрос" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Проблемы, связанные с разделом Помощь базы данных" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Сделать вручную." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Ответ" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -146,62 +146,82 @@ msgid "You have used %s of the available %s" msgstr "Вы использовали %s из возможных %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Клиенты синхронизации настольной и мобильной систем" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Загрузка" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Пароль" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Ваш пароль был изменен" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Невозможно изменить Ваш пароль" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Текущий пароль" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Новый пароль" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "показать" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Изменить пароль" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Электронная почта" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Адрес Вашей электронной почты" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Введите адрес электронной почты для возможности восстановления пароля" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Язык" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Помогите перевести" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "Используйте этот адрес для соединения с Вашим ownCloud в файловом менеджере" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 1bc5f94e9ad..58e765d3158 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -118,29 +118,29 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" -msgstr "ලේඛන" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "විශාල ගොනු කළමණාකරනය" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "ප්‍රශ්ණයක් අසන්න" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "උදව් දත්ත ගබඩාව හා සම්බන්ධවීමේදී ගැටළු ඇතිවිය." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "ස්වශක්තියෙන් එතැනට යන්න" +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "පිළිතුර" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -148,62 +148,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" +msgid "Clients" msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "භාගත කරන්න" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "මුරපදය" -#: templates/personal.php:19 +#: templates/personal.php:22 msgid "Your password was changed" msgstr "ඔබගේ මුර පදය වෙනස් කෙරුණි" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "මුර පදය වෙනස් කළ නොහැකි විය" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "වත්මන් මුරපදය" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "නව මුරපදය" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "ප්‍රදර්ශනය කිරීම" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "මුරපදය වෙනස් කිරීම" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "විද්‍යුත් තැපෑල" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "ඔබගේ විද්‍යුත් තැපෑල" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "මුරපද ප්‍රතිස්ථාපනය සඳහා විද්‍යුත් තැපැල් විස්තර ලබා දෙන්න" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "භාෂාව" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "පරිවර්ථන සහය" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "ඔබගේ ගොනු කළමනාකරු ownCloudයට සම්බන්ධ කිරීමට මෙම ලිපිනය භාවිතා කරන්න" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV යොමුව: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 111c6ee3ec7..72c5a0b9d42 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" -"Last-Translator: martin \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -120,29 +120,29 @@ msgstr "Pozrite si stránku aplikácií na apps.owncloud.com" msgid "-licensed by " msgstr "-licencované " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentácia" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Správa veľkých súborov" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Opýtať sa otázku" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problémy s pripojením na databázu pomocníka." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Prejsť tam ručne." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Odpoveď" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -150,62 +150,82 @@ msgid "You have used %s of the available %s" msgstr "Použili ste %s z %s dostupných " #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Klienti pre synchronizáciu" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Stiahnúť" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Heslo" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Heslo bolo zmenené" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Nie je možné zmeniť vaše heslo" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Aktuálne heslo" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "zobraziť" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Zmeniť heslo" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Email" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Vaša emailová adresa" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Vyplňte emailovú adresu pre aktivovanie obnovy hesla" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Pomôcť s prekladom" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "použite túto adresu pre spojenie s vaším ownCloud v správcovi súborov" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the komu msgid "Name" msgstr "Meno" -#: templates/users.php:23 templates/users.php:77 -msgid "Password" -msgstr "Heslo" - #: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Skupiny" diff --git a/l10n/sk_SK/user_webdavauth.po b/l10n/sk_SK/user_webdavauth.po index d38bbf56f03..fe313b19276 100644 --- a/l10n/sk_SK/user_webdavauth.po +++ b/l10n/sk_SK/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-02 00:02+0100\n" -"PO-Revision-Date: 2012-12-01 16:41+0000\n" -"Last-Translator: martin \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index bc1c29f4808..9675db5bf52 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-09 00:11+0100\n" -"PO-Revision-Date: 2012-12-07 23:52+0000\n" -"Last-Translator: Peter Peroša \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -119,29 +119,29 @@ msgstr "Obiščite spletno stran programa na apps.owncloud.com" msgid "-licensed by " msgstr "-z dovoljenjem s strani " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentacija" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Upravljanje velikih datotek" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Zastavi vprašanje" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Težave med povezovanjem s podatkovno zbirko pomoči." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Ustvari povezavo ročno." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Odgovor" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -149,62 +149,82 @@ msgid "You have used %s of the available %s" msgstr "Uporabljate %s od razpoložljivih %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Namizni in mobilni odjemalci za usklajevanje" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Prejmi" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Geslo" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Vaše geslo je spremenjeno" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Gesla ni mogoče spremeniti." -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Trenutno geslo" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Novo geslo" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "pokaži" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Spremeni geslo" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Elektronska pošta" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Vaš elektronski poštni naslov" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Vpišite vaš elektronski naslov in s tem omogočite obnovitev gesla" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Jezik" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Pomagajte pri prevajanju" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "Uporabite ta naslov za povezavo do ownCloud v upravljalniku datotek." +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 8857016c268..d5651cf5325 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -115,28 +115,28 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" +#: templates/help.php:3 +msgid "User Documentation" msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" +#: templates/help.php:4 +msgid "Administrator Documentation" msgstr "" -#: templates/help.php:11 -msgid "Ask a question" +#: templates/help.php:6 +msgid "Online Documentation" msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." +#: templates/help.php:7 +msgid "Forum" msgstr "" -#: templates/help.php:23 -msgid "Go there manually." +#: templates/help.php:9 +msgid "Bugtracker" msgstr "" -#: templates/help.php:31 -msgid "Answer" +#: templates/help.php:11 +msgid "Commercial Support" msgstr "" #: templates/personal.php:8 @@ -145,62 +145,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" +msgid "Clients" msgstr "" #: templates/personal.php:13 -msgid "Download" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 3d725b35b08..2d01c631fa5 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-05 00:04+0100\n" -"PO-Revision-Date: 2012-12-04 15:29+0000\n" -"Last-Translator: Kostic \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -117,29 +117,29 @@ msgstr "Погледајте страницу са програмима на app msgid "-licensed by " msgstr "-лиценцирао " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Документација" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Управљање великим датотекама" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Поставите питање" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Проблем у повезивању са базом помоћи" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Отиђите тамо ручно." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Одговор" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -147,62 +147,82 @@ msgid "You have used %s of the available %s" msgstr "Искористили сте %s од дозвољених %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Стони и мобилни клијенти за усклађивање" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Преузимање" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Лозинка" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Лозинка је промењена" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Не могу да изменим вашу лозинку" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Тренутна лозинка" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "прикажи" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Измени лозинку" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Ваша адреса е-поште" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Ун" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Језик" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr " Помозите у превођењу" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "користите ову адресу да би се повезали на ownCloud путем менаџњера фајлова" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index d871fb7eb2b..d8cd86aace3 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -116,29 +116,29 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" +#: templates/help.php:3 +msgid "User Documentation" msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" +#: templates/help.php:4 +msgid "Administrator Documentation" msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Postavite pitanje" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problem u povezivanju sa bazom pomoći" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Otiđite tamo ručno." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Odgovor" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -146,62 +146,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" +msgid "Clients" msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Preuzmi" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Lozinka" -#: templates/personal.php:19 +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Ne mogu da izmenim vašu lozinku" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "prikaži" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Izmeni lozinku" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "E-mail" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Jezik" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "koristite ovu adresu da bi se povezali na ownCloud putem menadžnjera fajlova" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" + +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 1f1645f74eb..facc19476c7 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 19:44+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -122,29 +122,29 @@ msgstr "Se programsida på apps.owncloud.com" msgid "-licensed by " msgstr "-licensierad av " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dokumentation" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Hantering av stora filer" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Ställ en fråga" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Problem med att ansluta till hjälpdatabasen." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Gå dit manuellt." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Svar" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -152,62 +152,82 @@ msgid "You have used %s of the available %s" msgstr "Du har använt %s av tillgängliga %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Synkroniseringsklienter för dator och mobil" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Ladda ner" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Lösenord" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Ditt lösenord har ändrats" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Kunde inte ändra ditt lösenord" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Nuvarande lösenord" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Nytt lösenord" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "visa" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Ändra lösenord" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "E-post" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Din e-postadress" -#: templates/personal.php:32 +#: templates/personal.php:35 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" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Språk" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Hjälp att översätta" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "använd denna adress för att ansluta ownCloud till din filhanterare" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the o msgid "Name" msgstr "Namn" -#: templates/users.php:23 templates/users.php:77 -msgid "Password" -msgstr "Lösenord" - #: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "Grupper" diff --git a/l10n/sv/user_webdavauth.po b/l10n/sv/user_webdavauth.po index ca0db7efe47..b6c5c862388 100644 --- a/l10n/sv/user_webdavauth.po +++ b/l10n/sv/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-13 00:05+0100\n" -"PO-Revision-Date: 2012-11-12 07:44+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 4732ffd51c0..77831e0c91c 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -116,29 +116,29 @@ msgstr "apps.owncloud.com இல் செயலி பக்கத்தை ப msgid "-licensed by " msgstr "-அனுமதி பெற்ற " -#: templates/help.php:9 -msgid "Documentation" -msgstr "ஆவணமாக்கல்" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "பெரிய கோப்புகளை முகாமைப்படுத்தல்" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "வினா ஒன்றை கேட்க" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "தரவுதளத்தை இணைக்கும் உதவியில் பிரச்சினைகள்" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "கைமுறையாக அங்கு செல்க" +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "விடை" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -146,62 +146,82 @@ msgid "You have used %s of the available %s" msgstr "நீங்கள் %s இலுள்ள %sபயன்படுத்தியுள்ளீர்கள்" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "desktop மற்றும் Mobile ஒத்திசைவு சேவைப் பயனாளர்" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "பதிவிறக்குக" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "கடவுச்சொல்" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "உங்களுடைய கடவுச்சொல் மாற்றப்பட்டுள்ளது" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "உங்களுடைய கடவுச்சொல்லை மாற்றமுடியாது" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "தற்போதைய கடவுச்சொல்" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "புதிய கடவுச்சொல்" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "காட்டு" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "கடவுச்சொல்லை மாற்றுக" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "மின்னஞ்சல்" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "உங்களுடைய மின்னஞ்சல் முகவரி" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "கடவுச்சொல் மீள் பெறுவதை இயலுமைப்படுத்துவதற்கு மின்னஞ்சல் முகவரியை இயலுமைப்படுத்துக" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "மொழி" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "மொழிபெயர்க்க உதவி" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "உங்களுடைய கோப்பு முகாமையில் உள்ள உங்களுடைய ownCloud உடன் இணைக்க இந்த முகவரியை பயன்படுத்தவும்" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 10905d6f905..7257ede1892 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\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 a6b3d12b964..ca7511eccaf 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\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 b68931a6b55..384330aba1d 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,14 +21,14 @@ msgstr "" msgid "Encryption" msgstr "" -#: templates/settings.php:4 -msgid "Exclude the following file types from encryption" +#: templates/settings.php:6 +msgid "Enable Encryption" msgstr "" -#: templates/settings.php:5 +#: templates/settings.php:7 msgid "None" msgstr "" #: templates/settings.php:12 -msgid "Enable Encryption" +msgid "Exclude the following file types from encryption" msgstr "" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 66472769286..49ae8e1b274 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -99,7 +99,7 @@ msgid "Users" msgstr "" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "" @@ -111,10 +111,10 @@ msgstr "" msgid "Allow users to mount their own external storage" msgstr "" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 18b11e12304..4249ed53583 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\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 9fd76727d8d..669c85df254 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,7 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 +#: js/settings-personal.js:31 templates/settings-personal.php:7 msgid "Expire all versions" msgstr "" @@ -29,7 +29,7 @@ msgstr "" msgid "Versions" msgstr "" -#: templates/settings-personal.php:7 +#: templates/settings-personal.php:10 msgid "This will delete all existing backup versions of your files" msgstr "" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index faea81edd90..7f4e045559f 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:366 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:367 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:367 files.php:392 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:391 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 25dec8fd9a5..35950821584 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -116,28 +116,28 @@ msgid "" "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" +#: templates/help.php:3 +msgid "User Documentation" msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" +#: templates/help.php:4 +msgid "Administrator Documentation" msgstr "" -#: templates/help.php:11 -msgid "Ask a question" +#: templates/help.php:6 +msgid "Online Documentation" msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." +#: templates/help.php:7 +msgid "Forum" msgstr "" -#: templates/help.php:23 -msgid "Go there manually." +#: templates/help.php:9 +msgid "Bugtracker" msgstr "" -#: templates/help.php:31 -msgid "Answer" +#: templates/help.php:11 +msgid "Commercial Support" msgstr "" #: templates/personal.php:8 @@ -146,62 +146,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" +msgid "Clients" msgstr "" #: templates/personal.php:13 -msgid "Download" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 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 3c6b785b90b..d379ecf13c8 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,5 +18,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials correct." msgstr "" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index d15a654e588..3ca61934b5d 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -118,29 +118,29 @@ msgstr "ดูหน้าแอพพลิเคชั่นที่ apps.own msgid "-licensed by " msgstr "-ลิขสิทธิ์การใช้งานโดย " -#: templates/help.php:9 -msgid "Documentation" -msgstr "เอกสารคู่มือการใช้งาน" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "การจัดการไฟล์ขนาดใหญ่" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "สอบถามข้อมูล" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "เกิดปัญหาในการเชื่อมต่อกับฐานข้อมูลช่วยเหลือ" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "ไปที่นั่นด้วยตนเอง" +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "คำตอบ" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -148,62 +148,82 @@ msgid "You have used %s of the available %s" msgstr "คุณได้ใช้งานไปแล้ว %s จากจำนวนที่สามารถใช้ได้ %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "โปรแกรมเชื่อมข้อมูลไฟล์สำหรับเครื่องเดสก์ท็อปและมือถือ" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "ดาวน์โหลด" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "รหัสผ่าน" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "รหัสผ่านของคุณถูกเปลี่ยนแล้ว" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "รหัสผ่านปัจจุบัน" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "รหัสผ่านใหม่" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "แสดง" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "อีเมล์" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "ที่อยู่อีเมล์ของคุณ" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "กรอกที่อยู่อีเมล์ของคุณเพื่อเปิดให้มีการกู้คืนรหัสผ่านได้" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "ภาษา" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "ช่วยกันแปล" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "ใช้ที่อยู่นี้ในการเชื่อมต่อกับบัญชี ownCloud ของคุณในเครื่องมือจัดการไฟล์ของคุณ" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 2842d1b2d17..8c3872c3864 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-05 00:04+0100\n" -"PO-Revision-Date: 2012-12-04 11:41+0000\n" -"Last-Translator: alpere \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -119,29 +119,29 @@ msgstr "Uygulamanın sayfasına apps.owncloud.com adresinden bakın " msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" -msgstr "Dökümantasyon" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Büyük Dosyaların Yönetimi" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Bir soru sorun" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Yardım veritabanına bağlanmada sorunlar var." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Oraya elle gidin." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Cevap" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -149,62 +149,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Masaüstü ve Mobil Senkron İstemcileri" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "İndir" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Parola" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Şifreniz değiştirildi" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Parolanız değiştirilemiyor" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Mevcut parola" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Yeni parola" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "göster" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Parola değiştir" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Eposta" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Eposta adresiniz" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Parola sıfırlamayı aktifleştirmek için eposta adresi girin" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Dil" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Çevirilere yardım edin" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "bu adresi kullanarak ownCloud unuza dosya yöneticinizle bağlanın" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index a169a56596c..bce528e3b74 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -117,29 +117,29 @@ msgstr "Перегляньте сторінку програм на apps.ownclou msgid "-licensed by " msgstr "-licensed by " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Документація" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Управління великими файлами" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Запитати" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Проблема при з'єднані з базою допомоги" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Перейти вручну." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "Відповідь" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -147,62 +147,82 @@ msgid "You have used %s of the available %s" msgstr "Ви використали %s із доступних %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Настільні та мобільні клієнти синхронізації" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Завантажити" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Пароль" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Ваш пароль змінено" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Не вдалося змінити Ваш пароль" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Поточний пароль" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Новий пароль" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "показати" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Змінити пароль" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Ел.пошта" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Ваша адреса електронної пошти" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "Введіть адресу електронної пошти для відновлення паролю" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Мова" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Допомогти з перекладом" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "використовувати цю адресу для з'єднання з ownCloud у Вашому файловому менеджері" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 63bd843d709..9c6e9741936 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" -"Last-Translator: mattheu_9x \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -121,29 +121,29 @@ msgstr "Xem nhiều ứng dụng hơn tại apps.owncloud.com" msgid "-licensed by " msgstr "-Giấy phép được cấp bởi " -#: templates/help.php:9 -msgid "Documentation" -msgstr "Tài liệu" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "Quản lý tập tin lớn" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "Đặt câu hỏi" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "Vấn đề kết nối đến cơ sở dữ liệu." +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "Đến bằng thủ công." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "trả lời" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -151,62 +151,82 @@ msgid "You have used %s of the available %s" msgstr "Bạn đã sử dụng %s có sẵn %s " #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "Đồng bộ dữ liệu" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "Tải về" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "Mật khẩu" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "Mật khẩu của bạn đã được thay đổi." -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "Không thể đổi mật khẩu" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "Mật khẩu cũ" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "Mật khẩu mới " -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "Hiện" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "Đổi mật khẩu" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Email" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "Email của bạn" -#: templates/personal.php:32 +#: templates/personal.php:35 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" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "Ngôn ngữ" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "Hỗ trợ dịch thuật" -#: templates/personal.php:51 -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 với ownCloud của bạn trong quản lý tập tin " +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 8dee70c1dde..5456b863321 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -117,29 +117,29 @@ msgstr "在owncloud.com上查看应用程序" msgid "-licensed by " msgstr "授权协议 " -#: templates/help.php:9 -msgid "Documentation" -msgstr "文档" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "管理大文件" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "提一个问题" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "连接到帮助数据库时的问题" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "收到转到." +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "回答" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -147,62 +147,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "桌面和移动同步客户端" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "下载" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "密码" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "您的密码以变更" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "不能改变你的密码" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "现在的密码" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "新密码" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "展示" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "改变密码" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "Email" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "你的email地址" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "输入一个邮箱地址以激活密码恢复功能" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "语言" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "使用这个地址和你的文件管理器连接到你的ownCloud" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the ownCloud msgid "Name" msgstr "名字" -#: templates/users.php:23 templates/users.php:77 -msgid "Password" -msgstr "密码" - #: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "组" diff --git a/l10n/zh_CN.GB2312/user_webdavauth.po b/l10n/zh_CN.GB2312/user_webdavauth.po index 43a080af885..4c2e6b80abe 100644 --- a/l10n/zh_CN.GB2312/user_webdavauth.po +++ b/l10n/zh_CN.GB2312/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-09 10:06+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index bd122830a29..9902bd89a23 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/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: 2012-12-04 00:06+0100\n" -"PO-Revision-Date: 2012-12-03 00:58+0000\n" -"Last-Translator: hanfeng \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -120,29 +120,29 @@ msgstr "查看在 app.owncloud.com 的应用程序页面" msgid "-licensed by " msgstr "-核准: " -#: templates/help.php:9 -msgid "Documentation" -msgstr "文档" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "管理大文件" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "提问" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "连接帮助数据库错误 " +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "手动访问" +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "回答" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -150,62 +150,82 @@ msgid "You have used %s of the available %s" msgstr "你已使用 %s,有效空间 %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "桌面和移动设备同步客户端" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "下载" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "密码" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "密码已修改" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "无法修改密码" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "当前密码" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "新密码" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "显示" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "修改密码" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "电子邮件" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "您的电子邮件" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "填写电子邮件地址以启用密码恢复功能" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "语言" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "您可在文件管理器中使用该地址连接到ownCloud" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the ownCloud社 msgid "Name" msgstr "名称" -#: templates/users.php:23 templates/users.php:77 -msgid "Password" -msgstr "密码" - #: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "组" diff --git a/l10n/zh_CN/user_webdavauth.po b/l10n/zh_CN/user_webdavauth.po index cdb6da1b8e1..e8ca11af596 100644 --- a/l10n/zh_CN/user_webdavauth.po +++ b/l10n/zh_CN/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-18 00:01+0100\n" -"PO-Revision-Date: 2012-11-17 11:47+0000\n" -"Last-Translator: hanfeng \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV地址: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index df89b1aac2e..5b1f23f900f 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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -115,28 +115,28 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" +#: templates/help.php:3 +msgid "User Documentation" msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" +#: templates/help.php:4 +msgid "Administrator Documentation" msgstr "" -#: templates/help.php:11 -msgid "Ask a question" +#: templates/help.php:6 +msgid "Online Documentation" msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." +#: templates/help.php:7 +msgid "Forum" msgstr "" -#: templates/help.php:23 -msgid "Go there manually." +#: templates/help.php:9 +msgid "Bugtracker" msgstr "" -#: templates/help.php:31 -msgid "Answer" +#: templates/help.php:11 +msgid "Commercial Support" msgstr "" #: templates/personal.php:8 @@ -145,62 +145,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" +msgid "Clients" msgstr "" #: templates/personal.php:13 -msgid "Download" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index cc8fc8f62b2..71e3aea87af 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" -"Last-Translator: dw4dev \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+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" @@ -121,29 +121,29 @@ msgstr "查看應用程式頁面於 apps.owncloud.com" msgid "-licensed by " msgstr "-核准: " -#: templates/help.php:9 -msgid "Documentation" -msgstr "文件" +#: templates/help.php:3 +msgid "User Documentation" +msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" -msgstr "管理大檔案" +#: templates/help.php:4 +msgid "Administrator Documentation" +msgstr "" -#: templates/help.php:11 -msgid "Ask a question" -msgstr "提問" +#: templates/help.php:6 +msgid "Online Documentation" +msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." -msgstr "連接到求助資料庫時發生問題" +#: templates/help.php:7 +msgid "Forum" +msgstr "" -#: templates/help.php:23 -msgid "Go there manually." -msgstr "手動前往" +#: templates/help.php:9 +msgid "Bugtracker" +msgstr "" -#: templates/help.php:31 -msgid "Answer" -msgstr "答案" +#: templates/help.php:11 +msgid "Commercial Support" +msgstr "" #: templates/personal.php:8 #, php-format @@ -151,62 +151,82 @@ msgid "You have used %s of the available %s" msgstr "您已經使用了 %s ,目前可用空間為 %s" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" -msgstr "桌機與手機同步客戶端" +msgid "Clients" +msgstr "" #: templates/personal.php:13 -msgid "Download" -msgstr "下載" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" +msgstr "" + +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "密碼" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "你的密碼已更改" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "無法變更你的密碼" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "目前密碼" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "新密碼" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "顯示" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "變更密碼" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "電子郵件" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "你的電子郵件信箱" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "請填入電子郵件信箱以便回復密碼" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "語言" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "幫助翻譯" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" -msgstr "使用這個位址去連接到你的私有雲檔案管理員" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" +msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the ownCloud msgid "Name" msgstr "名稱" -#: templates/users.php:23 templates/users.php:77 -msgid "Password" -msgstr "密碼" - #: templates/users.php:26 templates/users.php:78 templates/users.php:98 msgid "Groups" msgstr "群組" diff --git a/l10n/zh_TW/user_webdavauth.po b/l10n/zh_TW/user_webdavauth.po index 5a191f76b2b..0870470a5c2 100644 --- a/l10n/zh_TW/user_webdavauth.po +++ b/l10n/zh_TW/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-11-27 00:10+0100\n" -"PO-Revision-Date: 2012-11-26 09:00+0000\n" -"Last-Translator: sofiasu \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+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" @@ -19,5 +19,12 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" -msgstr "WebDAV 網址 http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." +msgstr "" diff --git a/l10n/zu_ZA/settings.po b/l10n/zu_ZA/settings.po index 34b89c89036..d59859009b5 100644 --- a/l10n/zu_ZA/settings.po +++ b/l10n/zu_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: 2012-12-03 00:04+0100\n" -"PO-Revision-Date: 2012-12-02 03:18+0000\n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:11+0000\n" "Last-Translator: I Robot \n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" @@ -115,28 +115,28 @@ msgstr "" msgid "-licensed by " msgstr "" -#: templates/help.php:9 -msgid "Documentation" +#: templates/help.php:3 +msgid "User Documentation" msgstr "" -#: templates/help.php:10 -msgid "Managing Big Files" +#: templates/help.php:4 +msgid "Administrator Documentation" msgstr "" -#: templates/help.php:11 -msgid "Ask a question" +#: templates/help.php:6 +msgid "Online Documentation" msgstr "" -#: templates/help.php:22 -msgid "Problems connecting to help database." +#: templates/help.php:7 +msgid "Forum" msgstr "" -#: templates/help.php:23 -msgid "Go there manually." +#: templates/help.php:9 +msgid "Bugtracker" msgstr "" -#: templates/help.php:31 -msgid "Answer" +#: templates/help.php:11 +msgid "Commercial Support" msgstr "" #: templates/personal.php:8 @@ -145,62 +145,82 @@ msgid "You have used %s of the available %s" msgstr "" #: templates/personal.php:12 -msgid "Desktop and Mobile Syncing Clients" +msgid "Clients" msgstr "" #: templates/personal.php:13 -msgid "Download" +msgid "Download Desktop Clients" +msgstr "" + +#: templates/personal.php:14 +msgid "Download Android Client" msgstr "" -#: templates/personal.php:19 +#: templates/personal.php:15 +msgid "Download iOS Client" +msgstr "" + +#: templates/personal.php:21 templates/users.php:23 templates/users.php:77 +msgid "Password" +msgstr "" + +#: templates/personal.php:22 msgid "Your password was changed" msgstr "" -#: templates/personal.php:20 +#: templates/personal.php:23 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:21 +#: templates/personal.php:24 msgid "Current password" msgstr "" -#: templates/personal.php:22 +#: templates/personal.php:25 msgid "New password" msgstr "" -#: templates/personal.php:23 +#: templates/personal.php:26 msgid "show" msgstr "" -#: templates/personal.php:24 +#: templates/personal.php:27 msgid "Change password" msgstr "" -#: templates/personal.php:30 +#: templates/personal.php:33 msgid "Email" msgstr "" -#: templates/personal.php:31 +#: templates/personal.php:34 msgid "Your email address" msgstr "" -#: templates/personal.php:32 +#: templates/personal.php:35 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:38 templates/personal.php:39 +#: templates/personal.php:41 templates/personal.php:42 msgid "Language" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Help translate" msgstr "" -#: templates/personal.php:51 -msgid "use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:52 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:54 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/personal.php:63 +msgid "Version" msgstr "" -#: templates/personal.php:61 +#: templates/personal.php:65 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"PO-Revision-Date: 2012-12-19 23:12+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Zulu (South Africa) (http://www.transifex.com/projects/p/owncloud/language/zu_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,5 +18,12 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:4 -msgid "WebDAV URL: http://" +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:6 +msgid "" +"ownCloud will send the user credentials to this URL is interpret http 401 " +"and http 403 as credentials wrong and all other codes as credentials " +"correct." msgstr "" diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 662e69bbfc5..045ee99bb1d 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -6,12 +6,7 @@ "Saving..." => "حفظ", "__language_name__" => "__language_name__", "Select an App" => "إختر تطبيقاً", -"Documentation" => "التوثيق", -"Ask a question" => "إسأل سؤال", -"Problems connecting to help database." => "الاتصال بقاعدة بيانات المساعدة لم يتم بنجاح", -"Go there manually." => "إذهب هنالك بنفسك", -"Answer" => "الجواب", -"Download" => "انزال", +"Password" => "كلمات السر", "Unable to change your password" => "لم يتم تعديل كلمة السر بنجاح", "Current password" => "كلمات السر الحالية", "New password" => "كلمات سر جديدة", @@ -22,9 +17,7 @@ "Fill in an email address to enable password recovery" => "أدخل عنوانك البريدي لتفعيل استرجاع كلمة المرور", "Language" => "اللغة", "Help translate" => "ساعد في الترجمه", -"use this address to connect to your ownCloud in your file manager" => "إستخدم هذا العنوان للإتصال ب ownCloud داخل نظام الملفات ", "Name" => "الاسم", -"Password" => "كلمات السر", "Groups" => "مجموعات", "Create" => "انشئ", "Other" => "شيء آخر", diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index 5a2d882581f..cf95fb061b3 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -9,12 +9,7 @@ "Enable" => "Включване", "Saving..." => "Записване...", "Select an App" => "Изберете програма", -"Documentation" => "Документация", -"Ask a question" => "Задайте въпрос", -"Problems connecting to help database." => "Проблеми при свързване с помощната база", -"Go there manually." => "Отидете ръчно.", -"Answer" => "Отговор", -"Download" => "Изтегляне", +"Password" => "Парола", "Unable to change your password" => "Невъзможна промяна на паролата", "Current password" => "Текуща парола", "New password" => "Нова парола", @@ -25,9 +20,7 @@ "Fill in an email address to enable password recovery" => "Въведете е-поща за възстановяване на паролата", "Language" => "Език", "Help translate" => "Помощ за превода", -"use this address to connect to your ownCloud in your file manager" => "ползвай този адрес за връзка с Вашия ownCloud във файловия мениджър", "Name" => "Име", -"Password" => "Парола", "Groups" => "Групи", "Create" => "Ново", "Default Quota" => "Квота по подразбиране", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index eff84e12de7..257ccc721fb 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -23,15 +23,8 @@ "Select an App" => "Seleccioneu una aplicació", "See application page at apps.owncloud.com" => "Mireu la pàgina d'aplicacions a apps.owncloud.com", "-licensed by " => "-propietat de ", -"Documentation" => "Documentació", -"Managing Big Files" => "Gestió de fitxers grans", -"Ask a question" => "Feu una pregunta", -"Problems connecting to help database." => "Problemes per connectar amb la base de dades d'ajuda.", -"Go there manually." => "Vés-hi manualment.", -"Answer" => "Resposta", "You have used %s of the available %s" => "Heu utilitzat %s d'un total disponible de %s", -"Desktop and Mobile Syncing Clients" => "Clients de sincronització d'escriptori i de mòbil", -"Download" => "Baixada", +"Password" => "Contrasenya", "Your password was changed" => "La seva contrasenya s'ha canviat", "Unable to change your password" => "No s'ha pogut canviar la contrasenya", "Current password" => "Contrasenya actual", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Ompliu el correu electrònic per activar la recuperació de contrasenya", "Language" => "Idioma", "Help translate" => "Ajudeu-nos amb la traducció", -"use this address to connect to your ownCloud in your file manager" => "useu aquesta adreça per connectar-vos a ownCloud des del gestor de fitxers", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desenvolupat per la comunitat ownCloud, el codi font té llicència AGPL.", "Name" => "Nom", -"Password" => "Contrasenya", "Groups" => "Grups", "Create" => "Crea", "Default Quota" => "Quota per defecte", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index ee30583b046..daee91b7158 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -23,15 +23,8 @@ "Select an App" => "Vyberte aplikaci", "See application page at apps.owncloud.com" => "Více na stránce s aplikacemi na apps.owncloud.com", "-licensed by " => "-licencováno ", -"Documentation" => "Dokumentace", -"Managing Big Files" => "Správa velkých souborů", -"Ask a question" => "Zeptat se", -"Problems connecting to help database." => "Problémy s připojením k databázi s nápovědou.", -"Go there manually." => "Přejít ručně.", -"Answer" => "Odpověď", "You have used %s of the available %s" => "Používáte %s z %s dostupných", -"Desktop and Mobile Syncing Clients" => "Klienti pro synchronizaci", -"Download" => "Stáhnout", +"Password" => "Heslo", "Your password was changed" => "Vaše heslo bylo změněno", "Unable to change your password" => "Vaše heslo nelze změnit", "Current password" => "Současné heslo", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Pro povolení změny hesla vyplňte adresu e-mailu", "Language" => "Jazyk", "Help translate" => "Pomoci s překladem", -"use this address to connect to your ownCloud in your file manager" => "tuto adresu použijte pro připojení k ownCloud ve Vašem správci souborů", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Vyvinuto komunitou ownCloud, zdrojový kód je licencován pod AGPL.", "Name" => "Jméno", -"Password" => "Heslo", "Groups" => "Skupiny", "Create" => "Vytvořit", "Default Quota" => "Výchozí kvóta", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 3d82f6e4a0b..6d62e1060b1 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -22,14 +22,7 @@ "Select an App" => "Vælg en App", "See application page at apps.owncloud.com" => "Se applikationens side på apps.owncloud.com", "-licensed by " => "-licenseret af ", -"Documentation" => "Dokumentation", -"Managing Big Files" => "Håndter store filer", -"Ask a question" => "Stil et spørgsmål", -"Problems connecting to help database." => "Problemer med at forbinde til hjælpe-databasen.", -"Go there manually." => "Gå derhen manuelt.", -"Answer" => "Svar", -"Desktop and Mobile Syncing Clients" => "Synkroniserings programmer for desktop og mobil", -"Download" => "Download", +"Password" => "Kodeord", "Your password was changed" => "Din adgangskode blev ændret", "Unable to change your password" => "Ude af stand til at ændre dit kodeord", "Current password" => "Nuværende adgangskode", @@ -41,10 +34,8 @@ "Fill in an email address to enable password recovery" => "Indtast en emailadresse for at kunne få påmindelse om adgangskode", "Language" => "Sprog", "Help translate" => "Hjælp med oversættelsen", -"use this address to connect to your ownCloud in your file manager" => "benyt denne adresse til at forbinde til din ownCloud i din filbrowser", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Udviklet af ownClouds community, og kildekoden er underlagt licensen AGPL.", "Name" => "Navn", -"Password" => "Kodeord", "Groups" => "Grupper", "Create" => "Ny", "Default Quota" => "Standard kvote", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 33de45a9225..3ebf86b4f47 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -23,15 +23,8 @@ "Select an App" => "Wähle eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen findest Du auf apps.owncloud.com", "-licensed by " => "-lizenziert von ", -"Documentation" => "Dokumentation", -"Managing Big Files" => "Große Dateien verwalten", -"Ask a question" => "Stelle eine Frage", -"Problems connecting to help database." => "Probleme bei der Verbindung zur Hilfe-Datenbank.", -"Go there manually." => "Datenbank direkt besuchen.", -"Answer" => "Antwort", "You have used %s of the available %s" => "Du verwendest %s der verfügbaren %s", -"Desktop and Mobile Syncing Clients" => "Desktop- und mobile Clients für die Synchronisation", -"Download" => "Download", +"Password" => "Passwort", "Your password was changed" => "Dein Passwort wurde geändert.", "Unable to change your password" => "Passwort konnte nicht geändert werden", "Current password" => "Aktuelles Passwort", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", "Language" => "Sprache", "Help translate" => "Hilf bei der Übersetzung", -"use this address to connect to your ownCloud in your file manager" => "Verwende diese Adresse, um Deine ownCloud mit Deinem Dateimanager zu verbinden.", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert.", "Name" => "Name", -"Password" => "Passwort", "Groups" => "Gruppen", "Create" => "Anlegen", "Default Quota" => "Standard-Quota", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 9db7cb93c36..0307225f83d 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -23,15 +23,8 @@ "Select an App" => "Wählen Sie eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", "-licensed by " => "-lizenziert von ", -"Documentation" => "Dokumentation", -"Managing Big Files" => "Große Dateien verwalten", -"Ask a question" => "Stellen Sie eine Frage", -"Problems connecting to help database." => "Probleme bei der Verbindung zur Hilfe-Datenbank.", -"Go there manually." => "Datenbank direkt besuchen.", -"Answer" => "Antwort", "You have used %s of the available %s" => "Sie verwenden %s der verfügbaren %s", -"Desktop and Mobile Syncing Clients" => "Desktop- und mobile Clients für die Synchronisation", -"Download" => "Download", +"Password" => "Passwort", "Your password was changed" => "Ihr Passwort wurde geändert.", "Unable to change your password" => "Das Passwort konnte nicht geändert werden", "Current password" => "Aktuelles Passwort", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", "Language" => "Sprache", "Help translate" => "Helfen Sie bei der Übersetzung", -"use this address to connect to your ownCloud in your file manager" => "Benutzen Sie diese Adresse, um Ihre ownCloud mit Ihrem Dateimanager zu verbinden.", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert.", "Name" => "Name", -"Password" => "Passwort", "Groups" => "Gruppen", "Create" => "Anlegen", "Default Quota" => "Standard-Quota", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index ac62453886c..a82d23d10e1 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -23,15 +23,8 @@ "Select an App" => "Επιλέξτε μια Εφαρμογή", "See application page at apps.owncloud.com" => "Δείτε την σελίδα εφαρμογών στο apps.owncloud.com", "-licensed by " => "-άδεια από ", -"Documentation" => "Τεκμηρίωση", -"Managing Big Files" => "Διαχείριση Μεγάλων Αρχείων", -"Ask a question" => "Ρωτήστε μια ερώτηση", -"Problems connecting to help database." => "Προβλήματα κατά τη σύνδεση με τη βάση δεδομένων βοήθειας.", -"Go there manually." => "Χειροκίνητη μετάβαση.", -"Answer" => "Απάντηση", "You have used %s of the available %s" => "Χρησιμοποιήσατε %s από διαθέσιμα %s", -"Desktop and Mobile Syncing Clients" => "Πελάτες συγχρονισμού για Desktop και Mobile", -"Download" => "Λήψη", +"Password" => "Συνθηματικό", "Your password was changed" => "Το συνθηματικό σας έχει αλλάξει", "Unable to change your password" => "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης", "Current password" => "Τρέχων συνθηματικό", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού", "Language" => "Γλώσσα", "Help translate" => "Βοηθήστε στη μετάφραση", -"use this address to connect to your ownCloud in your file manager" => "χρησιμοποιήστε αυτήν τη διεύθυνση για να συνδεθείτε στο ownCloud σας από το διαχειριστή αρχείων σας", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Αναπτύχθηκε από την κοινότητα ownCloud, ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL.", "Name" => "Όνομα", -"Password" => "Συνθηματικό", "Groups" => "Ομάδες", "Create" => "Δημιουργία", "Default Quota" => "Προεπιλεγμένο Όριο", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index e686868e67c..f43af780deb 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -23,15 +23,8 @@ "Select an App" => "Elekti aplikaĵon", "See application page at apps.owncloud.com" => "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com", "-licensed by " => "-permesilhavigita de ", -"Documentation" => "Dokumentaro", -"Managing Big Files" => "Administrante grandajn dosierojn", -"Ask a question" => "Faru demandon", -"Problems connecting to help database." => "Problemoj okazis dum konektado al la helpa datumbazo.", -"Go there manually." => "Iri tien mane.", -"Answer" => "Respondi", "You have used %s of the available %s" => "Vi uzas %s el la haveblaj %s", -"Desktop and Mobile Syncing Clients" => "Labortablaj kaj porteblaj sinkronigoklientoj", -"Download" => "Elŝuti", +"Password" => "Pasvorto", "Your password was changed" => "Via pasvorto ŝanĝiĝis", "Unable to change your password" => "Ne eblis ŝanĝi vian pasvorton", "Current password" => "Nuna pasvorto", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Enigu retpoŝtadreson por kapabligi pasvortan restaŭron", "Language" => "Lingvo", "Help translate" => "Helpu traduki", -"use this address to connect to your ownCloud in your file manager" => "uzu ĉi tiun adreson por konektiĝi al via ownCloud per via dosieradministrilo", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Ellaborita de la komunumo de ownCloud, la fontokodo publikas laŭ la permesilo AGPL.", "Name" => "Nomo", -"Password" => "Pasvorto", "Groups" => "Grupoj", "Create" => "Krei", "Default Quota" => "Defaŭlta kvoto", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 39f88ac4ea2..797b1dfd00a 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -23,15 +23,8 @@ "Select an App" => "Seleccionar una aplicación", "See application page at apps.owncloud.com" => "Echa un vistazo a la web de aplicaciones apps.owncloud.com", "-licensed by " => "-licenciado por ", -"Documentation" => "Documentación", -"Managing Big Files" => "Administra archivos grandes", -"Ask a question" => "Hacer una pregunta", -"Problems connecting to help database." => "Problemas al conectar con la base de datos de ayuda.", -"Go there manually." => "Ir manualmente", -"Answer" => "Respuesta", "You have used %s of the available %s" => "Ha usado %s de %s disponibles", -"Desktop and Mobile Syncing Clients" => "Clientes de sincronización móviles y de escritorio", -"Download" => "Descargar", +"Password" => "Contraseña", "Your password was changed" => "Su contraseña ha sido cambiada", "Unable to change your password" => "No se ha podido cambiar tu contraseña", "Current password" => "Contraseña actual", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Escribe una dirección de correo electrónico para restablecer la contraseña", "Language" => "Idioma", "Help translate" => "Ayúdanos a traducir", -"use this address to connect to your ownCloud in your file manager" => "utiliza esta dirección para conectar a tu ownCloud desde tu gestor de archivos", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL.", "Name" => "Nombre", -"Password" => "Contraseña", "Groups" => "Grupos", "Create" => "Crear", "Default Quota" => "Cuota predeterminada", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index ebbce841a8e..520a720eda6 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -23,15 +23,8 @@ "Select an App" => "Seleccionar una aplicación", "See application page at apps.owncloud.com" => "Mirá la web de aplicaciones apps.owncloud.com", "-licensed by " => "-licenciado por ", -"Documentation" => "Documentación", -"Managing Big Files" => "Administrar archivos grandes", -"Ask a question" => "Hacer una pregunta", -"Problems connecting to help database." => "Problemas al conectar con la base de datos de ayuda.", -"Go there manually." => "Ir de forma manual", -"Answer" => "Respuesta", "You have used %s of the available %s" => "Usaste %s de los %s disponibles", -"Desktop and Mobile Syncing Clients" => "Clientes de sincronización para celulares, tablets y de escritorio", -"Download" => "Descargar", +"Password" => "Contraseña", "Your password was changed" => "Tu contraseña fue cambiada", "Unable to change your password" => "No fue posible cambiar tu contraseña", "Current password" => "Contraseña actual", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Escribí una dirección de correo electrónico para restablecer la contraseña", "Language" => "Idioma", "Help translate" => "Ayudanos a traducir", -"use this address to connect to your ownCloud in your file manager" => "usá esta dirección para conectarte a tu ownCloud desde tu gestor de archivos", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desarrollado por la comunidad ownCloud, el código fuente está bajo licencia AGPL.", "Name" => "Nombre", -"Password" => "Contraseña", "Groups" => "Grupos", "Create" => "Crear", "Default Quota" => "Cuota predeterminada", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 17fd60b9490..cddda0fbb0d 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -22,14 +22,7 @@ "Select an App" => "Vali programm", "See application page at apps.owncloud.com" => "Vaata rakenduste lehte aadressil apps.owncloud.com", "-licensed by " => "-litsenseeritud ", -"Documentation" => "Dokumentatsioon", -"Managing Big Files" => "Suurte failide haldamine", -"Ask a question" => "Küsi küsimus", -"Problems connecting to help database." => "Probleemid abiinfo andmebaasiga ühendumisel.", -"Go there manually." => "Mine sinna käsitsi.", -"Answer" => "Vasta", -"Desktop and Mobile Syncing Clients" => "Töölaua ja mobiiliga sünkroniseerimise rakendused", -"Download" => "Lae alla", +"Password" => "Parool", "Your password was changed" => "Sinu parooli on muudetud", "Unable to change your password" => "Sa ei saa oma parooli muuta", "Current password" => "Praegune parool", @@ -41,9 +34,7 @@ "Fill in an email address to enable password recovery" => "Parooli taastamise sisse lülitamiseks sisesta e-posti aadress", "Language" => "Keel", "Help translate" => "Aita tõlkida", -"use this address to connect to your ownCloud in your file manager" => "kasuta seda aadressi oma ownCloudiga ühendamiseks failihalduriga", "Name" => "Nimi", -"Password" => "Parool", "Groups" => "Grupid", "Create" => "Lisa", "Default Quota" => "Vaikimisi kvoot", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 7d79c79ced3..75cb288a3e3 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -23,15 +23,8 @@ "Select an App" => "Aukeratu programa bat", "See application page at apps.owncloud.com" => "Ikusi programen orria apps.owncloud.com en", "-licensed by " => "-lizentziatua ", -"Documentation" => "Dokumentazioa", -"Managing Big Files" => "Fitxategi handien kudeaketa", -"Ask a question" => "Egin galdera bat", -"Problems connecting to help database." => "Arazoak daude laguntza datubasera konektatzeko.", -"Go there manually." => "Joan hara eskuz.", -"Answer" => "Erantzun", "You have used %s of the available %s" => "Dagoeneko %s erabili duzu eskuragarri duzun %setatik", -"Desktop and Mobile Syncing Clients" => "Mahaigain eta mugikorren sinkronizazio bezeroak", -"Download" => "Deskargatu", +"Password" => "Pasahitza", "Your password was changed" => "Zere pasahitza aldatu da", "Unable to change your password" => "Ezin izan da zure pasahitza aldatu", "Current password" => "Uneko pasahitza", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko", "Language" => "Hizkuntza", "Help translate" => "Lagundu itzultzen", -"use this address to connect to your ownCloud in your file manager" => "erabili helbide hau zure fitxategi kudeatzailean zure ownCloudera konektatzeko", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud komunitateak garatuta, itubruru kodeaAGPL lizentziarekin banatzen da.", "Name" => "Izena", -"Password" => "Pasahitza", "Groups" => "Taldeak", "Create" => "Sortu", "Default Quota" => "Kuota lehentsia", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 3dcb770c730..603fcaf8598 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -13,14 +13,7 @@ "Add your App" => "برنامه خود را بیافزایید", "Select an App" => "یک برنامه انتخاب کنید", "See application page at apps.owncloud.com" => "صفحه این اٌپ را در apps.owncloud.com ببینید", -"Documentation" => "مستندات", -"Managing Big Files" => "مدیریت پرونده های بزرگ", -"Ask a question" => "یک سوال بپرسید", -"Problems connecting to help database." => "مشکلاتی برای وصل شدن به پایگاه داده کمکی", -"Go there manually." => "بروید آنجا به صورت دستی", -"Answer" => "پاسخ", -"Desktop and Mobile Syncing Clients" => " ابزار مدیریت با دسکتاپ و موبایل", -"Download" => "بارگیری", +"Password" => "گذرواژه", "Your password was changed" => "رمز عبور شما تغییر یافت", "Unable to change your password" => "ناتوان در تغییر گذرواژه", "Current password" => "گذرواژه کنونی", @@ -32,9 +25,7 @@ "Fill in an email address to enable password recovery" => "پست الکترونیکی را پرکنید تا بازیابی گذرواژه فعال شود", "Language" => "زبان", "Help translate" => "به ترجمه آن کمک کنید", -"use this address to connect to your ownCloud in your file manager" => "از این نشانی برای وصل شدن به ابرهایتان در مدیرپرونده استفاده کنید", "Name" => "نام", -"Password" => "گذرواژه", "Groups" => "گروه ها", "Create" => "ایجاد کردن", "Default Quota" => "سهم پیش فرض", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index d68ed8ebaae..c11323fd08c 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -23,15 +23,8 @@ "Select an App" => "Valitse sovellus", "See application page at apps.owncloud.com" => "Katso sovellussivu osoitteessa apps.owncloud.com", "-licensed by " => "-lisensoija ", -"Documentation" => "Dokumentaatio", -"Managing Big Files" => "Suurten tiedostojen hallinta", -"Ask a question" => "Kysy jotain", -"Problems connecting to help database." => "Virhe yhdistettäessä tietokantaan.", -"Go there manually." => "Siirry sinne itse.", -"Answer" => "Vastaus", "You have used %s of the available %s" => "Käytössäsi on %s/%s", -"Desktop and Mobile Syncing Clients" => "Tietokoneen ja mobiililaitteiden synkronointisovellukset", -"Download" => "Lataa", +"Password" => "Salasana", "Your password was changed" => "Salasanasi vaihdettiin", "Unable to change your password" => "Salasanaasi ei voitu vaihtaa", "Current password" => "Nykyinen salasana", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa", "Language" => "Kieli", "Help translate" => "Auta kääntämisessä", -"use this address to connect to your ownCloud in your file manager" => "voit yhdistää tiedostonhallintasovelluksellasi ownCloudiin käyttämällä tätä osoitetta", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Kehityksestä on vastannut ownCloud-yhteisö, lähdekoodi on julkaistu lisenssin AGPL alaisena.", "Name" => "Nimi", -"Password" => "Salasana", "Groups" => "Ryhmät", "Create" => "Luo", "Default Quota" => "Oletuskiintiö", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 8e5169fe0f3..06a3e9c6303 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -23,15 +23,8 @@ "Select an App" => "Sélectionner une Application", "See application page at apps.owncloud.com" => "Voir la page des applications à l'url apps.owncloud.com", "-licensed by " => "Distribué sous licence , par ", -"Documentation" => "Documentation", -"Managing Big Files" => "Gérer les gros fichiers", -"Ask a question" => "Poser une question", -"Problems connecting to help database." => "Problème de connexion à la base de données d'aide.", -"Go there manually." => "S'y rendre manuellement.", -"Answer" => "Réponse", "You have used %s of the available %s" => "Vous avez utilisé %s des %s disponibles", -"Desktop and Mobile Syncing Clients" => "Clients de synchronisation Mobile et Ordinateur", -"Download" => "Télécharger", +"Password" => "Mot de passe", "Your password was changed" => "Votre mot de passe a été changé", "Unable to change your password" => "Impossible de changer votre mot de passe", "Current password" => "Mot de passe actuel", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Entrez votre adresse e-mail pour permettre la réinitialisation du mot de passe", "Language" => "Langue", "Help translate" => "Aidez à traduire", -"use this address to connect to your ownCloud in your file manager" => "utilisez cette adresse pour vous connecter à votre ownCloud depuis un explorateur de fichiers", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Développé par la communauté ownCloud, le code source est publié sous license AGPL.", "Name" => "Nom", -"Password" => "Mot de passe", "Groups" => "Groupes", "Create" => "Créer", "Default Quota" => "Quota par défaut", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 1cde895d0d9..a90e8e5b71d 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -23,15 +23,8 @@ "Select an App" => "Escolla un Aplicativo", "See application page at apps.owncloud.com" => "Vexa a páxina do aplicativo en apps.owncloud.com", "-licensed by " => "-licenciado por", -"Documentation" => "Documentación", -"Managing Big Files" => "Xestionar Grandes Ficheiros", -"Ask a question" => "Pregunte", -"Problems connecting to help database." => "Problemas conectando coa base de datos de axuda", -"Go there manually." => "Ir manualmente.", -"Answer" => "Resposta", "You have used %s of the available %s" => "Tes usados %s do total dispoñíbel de %s", -"Desktop and Mobile Syncing Clients" => "Cliente de sincronización de escritorio e móbil", -"Download" => "Descargar", +"Password" => "Contrasinal", "Your password was changed" => "O seu contrasinal foi cambiado", "Unable to change your password" => "Incapaz de trocar o seu contrasinal", "Current password" => "Contrasinal actual", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Escriba un enderezo de correo electrónico para habilitar a recuperación do contrasinal", "Language" => "Idioma", "Help translate" => "Axude na tradución", -"use this address to connect to your ownCloud in your file manager" => "utilice este enderezo para conectar ao seu ownCloud no xestor de ficheiros", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desenvolvido pola comunidade ownCloud, o código fonte está baixo a licenza AGPL.", "Name" => "Nome", -"Password" => "Contrasinal", "Groups" => "Grupos", "Create" => "Crear", "Default Quota" => "Cota por omisión", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index f82cc83d9f7..64ce6a134cd 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -23,15 +23,8 @@ "Select an App" => "בחירת יישום", "See application page at apps.owncloud.com" => "צפה בעמוד הישום ב apps.owncloud.com", "-licensed by " => "ברישיון לטובת ", -"Documentation" => "תיעוד", -"Managing Big Files" => "ניהול קבצים גדולים", -"Ask a question" => "שאל שאלה", -"Problems connecting to help database." => "בעיות בהתחברות לבסיס נתוני העזרה", -"Go there manually." => "גש לשם באופן ידני", -"Answer" => "מענה", "You have used %s of the available %s" => "השתמשת ב־%s מתוך %s הזמינים לך", -"Desktop and Mobile Syncing Clients" => "לקוחות סנכרון למחשב שולחני ולנייד", -"Download" => "הורדה", +"Password" => "ססמה", "Your password was changed" => "הססמה שלך הוחלפה", "Unable to change your password" => "לא ניתן לשנות את הססמה שלך", "Current password" => "ססמה נוכחית", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "נא למלא את כתובת הדוא״ל שלך כדי לאפשר שחזור ססמה", "Language" => "פה", "Help translate" => "עזרה בתרגום", -"use this address to connect to your ownCloud in your file manager" => "השתמש בכתובת זו כדי להתחבר ל־ownCloude שלך ממנהל הקבצים", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "פותח על די קהילתownCloud, קוד המקור מוגן ברישיון AGPL.", "Name" => "שם", -"Password" => "ססמה", "Groups" => "קבוצות", "Create" => "יצירה", "Default Quota" => "מכסת בררת המחדל", diff --git a/settings/l10n/hi.php b/settings/l10n/hi.php index 645b991a912..034ededf5f9 100644 --- a/settings/l10n/hi.php +++ b/settings/l10n/hi.php @@ -1,4 +1,4 @@ "नया पासवर्ड", -"Password" => "पासवर्ड" +"Password" => "पासवर्ड", +"New password" => "नया पासवर्ड" ); diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index 7f2fefb90d5..9db7526b599 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -13,14 +13,7 @@ "Add your App" => "Dodajte vašu aplikaciju", "Select an App" => "Odaberite Aplikaciju", "See application page at apps.owncloud.com" => "Pogledajte stranicu s aplikacijama na apps.owncloud.com", -"Documentation" => "dokumentacija", -"Managing Big Files" => "Upravljanje velikih datoteka", -"Ask a question" => "Postavite pitanje", -"Problems connecting to help database." => "Problem pri spajanju na bazu podataka pomoći", -"Go there manually." => "Idite tamo ručno.", -"Answer" => "Odgovor", -"Desktop and Mobile Syncing Clients" => "Desktop i Mobile sinkronizaciji klijenti", -"Download" => "preuzimanje", +"Password" => "Lozinka", "Unable to change your password" => "Nemoguće promijeniti lozinku", "Current password" => "Trenutna lozinka", "New password" => "Nova lozinka", @@ -31,9 +24,7 @@ "Fill in an email address to enable password recovery" => "Ispunite vase e-mail adresa kako bi se omogućilo oporavak lozinke", "Language" => "Jezik", "Help translate" => "Pomoć prevesti", -"use this address to connect to your ownCloud in your file manager" => "koristite ovu adresu za spajanje na Cloud u vašem upravitelju datoteka", "Name" => "Ime", -"Password" => "Lozinka", "Groups" => "Grupe", "Create" => "Izradi", "Default Quota" => "standardni kvota", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index e587f7107ae..05fa6ef8ccf 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -13,14 +13,7 @@ "Add your App" => "App hozzáadása", "Select an App" => "Egy App kiválasztása", "See application page at apps.owncloud.com" => "Lásd apps.owncloud.com, alkalmazások oldal", -"Documentation" => "Dokumentáció", -"Managing Big Files" => "Nagy fájlok kezelése", -"Ask a question" => "Tégy fel egy kérdést", -"Problems connecting to help database." => "Sikertelen csatlakozás a Súgó adatbázishoz", -"Go there manually." => "Menj oda kézzel", -"Answer" => "Válasz", -"Desktop and Mobile Syncing Clients" => "Asztali- és mobilkliensek kezelése", -"Download" => "Letöltés", +"Password" => "Jelszó", "Unable to change your password" => "Nem lehet megváltoztatni a jelszavad", "Current password" => "Jelenlegi jelszó", "New password" => "Új jelszó", @@ -31,9 +24,7 @@ "Fill in an email address to enable password recovery" => "Töltsd ki az email címet, hogy engedélyezhesd a jelszó-visszaállítást", "Language" => "Nyelv", "Help translate" => "Segíts lefordítani!", -"use this address to connect to your ownCloud in your file manager" => "Használd ezt a címet hogy csatlakozz a saját ownCloud rendszeredhez a fájlkezelődben", "Name" => "Név", -"Password" => "Jelszó", "Groups" => "Csoportok", "Create" => "Létrehozás", "Default Quota" => "Alapértelmezett kvóta", diff --git a/settings/l10n/ia.php b/settings/l10n/ia.php index c5f4e7eaf24..ec25c3ae217 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -5,10 +5,7 @@ "__language_name__" => "Interlingua", "Add your App" => "Adder tu application", "Select an App" => "Selectionar un app", -"Documentation" => "Documentation", -"Ask a question" => "Facer un question", -"Answer" => "Responsa", -"Download" => "Discargar", +"Password" => "Contrasigno", "Unable to change your password" => "Non pote cambiar tu contrasigno", "Current password" => "Contrasigno currente", "New password" => "Nove contrasigno", @@ -18,9 +15,7 @@ "Your email address" => "Tu adresse de e-posta", "Language" => "Linguage", "Help translate" => "Adjuta a traducer", -"use this address to connect to your ownCloud in your file manager" => "usa iste addresse pro connecter a tu ownCloud in tu administrator de files", "Name" => "Nomine", -"Password" => "Contrasigno", "Groups" => "Gruppos", "Create" => "Crear", "Default Quota" => "Quota predeterminate", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index ad89a4659d0..62184d3e8f1 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -12,14 +12,7 @@ "Add your App" => "Tambahkan App anda", "Select an App" => "Pilih satu aplikasi", "See application page at apps.owncloud.com" => "Lihat halaman aplikasi di apps.owncloud.com", -"Documentation" => "Dokumentasi", -"Managing Big Files" => "Mengelola berkas besar", -"Ask a question" => "Ajukan pertanyaan", -"Problems connecting to help database." => "Bermasalah saat menghubungi database bantuan.", -"Go there manually." => "Pergi kesana secara manual.", -"Answer" => "Jawab", -"Desktop and Mobile Syncing Clients" => "Klien sync Desktop dan Mobile", -"Download" => "Unduh", +"Password" => "Password", "Unable to change your password" => "Tidak dapat merubah password anda", "Current password" => "Password saat ini", "New password" => "kata kunci baru", @@ -30,9 +23,7 @@ "Fill in an email address to enable password recovery" => "Masukkan alamat email untuk mengaktifkan pemulihan password", "Language" => "Bahasa", "Help translate" => "Bantu menerjemahkan", -"use this address to connect to your ownCloud in your file manager" => "gunakan alamat ini untuk terhubung dengan ownCloud anda dalam file manager anda", "Name" => "Nama", -"Password" => "Password", "Groups" => "Group", "Create" => "Buat", "Default Quota" => "Kuota default", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index fa24156b589..5bbbbf591c3 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -23,15 +23,8 @@ "Select an App" => "Seleziona un'applicazione", "See application page at apps.owncloud.com" => "Vedere la pagina dell'applicazione su apps.owncloud.com", "-licensed by " => "-licenziato da ", -"Documentation" => "Documentazione", -"Managing Big Files" => "Gestione file grandi", -"Ask a question" => "Fai una domanda", -"Problems connecting to help database." => "Problemi di connessione al database di supporto.", -"Go there manually." => "Raggiungilo manualmente.", -"Answer" => "Risposta", "You have used %s of the available %s" => "Hai utilizzato %s dei %s disponibili", -"Desktop and Mobile Syncing Clients" => "Client di sincronizzazione desktop e mobile", -"Download" => "Scaricamento", +"Password" => "Password", "Your password was changed" => "La tua password è cambiata", "Unable to change your password" => "Modifica password non riuscita", "Current password" => "Password attuale", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Inserisci il tuo indirizzo email per abilitare il recupero della password", "Language" => "Lingua", "Help translate" => "Migliora la traduzione", -"use this address to connect to your ownCloud in your file manager" => "usa questo indirizzo per connetterti al tuo ownCloud dal gestore file", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Sviluppato dalla comunità di ownCloud, il codice sorgente è licenziato nei termini della AGPL.", "Name" => "Nome", -"Password" => "Password", "Groups" => "Gruppi", "Create" => "Crea", "Default Quota" => "Quota predefinita", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 098cce843d7..20f61eac15a 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -23,15 +23,8 @@ "Select an App" => "アプリを選択してください", "See application page at apps.owncloud.com" => "apps.owncloud.com でアプリケーションのページを見てください", "-licensed by " => "-ライセンス: ", -"Documentation" => "ドキュメント", -"Managing Big Files" => "大きなファイルを扱うには", -"Ask a question" => "質問してください", -"Problems connecting to help database." => "ヘルプデータベースへの接続時に問題が発生しました", -"Go there manually." => "手動で移動してください。", -"Answer" => "解答", "You have used %s of the available %s" => "現在、%s / %s を利用しています", -"Desktop and Mobile Syncing Clients" => "デスクトップおよびモバイル用の同期クライアント", -"Download" => "ダウンロード", +"Password" => "パスワード", "Your password was changed" => "パスワードを変更しました", "Unable to change your password" => "パスワードを変更することができません", "Current password" => "現在のパスワード", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "※パスワード回復を有効にするにはメールアドレスの入力が必要です", "Language" => "言語", "Help translate" => "翻訳に協力する", -"use this address to connect to your ownCloud in your file manager" => "ファイルマネージャーであなたのownCloudに接続する際は、このアドレスを使用してください", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud communityにより開発されています、ソースコードライセンスは、AGPL ライセンスにより提供されています。", "Name" => "名前", -"Password" => "パスワード", "Groups" => "グループ", "Create" => "作成", "Default Quota" => "デフォルトのクォータサイズ", diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index d3ad88fe95f..39778c939c0 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -22,14 +22,7 @@ "Select an App" => "აირჩიეთ აპლიკაცია", "See application page at apps.owncloud.com" => "ნახეთ აპლიკაციის გვერდი apps.owncloud.com –ზე", "-licensed by " => "-ლიცენსირებულია ", -"Documentation" => "დოკუმენტაცია", -"Managing Big Files" => "დიდი ფაილების მენეჯმენტი", -"Ask a question" => "დასვით შეკითხვა", -"Problems connecting to help database." => "დახმარების ბაზასთან წვდომის პრობლემა", -"Go there manually." => "წადი იქ შენით.", -"Answer" => "პასუხი", -"Desktop and Mobile Syncing Clients" => "დესკტოპ და მობილური კლიენტების სინქრონიზაცია", -"Download" => "ჩამოტვირთვა", +"Password" => "პაროლი", "Your password was changed" => "თქვენი პაროლი შეიცვალა", "Unable to change your password" => "თქვენი პაროლი არ შეიცვალა", "Current password" => "მიმდინარე პაროლი", @@ -41,9 +34,7 @@ "Fill in an email address to enable password recovery" => "შეავსეთ იმეილ მისამართის ველი პაროლის აღსადგენად", "Language" => "ენა", "Help translate" => "თარგმნის დახმარება", -"use this address to connect to your ownCloud in your file manager" => "გამოიყენე შემდეგი მისამართი ownCloud–თან დასაკავშირებლად შენს ფაილმენეჯერში", "Name" => "სახელი", -"Password" => "პაროლი", "Groups" => "ჯგუფი", "Create" => "შექმნა", "Default Quota" => "საწყისი ქვოტა", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 7e9ba19a8fd..52248abebf8 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -23,15 +23,8 @@ "Select an App" => "앱 선택", "See application page at apps.owncloud.com" => "apps.owncloud.com에 있는 앱 페이지를 참고하십시오", "-licensed by " => "-라이선스 보유자 ", -"Documentation" => "문서", -"Managing Big Files" => "큰 파일 관리", -"Ask a question" => "질문하기", -"Problems connecting to help database." => "데이터베이스에 연결하는 데 문제가 발생하였습니다.", -"Go there manually." => "직접 갈 수 있습니다.", -"Answer" => "대답", "You have used %s of the available %s" => "현재 공간 %s/%s을(를) 사용 중입니다", -"Desktop and Mobile Syncing Clients" => "데스크톱 및 모바일 동기화 클라이언트", -"Download" => "다운로드", +"Password" => "암호", "Your password was changed" => "암호가 변경되었습니다", "Unable to change your password" => "암호를 변경할 수 없음", "Current password" => "현재 암호", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오.", "Language" => "언어", "Help translate" => "번역 돕기", -"use this address to connect to your ownCloud in your file manager" => "파일 관리자에서 내 ownCloud에 연결할 때 이 주소를 사용하십시오", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud 커뮤니티에 의해서 개발되었습니다. 원본 코드AGPL에 따라 사용이 허가됩니다.", "Name" => "이름", -"Password" => "암호", "Groups" => "그룹", "Create" => "만들기", "Default Quota" => "기본 할당량", diff --git a/settings/l10n/ku_IQ.php b/settings/l10n/ku_IQ.php index b4bdf2a6ced..6a4996e8252 100644 --- a/settings/l10n/ku_IQ.php +++ b/settings/l10n/ku_IQ.php @@ -1,10 +1,8 @@ "چالاککردن", "Saving..." => "پاشکه‌وتده‌کات...", -"Documentation" => "به‌ڵگه‌نامه", -"Download" => "داگرتن", +"Password" => "وشەی تێپەربو", "New password" => "وشەی نهێنی نوێ", "Email" => "ئیمه‌یل", -"Name" => "ناو", -"Password" => "وشەی تێپەربو" +"Name" => "ناو" ); diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index 440b81d44c9..f26a4b53c9d 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -13,14 +13,7 @@ "Add your App" => "Setz deng App bei", "Select an App" => "Wiel eng Applikatioun aus", "See application page at apps.owncloud.com" => "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un", -"Documentation" => "Dokumentatioun", -"Managing Big Files" => "Grouss Fichieren verwalten", -"Ask a question" => "Stell eng Fro", -"Problems connecting to help database." => "Problemer sinn opgetrueden beim Versuch sech un d'Hëllef Datebank ze verbannen.", -"Go there manually." => "Gei manuell dohinner.", -"Answer" => "Äntwert", -"Desktop and Mobile Syncing Clients" => "Desktop an Mobile Syncing Clienten", -"Download" => "Download", +"Password" => "Passwuert", "Unable to change your password" => "Konnt däin Passwuert net änneren", "Current password" => "Momentan 't Passwuert", "New password" => "Neit Passwuert", @@ -31,9 +24,7 @@ "Fill in an email address to enable password recovery" => "Gëff eng Email Adress an fir d'Passwuert recovery ze erlaben", "Language" => "Sprooch", "Help translate" => "Hëllef iwwersetzen", -"use this address to connect to your ownCloud in your file manager" => "benotz dës Adress fir dech un deng ownCloud iwwert däin Datei Manager ze verbannen", "Name" => "Numm", -"Password" => "Passwuert", "Groups" => "Gruppen", "Create" => "Erstellen", "Default Quota" => "Standard Quota", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 6399b5b1b49..5d6e5164b23 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -15,11 +15,7 @@ "More Apps" => "Daugiau aplikacijų", "Select an App" => "Pasirinkite programą", "-licensed by " => "- autorius", -"Documentation" => "Dokumentacija", -"Ask a question" => "Užduoti klausimą", -"Problems connecting to help database." => "Problemos jungiantis prie duomenų bazės", -"Answer" => "Atsakyti", -"Download" => "Atsisiųsti", +"Password" => "Slaptažodis", "Your password was changed" => "Jūsų slaptažodis buvo pakeistas", "Unable to change your password" => "Neįmanoma pakeisti slaptažodžio", "Current password" => "Dabartinis slaptažodis", @@ -31,9 +27,7 @@ "Fill in an email address to enable password recovery" => "Pamiršto slaptažodžio atkūrimui įveskite savo el. pašto adresą", "Language" => "Kalba", "Help translate" => "Padėkite išversti", -"use this address to connect to your ownCloud in your file manager" => "naudokite šį adresą, jei norite pasiekti savo ownCloud per failų tvarkyklę", "Name" => "Vardas", -"Password" => "Slaptažodis", "Groups" => "Grupės", "Create" => "Sukurti", "Default Quota" => "Numatytoji kvota", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index 13f4483f1d2..3f45d669b59 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -22,15 +22,8 @@ "Select an App" => "Izvēlies aplikāciju", "See application page at apps.owncloud.com" => "Apskatie aplikāciju lapu - apps.owncloud.com", "-licensed by " => "-licencēts no ", -"Documentation" => "Dokumentācija", -"Managing Big Files" => "Rīkoties ar apjomīgiem failiem", -"Ask a question" => "Uzdod jautajumu", -"Problems connecting to help database." => "Problēmas ar datubāzes savienojumu", -"Go there manually." => "Nokļūt tur pašrocīgi", -"Answer" => "Atbildēt", "You have used %s of the available %s" => "Jūs lietojat %s no pieejamajiem %s", -"Desktop and Mobile Syncing Clients" => "Desktop un mobīlo ierīču sinhronizācijas rīks", -"Download" => "Lejuplādēt", +"Password" => "Parole", "Your password was changed" => "Jūru parole tika nomainīta", "Unable to change your password" => "Nav iespējams nomainīt jūsu paroli", "Current password" => "Pašreizējā parole", @@ -42,10 +35,8 @@ "Fill in an email address to enable password recovery" => "Ievadiet epasta adresi, lai vēlak būtu iespēja atgūt paroli, ja būs nepieciešamība", "Language" => "Valoda", "Help translate" => "Palīdzi tulkot", -"use this address to connect to your ownCloud in your file manager" => "izmanto šo adresi lai ielogotos ownCloud no sava failu pārlūka", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "IzstrādājusiownCloud kopiena,pirmkodukurš ir licencēts zem AGPL.", "Name" => "Vārds", -"Password" => "Parole", "Groups" => "Grupas", "Create" => "Izveidot", "Default Quota" => "Apjoms pēc noklusējuma", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 98465cbf1c7..8039422e7e4 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -23,15 +23,8 @@ "Select an App" => "Избери аппликација", "See application page at apps.owncloud.com" => "Види ја страницата со апликации на apps.owncloud.com", "-licensed by " => "-лиценцирано од ", -"Documentation" => "Документација", -"Managing Big Files" => "Управување со големи датотеки", -"Ask a question" => "Постави прашање", -"Problems connecting to help database." => "Проблем при поврзување со базата за помош", -"Go there manually." => "Оди таму рачно.", -"Answer" => "Одговор", "You have used %s of the available %s" => "Имате искористено %s од достапните %s", -"Desktop and Mobile Syncing Clients" => "Десктоп и мобилник клиенти за синхронизирање", -"Download" => "Преземање", +"Password" => "Лозинка", "Your password was changed" => "Вашата лозинка беше променета.", "Unable to change your password" => "Вашата лозинка неможе да се смени", "Current password" => "Моментална лозинка", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Пополни ја адресата за е-пошта за да може да ја обновуваш лозинката", "Language" => "Јазик", "Help translate" => "Помогни во преводот", -"use this address to connect to your ownCloud in your file manager" => "користете ја оваа адреса во менаџерот за датотеки да се поврзете со Вашиот ownCloud", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Развој од ownCloud заедницата, изворниот код е лиценциран соAGPL.", "Name" => "Име", -"Password" => "Лозинка", "Groups" => "Групи", "Create" => "Создај", "Default Quota" => "Предефинирана квота", diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index 5de247110bb..11d279e3e53 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -12,14 +12,7 @@ "Add your App" => "Tambah apps anda", "Select an App" => "Pilih aplikasi", "See application page at apps.owncloud.com" => "Lihat halaman applikasi di apps.owncloud.com", -"Documentation" => "Dokumentasi", -"Managing Big Files" => "Mengurus Fail Besar", -"Ask a question" => "Tanya soalan", -"Problems connecting to help database." => "Masalah menghubung untuk membantu pengkalan data", -"Go there manually." => "Pergi ke sana secara manual", -"Answer" => "Jawapan", -"Desktop and Mobile Syncing Clients" => "Klien Selarian untuk Desktop dan Mobile", -"Download" => "Muat turun", +"Password" => "Kata laluan ", "Unable to change your password" => "Gagal mengubah kata laluan anda ", "Current password" => "Kata laluan semasa", "New password" => "Kata laluan baru", @@ -30,9 +23,7 @@ "Fill in an email address to enable password recovery" => "Isi alamat emel anda untuk membolehkan pemulihan kata laluan", "Language" => "Bahasa", "Help translate" => "Bantu terjemah", -"use this address to connect to your ownCloud in your file manager" => "guna alamat ini untuk menyambung owncloud anda dalam pengurus fail anda", "Name" => "Nama", -"Password" => "Kata laluan ", "Groups" => "Kumpulan", "Create" => "Buat", "Default Quota" => "Kuota Lalai", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 23618fc3024..5f2f3c3db3f 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -21,14 +21,7 @@ "More Apps" => "Flere Apps", "Select an App" => "Velg en app", "See application page at apps.owncloud.com" => "Se applikasjonens side på apps.owncloud.org", -"Documentation" => "Dokumentasjon", -"Managing Big Files" => "Håndtere store filer", -"Ask a question" => "Still et spørsmål", -"Problems connecting to help database." => "Problemer med å koble til hjelp-databasen", -"Go there manually." => "Gå dit manuelt", -"Answer" => "Svar", -"Desktop and Mobile Syncing Clients" => "Klienter for datamaskiner og mobile enheter", -"Download" => "Last ned", +"Password" => "Passord", "Your password was changed" => "Passord har blitt endret", "Unable to change your password" => "Kunne ikke endre passordet ditt", "Current password" => "Nåværende passord", @@ -40,9 +33,7 @@ "Fill in an email address to enable password recovery" => "Oppi epostadressen du vil tilbakestille passordet for", "Language" => "Språk", "Help translate" => "Bidra til oversettelsen", -"use this address to connect to your ownCloud in your file manager" => "bruk denne adressen for å koble til din ownCloud gjennom filhåndtereren", "Name" => "Navn", -"Password" => "Passord", "Groups" => "Grupper", "Create" => "Opprett", "Default Quota" => "Standard Kvote", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index f419ecf74ed..7ce49f0c59f 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -23,15 +23,8 @@ "Select an App" => "Selecteer een app", "See application page at apps.owncloud.com" => "Zie de applicatiepagina op apps.owncloud.com", "-licensed by " => "-Gelicenseerd door ", -"Documentation" => "Documentatie", -"Managing Big Files" => "Instellingen voor grote bestanden", -"Ask a question" => "Stel een vraag", -"Problems connecting to help database." => "Problemen bij het verbinden met de helpdatabank.", -"Go there manually." => "Ga er zelf heen.", -"Answer" => "Beantwoord", "You have used %s of the available %s" => "U heeft %s van de %s beschikbaren gebruikt", -"Desktop and Mobile Syncing Clients" => "Desktop en mobiele synchronisatie applicaties", -"Download" => "Download", +"Password" => "Wachtwoord", "Your password was changed" => "Je wachtwoord is veranderd", "Unable to change your password" => "Niet in staat om uw wachtwoord te wijzigen", "Current password" => "Huidig wachtwoord", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Vul een e-mailadres in om wachtwoord reset uit te kunnen voeren", "Language" => "Taal", "Help translate" => "Help met vertalen", -"use this address to connect to your ownCloud in your file manager" => "Gebruik het bovenstaande adres om verbinding te maken met ownCloud in uw bestandbeheerprogramma", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Ontwikkeld door de ownCloud gemeenschap, de bron code is gelicenseerd onder de AGPL.", "Name" => "Naam", -"Password" => "Wachtwoord", "Groups" => "Groepen", "Create" => "Creëer", "Default Quota" => "Standaard limiet", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 5f9d7605cc6..0865d28a66f 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -10,11 +10,7 @@ "Enable" => "Slå på", "__language_name__" => "Nynorsk", "Select an App" => "Vel ein applikasjon", -"Ask a question" => "Spør om noko", -"Problems connecting to help database." => "Problem ved tilkopling til hjelpedatabasen.", -"Go there manually." => "Gå der på eigen hand.", -"Answer" => "Svar", -"Download" => "Last ned", +"Password" => "Passord", "Unable to change your password" => "Klarte ikkje å endra passordet", "Current password" => "Passord", "New password" => "Nytt passord", @@ -25,9 +21,7 @@ "Fill in an email address to enable password recovery" => "Fyll inn din e-post addresse for og kunne motta passord tilbakestilling", "Language" => "Språk", "Help translate" => "Hjelp oss å oversett", -"use this address to connect to your ownCloud in your file manager" => "bruk denne adressa for å kopla til ownCloud i filhandsamaren din", "Name" => "Namn", -"Password" => "Passord", "Groups" => "Grupper", "Create" => "Lag", "Other" => "Anna", diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php index f16f5cc91ae..66839eb3812 100644 --- a/settings/l10n/oc.php +++ b/settings/l10n/oc.php @@ -21,13 +21,7 @@ "Select an App" => "Selecciona una applicacion", "See application page at apps.owncloud.com" => "Agacha la pagina d'applications en cò de apps.owncloud.com", "-licensed by " => "-licençiat per ", -"Documentation" => "Documentacion", -"Managing Big Files" => "Al bailejar de fichièrs pesucasses", -"Ask a question" => "Respond a una question", -"Problems connecting to help database." => "Problemas al connectar de la basa de donadas d'ajuda", -"Go there manually." => "Vas çai manualament", -"Answer" => "Responsa", -"Download" => "Avalcarga", +"Password" => "Senhal", "Your password was changed" => "Ton senhal a cambiat", "Unable to change your password" => "Pas possible de cambiar ton senhal", "Current password" => "Senhal en cors", @@ -39,9 +33,7 @@ "Fill in an email address to enable password recovery" => "Emplena una adreiça de corrièl per permetre lo mandadís del senhal perdut", "Language" => "Lenga", "Help translate" => "Ajuda a la revirada", -"use this address to connect to your ownCloud in your file manager" => "utiliza aquela adreiça per te connectar al ownCloud amb ton explorator de fichièrs", "Name" => "Nom", -"Password" => "Senhal", "Groups" => "Grops", "Create" => "Crea", "Default Quota" => "Quota per defaut", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index e17e3c00e53..ad4ba8a946e 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -23,15 +23,8 @@ "Select an App" => "Zaznacz aplikacje", "See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", "-licensed by " => "-licencjonowane przez ", -"Documentation" => "Dokumentacja", -"Managing Big Files" => "Zarządzanie dużymi plikami", -"Ask a question" => "Zadaj pytanie", -"Problems connecting to help database." => "Problem z połączeniem z bazą danych.", -"Go there manually." => "Przejdź na stronę ręcznie.", -"Answer" => "Odpowiedź", "You have used %s of the available %s" => "Korzystasz z %s z dostępnych %s", -"Desktop and Mobile Syncing Clients" => "Klienci synchronizacji", -"Download" => "Ściągnij", +"Password" => "Hasło", "Your password was changed" => "Twoje hasło zostało zmienione", "Unable to change your password" => "Nie można zmienić hasła", "Current password" => "Bieżące hasło", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Proszę wprowadzić adres e-mail, aby uzyskać możliwość odzyskania hasła", "Language" => "Język", "Help translate" => "Pomóż w tłumaczeniu", -"use this address to connect to your ownCloud in your file manager" => "Proszę użyć tego adresu, aby uzyskać dostęp do usługi ownCloud w menedżerze plików.", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Stwirzone przez społeczność ownCloud, the kod źródłowy na licencji AGPL.", "Name" => "Nazwa", -"Password" => "Hasło", "Groups" => "Grupy", "Create" => "Utwórz", "Default Quota" => "Domyślny udział", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index d09e867f7f2..a9dee157b77 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -23,15 +23,8 @@ "Select an App" => "Selecione uma Aplicação", "See application page at apps.owncloud.com" => "Ver página do aplicativo em apps.owncloud.com", "-licensed by " => "-licenciado por ", -"Documentation" => "Documentação", -"Managing Big Files" => "Gerênciando Arquivos Grandes", -"Ask a question" => "Faça uma pergunta", -"Problems connecting to help database." => "Problemas ao conectar na base de dados.", -"Go there manually." => "Ir manualmente.", -"Answer" => "Resposta", "You have used %s of the available %s" => "Você usou %s do seu espaço de %s", -"Desktop and Mobile Syncing Clients" => "Sincronizando Desktop e Mobile", -"Download" => "Download", +"Password" => "Senha", "Your password was changed" => "Sua senha foi alterada", "Unable to change your password" => "Não é possivel alterar a sua senha", "Current password" => "Senha atual", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Preencha um endereço de email para habilitar a recuperação de senha", "Language" => "Idioma", "Help translate" => "Ajude a traduzir", -"use this address to connect to your ownCloud in your file manager" => "use este endereço para se conectar ao seu ownCloud no seu gerenciador de arquvos", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desenvolvido pela comunidade ownCloud, o código fonte está licenciado sob AGPL.", "Name" => "Nome", -"Password" => "Senha", "Groups" => "Grupos", "Create" => "Criar", "Default Quota" => "Quota Padrão", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 96d9ac67ac4..43a776d1daf 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -23,15 +23,8 @@ "Select an App" => "Selecione uma aplicação", "See application page at apps.owncloud.com" => "Ver a página da aplicação em apps.owncloud.com", "-licensed by " => "-licenciado por ", -"Documentation" => "Documentação", -"Managing Big Files" => "Gestão de ficheiros grandes", -"Ask a question" => "Coloque uma questão", -"Problems connecting to help database." => "Problemas ao ligar à base de dados de ajuda", -"Go there manually." => "Vá lá manualmente", -"Answer" => "Resposta", "You have used %s of the available %s" => "Usou %s do disponivel %s", -"Desktop and Mobile Syncing Clients" => "Clientes de sincronização desktop e móvel", -"Download" => "Transferir", +"Password" => "Palavra-chave", "Your password was changed" => "A sua palavra-passe foi alterada", "Unable to change your password" => "Não foi possivel alterar a sua palavra-chave", "Current password" => "Palavra-chave actual", @@ -43,10 +36,8 @@ "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", "Language" => "Idioma", "Help translate" => "Ajude a traduzir", -"use this address to connect to your ownCloud in your file manager" => "utilize este endereço para ligar ao seu ownCloud através do seu gestor de ficheiros", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desenvolvido pela comunidade ownCloud, ocódigo fonte está licenciado sob a AGPL.", "Name" => "Nome", -"Password" => "Palavra-chave", "Groups" => "Grupos", "Create" => "Criar", "Default Quota" => "Quota por padrão", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index deabed6f803..214bf0c7ed6 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -21,14 +21,7 @@ "Select an App" => "Selectează o aplicație", "See application page at apps.owncloud.com" => "Vizualizează pagina applicației pe apps.owncloud.com", "-licensed by " => "-licențiat ", -"Documentation" => "Documetație", -"Managing Big Files" => "Gestionînd fișiere mari", -"Ask a question" => "Întreabă", -"Problems connecting to help database." => "Probleme de conectare la baza de date.", -"Go there manually." => "Pe cale manuală.", -"Answer" => "Răspuns", -"Desktop and Mobile Syncing Clients" => "Clienți de sincronizare pentru telefon mobil și desktop", -"Download" => "Descărcări", +"Password" => "Parolă", "Your password was changed" => "Parola a fost modificată", "Unable to change your password" => "Imposibil de-ați schimbat parola", "Current password" => "Parola curentă", @@ -40,10 +33,8 @@ "Fill in an email address to enable password recovery" => "Completează o adresă de mail pentru a-ți putea recupera parola", "Language" => "Limba", "Help translate" => "Ajută la traducere", -"use this address to connect to your ownCloud in your file manager" => "folosește această adresă pentru a te conecta la managerul tău de fișiere din ownCloud", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Dezvoltat de the comunitatea ownCloud, codul sursă este licențiat sub AGPL.", "Name" => "Nume", -"Password" => "Parolă", "Groups" => "Grupuri", "Create" => "Crează", "Default Quota" => "Cotă implicită", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 4853f6fc2d1..0b8fbc91ea4 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -23,15 +23,8 @@ "Select an App" => "Выберите приложение", "See application page at apps.owncloud.com" => "Смотрите дополнения на apps.owncloud.com", "-licensed by " => " лицензия. Автор ", -"Documentation" => "Документация", -"Managing Big Files" => "Управление большими файлами", -"Ask a question" => "Задать вопрос", -"Problems connecting to help database." => "Проблема соединения с базой данных помощи.", -"Go there manually." => "Войти самостоятельно.", -"Answer" => "Ответ", "You have used %s of the available %s" => "Вы использовали %s из доступных %s", -"Desktop and Mobile Syncing Clients" => "Клиенты синхронизации для рабочих станций и мобильных устройств", -"Download" => "Загрузка", +"Password" => "Пароль", "Your password was changed" => "Ваш пароль изменён", "Unable to change your password" => "Невозможно сменить пароль", "Current password" => "Текущий пароль", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Введите адрес электронной почты, чтобы появилась возможность восстановления пароля", "Language" => "Язык", "Help translate" => "Помочь с переводом", -"use this address to connect to your ownCloud in your file manager" => "используйте данный адрес для подключения к ownCloud в вашем файловом менеджере", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Разрабатывается сообществом ownCloud, исходный код доступен под лицензией AGPL.", "Name" => "Имя", -"Password" => "Пароль", "Groups" => "Группы", "Create" => "Создать", "Default Quota" => "Квота по умолчанию", diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index 209d0b00847..aa91eee87c3 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -23,15 +23,8 @@ "Select an App" => "Выбрать приложение", "See application page at apps.owncloud.com" => "Обратитесь к странице приложений на apps.owncloud.com", "-licensed by " => "-licensed by ", -"Documentation" => "Документация", -"Managing Big Files" => "Управление большими файлами", -"Ask a question" => "Задать вопрос", -"Problems connecting to help database." => "Проблемы, связанные с разделом Помощь базы данных", -"Go there manually." => "Сделать вручную.", -"Answer" => "Ответ", "You have used %s of the available %s" => "Вы использовали %s из возможных %s", -"Desktop and Mobile Syncing Clients" => "Клиенты синхронизации настольной и мобильной систем", -"Download" => "Загрузка", +"Password" => "Пароль", "Your password was changed" => "Ваш пароль был изменен", "Unable to change your password" => "Невозможно изменить Ваш пароль", "Current password" => "Текущий пароль", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Введите адрес электронной почты для возможности восстановления пароля", "Language" => "Язык", "Help translate" => "Помогите перевести", -"use this address to connect to your ownCloud in your file manager" => "Используйте этот адрес для соединения с Вашим ownCloud в файловом менеджере", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Разработанный ownCloud community, the source code is licensed under the AGPL.", "Name" => "Имя", -"Password" => "Пароль", "Groups" => "Группы", "Create" => "Создать", "Default Quota" => "Квота по умолчанию", diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php index 13bd1762d42..22a3d65058b 100644 --- a/settings/l10n/si_LK.php +++ b/settings/l10n/si_LK.php @@ -18,13 +18,7 @@ "Add your App" => "යෙදුමක් එක් කිරීම", "More Apps" => "තවත් යෙදුම්", "Select an App" => "යෙදුමක් තොරන්න", -"Documentation" => "ලේඛන", -"Managing Big Files" => "විශාල ගොනු කළමණාකරනය", -"Ask a question" => "ප්‍රශ්ණයක් අසන්න", -"Problems connecting to help database." => "උදව් දත්ත ගබඩාව හා සම්බන්ධවීමේදී ගැටළු ඇතිවිය.", -"Go there manually." => "ස්වශක්තියෙන් එතැනට යන්න", -"Answer" => "පිළිතුර", -"Download" => "භාගත කරන්න", +"Password" => "මුරපදය", "Your password was changed" => "ඔබගේ මුර පදය වෙනස් කෙරුණි", "Unable to change your password" => "මුර පදය වෙනස් කළ නොහැකි විය", "Current password" => "වත්මන් මුරපදය", @@ -36,10 +30,8 @@ "Fill in an email address to enable password recovery" => "මුරපද ප්‍රතිස්ථාපනය සඳහා විද්‍යුත් තැපැල් විස්තර ලබා දෙන්න", "Language" => "භාෂාව", "Help translate" => "පරිවර්ථන සහය", -"use this address to connect to your ownCloud in your file manager" => "ඔබගේ ගොනු කළමනාකරු ownCloudයට සම්බන්ධ කිරීමට මෙම ලිපිනය භාවිතා කරන්න", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "නිපදන ලද්දේ ownCloud සමාජයෙන්, the මුල් කේතය ලයිසන්ස් කර ඇත්තේ AGPL යටතේ.", "Name" => "නාමය", -"Password" => "මුරපදය", "Groups" => "සමූහය", "Create" => "තනන්න", "Default Quota" => "සාමාන්‍ය සලාකය", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index 179cbe250b5..a07ee5998a4 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -23,15 +23,8 @@ "Select an App" => "Vyberte aplikáciu", "See application page at apps.owncloud.com" => "Pozrite si stránku aplikácií na apps.owncloud.com", "-licensed by " => "-licencované ", -"Documentation" => "Dokumentácia", -"Managing Big Files" => "Správa veľkých súborov", -"Ask a question" => "Opýtať sa otázku", -"Problems connecting to help database." => "Problémy s pripojením na databázu pomocníka.", -"Go there manually." => "Prejsť tam ručne.", -"Answer" => "Odpoveď", "You have used %s of the available %s" => "Použili ste %s z %s dostupných ", -"Desktop and Mobile Syncing Clients" => "Klienti pre synchronizáciu", -"Download" => "Stiahnúť", +"Password" => "Heslo", "Your password was changed" => "Heslo bolo zmenené", "Unable to change your password" => "Nie je možné zmeniť vaše heslo", "Current password" => "Aktuálne heslo", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Vyplňte emailovú adresu pre aktivovanie obnovy hesla", "Language" => "Jazyk", "Help translate" => "Pomôcť s prekladom", -"use this address to connect to your ownCloud in your file manager" => "použite túto adresu pre spojenie s vaším ownCloud v správcovi súborov", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Vyvinuté komunitou ownCloud,zdrojový kód je licencovaný pod AGPL.", "Name" => "Meno", -"Password" => "Heslo", "Groups" => "Skupiny", "Create" => "Vytvoriť", "Default Quota" => "Predvolená kvóta", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index b65a7ad641d..32ab3b8f54c 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -23,15 +23,8 @@ "Select an App" => "Izberite program", "See application page at apps.owncloud.com" => "Obiščite spletno stran programa na apps.owncloud.com", "-licensed by " => "-z dovoljenjem s strani ", -"Documentation" => "Dokumentacija", -"Managing Big Files" => "Upravljanje velikih datotek", -"Ask a question" => "Zastavi vprašanje", -"Problems connecting to help database." => "Težave med povezovanjem s podatkovno zbirko pomoči.", -"Go there manually." => "Ustvari povezavo ročno.", -"Answer" => "Odgovor", "You have used %s of the available %s" => "Uporabljate %s od razpoložljivih %s", -"Desktop and Mobile Syncing Clients" => "Namizni in mobilni odjemalci za usklajevanje", -"Download" => "Prejmi", +"Password" => "Geslo", "Your password was changed" => "Vaše geslo je spremenjeno", "Unable to change your password" => "Gesla ni mogoče spremeniti.", "Current password" => "Trenutno geslo", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Vpišite vaš elektronski naslov in s tem omogočite obnovitev gesla", "Language" => "Jezik", "Help translate" => "Pomagajte pri prevajanju", -"use this address to connect to your ownCloud in your file manager" => "Uporabite ta naslov za povezavo do ownCloud v upravljalniku datotek.", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Programski paket razvija skupnost ownCloud. Izvorna koda je objavljena pod pogoji dovoljenja AGPL.", "Name" => "Ime", -"Password" => "Geslo", "Groups" => "Skupine", "Create" => "Ustvari", "Default Quota" => "Privzeta količinska omejitev", diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 924d6a07b39..78bb3daae38 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -23,15 +23,8 @@ "Select an App" => "Изаберите програм", "See application page at apps.owncloud.com" => "Погледајте страницу са програмима на apps.owncloud.com", "-licensed by " => "-лиценцирао ", -"Documentation" => "Документација", -"Managing Big Files" => "Управљање великим датотекама", -"Ask a question" => "Поставите питање", -"Problems connecting to help database." => "Проблем у повезивању са базом помоћи", -"Go there manually." => "Отиђите тамо ручно.", -"Answer" => "Одговор", "You have used %s of the available %s" => "Искористили сте %s од дозвољених %s", -"Desktop and Mobile Syncing Clients" => "Стони и мобилни клијенти за усклађивање", -"Download" => "Преузимање", +"Password" => "Лозинка", "Your password was changed" => "Лозинка је промењена", "Unable to change your password" => "Не могу да изменим вашу лозинку", "Current password" => "Тренутна лозинка", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Ун", "Language" => "Језик", "Help translate" => " Помозите у превођењу", -"use this address to connect to your ownCloud in your file manager" => "користите ову адресу да би се повезали на ownCloud путем менаџњера фајлова", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Развијају Оунклауд (ownCloud) заједница, изворни код је издат под АГПЛ лиценцом.", "Name" => "Име", -"Password" => "Лозинка", "Groups" => "Групе", "Create" => "Направи", "Default Quota" => "Подразумевано ограничење", diff --git a/settings/l10n/sr@latin.php b/settings/l10n/sr@latin.php index 13d3190df8b..9e8436567df 100644 --- a/settings/l10n/sr@latin.php +++ b/settings/l10n/sr@latin.php @@ -4,11 +4,7 @@ "Authentication error" => "Greška pri autentifikaciji", "Language changed" => "Jezik je izmenjen", "Select an App" => "Izaberite program", -"Ask a question" => "Postavite pitanje", -"Problems connecting to help database." => "Problem u povezivanju sa bazom pomoći", -"Go there manually." => "Otiđite tamo ručno.", -"Answer" => "Odgovor", -"Download" => "Preuzmi", +"Password" => "Lozinka", "Unable to change your password" => "Ne mogu da izmenim vašu lozinku", "Current password" => "Trenutna lozinka", "New password" => "Nova lozinka", @@ -16,9 +12,7 @@ "Change password" => "Izmeni lozinku", "Email" => "E-mail", "Language" => "Jezik", -"use this address to connect to your ownCloud in your file manager" => "koristite ovu adresu da bi se povezali na ownCloud putem menadžnjera fajlova", "Name" => "Ime", -"Password" => "Lozinka", "Groups" => "Grupe", "Create" => "Napravi", "Other" => "Drugo", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index c829e0376b7..10d3d069016 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -23,15 +23,8 @@ "Select an App" => "Välj en App", "See application page at apps.owncloud.com" => "Se programsida på apps.owncloud.com", "-licensed by " => "-licensierad av ", -"Documentation" => "Dokumentation", -"Managing Big Files" => "Hantering av stora filer", -"Ask a question" => "Ställ en fråga", -"Problems connecting to help database." => "Problem med att ansluta till hjälpdatabasen.", -"Go there manually." => "Gå dit manuellt.", -"Answer" => "Svar", "You have used %s of the available %s" => "Du har använt %s av tillgängliga %s", -"Desktop and Mobile Syncing Clients" => "Synkroniseringsklienter för dator och mobil", -"Download" => "Ladda ner", +"Password" => "Lösenord", "Your password was changed" => "Ditt lösenord har ändrats", "Unable to change your password" => "Kunde inte ändra ditt lösenord", "Current password" => "Nuvarande lösenord", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Fyll i en e-postadress för att aktivera återställning av lösenord", "Language" => "Språk", "Help translate" => "Hjälp att översätta", -"use this address to connect to your ownCloud in your file manager" => "använd denna adress för att ansluta ownCloud till din filhanterare", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Utvecklad av ownCloud kommunity, källkoden är licenserad under AGPL.", "Name" => "Namn", -"Password" => "Lösenord", "Groups" => "Grupper", "Create" => "Skapa", "Default Quota" => "Förvald datakvot", diff --git a/settings/l10n/ta_LK.php b/settings/l10n/ta_LK.php index c0189a5bdaf..1a11a9a7102 100644 --- a/settings/l10n/ta_LK.php +++ b/settings/l10n/ta_LK.php @@ -22,15 +22,8 @@ "Select an App" => "செயலி ஒன்றை தெரிவுசெய்க", "See application page at apps.owncloud.com" => "apps.owncloud.com இல் செயலி பக்கத்தை பார்க்க", "-licensed by " => "-அனுமதி பெற்ற ", -"Documentation" => "ஆவணமாக்கல்", -"Managing Big Files" => "பெரிய கோப்புகளை முகாமைப்படுத்தல்", -"Ask a question" => "வினா ஒன்றை கேட்க", -"Problems connecting to help database." => "தரவுதளத்தை இணைக்கும் உதவியில் பிரச்சினைகள்", -"Go there manually." => "கைமுறையாக அங்கு செல்க", -"Answer" => "விடை", "You have used %s of the available %s" => "நீங்கள் %s இலுள்ள %sபயன்படுத்தியுள்ளீர்கள்", -"Desktop and Mobile Syncing Clients" => "desktop மற்றும் Mobile ஒத்திசைவு சேவைப் பயனாளர்", -"Download" => "பதிவிறக்குக", +"Password" => "கடவுச்சொல்", "Your password was changed" => "உங்களுடைய கடவுச்சொல் மாற்றப்பட்டுள்ளது", "Unable to change your password" => "உங்களுடைய கடவுச்சொல்லை மாற்றமுடியாது", "Current password" => "தற்போதைய கடவுச்சொல்", @@ -42,10 +35,8 @@ "Fill in an email address to enable password recovery" => "கடவுச்சொல் மீள் பெறுவதை இயலுமைப்படுத்துவதற்கு மின்னஞ்சல் முகவரியை இயலுமைப்படுத்துக", "Language" => "மொழி", "Help translate" => "மொழிபெயர்க்க உதவி", -"use this address to connect to your ownCloud in your file manager" => "உங்களுடைய கோப்பு முகாமையில் உள்ள உங்களுடைய ownCloud உடன் இணைக்க இந்த முகவரியை பயன்படுத்தவும்", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Developed by the ownCloud community, the source code is licensed under the AGPL.", "Name" => "பெயர்", -"Password" => "கடவுச்சொல்", "Groups" => "குழுக்கள்", "Create" => "உருவாக்குக", "Default Quota" => "பொது இருப்பு பங்கு", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 3431fedac0a..d9c9101143f 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -22,15 +22,8 @@ "Select an App" => "เลือก App", "See application page at apps.owncloud.com" => "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com", "-licensed by " => "-ลิขสิทธิ์การใช้งานโดย ", -"Documentation" => "เอกสารคู่มือการใช้งาน", -"Managing Big Files" => "การจัดการไฟล์ขนาดใหญ่", -"Ask a question" => "สอบถามข้อมูล", -"Problems connecting to help database." => "เกิดปัญหาในการเชื่อมต่อกับฐานข้อมูลช่วยเหลือ", -"Go there manually." => "ไปที่นั่นด้วยตนเอง", -"Answer" => "คำตอบ", "You have used %s of the available %s" => "คุณได้ใช้งานไปแล้ว %s จากจำนวนที่สามารถใช้ได้ %s", -"Desktop and Mobile Syncing Clients" => "โปรแกรมเชื่อมข้อมูลไฟล์สำหรับเครื่องเดสก์ท็อปและมือถือ", -"Download" => "ดาวน์โหลด", +"Password" => "รหัสผ่าน", "Your password was changed" => "รหัสผ่านของคุณถูกเปลี่ยนแล้ว", "Unable to change your password" => "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้", "Current password" => "รหัสผ่านปัจจุบัน", @@ -42,10 +35,8 @@ "Fill in an email address to enable password recovery" => "กรอกที่อยู่อีเมล์ของคุณเพื่อเปิดให้มีการกู้คืนรหัสผ่านได้", "Language" => "ภาษา", "Help translate" => "ช่วยกันแปล", -"use this address to connect to your ownCloud in your file manager" => "ใช้ที่อยู่นี้ในการเชื่อมต่อกับบัญชี ownCloud ของคุณในเครื่องมือจัดการไฟล์ของคุณ", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "พัฒนาโดย the ชุมชนผู้ใช้งาน ownCloud, the ซอร์สโค้ดอยู่ภายใต้สัญญาอนุญาตของ AGPL.", "Name" => "ชื่อ", -"Password" => "รหัสผ่าน", "Groups" => "กลุ่ม", "Create" => "สร้าง", "Default Quota" => "โควต้าที่กำหนดไว้เริ่มต้น", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 1e301e8d323..2c79b93d954 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -20,14 +20,7 @@ "More Apps" => "Daha fazla App", "Select an App" => "Bir uygulama seçin", "See application page at apps.owncloud.com" => "Uygulamanın sayfasına apps.owncloud.com adresinden bakın ", -"Documentation" => "Dökümantasyon", -"Managing Big Files" => "Büyük Dosyaların Yönetimi", -"Ask a question" => "Bir soru sorun", -"Problems connecting to help database." => "Yardım veritabanına bağlanmada sorunlar var.", -"Go there manually." => "Oraya elle gidin.", -"Answer" => "Cevap", -"Desktop and Mobile Syncing Clients" => "Masaüstü ve Mobil Senkron İstemcileri", -"Download" => "İndir", +"Password" => "Parola", "Your password was changed" => "Şifreniz değiştirildi", "Unable to change your password" => "Parolanız değiştirilemiyor", "Current password" => "Mevcut parola", @@ -39,10 +32,8 @@ "Fill in an email address to enable password recovery" => "Parola sıfırlamayı aktifleştirmek için eposta adresi girin", "Language" => "Dil", "Help translate" => "Çevirilere yardım edin", -"use this address to connect to your ownCloud in your file manager" => "bu adresi kullanarak ownCloud unuza dosya yöneticinizle bağlanın", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Geliştirilen TarafownCloud community, the source code is altında lisanslanmıştır AGPL.", "Name" => "Ad", -"Password" => "Parola", "Groups" => "Gruplar", "Create" => "Oluştur", "Default Quota" => "Varsayılan Kota", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index d1a0d6d9091..5707b3cdafc 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -23,15 +23,8 @@ "Select an App" => "Вибрати додаток", "See application page at apps.owncloud.com" => "Перегляньте сторінку програм на apps.owncloud.com", "-licensed by " => "-licensed by ", -"Documentation" => "Документація", -"Managing Big Files" => "Управління великими файлами", -"Ask a question" => "Запитати", -"Problems connecting to help database." => "Проблема при з'єднані з базою допомоги", -"Go there manually." => "Перейти вручну.", -"Answer" => "Відповідь", "You have used %s of the available %s" => "Ви використали %s із доступних %s", -"Desktop and Mobile Syncing Clients" => "Настільні та мобільні клієнти синхронізації", -"Download" => "Завантажити", +"Password" => "Пароль", "Your password was changed" => "Ваш пароль змінено", "Unable to change your password" => "Не вдалося змінити Ваш пароль", "Current password" => "Поточний пароль", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "Введіть адресу електронної пошти для відновлення паролю", "Language" => "Мова", "Help translate" => "Допомогти з перекладом", -"use this address to connect to your ownCloud in your file manager" => "використовувати цю адресу для з'єднання з ownCloud у Вашому файловому менеджері", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Розроблено ownCloud громадою, вихідний код має ліцензію AGPL.", "Name" => "Ім'я", -"Password" => "Пароль", "Groups" => "Групи", "Create" => "Створити", "Default Quota" => "Квота за замовчуванням", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 7857b0509e6..49aee419bfb 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -23,15 +23,8 @@ "Select an App" => "Chọn một ứng dụng", "See application page at apps.owncloud.com" => "Xem nhiều ứng dụng hơn tại apps.owncloud.com", "-licensed by " => "-Giấy phép được cấp bởi ", -"Documentation" => "Tài liệu", -"Managing Big Files" => "Quản lý tập tin lớn", -"Ask a question" => "Đặt câu hỏi", -"Problems connecting to help database." => "Vấn đề kết nối đến cơ sở dữ liệu.", -"Go there manually." => "Đến bằng thủ công.", -"Answer" => "trả lời", "You have used %s of the available %s" => "Bạn đã sử dụng %s có sẵn %s ", -"Desktop and Mobile Syncing Clients" => "Đồng bộ dữ liệu", -"Download" => "Tải về", +"Password" => "Mật khẩu", "Your password was changed" => "Mật khẩu của bạn đã được thay đổi.", "Unable to change your password" => "Không thể đổi mật khẩu", "Current password" => "Mật khẩu cũ", @@ -43,10 +36,8 @@ "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", "Language" => "Ngôn ngữ", "Help translate" => "Hỗ trợ dịch thuật", -"use this address to connect to your ownCloud in your file manager" => "sử dụng địa chỉ này để kết nối với ownCloud của bạn trong quản lý tập tin ", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Được phát triển bởi cộng đồng ownCloud, mã nguồn đã được cấp phép theo chuẩn AGPL.", "Name" => "Tên", -"Password" => "Mật khẩu", "Groups" => "Nhóm", "Create" => "Tạo", "Default Quota" => "Hạn ngạch mặt định", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 4784ff7ff9d..2e429cf6b1e 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -22,14 +22,7 @@ "Select an App" => "选择一个程序", "See application page at apps.owncloud.com" => "在owncloud.com上查看应用程序", "-licensed by " => "授权协议 ", -"Documentation" => "文档", -"Managing Big Files" => "管理大文件", -"Ask a question" => "提一个问题", -"Problems connecting to help database." => "连接到帮助数据库时的问题", -"Go there manually." => "收到转到.", -"Answer" => "回答", -"Desktop and Mobile Syncing Clients" => "桌面和移动同步客户端", -"Download" => "下载", +"Password" => "密码", "Your password was changed" => "您的密码以变更", "Unable to change your password" => "不能改变你的密码", "Current password" => "现在的密码", @@ -41,10 +34,8 @@ "Fill in an email address to enable password recovery" => "输入一个邮箱地址以激活密码恢复功能", "Language" => "语言", "Help translate" => "帮助翻译", -"use this address to connect to your ownCloud in your file manager" => "使用这个地址和你的文件管理器连接到你的ownCloud", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "由 ownCloud 社区开发,s源代码AGPL 许可协议发布。", "Name" => "名字", -"Password" => "密码", "Groups" => "组", "Create" => "新建", "Default Quota" => "默认限额", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 87c8172d6fa..3e0f8340eae 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -23,15 +23,8 @@ "Select an App" => "选择一个应用", "See application page at apps.owncloud.com" => "查看在 app.owncloud.com 的应用程序页面", "-licensed by " => "-核准: ", -"Documentation" => "文档", -"Managing Big Files" => "管理大文件", -"Ask a question" => "提问", -"Problems connecting to help database." => "连接帮助数据库错误 ", -"Go there manually." => "手动访问", -"Answer" => "回答", "You have used %s of the available %s" => "你已使用 %s,有效空间 %s", -"Desktop and Mobile Syncing Clients" => "桌面和移动设备同步客户端", -"Download" => "下载", +"Password" => "密码", "Your password was changed" => "密码已修改", "Unable to change your password" => "无法修改密码", "Current password" => "当前密码", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "填写电子邮件地址以启用密码恢复功能", "Language" => "语言", "Help translate" => "帮助翻译", -"use this address to connect to your ownCloud in your file manager" => "您可在文件管理器中使用该地址连接到ownCloud", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "由ownCloud社区开发, 源代码AGPL许可证下发布。", "Name" => "名称", -"Password" => "密码", "Groups" => "组", "Create" => "创建", "Default Quota" => "默认配额", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 7de5ee5f54d..33f4cb1194e 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -23,15 +23,8 @@ "Select an App" => "選擇一個應用程式", "See application page at apps.owncloud.com" => "查看應用程式頁面於 apps.owncloud.com", "-licensed by " => "-核准: ", -"Documentation" => "文件", -"Managing Big Files" => "管理大檔案", -"Ask a question" => "提問", -"Problems connecting to help database." => "連接到求助資料庫時發生問題", -"Go there manually." => "手動前往", -"Answer" => "答案", "You have used %s of the available %s" => "您已經使用了 %s ,目前可用空間為 %s", -"Desktop and Mobile Syncing Clients" => "桌機與手機同步客戶端", -"Download" => "下載", +"Password" => "密碼", "Your password was changed" => "你的密碼已更改", "Unable to change your password" => "無法變更你的密碼", "Current password" => "目前密碼", @@ -43,10 +36,8 @@ "Fill in an email address to enable password recovery" => "請填入電子郵件信箱以便回復密碼", "Language" => "語言", "Help translate" => "幫助翻譯", -"use this address to connect to your ownCloud in your file manager" => "使用這個位址去連接到你的私有雲檔案管理員", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "由ownCloud 社區開發,源代碼AGPL許可證下發布。", "Name" => "名稱", -"Password" => "密碼", "Groups" => "群組", "Create" => "創造", "Default Quota" => "預設容量限制", -- cgit v1.2.3 From cc9061d20db9732d9be80f7c04cb9f08a768e85c Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Thu, 20 Dec 2012 09:59:09 +0100 Subject: adding missing translations for various strings + fixing tool tip on delete --- settings/js/users.js | 796 ++++++++++++++++++++++++++------------------------- 1 file changed, 402 insertions(+), 394 deletions(-) diff --git a/settings/js/users.js b/settings/js/users.js index f148a43a480..b0e30feb80c 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -4,405 +4,413 @@ * See the COPYING-README file. */ -var UserList={ - useUndo:true, - - /** - * @brief Initiate user deletion process in UI - * @param string uid the user ID to be deleted - * - * Does not actually delete the user; it sets them for - * deletion when the current page is unloaded, at which point - * finishDelete() completes the process. This allows for 'undo'. - */ - do_delete:function( uid ) { - if (typeof UserList.deleteUid !== 'undefined') { - //Already a user in the undo queue - UserList.finishDelete(null); - } - UserList.deleteUid = uid; - - // Set undo flag - UserList.deleteCanceled = false; - - // Provide user with option to undo - $('#notification').html(t('users', 'deleted')+' '+uid+''+t('users', 'undo')+''); - $('#notification').data('deleteuser',true); - $('#notification').fadeIn(); - }, - - /** - * @brief Delete a user via ajax - * @param bool ready whether to use ready() upon completion - * - * Executes deletion via ajax of user identified by property deleteUid - * if 'undo' has not been used. Completes the user deletion procedure - * and reflects success in UI. - */ - finishDelete:function( ready ){ - - // Check deletion has not been undone - if( !UserList.deleteCanceled && UserList.deleteUid ){ - - // Delete user via ajax - $.ajax({ - type: 'POST', - url: OC.filePath('settings', 'ajax', 'removeuser.php'), - async: false, - data: { username: UserList.deleteUid }, - success: function(result) { - if (result.status == 'success') { - // Remove undo option, & remove user from table - $('#notification').fadeOut(); - $('tr').filterAttr('data-uid', UserList.deleteUid).remove(); - UserList.deleteCanceled = true; - if (ready) { - ready(); - } - } else { - oc.dialogs.alert(result.data.message, t('settings', 'Unable to remove user')); - } - } - }); - } - }, +var UserList = { + useUndo:true, - add:function(username, groups, subadmin, quota, sort) { - var tr = $('tbody tr').first().clone(); - tr.attr('data-uid', username); - tr.find('td.name').text(username); - var groupsSelect = $('').attr('data-username', username).attr('data-user-groups', groups); - tr.find('td.groups').empty(); - if (tr.find('td.subadmins').length > 0) { - var subadminSelect = $('').attr('data-username', username).attr('data-user-groups', groups); + tr.find('td.groups').empty(); + if (tr.find('td.subadmins').length > 0) { + var subadminSelect = $(''); + img.css('display', 'none'); + img.parent().children('span').replaceWith(input); + input.focus(); + input.keypress(function (event) { + if (event.keyCode == 13) { + if ($(this).val().length > 0) { + $.post( + OC.filePath('settings', 'ajax', 'changepassword.php'), + {username:uid, password:$(this).val()}, + function (result) { + } + ); + input.blur(); + } else { + input.blur(); + } + } + }); + input.blur(function () { + $(this).replaceWith($('●●●●●●●')); + img.css('display', ''); + }); + }); + $('td.password').live('click', function (event) { + $(this).children('img').click(); + }); + + $('select.quota, select.quota-user').live('change', function () { + var select = $(this); + var uid = $(this).parent().parent().parent().attr('data-uid'); + var quota = $(this).val(); + var other = $(this).next(); + if (quota != 'other') { + other.hide(); + select.data('previous', quota); + setQuota(uid, quota); + } else { + other.show(); + select.addClass('active'); + other.focus(); + } + }); + $('select.quota, select.quota-user').each(function (i, select) { + $(select).data('previous', $(select).val()); + }) + + $('input.quota-other').live('change', function () { + var uid = $(this).parent().parent().parent().attr('data-uid'); + var quota = $(this).val(); + var select = $(this).prev(); + var other = $(this); + if (quota) { + setQuota(uid, quota, function (quota) { + select.children().attr('selected', null); + var existingOption = select.children().filter(function (i, option) { + return ($(option).val() == quota); + }); + if (existingOption.length) { + existingOption.attr('selected', 'selected'); + } else { + var option = $('
Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "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.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://", "Base DN" => "Basis-DN", diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index 84c36881f9a..23e9a15c010 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -1,4 +1,6 @@ Warning:
Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "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.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Waarschuwing: De PHP LDAP module is niet geïnstalleerd, de backend zal dus niet werken. Vraag uw beheerder de module te installeren.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Je kunt het protocol weglaten, tenzij je SSL vereist. Start in dat geval met ldaps://", "Base DN" => "Basis DN", diff --git a/apps/user_webdavauth/l10n/cs_CZ.php b/apps/user_webdavauth/l10n/cs_CZ.php index a5b7e56771f..5cb9b4c3704 100644 --- a/apps/user_webdavauth/l10n/cs_CZ.php +++ b/apps/user_webdavauth/l10n/cs_CZ.php @@ -1,3 +1,4 @@ "URL WebDAV: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud odešle přihlašovací údaje uživatele na URL a z návratové hodnoty určí stav přihlášení. Http 401 a 403 vyhodnotí jako neplatné údaje a všechny ostatní jako úspěšné přihlášení." ); diff --git a/apps/user_webdavauth/l10n/de_DE.php b/apps/user_webdavauth/l10n/de_DE.php index 9bd32954b05..245a5101341 100644 --- a/apps/user_webdavauth/l10n/de_DE.php +++ b/apps/user_webdavauth/l10n/de_DE.php @@ -1,3 +1,3 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/ja_JP.php b/apps/user_webdavauth/l10n/ja_JP.php index 9bd32954b05..8643805ffcc 100644 --- a/apps/user_webdavauth/l10n/ja_JP.php +++ b/apps/user_webdavauth/l10n/ja_JP.php @@ -1,3 +1,4 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloudのこのURLへのユーザ資格情報の送信は、資格情報が間違っている場合はHTTP401もしくは403を返し、正しい場合は全てのコードを返します。" ); diff --git a/apps/user_webdavauth/l10n/nl.php b/apps/user_webdavauth/l10n/nl.php index 9bd32954b05..687442fb665 100644 --- a/apps/user_webdavauth/l10n/nl.php +++ b/apps/user_webdavauth/l10n/nl.php @@ -1,3 +1,4 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud zal de inloggegevens naar deze URL als geïnterpreteerde http 401 en http 403 als de inloggegevens onjuist zijn. Andere codes als de inloggegevens correct zijn." ); diff --git a/apps/user_webdavauth/l10n/pl.php b/apps/user_webdavauth/l10n/pl.php index 9bd32954b05..245a5101341 100644 --- a/apps/user_webdavauth/l10n/pl.php +++ b/apps/user_webdavauth/l10n/pl.php @@ -1,3 +1,3 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/ru_RU.php b/apps/user_webdavauth/l10n/ru_RU.php index 9bd32954b05..245a5101341 100644 --- a/apps/user_webdavauth/l10n/ru_RU.php +++ b/apps/user_webdavauth/l10n/ru_RU.php @@ -1,3 +1,3 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://" ); diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 89bb322773d..c3f5c887658 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -1,4 +1,8 @@ "Gebruiker %s deelde een bestand met u", +"User %s shared a folder with you" => "Gebruiker %s deelde een map met u", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Gebruiker %s deelde bestand \"%s\" met u. Het is hier te downloaden: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Gebruiker %s deelde de map \"%s\" met u. De map is hier beschikbaar voor download: %s", "Category type not provided." => "Categorie type niet opgegeven.", "No category to add?" => "Geen categorie toevoegen?", "This category already exists: " => "Deze categorie bestaat al.", @@ -39,6 +43,8 @@ "Share with link" => "Deel met link", "Password protect" => "Wachtwoord beveiliging", "Password" => "Wachtwoord", +"Email link to person" => "E-mail link naar persoon", +"Send" => "Versturen", "Set expiration date" => "Stel vervaldatum in", "Expiration date" => "Vervaldatum", "Share via email:" => "Deel via email:", @@ -55,6 +61,8 @@ "Password protected" => "Wachtwoord beveiligd", "Error unsetting expiration date" => "Fout tijdens het verwijderen van de verval datum", "Error setting expiration date" => "Fout tijdens het instellen van de vervaldatum", +"Sending ..." => "Versturen ...", +"Email sent" => "E-mail verzonden", "ownCloud password reset" => "ownCloud wachtwoord herstellen", "Use the following link to reset your password: {link}" => "Gebruik de volgende link om je wachtwoord te resetten: {link}", "You will receive a link to reset your password via Email." => "U ontvangt een link om uw wachtwoord opnieuw in te stellen via e-mail.", diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 4ccf4fd4202..9d5c9b6e9e3 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "الزبائن" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 76380b18681..8350e56bea4 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -149,7 +149,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Клиенти" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 331a63af1a7..87be5707738 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -151,7 +151,7 @@ msgstr "Heu utilitzat %s d'un total disponible de %s\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 19:53+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" @@ -123,27 +123,27 @@ msgstr "-licencováno %s z %s dostupných" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klienti" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Stáhnout klienty pro počítač" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Stáhnout klienta pro android" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Stáhnout klienta pro iOS" #: templates/personal.php:21 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -216,15 +216,15 @@ msgstr "Pomoci s překladem" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Použijte tuto adresu pro připojení k vašemu ownCloud skrze správce souborů" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Verze" #: templates/personal.php:65 msgid "" diff --git a/l10n/cs_CZ/user_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po index c6d6edace6f..3545665816d 100644 --- a/l10n/cs_CZ/user_webdavauth.po +++ b/l10n/cs_CZ/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 19:51+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" @@ -20,11 +20,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud odešle přihlašovací údaje uživatele na URL a z návratové hodnoty určí stav přihlášení. Http 401 a 403 vyhodnotí jako neplatné údaje a všechny ostatní jako úspěšné přihlášení." diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 9fb7f125016..10983e3830e 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -155,7 +155,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klienter" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index cbc4d58803d..6ea2029ea1f 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -163,7 +163,7 @@ msgstr "Du verwendest %s der verfügbaren %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Kunden" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 62f52d34b42..f1f9d99b929 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -18,14 +18,15 @@ # Phi Lieb <>, 2012. # , 2012. # , 2012. +# , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 18:46+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -133,27 +134,27 @@ msgstr "-lizenziert von %s der verfügbaren %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Kunden" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Desktop-Client herunterladen" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Android-Client herunterladen" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "iOS-Client herunterladen" #: templates/personal.php:21 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -226,15 +227,15 @@ msgstr "Helfen Sie bei der Übersetzung" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Benutzen Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Version" #: templates/personal.php:65 msgid "" @@ -244,7 +245,7 @@ msgid "" "licensed under the AGPL." -msgstr "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert." +msgstr "Entwickelt von der ownCloud-Community. Der Quellcode ist unter der AGPL lizenziert." #: templates/users.php:21 templates/users.php:76 msgid "Name" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 8e59bdac23d..0d720cd286f 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -8,14 +8,15 @@ # Maurice Preuß <>, 2012. # , 2012. # Phi Lieb <>, 2012. +# , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 18:43+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +29,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 "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." #: templates/settings.php:11 msgid "" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index d026975111c..c050b2d8808 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 18:31+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +21,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index f4a0b03ecf3..e7341dbe102 100644 --- a/l10n/el/settings.po +++ b/l10n/el/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -157,7 +157,7 @@ msgstr "Χρησιμοποιήσατε %s από διαθέσι #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Πελάτες" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 8614b6b1fe6..3a49fa3de2d 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "Vi uzas %s el la haveblaj %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klientoj" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index a705db8b0d9..edd67031275 100644 --- a/l10n/es/settings.po +++ b/l10n/es/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -157,7 +157,7 @@ msgstr "Ha usado %s de %s disponibles" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Clientes" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 3c23f272dbf..d0650773d3c 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "Usaste %s de los %s disponibles" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Clientes" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 17e9aaeab7f..0212408126c 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Kliendid" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index b3a9725781d..93231c3514a 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -149,7 +149,7 @@ msgstr "Dagoeneko %s erabili duzu eskuragarri duzun %s< #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Bezeroak" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 8b195e20c4d..3d7035f89a2 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -150,7 +150,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "مشتریان" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index c65a8d3da40..be42124a75f 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -149,7 +149,7 @@ msgstr "Käytössäsi on %s/%s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Asiakkaat" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 60e593f91e7..ffafd0a3264 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -20,8 +20,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -159,7 +159,7 @@ msgstr "Vous avez utilisé %s des %s disponible #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Clients" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index aee8d7785c5..234468f6e0a 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "Tes usados %s do total dispoñíbel de %s\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -149,7 +149,7 @@ msgstr "השתמשת ב־%s מתוך %s הזמ #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "לקוחות" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 2597c4cf005..b46de54ca70 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -149,7 +149,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klijenti" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index b4a0c243974..fcc66c8ce64 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Kliensek" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 1908def76a4..892fdc95fd9 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Clientes" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index cbca52ee8d2..4e52623ad95 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -150,7 +150,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klien" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index c678a89ccf9..e26395a5f44 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 06:39+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" @@ -124,27 +124,27 @@ msgstr "-licenziato da %s dei %s disponibili" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Client" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Scarica client desktop" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Scarica client Android" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Scarica client iOS" #: templates/personal.php:21 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -217,15 +217,15 @@ msgstr "Migliora la traduzione" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Usa questo indirizzo per connetterti al tuo ownCloud dal tuo gestore file" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Versione" #: templates/personal.php:65 msgid "" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index e4303fd636b..b41038ab9a7 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -4,15 +4,16 @@ # # Translators: # Daisuke Deguchi , 2012. +# Daisuke Deguchi , 2012. # , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 03:44+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" @@ -120,27 +121,27 @@ msgstr "-ライセンス: #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "ユーザドキュメント" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "管理者ドキュメント" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "オンラインドキュメント" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "フォーラム" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "バグトラッカー" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "コマーシャルサポート" #: templates/personal.php:8 #, php-format @@ -149,19 +150,19 @@ msgstr "現在、%s / %s を利用していま #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "顧客" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "デスクトップクライアントをダウンロード" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Androidクライアントをダウンロード" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "iOSクライアントをダウンロード" #: templates/personal.php:21 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -213,15 +214,15 @@ msgstr "翻訳に協力する" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "ファイルマネージャでownCloudに接続する際はこのアドレスを利用してください" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "バージョン" #: templates/personal.php:65 msgid "" diff --git a/l10n/ja_JP/user_webdavauth.po b/l10n/ja_JP/user_webdavauth.po index 5873fda3833..b6499e4ce5f 100644 --- a/l10n/ja_JP/user_webdavauth.po +++ b/l10n/ja_JP/user_webdavauth.po @@ -4,13 +4,14 @@ # # Translators: # Daisuke Deguchi , 2012. +# Daisuke Deguchi , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 03:51+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" @@ -20,11 +21,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloudのこのURLへのユーザ資格情報の送信は、資格情報が間違っている場合はHTTP401もしくは403を返し、正しい場合は全てのコードを返します。" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 1c117e37a90..363ba8a6bd4 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -147,7 +147,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "კლიენტები" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index f3a933894cc..7e948772a38 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -149,7 +149,7 @@ msgstr "현재 공간 %s/%s을(를) 사용 중 #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "고객" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 7f7bba58429..90bde23fab6 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -147,7 +147,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Clienten" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 4b5d562b1d0..34f05c7c008 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klientai" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 0dac229dcd7..1f1f8fa6be3 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -149,7 +149,7 @@ msgstr "Имате искористено %s од достап #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Клиенти" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 11b17fa24a9..f4c24535347 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -150,7 +150,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "klien" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index f95fe62e3ea..96e64f4b1a8 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -153,7 +153,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klienter" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 4dd97cac611..322c4e3bbf4 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 17:28+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,26 +34,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Gebruiker %s deelde een bestand met u" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Gebruiker %s deelde een map met u" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "Gebruiker %s deelde bestand \"%s\" met u. Het is hier te downloaden: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "Gebruiker %s deelde de map \"%s\" met u. De map is hier beschikbaar voor download: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -175,8 +175,8 @@ msgid "The object type is not specified." msgstr "Het object type is niet gespecificeerd." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Fout" @@ -188,7 +188,7 @@ msgstr "De app naam is niet gespecificeerd." msgid "The required file {file} is not installed!" msgstr "Het vereiste bestand {file} is niet geïnstalleerd!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Fout tijdens het delen" @@ -216,22 +216,22 @@ msgstr "Deel met" msgid "Share with link" msgstr "Deel met link" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Wachtwoord beveiliging" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Wachtwoord" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "E-mail link naar persoon" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Versturen" #: js/share.js:177 msgid "Set expiration date" @@ -285,25 +285,25 @@ msgstr "verwijderen" msgid "share" msgstr "deel" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Versturen ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "E-mail verzonden" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -325,8 +325,8 @@ msgstr "Reset e-mail verstuurd." msgid "Request failed!" msgstr "Verzoek mislukt!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Gebruikersnaam" @@ -415,44 +415,44 @@ msgstr "Uw data is waarschijnlijk toegankelijk vanaf net internet. Het .htacces msgid "Create an admin account" msgstr "Maak een beheerdersaccount aan" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Geavanceerd" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Gegevensmap" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configureer de database" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "zal gebruikt worden" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Gebruiker database" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Wachtwoord database" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Naam database" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Database server" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Installatie afronden" @@ -540,29 +540,29 @@ msgstr "Webdiensten in eigen beheer" msgid "Log out" msgstr "Afmelden" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatische aanmelding geweigerd!" -#: templates/login.php:9 +#: templates/login.php:11 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:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Wijzig uw wachtwoord zodat uw account weer beveiligd is." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Uw wachtwoord vergeten?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "onthoud gegevens" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Meld je aan" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index dcc92f2a2cd..73a37735f70 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot , 2012. # Richard Bos , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:09+0100\n" +"PO-Revision-Date: 2012-12-20 17:34+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,14 +47,14 @@ msgstr "Fout tijdens het configureren van Google Drive opslag" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +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:435 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 "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." #: templates/settings.php:3 msgid "External Storage" @@ -100,7 +101,7 @@ msgid "Users" msgstr "Gebruikers" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Verwijder" @@ -112,10 +113,10 @@ msgstr "Externe opslag voor gebruikers activeren" msgid "Allow users to mount their own external storage" msgstr "Sta gebruikers toe om hun eigen externe opslag aan te koppelen" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "SSL root certificaten" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Importeer root certificaat" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 1447d5696c9..52bcdb4ed53 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot , 2012. # , 2011. # , 2012. # , 2012. @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 17:37+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -127,27 +128,27 @@ msgstr "-Gelicenseerd door %s van de %s beschikbaren geb #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klanten" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "Download Desktop Clients" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "Download Android Client" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "Download iOS Client" #: templates/personal.php:21 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -220,15 +221,15 @@ msgstr "Help met vertalen" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Gebruik dit adres om te verbinden met uw ownCloud in uw bestandsbeheer" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "Versie" #: templates/personal.php:65 msgid "" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index a608c7eddea..840adfacc66 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 17:25+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,13 +24,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 "" +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." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Waarschuwing: De PHP LDAP module is niet geïnstalleerd, de backend zal dus niet werken. Vraag uw beheerder de module te installeren." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/nl/user_webdavauth.po b/l10n/nl/user_webdavauth.po index b8142985770..81dd911eef5 100644 --- a/l10n/nl/user_webdavauth.po +++ b/l10n/nl/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot , 2012. # Richard Bos , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 17:23+0000\n" +"Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,11 +21,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud zal de inloggegevens naar deze URL als geïnterpreteerde http 401 en http 403 als de inloggegevens onjuist zijn. Andere codes als de inloggegevens correct zijn." diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index e66fabad4ed..b62189d236d 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klientar" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index ae2f77de6c0..aa5ccaa9439 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -147,7 +147,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Practica" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 4c1931f5277..bd13e836e65 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -156,7 +156,7 @@ msgstr "Korzystasz z %s z dostępnych %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klienci" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/pl/user_webdavauth.po b/l10n/pl/user_webdavauth.po index 34edc0bee37..f745f1f1320 100644 --- a/l10n/pl/user_webdavauth.po +++ b/l10n/pl/user_webdavauth.po @@ -4,13 +4,14 @@ # # Translators: # Cyryl Sochacki , 2012. +# Marcin Małecki , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 11:39+0000\n" +"Last-Translator: Marcin Małecki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +21,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 84ffc9b282a..67cb06fbd6d 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -155,7 +155,7 @@ msgstr "Você usou %s do seu espaço de %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Clientes" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index e5dee687e28..2df165fde5b 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -151,7 +151,7 @@ msgstr "Usou %s do disponivel %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Clientes" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 1c57e59c9c5..98f2a2844e7 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -152,7 +152,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Clienți" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 90a09200a89..d47fe1cca61 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -157,7 +157,7 @@ msgstr "Вы использовали %s из доступны #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Клиенты" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 322c4dfdbfa..7731c49e2d1 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -147,7 +147,7 @@ msgstr "Вы использовали %s из возможны #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Клиенты" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ru_RU/user_webdavauth.po b/l10n/ru_RU/user_webdavauth.po index 34bc8c116fb..5308dbe4c2d 100644 --- a/l10n/ru_RU/user_webdavauth.po +++ b/l10n/ru_RU/user_webdavauth.po @@ -3,14 +3,15 @@ # 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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-20 06:57+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +21,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 58e765d3158..6bfa8851760 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -149,7 +149,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "සේවාලාභීන්" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 72c5a0b9d42..7fc980b9834 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -151,7 +151,7 @@ msgstr "Použili ste %s z %s dostupných " #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klienti" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 9675db5bf52..9bf1d7498ab 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23: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" @@ -150,7 +150,7 @@ msgstr "Uporabljate %s od razpoložljivih %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Stranka" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 2d01c631fa5..e608c443bcc 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "Искористили сте %s од дозвољен #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Клијенти" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index d8cd86aace3..1fa664360e9 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -147,7 +147,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Klijenti" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index facc19476c7..397ccdff0f2 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -153,7 +153,7 @@ msgstr "Du har använt %s av tillgängliga %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Kunder" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 77831e0c91c..d06ae0bdd28 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -147,7 +147,7 @@ msgstr "நீங்கள் %s இலுள்ள %s< #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "வாடிக்கையாளர்கள்" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 7257ede1892..5d7f37bb3b7 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -206,7 +206,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "" @@ -312,7 +312,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "" @@ -526,29 +526,29 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index ca7511eccaf..b50639f96ba 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:09+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -110,76 +110,76 @@ msgstr "" msgid "generating ZIP-file, it may take some time." msgstr "" -#: js/files.js:209 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:209 +#: js/files.js:212 msgid "Upload Error" msgstr "" -#: js/files.js:226 +#: js/files.js:229 msgid "Close" msgstr "" -#: js/files.js:245 js/files.js:359 js/files.js:389 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "" -#: js/files.js:265 +#: js/files.js:268 msgid "1 file uploading" msgstr "" -#: js/files.js:268 js/files.js:322 js/files.js:337 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "" -#: js/files.js:340 js/files.js:373 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "" -#: js/files.js:442 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:512 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "" -#: js/files.js:693 +#: js/files.js:699 msgid "{count} files scanned" msgstr "" -#: js/files.js:701 +#: js/files.js:707 msgid "error while scanning" msgstr "" -#: js/files.js:774 templates/index.php:66 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "" -#: js/files.js:775 templates/index.php:77 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "" -#: js/files.js:776 templates/index.php:79 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "" -#: js/files.js:803 +#: js/files.js:801 msgid "1 folder" msgstr "" -#: js/files.js:805 +#: js/files.js:803 msgid "{count} folders" msgstr "" -#: js/files.js:813 +#: js/files.js:811 msgid "1 file" msgstr "" -#: js/files.js:815 +#: js/files.js:813 msgid "{count} files" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 384330aba1d..18ba9997b7f 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:09+0100\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 49ae8e1b274..c3b5c0f60f7 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:09+0100\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 4249ed53583..7c8266d73f2 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:09+0100\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 669c85df254..006ef4c048a 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:09+0100\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 7f4e045559f..69c4599f7d3 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\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 35950821584..eb1545b7247 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\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 457ac73372b..91ef55584b8 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\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 d379ecf13c8..35ef6d16f39 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\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/settings.po b/l10n/th_TH/settings.po index 3ca61934b5d..41350a3882c 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -149,7 +149,7 @@ msgstr "คุณได้ใช้งานไปแล้ว %s\n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -150,7 +150,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Müşteriler" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index bce528e3b74..3c59ae24b65 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -148,7 +148,7 @@ msgstr "Ви використали %s із доступних #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "Клієнти" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 9c6e9741936..e17d6607eed 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -152,7 +152,7 @@ msgstr "Bạn đã sử dụng %s có sẵn %s \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -148,7 +148,7 @@ msgstr "" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "客户" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 9902bd89a23..8a68e4eac0a 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -151,7 +151,7 @@ msgstr "你已使用 %s,有效空间 %s" #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "客户" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 71e3aea87af..ca897a2325b 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:11+0000\n" +"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"PO-Revision-Date: 2012-12-19 23:20+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" @@ -152,7 +152,7 @@ msgstr "您已經使用了 %s ,目前可用空間為 #: templates/personal.php:12 msgid "Clients" -msgstr "" +msgstr "客戶" #: templates/personal.php:13 msgid "Download Desktop Clients" diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 045ee99bb1d..f6e059f64bf 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -6,6 +6,7 @@ "Saving..." => "حفظ", "__language_name__" => "__language_name__", "Select an App" => "إختر تطبيقاً", +"Clients" => "الزبائن", "Password" => "كلمات السر", "Unable to change your password" => "لم يتم تعديل كلمة السر بنجاح", "Current password" => "كلمات السر الحالية", diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index cf95fb061b3..18784fae7b0 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -9,6 +9,7 @@ "Enable" => "Включване", "Saving..." => "Записване...", "Select an App" => "Изберете програма", +"Clients" => "Клиенти", "Password" => "Парола", "Unable to change your password" => "Невъзможна промяна на паролата", "Current password" => "Текуща парола", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 257ccc721fb..2c58fdfe131 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Mireu la pàgina d'aplicacions a apps.owncloud.com", "-licensed by " => "-propietat de ", "You have used %s of the available %s" => "Heu utilitzat %s d'un total disponible de %s", +"Clients" => "Clients", "Password" => "Contrasenya", "Your password was changed" => "La seva contrasenya s'ha canviat", "Unable to change your password" => "No s'ha pogut canviar la contrasenya", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index daee91b7158..c88959026da 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -23,7 +23,17 @@ "Select an App" => "Vyberte aplikaci", "See application page at apps.owncloud.com" => "Více na stránce s aplikacemi na apps.owncloud.com", "-licensed by " => "-licencováno ", +"User Documentation" => "Uživatelská dokumentace", +"Administrator Documentation" => "Dokumentace správce", +"Online Documentation" => "Online dokumentace", +"Forum" => "Fórum", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Placená podpora", "You have used %s of the available %s" => "Používáte %s z %s dostupných", +"Clients" => "Klienti", +"Download Desktop Clients" => "Stáhnout klienty pro počítač", +"Download Android Client" => "Stáhnout klienta pro android", +"Download iOS Client" => "Stáhnout klienta pro iOS", "Password" => "Heslo", "Your password was changed" => "Vaše heslo bylo změněno", "Unable to change your password" => "Vaše heslo nelze změnit", @@ -36,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Pro povolení změny hesla vyplňte adresu e-mailu", "Language" => "Jazyk", "Help translate" => "Pomoci s překladem", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Použijte tuto adresu pro připojení k vašemu ownCloud skrze správce souborů", +"Version" => "Verze", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Vyvinuto komunitou ownCloud, zdrojový kód je licencován pod AGPL.", "Name" => "Jméno", "Groups" => "Skupiny", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 6d62e1060b1..7d54763284a 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -22,6 +22,7 @@ "Select an App" => "Vælg en App", "See application page at apps.owncloud.com" => "Se applikationens side på apps.owncloud.com", "-licensed by " => "-licenseret af ", +"Clients" => "Klienter", "Password" => "Kodeord", "Your password was changed" => "Din adgangskode blev ændret", "Unable to change your password" => "Ude af stand til at ændre dit kodeord", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 3ebf86b4f47..11ec83ef67d 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Weitere Anwendungen findest Du auf apps.owncloud.com", "-licensed by " => "-lizenziert von ", "You have used %s of the available %s" => "Du verwendest %s der verfügbaren %s", +"Clients" => "Kunden", "Password" => "Passwort", "Your password was changed" => "Dein Passwort wurde geändert.", "Unable to change your password" => "Passwort konnte nicht geändert werden", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 0307225f83d..1fc8f591abf 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -23,7 +23,17 @@ "Select an App" => "Wählen Sie eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", "-licensed by " => "-lizenziert von ", +"User Documentation" => "Dokumentation für Benutzer", +"Administrator Documentation" => "Dokumentation für Administratoren", +"Online Documentation" => "Online-Dokumentation", +"Forum" => "Forum", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Kommerzieller Support", "You have used %s of the available %s" => "Sie verwenden %s der verfügbaren %s", +"Clients" => "Kunden", +"Download Desktop Clients" => "Desktop-Client herunterladen", +"Download Android Client" => "Android-Client herunterladen", +"Download iOS Client" => "iOS-Client herunterladen", "Password" => "Passwort", "Your password was changed" => "Ihr Passwort wurde geändert.", "Unable to change your password" => "Das Passwort konnte nicht geändert werden", @@ -36,7 +46,10 @@ "Fill in an email address to enable password recovery" => "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", "Language" => "Sprache", "Help translate" => "Helfen Sie bei der Übersetzung", -"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert.", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Benutzen Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden", +"Version" => "Version", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Entwickelt von der ownCloud-Community. Der Quellcode ist unter der AGPL lizenziert.", "Name" => "Name", "Groups" => "Gruppen", "Create" => "Anlegen", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index a82d23d10e1..6e4923fd7de 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Δείτε την σελίδα εφαρμογών στο apps.owncloud.com", "-licensed by " => "-άδεια από ", "You have used %s of the available %s" => "Χρησιμοποιήσατε %s από διαθέσιμα %s", +"Clients" => "Πελάτες", "Password" => "Συνθηματικό", "Your password was changed" => "Το συνθηματικό σας έχει αλλάξει", "Unable to change your password" => "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index f43af780deb..668d48f30b3 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com", "-licensed by " => "-permesilhavigita de ", "You have used %s of the available %s" => "Vi uzas %s el la haveblaj %s", +"Clients" => "Klientoj", "Password" => "Pasvorto", "Your password was changed" => "Via pasvorto ŝanĝiĝis", "Unable to change your password" => "Ne eblis ŝanĝi vian pasvorton", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 797b1dfd00a..2f7a639ee00 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Echa un vistazo a la web de aplicaciones apps.owncloud.com", "-licensed by " => "-licenciado por ", "You have used %s of the available %s" => "Ha usado %s de %s disponibles", +"Clients" => "Clientes", "Password" => "Contraseña", "Your password was changed" => "Su contraseña ha sido cambiada", "Unable to change your password" => "No se ha podido cambiar tu contraseña", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 520a720eda6..b408405d6da 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Mirá la web de aplicaciones apps.owncloud.com", "-licensed by " => "-licenciado por ", "You have used %s of the available %s" => "Usaste %s de los %s disponibles", +"Clients" => "Clientes", "Password" => "Contraseña", "Your password was changed" => "Tu contraseña fue cambiada", "Unable to change your password" => "No fue posible cambiar tu contraseña", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index cddda0fbb0d..7b61ee92eb0 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -22,6 +22,7 @@ "Select an App" => "Vali programm", "See application page at apps.owncloud.com" => "Vaata rakenduste lehte aadressil apps.owncloud.com", "-licensed by " => "-litsenseeritud ", +"Clients" => "Kliendid", "Password" => "Parool", "Your password was changed" => "Sinu parooli on muudetud", "Unable to change your password" => "Sa ei saa oma parooli muuta", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 75cb288a3e3..463e9c19af9 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Ikusi programen orria apps.owncloud.com en", "-licensed by " => "-lizentziatua ", "You have used %s of the available %s" => "Dagoeneko %s erabili duzu eskuragarri duzun %setatik", +"Clients" => "Bezeroak", "Password" => "Pasahitza", "Your password was changed" => "Zere pasahitza aldatu da", "Unable to change your password" => "Ezin izan da zure pasahitza aldatu", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 603fcaf8598..764bef6dc8b 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -13,6 +13,7 @@ "Add your App" => "برنامه خود را بیافزایید", "Select an App" => "یک برنامه انتخاب کنید", "See application page at apps.owncloud.com" => "صفحه این اٌپ را در apps.owncloud.com ببینید", +"Clients" => "مشتریان", "Password" => "گذرواژه", "Your password was changed" => "رمز عبور شما تغییر یافت", "Unable to change your password" => "ناتوان در تغییر گذرواژه", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index c11323fd08c..ff5f7f6a2b7 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Katso sovellussivu osoitteessa apps.owncloud.com", "-licensed by " => "-lisensoija ", "You have used %s of the available %s" => "Käytössäsi on %s/%s", +"Clients" => "Asiakkaat", "Password" => "Salasana", "Your password was changed" => "Salasanasi vaihdettiin", "Unable to change your password" => "Salasanaasi ei voitu vaihtaa", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 06a3e9c6303..b504d261f66 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Voir la page des applications à l'url apps.owncloud.com", "-licensed by " => "Distribué sous licence , par ", "You have used %s of the available %s" => "Vous avez utilisé %s des %s disponibles", +"Clients" => "Clients", "Password" => "Mot de passe", "Your password was changed" => "Votre mot de passe a été changé", "Unable to change your password" => "Impossible de changer votre mot de passe", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index a90e8e5b71d..b322c6f8bcf 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Vexa a páxina do aplicativo en apps.owncloud.com", "-licensed by " => "-licenciado por", "You have used %s of the available %s" => "Tes usados %s do total dispoñíbel de %s", +"Clients" => "Clientes", "Password" => "Contrasinal", "Your password was changed" => "O seu contrasinal foi cambiado", "Unable to change your password" => "Incapaz de trocar o seu contrasinal", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index 64ce6a134cd..2524c076b79 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "צפה בעמוד הישום ב apps.owncloud.com", "-licensed by " => "ברישיון לטובת ", "You have used %s of the available %s" => "השתמשת ב־%s מתוך %s הזמינים לך", +"Clients" => "לקוחות", "Password" => "ססמה", "Your password was changed" => "הססמה שלך הוחלפה", "Unable to change your password" => "לא ניתן לשנות את הססמה שלך", diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index 9db7526b599..437afeb7f59 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -13,6 +13,7 @@ "Add your App" => "Dodajte vašu aplikaciju", "Select an App" => "Odaberite Aplikaciju", "See application page at apps.owncloud.com" => "Pogledajte stranicu s aplikacijama na apps.owncloud.com", +"Clients" => "Klijenti", "Password" => "Lozinka", "Unable to change your password" => "Nemoguće promijeniti lozinku", "Current password" => "Trenutna lozinka", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 05fa6ef8ccf..18f21129b85 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -13,6 +13,7 @@ "Add your App" => "App hozzáadása", "Select an App" => "Egy App kiválasztása", "See application page at apps.owncloud.com" => "Lásd apps.owncloud.com, alkalmazások oldal", +"Clients" => "Kliensek", "Password" => "Jelszó", "Unable to change your password" => "Nem lehet megváltoztatni a jelszavad", "Current password" => "Jelenlegi jelszó", diff --git a/settings/l10n/ia.php b/settings/l10n/ia.php index ec25c3ae217..f2053b95279 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -5,6 +5,7 @@ "__language_name__" => "Interlingua", "Add your App" => "Adder tu application", "Select an App" => "Selectionar un app", +"Clients" => "Clientes", "Password" => "Contrasigno", "Unable to change your password" => "Non pote cambiar tu contrasigno", "Current password" => "Contrasigno currente", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index 62184d3e8f1..fd2be4856d9 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -12,6 +12,7 @@ "Add your App" => "Tambahkan App anda", "Select an App" => "Pilih satu aplikasi", "See application page at apps.owncloud.com" => "Lihat halaman aplikasi di apps.owncloud.com", +"Clients" => "Klien", "Password" => "Password", "Unable to change your password" => "Tidak dapat merubah password anda", "Current password" => "Password saat ini", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 5bbbbf591c3..79551579fc2 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -23,7 +23,17 @@ "Select an App" => "Seleziona un'applicazione", "See application page at apps.owncloud.com" => "Vedere la pagina dell'applicazione su apps.owncloud.com", "-licensed by " => "-licenziato da ", +"User Documentation" => "Documentazione utente", +"Administrator Documentation" => "Documentazione amministratore", +"Online Documentation" => "Documentazione in linea", +"Forum" => "Forum", +"Bugtracker" => "Sistema di tracciamento bug", +"Commercial Support" => "Supporto commerciale", "You have used %s of the available %s" => "Hai utilizzato %s dei %s disponibili", +"Clients" => "Client", +"Download Desktop Clients" => "Scarica client desktop", +"Download Android Client" => "Scarica client Android", +"Download iOS Client" => "Scarica client iOS", "Password" => "Password", "Your password was changed" => "La tua password è cambiata", "Unable to change your password" => "Modifica password non riuscita", @@ -36,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Inserisci il tuo indirizzo email per abilitare il recupero della password", "Language" => "Lingua", "Help translate" => "Migliora la traduzione", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Usa questo indirizzo per connetterti al tuo ownCloud dal tuo gestore file", +"Version" => "Versione", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Sviluppato dalla comunità di ownCloud, il codice sorgente è licenziato nei termini della AGPL.", "Name" => "Nome", "Groups" => "Gruppi", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 20f61eac15a..847f696037d 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -23,7 +23,17 @@ "Select an App" => "アプリを選択してください", "See application page at apps.owncloud.com" => "apps.owncloud.com でアプリケーションのページを見てください", "-licensed by " => "-ライセンス: ", +"User Documentation" => "ユーザドキュメント", +"Administrator Documentation" => "管理者ドキュメント", +"Online Documentation" => "オンラインドキュメント", +"Forum" => "フォーラム", +"Bugtracker" => "バグトラッカー", +"Commercial Support" => "コマーシャルサポート", "You have used %s of the available %s" => "現在、%s / %s を利用しています", +"Clients" => "顧客", +"Download Desktop Clients" => "デスクトップクライアントをダウンロード", +"Download Android Client" => "Androidクライアントをダウンロード", +"Download iOS Client" => "iOSクライアントをダウンロード", "Password" => "パスワード", "Your password was changed" => "パスワードを変更しました", "Unable to change your password" => "パスワードを変更することができません", @@ -36,6 +46,9 @@ "Fill in an email address to enable password recovery" => "※パスワード回復を有効にするにはメールアドレスの入力が必要です", "Language" => "言語", "Help translate" => "翻訳に協力する", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "ファイルマネージャでownCloudに接続する際はこのアドレスを利用してください", +"Version" => "バージョン", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud communityにより開発されています、ソースコードライセンスは、AGPL ライセンスにより提供されています。", "Name" => "名前", "Groups" => "グループ", diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index 39778c939c0..26720b20619 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -22,6 +22,7 @@ "Select an App" => "აირჩიეთ აპლიკაცია", "See application page at apps.owncloud.com" => "ნახეთ აპლიკაციის გვერდი apps.owncloud.com –ზე", "-licensed by " => "-ლიცენსირებულია ", +"Clients" => "კლიენტები", "Password" => "პაროლი", "Your password was changed" => "თქვენი პაროლი შეიცვალა", "Unable to change your password" => "თქვენი პაროლი არ შეიცვალა", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 52248abebf8..286cac87c53 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "apps.owncloud.com에 있는 앱 페이지를 참고하십시오", "-licensed by " => "-라이선스 보유자 ", "You have used %s of the available %s" => "현재 공간 %s/%s을(를) 사용 중입니다", +"Clients" => "고객", "Password" => "암호", "Your password was changed" => "암호가 변경되었습니다", "Unable to change your password" => "암호를 변경할 수 없음", diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index f26a4b53c9d..baa89a033b6 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -13,6 +13,7 @@ "Add your App" => "Setz deng App bei", "Select an App" => "Wiel eng Applikatioun aus", "See application page at apps.owncloud.com" => "Kuck dir d'Applicatioun's Säit op apps.owncloud.com un", +"Clients" => "Clienten", "Password" => "Passwuert", "Unable to change your password" => "Konnt däin Passwuert net änneren", "Current password" => "Momentan 't Passwuert", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 5d6e5164b23..f5fa8e29d96 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -15,6 +15,7 @@ "More Apps" => "Daugiau aplikacijų", "Select an App" => "Pasirinkite programą", "-licensed by " => "- autorius", +"Clients" => "Klientai", "Password" => "Slaptažodis", "Your password was changed" => "Jūsų slaptažodis buvo pakeistas", "Unable to change your password" => "Neįmanoma pakeisti slaptažodžio", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 8039422e7e4..bca762f8144 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Види ја страницата со апликации на apps.owncloud.com", "-licensed by " => "-лиценцирано од ", "You have used %s of the available %s" => "Имате искористено %s од достапните %s", +"Clients" => "Клиенти", "Password" => "Лозинка", "Your password was changed" => "Вашата лозинка беше променета.", "Unable to change your password" => "Вашата лозинка неможе да се смени", diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index 11d279e3e53..608ed7e05d5 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -12,6 +12,7 @@ "Add your App" => "Tambah apps anda", "Select an App" => "Pilih aplikasi", "See application page at apps.owncloud.com" => "Lihat halaman applikasi di apps.owncloud.com", +"Clients" => "klien", "Password" => "Kata laluan ", "Unable to change your password" => "Gagal mengubah kata laluan anda ", "Current password" => "Kata laluan semasa", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 5f2f3c3db3f..0800b6682e6 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -21,6 +21,7 @@ "More Apps" => "Flere Apps", "Select an App" => "Velg en app", "See application page at apps.owncloud.com" => "Se applikasjonens side på apps.owncloud.org", +"Clients" => "Klienter", "Password" => "Passord", "Your password was changed" => "Passord har blitt endret", "Unable to change your password" => "Kunne ikke endre passordet ditt", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 7ce49f0c59f..40d8742d7b3 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -23,7 +23,17 @@ "Select an App" => "Selecteer een app", "See application page at apps.owncloud.com" => "Zie de applicatiepagina op apps.owncloud.com", "-licensed by " => "-Gelicenseerd door ", +"User Documentation" => "Gebruikersdocumentatie", +"Administrator Documentation" => "Beheerdersdocumentatie", +"Online Documentation" => "Online documentatie", +"Forum" => "Forum", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Commerciële ondersteuning", "You have used %s of the available %s" => "U heeft %s van de %s beschikbaren gebruikt", +"Clients" => "Klanten", +"Download Desktop Clients" => "Download Desktop Clients", +"Download Android Client" => "Download Android Client", +"Download iOS Client" => "Download iOS Client", "Password" => "Wachtwoord", "Your password was changed" => "Je wachtwoord is veranderd", "Unable to change your password" => "Niet in staat om uw wachtwoord te wijzigen", @@ -36,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Vul een e-mailadres in om wachtwoord reset uit te kunnen voeren", "Language" => "Taal", "Help translate" => "Help met vertalen", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Gebruik dit adres om te verbinden met uw ownCloud in uw bestandsbeheer", +"Version" => "Versie", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Ontwikkeld door de ownCloud gemeenschap, de bron code is gelicenseerd onder de AGPL.", "Name" => "Naam", "Groups" => "Groepen", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 0865d28a66f..92ff6d22df2 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -10,6 +10,7 @@ "Enable" => "Slå på", "__language_name__" => "Nynorsk", "Select an App" => "Vel ein applikasjon", +"Clients" => "Klientar", "Password" => "Passord", "Unable to change your password" => "Klarte ikkje å endra passordet", "Current password" => "Passord", diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php index 66839eb3812..0bed7a9a416 100644 --- a/settings/l10n/oc.php +++ b/settings/l10n/oc.php @@ -21,6 +21,7 @@ "Select an App" => "Selecciona una applicacion", "See application page at apps.owncloud.com" => "Agacha la pagina d'applications en cò de apps.owncloud.com", "-licensed by " => "-licençiat per ", +"Clients" => "Practica", "Password" => "Senhal", "Your password was changed" => "Ton senhal a cambiat", "Unable to change your password" => "Pas possible de cambiar ton senhal", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index ad4ba8a946e..3668421d9c7 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", "-licensed by " => "-licencjonowane przez ", "You have used %s of the available %s" => "Korzystasz z %s z dostępnych %s", +"Clients" => "Klienci", "Password" => "Hasło", "Your password was changed" => "Twoje hasło zostało zmienione", "Unable to change your password" => "Nie można zmienić hasła", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index a9dee157b77..ebbdc85e45b 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Ver página do aplicativo em apps.owncloud.com", "-licensed by " => "-licenciado por ", "You have used %s of the available %s" => "Você usou %s do seu espaço de %s", +"Clients" => "Clientes", "Password" => "Senha", "Your password was changed" => "Sua senha foi alterada", "Unable to change your password" => "Não é possivel alterar a sua senha", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 43a776d1daf..fa5d01d8679 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Ver a página da aplicação em apps.owncloud.com", "-licensed by " => "-licenciado por ", "You have used %s of the available %s" => "Usou %s do disponivel %s", +"Clients" => "Clientes", "Password" => "Palavra-chave", "Your password was changed" => "A sua palavra-passe foi alterada", "Unable to change your password" => "Não foi possivel alterar a sua palavra-chave", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 214bf0c7ed6..26865c8c711 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -21,6 +21,7 @@ "Select an App" => "Selectează o aplicație", "See application page at apps.owncloud.com" => "Vizualizează pagina applicației pe apps.owncloud.com", "-licensed by " => "-licențiat ", +"Clients" => "Clienți", "Password" => "Parolă", "Your password was changed" => "Parola a fost modificată", "Unable to change your password" => "Imposibil de-ați schimbat parola", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 0b8fbc91ea4..ba26cb13353 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Смотрите дополнения на apps.owncloud.com", "-licensed by " => " лицензия. Автор ", "You have used %s of the available %s" => "Вы использовали %s из доступных %s", +"Clients" => "Клиенты", "Password" => "Пароль", "Your password was changed" => "Ваш пароль изменён", "Unable to change your password" => "Невозможно сменить пароль", diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index aa91eee87c3..a12bd09d28a 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Обратитесь к странице приложений на apps.owncloud.com", "-licensed by " => "-licensed by ", "You have used %s of the available %s" => "Вы использовали %s из возможных %s", +"Clients" => "Клиенты", "Password" => "Пароль", "Your password was changed" => "Ваш пароль был изменен", "Unable to change your password" => "Невозможно изменить Ваш пароль", diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php index 22a3d65058b..6c46834beb1 100644 --- a/settings/l10n/si_LK.php +++ b/settings/l10n/si_LK.php @@ -18,6 +18,7 @@ "Add your App" => "යෙදුමක් එක් කිරීම", "More Apps" => "තවත් යෙදුම්", "Select an App" => "යෙදුමක් තොරන්න", +"Clients" => "සේවාලාභීන්", "Password" => "මුරපදය", "Your password was changed" => "ඔබගේ මුර පදය වෙනස් කෙරුණි", "Unable to change your password" => "මුර පදය වෙනස් කළ නොහැකි විය", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index a07ee5998a4..08b9079c3ae 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Pozrite si stránku aplikácií na apps.owncloud.com", "-licensed by " => "-licencované ", "You have used %s of the available %s" => "Použili ste %s z %s dostupných ", +"Clients" => "Klienti", "Password" => "Heslo", "Your password was changed" => "Heslo bolo zmenené", "Unable to change your password" => "Nie je možné zmeniť vaše heslo", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 32ab3b8f54c..01d1d481b97 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Obiščite spletno stran programa na apps.owncloud.com", "-licensed by " => "-z dovoljenjem s strani ", "You have used %s of the available %s" => "Uporabljate %s od razpoložljivih %s", +"Clients" => "Stranka", "Password" => "Geslo", "Your password was changed" => "Vaše geslo je spremenjeno", "Unable to change your password" => "Gesla ni mogoče spremeniti.", diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 78bb3daae38..be30ab45f53 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Погледајте страницу са програмима на apps.owncloud.com", "-licensed by " => "-лиценцирао ", "You have used %s of the available %s" => "Искористили сте %s од дозвољених %s", +"Clients" => "Клијенти", "Password" => "Лозинка", "Your password was changed" => "Лозинка је промењена", "Unable to change your password" => "Не могу да изменим вашу лозинку", diff --git a/settings/l10n/sr@latin.php b/settings/l10n/sr@latin.php index 9e8436567df..9ee84bc255a 100644 --- a/settings/l10n/sr@latin.php +++ b/settings/l10n/sr@latin.php @@ -4,6 +4,7 @@ "Authentication error" => "Greška pri autentifikaciji", "Language changed" => "Jezik je izmenjen", "Select an App" => "Izaberite program", +"Clients" => "Klijenti", "Password" => "Lozinka", "Unable to change your password" => "Ne mogu da izmenim vašu lozinku", "Current password" => "Trenutna lozinka", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 10d3d069016..9f372cc9e06 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Se programsida på apps.owncloud.com", "-licensed by " => "-licensierad av ", "You have used %s of the available %s" => "Du har använt %s av tillgängliga %s", +"Clients" => "Kunder", "Password" => "Lösenord", "Your password was changed" => "Ditt lösenord har ändrats", "Unable to change your password" => "Kunde inte ändra ditt lösenord", diff --git a/settings/l10n/ta_LK.php b/settings/l10n/ta_LK.php index 1a11a9a7102..cbc2eec8fb7 100644 --- a/settings/l10n/ta_LK.php +++ b/settings/l10n/ta_LK.php @@ -23,6 +23,7 @@ "See application page at apps.owncloud.com" => "apps.owncloud.com இல் செயலி பக்கத்தை பார்க்க", "-licensed by " => "-அனுமதி பெற்ற ", "You have used %s of the available %s" => "நீங்கள் %s இலுள்ள %sபயன்படுத்தியுள்ளீர்கள்", +"Clients" => "வாடிக்கையாளர்கள்", "Password" => "கடவுச்சொல்", "Your password was changed" => "உங்களுடைய கடவுச்சொல் மாற்றப்பட்டுள்ளது", "Unable to change your password" => "உங்களுடைய கடவுச்சொல்லை மாற்றமுடியாது", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index d9c9101143f..063ec8733ae 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -23,6 +23,7 @@ "See application page at apps.owncloud.com" => "ดูหน้าแอพพลิเคชั่นที่ apps.owncloud.com", "-licensed by " => "-ลิขสิทธิ์การใช้งานโดย ", "You have used %s of the available %s" => "คุณได้ใช้งานไปแล้ว %s จากจำนวนที่สามารถใช้ได้ %s", +"Clients" => "ลูกค้า", "Password" => "รหัสผ่าน", "Your password was changed" => "รหัสผ่านของคุณถูกเปลี่ยนแล้ว", "Unable to change your password" => "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 2c79b93d954..f8acb9b28f2 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -20,6 +20,7 @@ "More Apps" => "Daha fazla App", "Select an App" => "Bir uygulama seçin", "See application page at apps.owncloud.com" => "Uygulamanın sayfasına apps.owncloud.com adresinden bakın ", +"Clients" => "Müşteriler", "Password" => "Parola", "Your password was changed" => "Şifreniz değiştirildi", "Unable to change your password" => "Parolanız değiştirilemiyor", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 5707b3cdafc..0cbce797e1d 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Перегляньте сторінку програм на apps.owncloud.com", "-licensed by " => "-licensed by ", "You have used %s of the available %s" => "Ви використали %s із доступних %s", +"Clients" => "Клієнти", "Password" => "Пароль", "Your password was changed" => "Ваш пароль змінено", "Unable to change your password" => "Не вдалося змінити Ваш пароль", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 49aee419bfb..50259953acd 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "Xem nhiều ứng dụng hơn tại apps.owncloud.com", "-licensed by " => "-Giấy phép được cấp bởi ", "You have used %s of the available %s" => "Bạn đã sử dụng %s có sẵn %s ", +"Clients" => "Khách hàng", "Password" => "Mật khẩu", "Your password was changed" => "Mật khẩu của bạn đã được thay đổi.", "Unable to change your password" => "Không thể đổi mật khẩu", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 2e429cf6b1e..cd6610d5a17 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -22,6 +22,7 @@ "Select an App" => "选择一个程序", "See application page at apps.owncloud.com" => "在owncloud.com上查看应用程序", "-licensed by " => "授权协议 ", +"Clients" => "客户", "Password" => "密码", "Your password was changed" => "您的密码以变更", "Unable to change your password" => "不能改变你的密码", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 3e0f8340eae..adc07e20675 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "查看在 app.owncloud.com 的应用程序页面", "-licensed by " => "-核准: ", "You have used %s of the available %s" => "你已使用 %s,有效空间 %s", +"Clients" => "客户", "Password" => "密码", "Your password was changed" => "密码已修改", "Unable to change your password" => "无法修改密码", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 33f4cb1194e..6589973bf99 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -24,6 +24,7 @@ "See application page at apps.owncloud.com" => "查看應用程式頁面於 apps.owncloud.com", "-licensed by " => "-核准: ", "You have used %s of the available %s" => "您已經使用了 %s ,目前可用空間為 %s", +"Clients" => "客戶", "Password" => "密碼", "Your password was changed" => "你的密碼已更改", "Unable to change your password" => "無法變更你的密碼", -- cgit v1.2.3 From 05fda76776890a449366b3a4a766080e61ffabb6 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sat, 22 Dec 2012 00:26:25 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/th_TH.php | 1 + apps/files_external/l10n/el.php | 2 + apps/files_external/l10n/ru_RU.php | 2 +- apps/user_webdavauth/l10n/ca.php | 3 +- apps/user_webdavauth/l10n/de_DE.php | 3 +- apps/user_webdavauth/l10n/el.php | 2 +- apps/user_webdavauth/l10n/it.php | 3 +- apps/user_webdavauth/l10n/pt_PT.php | 3 +- core/l10n/el.php | 8 ++++ core/l10n/ru_RU.php | 1 + l10n/ca/settings.po | 30 +++++++------- l10n/ca/user_webdavauth.po | 10 ++--- l10n/de/settings.po | 28 ++++++------- l10n/de_DE/core.po | 40 +++++++++---------- l10n/de_DE/settings.po | 6 +-- l10n/de_DE/user_webdavauth.po | 9 +++-- l10n/el/core.po | 80 ++++++++++++++++++------------------- l10n/el/files_external.po | 17 ++++---- l10n/el/settings.po | 30 +++++++------- l10n/el/user_webdavauth.po | 9 +++-- l10n/fi_FI/settings.po | 30 +++++++------- l10n/it/user_webdavauth.po | 10 ++--- l10n/mk/settings.po | 28 ++++++------- l10n/pt_PT/settings.po | 30 +++++++------- l10n/pt_PT/user_webdavauth.po | 11 ++--- l10n/ru_RU/core.po | 22 +++++----- l10n/ru_RU/files_external.po | 12 +++--- l10n/ru_RU/settings.po | 28 ++++++------- 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_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.po | 80 ++++++++++++++++++------------------- settings/l10n/ca.php | 12 ++++++ settings/l10n/de.php | 12 ++++++ settings/l10n/el.php | 12 ++++++ settings/l10n/fi_FI.php | 12 ++++++ settings/l10n/mk.php | 11 +++++ settings/l10n/pt_PT.php | 12 ++++++ settings/l10n/ru_RU.php | 11 +++++ 46 files changed, 371 insertions(+), 269 deletions(-) diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 343138ba126..bad817ab006 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -1,5 +1,6 @@ "ไม่มีข้อผิดพลาดใดๆ ไฟล์ถูกอัพโหลดเรียบร้อยแล้ว", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ไฟล์ที่อัพโหลดมีขนาดเกินคำสั่ง MAX_FILE_SIZE ที่ระบุเอาไว้ในรูปแบบคำสั่งในภาษา HTML", "The uploaded file was only partially uploaded" => "ไฟล์ที่อัพโหลดยังไม่ได้ถูกอัพโหลดอย่างสมบูรณ์", "No file was uploaded" => "ยังไม่มีไฟล์ที่ถูกอัพโหลด", diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php index a1dae9d4888..9bf499a911d 100644 --- a/apps/files_external/l10n/el.php +++ b/apps/files_external/l10n/el.php @@ -5,6 +5,8 @@ "Fill out all required fields" => "Συμπληρώστε όλα τα απαιτούμενα πεδία", "Please provide a valid Dropbox app key and secret." => "Παρακαλούμε δώστε έγκυρο κλειδί Dropbox και μυστικό.", "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. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει.", "External Storage" => "Εξωτερικό Αποθηκευτικό Μέσο", "Mount point" => "Σημείο προσάρτησης", "Backend" => "Σύστημα υποστήριξης", diff --git a/apps/files_external/l10n/ru_RU.php b/apps/files_external/l10n/ru_RU.php index 05a784100c2..e539b3cb2cf 100644 --- a/apps/files_external/l10n/ru_RU.php +++ b/apps/files_external/l10n/ru_RU.php @@ -5,7 +5,7 @@ "Fill out all required fields" => "Заполните все требуемые поля", "Please provide a valid Dropbox app key and secret." => "Пожалуйста представьте допустимый ключ приложения Dropbox и пароль.", "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\" не установлен. Mounting of CIFS/SMB shares is not possible. Пожалуйста, обратитесь к системному администратору, чтобы установить его.", +"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 невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить ее.", "External Storage" => "Внешние системы хранения данных", "Mount point" => "Точка монтирования", diff --git a/apps/user_webdavauth/l10n/ca.php b/apps/user_webdavauth/l10n/ca.php index a59bffb870d..84a6c599e78 100644 --- a/apps/user_webdavauth/l10n/ca.php +++ b/apps/user_webdavauth/l10n/ca.php @@ -1,3 +1,4 @@ "Adreça WebDAV: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud enviarà les credencials d'usuari a aquesta URL. S'interpretarà http 401 i http 403 com a credencials incorrectes i tots els altres codis com a credencials correctes." ); diff --git a/apps/user_webdavauth/l10n/de_DE.php b/apps/user_webdavauth/l10n/de_DE.php index 245a5101341..3d73dccfe8e 100644 --- a/apps/user_webdavauth/l10n/de_DE.php +++ b/apps/user_webdavauth/l10n/de_DE.php @@ -1,3 +1,4 @@ "URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud " ); diff --git a/apps/user_webdavauth/l10n/el.php b/apps/user_webdavauth/l10n/el.php index 9bd32954b05..245a5101341 100644 --- a/apps/user_webdavauth/l10n/el.php +++ b/apps/user_webdavauth/l10n/el.php @@ -1,3 +1,3 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/it.php b/apps/user_webdavauth/l10n/it.php index a5b7e56771f..b0abf2f2082 100644 --- a/apps/user_webdavauth/l10n/it.php +++ b/apps/user_webdavauth/l10n/it.php @@ -1,3 +1,4 @@ "URL WebDAV: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud invierà le credenziali dell'utente a questo URL. Interpreta i codici http 401 e http 403 come credenziali errate e tutti gli altri codici come credenziali corrette." ); diff --git a/apps/user_webdavauth/l10n/pt_PT.php b/apps/user_webdavauth/l10n/pt_PT.php index 1aca5caeff1..e8bfcfda81e 100644 --- a/apps/user_webdavauth/l10n/pt_PT.php +++ b/apps/user_webdavauth/l10n/pt_PT.php @@ -1,3 +1,4 @@ "Endereço WebDAV: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "O ownCloud vai enviar as credenciais para este URL. Todos os códigos http 401 e 403 serão interpretados como credenciais inválidas, todos os restantes códigos http serão interpretados como credenciais correctas." ); diff --git a/core/l10n/el.php b/core/l10n/el.php index e01de9fdc2c..d8a5d7aef51 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -1,4 +1,8 @@ "Ο χρήστης %s διαμοιράστηκε ένα αρχείο με εσάς", +"User %s shared a folder with you" => "Ο χρήστης %s διαμοιράστηκε ένα φάκελο με εσάς", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Ο χρήστης %s διαμοιράστηκε το αρχείο \"%s\" μαζί σας. Είναι διαθέσιμο για λήψη εδώ: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Ο χρήστης %s διαμοιράστηκε τον φάκελο \"%s\" μαζί σας. Είναι διαθέσιμος για λήψη εδώ: %s", "Category type not provided." => "Δεν δώθηκε τύπος κατηγορίας.", "No category to add?" => "Δεν έχετε κατηγορία να προσθέσετε;", "This category already exists: " => "Αυτή η κατηγορία υπάρχει ήδη:", @@ -39,6 +43,8 @@ "Share with link" => "Διαμοιρασμός με σύνδεσμο", "Password protect" => "Προστασία συνθηματικού", "Password" => "Συνθηματικό", +"Email link to person" => "Αποστολή συνδέσμου με email ", +"Send" => "Αποστολή", "Set expiration date" => "Ορισμός ημ. λήξης", "Expiration date" => "Ημερομηνία λήξης", "Share via email:" => "Διαμοιρασμός μέσω email:", @@ -55,6 +61,8 @@ "Password protected" => "Προστασία με συνθηματικό", "Error unsetting expiration date" => "Σφάλμα κατά την διαγραφή της ημ. λήξης", "Error setting expiration date" => "Σφάλμα κατά τον ορισμό ημ. λήξης", +"Sending ..." => "Αποστολή...", +"Email sent" => "Το Email απεστάλη ", "ownCloud password reset" => "Επαναφορά συνθηματικού ownCloud", "Use the following link to reset your password: {link}" => "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}", "You will receive a link to reset your password via Email." => "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω ηλεκτρονικού ταχυδρομείου.", diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index 3d67179c14e..c18fe245c9e 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -43,6 +43,7 @@ "Share with link" => "Опубликовать с ссылкой", "Password protect" => "Защитить паролем", "Password" => "Пароль", +"Email link to person" => "Ссылка на адрес электронной почты", "Send" => "Отправить", "Set expiration date" => "Установить срок действия", "Expiration date" => "Дата истечения срока действия", diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 87be5707738..da4cfbd6279 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/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: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 09:18+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -122,27 +122,27 @@ msgstr "-propietat de \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 09:21+0000\n" +"Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,11 +20,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud enviarà les credencials d'usuari a aquesta URL. S'interpretarà http 401 i http 403 com a credencials incorrectes i tots els altres codis com a credencials correctes." diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 6ea2029ea1f..14926bb214e 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 12:07+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -134,27 +134,27 @@ msgstr "-lizenziert von \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 10:42+0000\n" +"Last-Translator: a.tangemann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -176,8 +176,8 @@ msgid "The object type is not specified." msgstr "Der Objekttyp ist nicht angegeben." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Fehler" @@ -189,7 +189,7 @@ msgstr "Der App-Name ist nicht angegeben." msgid "The required file {file} is not installed!" msgstr "Die benötigte Datei {file} ist nicht installiert." -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Fehler bei der Freigabe" @@ -217,11 +217,11 @@ msgstr "Freigeben für" msgid "Share with link" msgstr "Über einen Link freigeben" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Passwort" @@ -286,23 +286,23 @@ msgstr "löschen" msgid "share" msgstr "freigeben" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "Email gesendet" @@ -327,7 +327,7 @@ msgid "Request failed!" msgstr "Die Anfrage schlug fehl!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Benutzername" @@ -541,29 +541,29 @@ msgstr "Web-Services unter Ihrer Kontrolle" msgid "Log out" msgstr "Abmelden" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatische Anmeldung verweigert." -#: templates/login.php:9 +#: templates/login.php:11 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:10 +#: templates/login.php:13 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:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "merken" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Einloggen" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index f1f9d99b929..d3dc81a2b5f 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 18:46+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 10:41+0000\n" +"Last-Translator: a.tangemann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index c050b2d8808..9cb13ec43ec 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -4,14 +4,15 @@ # # Translators: # , 2012. +# , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 18:31+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 23:03+0000\n" +"Last-Translator: multimill \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,4 +29,4 @@ msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud " diff --git a/l10n/el/core.po b/l10n/el/core.po index 29a4a7ee03e..7a42857d69c 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 13:25+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,26 +27,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Ο χρήστης %s διαμοιράστηκε ένα αρχείο με εσάς" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Ο χρήστης %s διαμοιράστηκε ένα φάκελο με εσάς" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "Ο χρήστης %s διαμοιράστηκε το αρχείο \"%s\" μαζί σας. Είναι διαθέσιμο για λήψη εδώ: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "Ο χρήστης %s διαμοιράστηκε τον φάκελο \"%s\" μαζί σας. Είναι διαθέσιμος για λήψη εδώ: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -168,8 +168,8 @@ msgid "The object type is not specified." msgstr "Δεν καθορίστηκε ο τύπος του αντικειμένου." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Σφάλμα" @@ -181,7 +181,7 @@ msgstr "Δεν καθορίστηκε το όνομα της εφαρμογής. msgid "The required file {file} is not installed!" msgstr "Το απαιτούμενο αρχείο {file} δεν εγκαταστάθηκε!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Σφάλμα κατά τον διαμοιρασμό" @@ -209,22 +209,22 @@ msgstr "Διαμοιρασμός με" msgid "Share with link" msgstr "Διαμοιρασμός με σύνδεσμο" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Προστασία συνθηματικού" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Συνθηματικό" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Αποστολή συνδέσμου με email " #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Αποστολή" #: js/share.js:177 msgid "Set expiration date" @@ -278,25 +278,25 @@ msgstr "διαγραφή" msgid "share" msgstr "διαμοιρασμός" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Προστασία με συνθηματικό" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Αποστολή..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Το Email απεστάλη " #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -318,8 +318,8 @@ msgstr "Η επαναφορά του email στάλθηκε." msgid "Request failed!" msgstr "Η αίτηση απέτυχε!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Όνομα Χρήστη" @@ -408,44 +408,44 @@ msgstr "Ο κατάλογος data και τα αρχεία σας πιθανό msgid "Create an admin account" msgstr "Δημιουργήστε έναν λογαριασμό διαχειριστή" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Για προχωρημένους" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Φάκελος δεδομένων" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Ρύθμιση της βάσης δεδομένων" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "θα χρησιμοποιηθούν" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Χρήστης της βάσης δεδομένων" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Συνθηματικό βάσης δεδομένων" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Όνομα βάσης δεδομένων" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Κενά Πινάκων Βάσης Δεδομένων" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Διακομιστής βάσης δεδομένων" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" @@ -533,29 +533,29 @@ msgstr "Υπηρεσίες web υπό τον έλεγχό σας" msgid "Log out" msgstr "Αποσύνδεση" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Απορρίφθηκε η αυτόματη σύνδεση!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Εάν δεν αλλάξατε το συνθηματικό σας προσφάτως, ο λογαριασμός μπορεί να έχει διαρρεύσει!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Παρακαλώ αλλάξτε το συνθηματικό σας για να ασφαλίσετε πάλι τον λογαριασμό σας." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Ξεχάσατε το συνθηματικό σας;" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "απομνημόνευση" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Είσοδος" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index c1705152ae5..f72135ae53a 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -3,6 +3,7 @@ # 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. @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 13:41+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,14 +51,14 @@ msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive " msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Προσοχή: Ο \"smbclient\" δεν εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση CIFS/SMB. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." #: lib/config.php:435 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 "Προσοχή: Η υποστήριξη FTP στην PHP δεν ενεργοποιήθηκε ή εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση FTP. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." #: templates/settings.php:3 msgid "External Storage" @@ -104,7 +105,7 @@ msgid "Users" msgstr "Χρήστες" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Διαγραφή" @@ -116,10 +117,10 @@ msgstr "Ενεργοποίηση Εξωτερικού Αποθηκευτικού msgid "Allow users to mount their own external storage" msgstr "Να επιτρέπεται στους χρήστες να προσαρτούν δικό τους εξωτερικό αποθηκευτικό χώρο" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "Πιστοποιητικά SSL root" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Εισαγωγή Πιστοποιητικού Root" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index e7341dbe102..4b27d019760 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 13:06+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -128,27 +128,27 @@ msgstr "-άδεια από , 2012. +# Efstathios Iosifidis , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 13:00+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +21,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index be42124a75f..18876d4aa6b 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/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: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 17:40+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" @@ -120,27 +120,27 @@ msgstr "-lisensoija \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 08:45+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" @@ -20,11 +20,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud invierà le credenziali dell'utente a questo URL. Interpreta i codici http 401 e http 403 come credenziali errate e tutti gli altri codici come credenziali corrette." diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 1f1f8fa6be3..3195e2e0539 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/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: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 13:39+0000\n" +"Last-Translator: Georgi Stanojevski \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -120,19 +120,19 @@ msgstr "-лиценцирано од \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-20 23:51+0000\n" +"Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -122,27 +122,27 @@ msgstr "-licenciado por , 2012. # Helder Meneses , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-20 23:46+0000\n" +"Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,11 +21,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "O ownCloud vai enviar as credenciais para este URL. Todos os códigos http 401 e 403 serão interpretados como credenciais inválidas, todos os restantes códigos http serão interpretados como credenciais correctas." diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 007386b6eb0..c94ef7d516d 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/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: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 10:54+0000\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 08:08+0000\n" "Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -207,14 +207,14 @@ msgstr "Опубликовать с ссылкой" msgid "Password protect" msgstr "Защитить паролем" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Пароль" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Ссылка на адрес электронной почты" #: js/share.js:173 msgid "Send" @@ -313,7 +313,7 @@ msgid "Request failed!" msgstr "Не удалось выполнить запрос!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Имя пользователя" @@ -527,29 +527,29 @@ msgstr "веб-сервисы под Вашим контролем" msgid "Log out" msgstr "Выйти" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Автоматический вход в систему отклонен!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Если Вы недавно не меняли пароль, Ваш аккаунт может быть подвергнут опасности!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Пожалуйста, измените пароль, чтобы защитить ваш аккаунт еще раз." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Забыли пароль?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "запомнить" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Войти" diff --git a/l10n/ru_RU/files_external.po b/l10n/ru_RU/files_external.po index 66ab6707a11..b93907dab57 100644 --- a/l10n/ru_RU/files_external.po +++ b/l10n/ru_RU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 11:24+0000\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 10:27+0000\n" "Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -46,7 +46,7 @@ msgstr "Ошибка настройки хранилища Google Drive" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Предупреждение: \"smbclient\" не установлен. Mounting of CIFS/SMB shares is not possible. Пожалуйста, обратитесь к системному администратору, чтобы установить его." +msgstr "Предупреждение: \"smbclient\" не установлен. Подключение общих папок CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." #: lib/config.php:435 msgid "" @@ -100,7 +100,7 @@ msgid "Users" msgstr "Пользователи" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Удалить" @@ -112,10 +112,10 @@ msgstr "Включить пользовательскую внешнюю сис msgid "Allow users to mount their own external storage" msgstr "Разрешить пользователям монтировать их собственную внешнюю систему хранения данных" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "Корневые сертификаты SSL" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Импортировать корневые сертификаты" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index 7731c49e2d1..15f03042ae5 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 10:00+0000\n" +"Last-Translator: AnnaSch \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -118,27 +118,27 @@ msgstr "-licensed by \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index b50639f96ba..bfe9b09567c 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:09+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 18ba9997b7f..ca6e60cba87 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:09+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 c3b5c0f60f7..8feb3108281 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:09+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 7c8266d73f2..4dbc3f13c49 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:09+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 006ef4c048a..188ef5efdbf 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:09+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 69c4599f7d3..f925dbe49c7 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 eb1545b7247..ff152eea274 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 91ef55584b8..496d89af3fa 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 35ef6d16f39..fdf8cc62304 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" +"POT-Creation-Date: 2012-12-22 00:24+0100\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 63252d60677..cff6308811a 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"PO-Revision-Date: 2012-12-21 10:27+0000\n" +"Last-Translator: AriesAnywhere Anywhere \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "ไม่มีข้อผิดพลาดใดๆ ไฟล์ถ #: ajax/upload.php:21 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "ขนาดไฟล์ที่อัพโหลดมีขนาดเกิน upload_max_filesize ที่ระบุไว้ใน php.ini" #: ajax/upload.php:23 msgid "" @@ -54,11 +54,11 @@ msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้ msgid "Files" msgstr "ไฟล์" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "ยกเลิกการแชร์ข้อมูล" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "ลบ" @@ -66,39 +66,39 @@ msgstr "ลบ" msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "แทนที่" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "แนะนำชื่อ" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "ยกเลิก" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "แทนที่ {new_name} แล้ว" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "ยกเลิกการแชร์แล้ว {files} ไฟล์" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "ลบไฟล์แล้ว {files} ไฟล์" @@ -108,80 +108,80 @@ msgid "" "allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้" -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "กำลังสร้างไฟล์บีบอัด ZIP อาจใช้เวลาสักครู่" -#: js/files.js:218 +#: js/files.js:212 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "เกิดข้อผิดพลาดในการอัพโหลด" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "ปิด" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "กำลังอัพโหลด {count} ไฟล์" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/files.js:451 +#: js/files.js:445 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" msgstr "ชื่อโฟลเดอร์ที่ใช้ไม่ถูกต้อง การใช้งาน \"ถูกแชร์\" ถูกสงวนไว้เฉพาะ Owncloud เท่านั้น" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "สแกนไฟล์แล้ว {count} ไฟล์" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "พบข้อผิดพลาดในระหว่างการสแกนไฟล์" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "ชื่อ" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "ขนาด" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 โฟลเดอร์" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} โฟลเดอร์" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 ไฟล์" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} ไฟล์" @@ -241,28 +241,28 @@ msgstr "อัพโหลด" msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" -#: templates/index.php:105 +#: templates/index.php:106 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้" -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "ไฟล์ที่กำลังสแกนอยู่ขณะนี้" diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 2c58fdfe131..0f57387355a 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -23,8 +23,17 @@ "Select an App" => "Seleccioneu una aplicació", "See application page at apps.owncloud.com" => "Mireu la pàgina d'aplicacions a apps.owncloud.com", "-licensed by " => "-propietat de ", +"User Documentation" => "Documentació d'usuari", +"Administrator Documentation" => "Documentació d'administrador", +"Online Documentation" => "Documentació en línia", +"Forum" => "Fòrum", +"Bugtracker" => "Seguiment d'errors", +"Commercial Support" => "Suport comercial", "You have used %s of the available %s" => "Heu utilitzat %s d'un total disponible de %s", "Clients" => "Clients", +"Download Desktop Clients" => "Baixa clients d'escriptori", +"Download Android Client" => " Baixa el client per Android", +"Download iOS Client" => "Baixa el client per iOS", "Password" => "Contrasenya", "Your password was changed" => "La seva contrasenya s'ha canviat", "Unable to change your password" => "No s'ha pogut canviar la contrasenya", @@ -37,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Ompliu el correu electrònic per activar la recuperació de contrasenya", "Language" => "Idioma", "Help translate" => "Ajudeu-nos amb la traducció", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Useu aquesta adreça per connectar amb ownCloud des del gestor de fitxers", +"Version" => "Versió", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desenvolupat per la comunitat ownCloud, el codi font té llicència AGPL.", "Name" => "Nom", "Groups" => "Grups", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 11ec83ef67d..836e5112665 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -23,8 +23,17 @@ "Select an App" => "Wähle eine Anwendung aus", "See application page at apps.owncloud.com" => "Weitere Anwendungen findest Du auf apps.owncloud.com", "-licensed by " => "-lizenziert von ", +"User Documentation" => "Dokumentation für Benutzer", +"Administrator Documentation" => "Dokumentation für Administratoren", +"Online Documentation" => "Online-Dokumentation", +"Forum" => "Forum", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Kommerzieller Support", "You have used %s of the available %s" => "Du verwendest %s der verfügbaren %s", "Clients" => "Kunden", +"Download Desktop Clients" => "Desktop-Client herunterladen", +"Download Android Client" => "Android-Client herunterladen", +"Download iOS Client" => "iOS-Client herunterladen", "Password" => "Passwort", "Your password was changed" => "Dein Passwort wurde geändert.", "Unable to change your password" => "Passwort konnte nicht geändert werden", @@ -37,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", "Language" => "Sprache", "Help translate" => "Hilf bei der Übersetzung", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Benutzen Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden", +"Version" => "Version", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert.", "Name" => "Name", "Groups" => "Gruppen", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 6e4923fd7de..38b96151cb4 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -23,8 +23,17 @@ "Select an App" => "Επιλέξτε μια Εφαρμογή", "See application page at apps.owncloud.com" => "Δείτε την σελίδα εφαρμογών στο apps.owncloud.com", "-licensed by " => "-άδεια από ", +"User Documentation" => "Τεκμηρίωση Χρήστη", +"Administrator Documentation" => "Τεκμηρίωση Διαχειριστή", +"Online Documentation" => "Τεκμηρίωση στο Διαδίκτυο", +"Forum" => "Φόρουμ", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Εμπορική Υποστήριξη", "You have used %s of the available %s" => "Χρησιμοποιήσατε %s από διαθέσιμα %s", "Clients" => "Πελάτες", +"Download Desktop Clients" => "Λήψη Προγραμμάτων για Σταθερούς Υπολογιστές", +"Download Android Client" => "Λήψη Προγράμματος Android", +"Download iOS Client" => "Λήψη Προγράμματος iOS", "Password" => "Συνθηματικό", "Your password was changed" => "Το συνθηματικό σας έχει αλλάξει", "Unable to change your password" => "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης", @@ -37,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού", "Language" => "Γλώσσα", "Help translate" => "Βοηθήστε στη μετάφραση", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Χρήση αυτής της διεύθυνσης για σύνδεση στο ownCloud με τον διαχειριστή αρχείων σας", +"Version" => "Έκδοση", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Αναπτύχθηκε από την κοινότητα ownCloud, ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL.", "Name" => "Όνομα", "Groups" => "Ομάδες", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index ff5f7f6a2b7..2d9d6ce941c 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -23,8 +23,17 @@ "Select an App" => "Valitse sovellus", "See application page at apps.owncloud.com" => "Katso sovellussivu osoitteessa apps.owncloud.com", "-licensed by " => "-lisensoija ", +"User Documentation" => "Käyttäjäohjeistus", +"Administrator Documentation" => "Ylläpito-ohjeistus", +"Online Documentation" => "Verkko-ohjeistus", +"Forum" => "Keskustelupalsta", +"Bugtracker" => "Ohjelmistovirheiden jäljitys", +"Commercial Support" => "Kaupallinen tuki", "You have used %s of the available %s" => "Käytössäsi on %s/%s", "Clients" => "Asiakkaat", +"Download Desktop Clients" => "Lataa työpöytäsovelluksia", +"Download Android Client" => "Lataa Android-sovellus", +"Download iOS Client" => "Lataa iOS-sovellus", "Password" => "Salasana", "Your password was changed" => "Salasanasi vaihdettiin", "Unable to change your password" => "Salasanaasi ei voitu vaihtaa", @@ -37,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa", "Language" => "Kieli", "Help translate" => "Auta kääntämisessä", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Käytä tätä osoitetta yhdistäessäsi ownCloudiisi tiedostonhallintaa käyttäen", +"Version" => "Versio", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Kehityksestä on vastannut ownCloud-yhteisö, lähdekoodi on julkaistu lisenssin AGPL alaisena.", "Name" => "Nimi", "Groups" => "Ryhmät", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index bca762f8144..25a3fa80c47 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -23,8 +23,16 @@ "Select an App" => "Избери аппликација", "See application page at apps.owncloud.com" => "Види ја страницата со апликации на apps.owncloud.com", "-licensed by " => "-лиценцирано од ", +"User Documentation" => "Корисничка документација", +"Administrator Documentation" => "Администраторска документација", +"Online Documentation" => "Документација на интернет", +"Forum" => "Форум", +"Commercial Support" => "Комерцијална подршка", "You have used %s of the available %s" => "Имате искористено %s од достапните %s", "Clients" => "Клиенти", +"Download Desktop Clients" => "Преземи клиенти за десктоп", +"Download Android Client" => "Преземи клиент за Андроид", +"Download iOS Client" => "Преземи iOS клиент", "Password" => "Лозинка", "Your password was changed" => "Вашата лозинка беше променета.", "Unable to change your password" => "Вашата лозинка неможе да се смени", @@ -37,6 +45,9 @@ "Fill in an email address to enable password recovery" => "Пополни ја адресата за е-пошта за да може да ја обновуваш лозинката", "Language" => "Јазик", "Help translate" => "Помогни во преводот", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Користете ја оваа адреса да ", +"Version" => "Верзија", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Развој од ownCloud заедницата, изворниот код е лиценциран соAGPL.", "Name" => "Име", "Groups" => "Групи", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index fa5d01d8679..6c2a50047db 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -23,8 +23,17 @@ "Select an App" => "Selecione uma aplicação", "See application page at apps.owncloud.com" => "Ver a página da aplicação em apps.owncloud.com", "-licensed by " => "-licenciado por ", +"User Documentation" => "Documentação de Utilizador", +"Administrator Documentation" => "Documentação de administrador.", +"Online Documentation" => "Documentação Online", +"Forum" => "Fórum", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Suporte Comercial", "You have used %s of the available %s" => "Usou %s do disponivel %s", "Clients" => "Clientes", +"Download Desktop Clients" => "Transferir os clientes de sincronização", +"Download Android Client" => "Transferir o cliente android", +"Download iOS Client" => "Transferir o cliente iOS", "Password" => "Palavra-chave", "Your password was changed" => "A sua palavra-passe foi alterada", "Unable to change your password" => "Não foi possivel alterar a sua palavra-chave", @@ -37,6 +46,9 @@ "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", "Language" => "Idioma", "Help translate" => "Ajude a traduzir", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Use este endereço no seu gestor de ficheiros para ligar à sua ownCloud", +"Version" => "Versão", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desenvolvido pela comunidade ownCloud, ocódigo fonte está licenciado sob a AGPL.", "Name" => "Nome", "Groups" => "Grupos", diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index a12bd09d28a..a964fe9166e 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -23,8 +23,16 @@ "Select an App" => "Выбрать приложение", "See application page at apps.owncloud.com" => "Обратитесь к странице приложений на apps.owncloud.com", "-licensed by " => "-licensed by ", +"User Documentation" => "Документация пользователя", +"Administrator Documentation" => "Документация администратора", +"Online Documentation" => "Документация online", +"Forum" => "Форум", +"Bugtracker" => "Отслеживание ошибок", +"Commercial Support" => "Коммерческая поддержка", "You have used %s of the available %s" => "Вы использовали %s из возможных %s", "Clients" => "Клиенты", +"Download Android Client" => "Загрузить клиент под Android ", +"Download iOS Client" => "Загрузить клиент под iOS ", "Password" => "Пароль", "Your password was changed" => "Ваш пароль был изменен", "Unable to change your password" => "Невозможно изменить Ваш пароль", @@ -37,6 +45,9 @@ "Fill in an email address to enable password recovery" => "Введите адрес электронной почты для возможности восстановления пароля", "Language" => "Язык", "Help translate" => "Помогите перевести", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Используйте этот адрес для подключения к ownCloud в Вашем файловом менеджере", +"Version" => "Версия", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Разработанный ownCloud community, the source code is licensed under the AGPL.", "Name" => "Имя", "Groups" => "Группы", -- cgit v1.2.3 From 0656b4174728595139dff5265553fdc44015a912 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Sun, 23 Dec 2012 00:10:23 +0100 Subject: [tx-robot] updated from transifex --- apps/files_external/l10n/de.php | 4 ++-- apps/files_external/l10n/de_DE.php | 4 ++-- apps/files_sharing/l10n/ar.php | 9 +++++++++ apps/files_versions/l10n/ar.php | 8 ++++++++ apps/user_ldap/l10n/ar.php | 3 +++ apps/user_ldap/l10n/de.php | 4 ++-- apps/user_ldap/l10n/de_DE.php | 1 + apps/user_webdavauth/l10n/ar.php | 2 +- apps/user_webdavauth/l10n/de.php | 3 ++- apps/user_webdavauth/l10n/uk.php | 3 ++- core/l10n/de.php | 8 ++++---- core/l10n/de_DE.php | 10 +++++----- l10n/ar/files_sharing.po | 31 ++++++++++++++++--------------- l10n/ar/files_versions.po | 23 ++++++++++++----------- l10n/ar/settings.po | 6 +++--- l10n/ar/user_ldap.po | 6 +++--- l10n/ar/user_webdavauth.po | 9 +++++---- l10n/de/core.po | 30 +++++++++++++++--------------- l10n/de/files_external.po | 16 ++++++++-------- l10n/de/settings.po | 8 ++++---- l10n/de/user_ldap.po | 10 +++++----- l10n/de/user_webdavauth.po | 10 +++++----- l10n/de_DE/core.po | 16 ++++++++-------- l10n/de_DE/files_external.po | 16 ++++++++-------- l10n/de_DE/settings.po | 8 ++++---- l10n/de_DE/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_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/uk/settings.po | 31 ++++++++++++++++--------------- l10n/uk/user_webdavauth.po | 11 ++++++----- settings/l10n/ar.php | 1 + settings/l10n/de.php | 2 +- settings/l10n/de_DE.php | 2 +- settings/l10n/uk.php | 12 ++++++++++++ 42 files changed, 188 insertions(+), 147 deletions(-) create mode 100644 apps/files_sharing/l10n/ar.php create mode 100644 apps/files_versions/l10n/ar.php create mode 100644 apps/user_ldap/l10n/ar.php diff --git a/apps/files_external/l10n/de.php b/apps/files_external/l10n/de.php index 196b3af2038..277cc2e6efe 100644 --- a/apps/files_external/l10n/de.php +++ b/apps/files_external/l10n/de.php @@ -5,8 +5,8 @@ "Fill out all required fields" => "Bitte alle notwendigen Felder füllen", "Please provide a valid Dropbox app key and secret." => "Bitte trage einen gültigen Dropbox-App-Key mit Secret ein.", "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. Bitte Deinen System-Verwalter 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: \"smbclient\" ist nicht aktiv oder nicht installiert. Das Einhängen von FTP-Freigaben ist nicht möglich. Bitte Deinen System-Verwalter dies zu installieren.", +"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. Bitte Deinen System-Administrator, 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 wende Dich an Deinen Systemadministrator.", "External Storage" => "Externer Speicher", "Mount point" => "Mount-Point", "Backend" => "Backend", diff --git a/apps/files_external/l10n/de_DE.php b/apps/files_external/l10n/de_DE.php index fb969006d66..5675eb057f0 100644 --- a/apps/files_external/l10n/de_DE.php +++ b/apps/files_external/l10n/de_DE.php @@ -5,8 +5,8 @@ "Fill out all required fields" => "Bitte alle notwendigen Felder füllen", "Please provide a valid Dropbox app key and secret." => "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein.", "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." => "Achtung: \"smbclient\" ist nicht installiert. Das Laden von CIFS/SMB shares ist nicht möglich. Bitte wenden Sie sich an Ihren Systemadministrator.", -"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." => "Achtung: Die FTP Unterstützung von PHP ist nicht initialisiert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator.", +"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.", "External Storage" => "Externer Speicher", "Mount point" => "Mount-Point", "Backend" => "Backend", diff --git a/apps/files_sharing/l10n/ar.php b/apps/files_sharing/l10n/ar.php new file mode 100644 index 00000000000..4cf3f8c0920 --- /dev/null +++ b/apps/files_sharing/l10n/ar.php @@ -0,0 +1,9 @@ + "كلمة المرور", +"Submit" => "تطبيق", +"%s shared the folder %s with you" => "%s شارك المجلد %s معك", +"%s shared the file %s with you" => "%s شارك الملف %s معك", +"Download" => "تحميل", +"No preview available for" => "لا يوجد عرض مسبق لـ", +"web services under your control" => "خدمات الشبكة تحت سيطرتك" +); diff --git a/apps/files_versions/l10n/ar.php b/apps/files_versions/l10n/ar.php new file mode 100644 index 00000000000..fea7f1c7562 --- /dev/null +++ b/apps/files_versions/l10n/ar.php @@ -0,0 +1,8 @@ + "إنهاء تاريخ الإنتهاء لجميع الإصدارات", +"History" => "السجل الزمني", +"Versions" => "الإصدارات", +"This will delete all existing backup versions of your files" => "هذه العملية ستقوم بإلغاء جميع إصدارات النسخ الاحتياطي للملفات", +"Files Versioning" => "أصدرة الملفات", +"Enable" => "تفعيل" +); diff --git a/apps/user_ldap/l10n/ar.php b/apps/user_ldap/l10n/ar.php new file mode 100644 index 00000000000..ced0b4293b7 --- /dev/null +++ b/apps/user_ldap/l10n/ar.php @@ -0,0 +1,3 @@ + "كلمة المرور" +); diff --git a/apps/user_ldap/l10n/de.php b/apps/user_ldap/l10n/de.php index bcd8ccfe343..87579cb2431 100644 --- a/apps/user_ldap/l10n/de.php +++ b/apps/user_ldap/l10n/de.php @@ -1,6 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Warnung: Die Apps user_ldap und user_webdavauth sind nicht kompatible. Unerwartetes Verhalten kann auftreten. Bitte Deinen System-Verwalter eine von beiden zu de-aktivieren.", -"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen System-Administrator das Modul zu installieren.", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "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.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen Systemadministrator das Modul zu installieren.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Du kannst das Protokoll auslassen, außer wenn Du SSL benötigst. Beginne dann mit ldaps://", "Base DN" => "Basis-DN", diff --git a/apps/user_ldap/l10n/de_DE.php b/apps/user_ldap/l10n/de_DE.php index 82877b5ca1b..f986ae83e87 100644 --- a/apps/user_ldap/l10n/de_DE.php +++ b/apps/user_ldap/l10n/de_DE.php @@ -1,5 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "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.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren.", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://", "Base DN" => "Basis-DN", diff --git a/apps/user_webdavauth/l10n/ar.php b/apps/user_webdavauth/l10n/ar.php index 9bd32954b05..cf59cd2519e 100644 --- a/apps/user_webdavauth/l10n/ar.php +++ b/apps/user_webdavauth/l10n/ar.php @@ -1,3 +1,3 @@ "WebDAV URL: http://" +"URL: http://" => "الرابط: http://" ); diff --git a/apps/user_webdavauth/l10n/de.php b/apps/user_webdavauth/l10n/de.php index 9bd32954b05..8589dc0c4fd 100644 --- a/apps/user_webdavauth/l10n/de.php +++ b/apps/user_webdavauth/l10n/de.php @@ -1,3 +1,4 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud wird die Logindaten zu dieser URL senden. http 401 und http 403 werden als falsche Logindaten interpretiert und alle anderen Codes als korrekte Logindaten." ); diff --git a/apps/user_webdavauth/l10n/uk.php b/apps/user_webdavauth/l10n/uk.php index 9bd32954b05..57aa90684ae 100644 --- a/apps/user_webdavauth/l10n/uk.php +++ b/apps/user_webdavauth/l10n/uk.php @@ -1,3 +1,4 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud відправить облікові дані на цей URL та буде інтерпретувати http 401 і http 403, як невірні облікові дані, а всі інші коди, як вірні." ); diff --git a/core/l10n/de.php b/core/l10n/de.php index 08a120763a3..c5867eda8c3 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -1,8 +1,8 @@ "%s möchte eine Datei mit dir teilen", -"User %s shared a folder with you" => "%s möchte ein Verzeichnis mit dir teilen", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s möchte die Datei %s mit dir teilen. Sie liegt hier zum Download bereit: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s möchte das Verzeichnis %s mit dir teilen. Es liegt hier zum Download bereit: %s", +"User %s shared a file with you" => "Der Nutzer %s hat eine Datei für Dich freigegeben", +"User %s shared a folder with you" => "%s hat ein Verzeichnis für Dich freigegeben", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s hat eine Datei \"%s\" für Dich freigegeben. Sie ist zum Download hier ferfügbar: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s hat eine Verzeichnis \"%s\" für Dich freigegeben. Es ist zum Download hier ferfügbar: %s", "Category type not provided." => "Kategorie nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: " => "Kategorie existiert bereits:", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index e32068f6db2..ed0bc0e0ffb 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -1,8 +1,8 @@ "Der Nutzer %s teilt eine Datei mit dir", -"User %s shared a folder with you" => "Der Nutzer %s teilt einen Ordner mit dir", -"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Der Nutzer %s teilt die Datei \"%s\" mit dir. Du kannst diese hier herunterladen: %s", -"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Der Nutzer %s teilt den Ornder \"%s\" mit dir. Du kannst diesen hier herunterladen: %s", +"User %s shared a file with you" => "Der Nutzer %s hat eine Datei für Sie freigegeben", +"User %s shared a folder with you" => "%s hat ein Verzeichnis für Sie freigegeben", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s hat eine Datei \"%s\" für Sie freigegeben. Sie ist zum Download hier ferfügbar: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s hat eine Verzeichnis \"%s\" für Sie freigegeben. Es ist zum Download hier ferfügbar: %s", "Category type not provided." => "Kategorie nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: " => "Kategorie existiert bereits:", @@ -43,7 +43,7 @@ "Share with link" => "Über einen Link freigeben", "Password protect" => "Passwortschutz", "Password" => "Passwort", -"Email link to person" => "Link per Mail an Person schicken", +"Email link to person" => "Link per E-Mail verschicken", "Send" => "Senden", "Set expiration date" => "Setze ein Ablaufdatum", "Expiration date" => "Ablaufdatum", diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 4c6c7c44821..92546656f2f 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -3,13 +3,14 @@ # 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: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 19:42+0000\n" +"Last-Translator: aboodilankaboot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,30 +20,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "كلمة المرور" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "تطبيق" -#: templates/public.php:9 +#: templates/public.php:17 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s شارك المجلد %s معك" -#: templates/public.php:11 +#: templates/public.php:19 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s شارك الملف %s معك" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:22 templates/public.php:38 msgid "Download" -msgstr "" +msgstr "تحميل" -#: templates/public.php:29 +#: templates/public.php:37 msgid "No preview available for" -msgstr "" +msgstr "لا يوجد عرض مسبق لـ" -#: templates/public.php:37 +#: templates/public.php:43 msgid "web services under your control" -msgstr "" +msgstr "خدمات الشبكة تحت سيطرتك" diff --git a/l10n/ar/files_versions.po b/l10n/ar/files_versions.po index 850b57a0081..3b32ba6301d 100644 --- a/l10n/ar/files_versions.po +++ b/l10n/ar/files_versions.po @@ -3,13 +3,14 @@ # 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: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 19:47+0000\n" +"Last-Translator: aboodilankaboot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,26 +18,26 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: js/settings-personal.js:31 templates/settings-personal.php:10 +#: js/settings-personal.js:31 templates/settings-personal.php:7 msgid "Expire all versions" -msgstr "" +msgstr "إنهاء تاريخ الإنتهاء لجميع الإصدارات" #: js/versions.js:16 msgid "History" -msgstr "" +msgstr "السجل الزمني" #: templates/settings-personal.php:4 msgid "Versions" -msgstr "" +msgstr "الإصدارات" -#: templates/settings-personal.php:7 +#: templates/settings-personal.php:10 msgid "This will delete all existing backup versions of your files" -msgstr "" +msgstr "هذه العملية ستقوم بإلغاء جميع إصدارات النسخ الاحتياطي للملفات" #: templates/settings.php:3 msgid "Files Versioning" -msgstr "" +msgstr "أصدرة الملفات" #: templates/settings.php:4 msgid "Enable" -msgstr "" +msgstr "تفعيل" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 9d5c9b6e9e3..0681094b946 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/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: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 19:51+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" @@ -87,7 +87,7 @@ msgstr "" #: js/apps.js:28 js/apps.js:55 msgid "Enable" -msgstr "" +msgstr "تفعيل" #: js/personal.js:69 msgid "Saving..." diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index 6a78dcfd054..7aaa90abe9a 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: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 19:40+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" @@ -60,7 +60,7 @@ msgstr "" #: templates/settings.php:18 msgid "Password" -msgstr "" +msgstr "كلمة المرور" #: templates/settings.php:18 msgid "For anonymous access, leave DN and Password empty." diff --git a/l10n/ar/user_webdavauth.po b/l10n/ar/user_webdavauth.po index 1d788f23767..ac1aa5b4a5e 100644 --- a/l10n/ar/user_webdavauth.po +++ b/l10n/ar/user_webdavauth.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 19:22+0000\n" +"Last-Translator: aboodilankaboot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +21,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "الرابط: http://" #: templates/settings.php:6 msgid "" diff --git a/l10n/de/core.po b/l10n/de/core.po index 4d2fac3a45e..861465cce99 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -23,9 +23,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 08:06+0000\n" -"Last-Translator: Susi <>\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 13:50+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,26 +36,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "%s möchte eine Datei mit dir teilen" +msgstr "Der Nutzer %s hat eine Datei für Dich freigegeben" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "%s möchte ein Verzeichnis mit dir teilen" +msgstr "%s hat ein Verzeichnis für Dich freigegeben" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "%s möchte die Datei %s mit dir teilen. Sie liegt hier zum Download bereit: %s" +msgstr "%s hat eine Datei \"%s\" für Dich freigegeben. Sie ist zum Download hier ferfügbar: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "%s möchte das Verzeichnis %s mit dir teilen. Es liegt hier zum Download bereit: %s" +msgstr "%s hat eine Verzeichnis \"%s\" für Dich freigegeben. Es ist zum Download hier ferfügbar: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -222,7 +222,7 @@ msgstr "Über einen Link freigeben" msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:168 templates/installation.php:44 templates/login.php:26 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Passwort" @@ -328,7 +328,7 @@ msgid "Request failed!" msgstr "Die Anfrage schlug fehl!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 -#: templates/login.php:21 +#: templates/login.php:28 msgid "Username" msgstr "Benutzername" @@ -542,29 +542,29 @@ msgstr "Web-Services unter Ihrer Kontrolle" msgid "Log out" msgstr "Abmelden" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatischer Login zurückgewiesen!" -#: templates/login.php:9 +#: templates/login.php:11 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:10 +#: templates/login.php:13 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:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Passwort vergessen?" -#: templates/login.php:29 +#: templates/login.php:39 msgid "remember" msgstr "merken" -#: templates/login.php:30 +#: templates/login.php:41 msgid "Log in" msgstr "Einloggen" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 42d733228c9..c8d7b8f8e41 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-16 00:11+0100\n" -"PO-Revision-Date: 2012-12-15 19:35+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 13:57+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,14 +50,14 @@ msgstr "Fehler beim Einrichten von Google Drive" 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-Verwalter dies zu installieren." +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:435 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: \"smbclient\" ist nicht aktiv oder nicht installiert. Das Einhängen von FTP-Freigaben ist nicht möglich. Bitte Deinen System-Verwalter dies zu installieren." +msgstr "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wende Dich an Deinen Systemadministrator." #: templates/settings.php:3 msgid "External Storage" @@ -104,7 +104,7 @@ msgid "Users" msgstr "Benutzer" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Löschen" @@ -116,10 +116,10 @@ msgstr "Externen Speicher für Benutzer aktivieren" msgid "Allow users to mount their own external storage" msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "SSL-Root-Zertifikate" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Root-Zertifikate importieren" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 14926bb214e..019a9c65ce0 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 12:07+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 14:02+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -231,7 +231,7 @@ msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Benutzen Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" +msgstr "Verwende diese Adresse, um Deinen Dateimanager mit Deiner ownCloud zu verbinden" #: templates/personal.php:63 msgid "Version" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 2d9cbf3b697..7e83a5b2043 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 08:19+0000\n" -"Last-Translator: Susi <>\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 14:04+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,13 +30,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 "Warnung: Die Apps user_ldap und user_webdavauth sind nicht kompatible. Unerwartetes Verhalten kann auftreten. Bitte Deinen System-Verwalter eine von beiden zu de-aktivieren." +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." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen System-Administrator das Modul zu installieren." +msgstr "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitte deinen Systemadministrator das Modul zu installieren." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/de/user_webdavauth.po b/l10n/de/user_webdavauth.po index b79ed12e950..392938e5f92 100644 --- a/l10n/de/user_webdavauth.po +++ b/l10n/de/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 14:08+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,11 +21,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud wird die Logindaten zu dieser URL senden. http 401 und http 403 werden als falsche Logindaten interpretiert und alle anderen Codes als korrekte Logindaten." diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 1dbf430164c..116cf3006cd 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -22,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 10:42+0000\n" -"Last-Translator: a.tangemann \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 13:52+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,26 +35,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "Der Nutzer %s teilt eine Datei mit dir" +msgstr "Der Nutzer %s hat eine Datei für Sie freigegeben" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "Der Nutzer %s teilt einen Ordner mit dir" +msgstr "%s hat ein Verzeichnis für Sie freigegeben" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "Der Nutzer %s teilt die Datei \"%s\" mit dir. Du kannst diese hier herunterladen: %s" +msgstr "%s hat eine Datei \"%s\" für Sie freigegeben. Sie ist zum Download hier ferfügbar: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "Der Nutzer %s teilt den Ornder \"%s\" mit dir. Du kannst diesen hier herunterladen: %s" +msgstr "%s hat eine Verzeichnis \"%s\" für Sie freigegeben. Es ist zum Download hier ferfügbar: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -228,7 +228,7 @@ msgstr "Passwort" #: js/share.js:172 msgid "Email link to person" -msgstr "Link per Mail an Person schicken" +msgstr "Link per E-Mail verschicken" #: js/share.js:173 msgid "Send" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 1b603f1ee39..6567207b387 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-19 00:03+0100\n" -"PO-Revision-Date: 2012-12-18 11:52+0000\n" -"Last-Translator: deh3nne \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 13:57+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,14 +50,14 @@ msgstr "Fehler beim Einrichten von Google Drive" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "Achtung: \"smbclient\" ist nicht installiert. Das Laden von CIFS/SMB shares ist nicht möglich. Bitte wenden Sie sich an Ihren Systemadministrator." +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:435 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 "Achtung: Die FTP Unterstützung von PHP ist nicht initialisiert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." +msgstr "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." #: templates/settings.php:3 msgid "External Storage" @@ -104,7 +104,7 @@ msgid "Users" msgstr "Benutzer" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Löschen" @@ -116,10 +116,10 @@ msgstr "Externen Speicher für Benutzer aktivieren" msgid "Allow users to mount their own external storage" msgstr "Erlaubt Benutzern ihre eigenen externen Speicher einzubinden" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "SSL-Root-Zertifikate" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Root-Zertifikate importieren" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index d3dc81a2b5f..d95b7bb40db 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -24,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" -"PO-Revision-Date: 2012-12-21 10:41+0000\n" -"Last-Translator: a.tangemann \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 14:01+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -231,7 +231,7 @@ msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "Benutzen Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" +msgstr "Verwenden Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" #: templates/personal.php:63 msgid "Version" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 0d720cd286f..843b2e80f4d 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-20 18:43+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 14:04+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,7 +35,7 @@ msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkom msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Warnung: Das PHP-Modul, das LDAP benöntigt, ist nicht installiert. Das Backend wird nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 0d2a2170aca..4b7fb0fec62 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 bfe9b09567c..7a44cdd0641 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 ca6e60cba87..8e65b3fa81d 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 8feb3108281..d9aed4d9c67 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 4dbc3f13c49..f790c23a1b9 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 188ef5efdbf..d59a26bbdb8 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 f925dbe49c7..7c919b714a9 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 ff152eea274..f8796fdcda4 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 496d89af3fa..69bcd199616 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\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 fdf8cc62304..a09b859730d 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-22 00:24+0100\n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 3c59ae24b65..613086e2095 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -5,13 +5,14 @@ # Translators: # , 2012. # , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 02:04+0000\n" +"Last-Translator: volodya327 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -119,27 +120,27 @@ msgstr "-licensed by , 2012. +# , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"PO-Revision-Date: 2012-12-22 01:58+0000\n" +"Last-Translator: volodya327 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,11 +21,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud відправить облікові дані на цей URL та буде інтерпретувати http 401 і http 403, як невірні облікові дані, а всі інші коди, як вірні." diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index f6e059f64bf..9edbe1a4212 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -3,6 +3,7 @@ "Invalid request" => "طلبك غير مفهوم", "Authentication error" => "لم يتم التأكد من الشخصية بنجاح", "Language changed" => "تم تغيير اللغة", +"Enable" => "تفعيل", "Saving..." => "حفظ", "__language_name__" => "__language_name__", "Select an App" => "إختر تطبيقاً", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 836e5112665..e27d1c1c432 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -47,7 +47,7 @@ "Language" => "Sprache", "Help translate" => "Hilf bei der Übersetzung", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Benutzen Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden", +"Use this address to connect to your ownCloud in your file manager" => "Verwende diese Adresse, um Deinen Dateimanager mit Deiner ownCloud zu verbinden", "Version" => "Version", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Entwickelt von der ownCloud-Community, der Quellcode ist unter der AGPL lizenziert.", "Name" => "Name", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 1fc8f591abf..99d7c1360ce 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -47,7 +47,7 @@ "Language" => "Sprache", "Help translate" => "Helfen Sie bei der Übersetzung", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "Benutzen Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden", +"Use this address to connect to your ownCloud in your file manager" => "Verwenden Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden", "Version" => "Version", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Entwickelt von der ownCloud-Community. Der Quellcode ist unter der AGPL lizenziert.", "Name" => "Name", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 0cbce797e1d..b9f48b2e881 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -23,8 +23,17 @@ "Select an App" => "Вибрати додаток", "See application page at apps.owncloud.com" => "Перегляньте сторінку програм на apps.owncloud.com", "-licensed by " => "-licensed by ", +"User Documentation" => "Документація Користувача", +"Administrator Documentation" => "Документація Адміністратора", +"Online Documentation" => "Он-Лайн Документація", +"Forum" => "Форум", +"Bugtracker" => "БагТрекер", +"Commercial Support" => "Комерційна підтримка", "You have used %s of the available %s" => "Ви використали %s із доступних %s", "Clients" => "Клієнти", +"Download Desktop Clients" => "Завантажити клієнт для ПК", +"Download Android Client" => "Завантажити клієнт для Android", +"Download iOS Client" => "Завантажити клієнт для iOS", "Password" => "Пароль", "Your password was changed" => "Ваш пароль змінено", "Unable to change your password" => "Не вдалося змінити Ваш пароль", @@ -37,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Введіть адресу електронної пошти для відновлення паролю", "Language" => "Мова", "Help translate" => "Допомогти з перекладом", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Використовуйте цю адресу для під'єднання до вашого ownCloud у вашому файловому менеджері", +"Version" => "Версія", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Розроблено ownCloud громадою, вихідний код має ліцензію AGPL.", "Name" => "Ім'я", "Groups" => "Групи", -- cgit v1.2.3 From 7d52c39419123ed3d20368245166e6fc1150975a Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Mon, 24 Dec 2012 00:12:16 +0100 Subject: [tx-robot] updated from transifex --- apps/files/l10n/da.php | 4 + apps/files_external/l10n/da.php | 2 + apps/files_external/l10n/zh_CN.php | 2 + apps/user_webdavauth/l10n/da.php | 4 + apps/user_webdavauth/l10n/sv.php | 2 +- apps/user_webdavauth/l10n/zh_CN.php | 2 +- core/l10n/ar.php | 50 ++++++++++- core/l10n/ca.php | 2 +- core/l10n/da.php | 21 +++++ core/l10n/zh_CN.php | 7 ++ l10n/ar/core.po | 161 ++++++++++++++++++------------------ l10n/ar/lib.po | 30 +++---- l10n/ar/settings.po | 73 ++++++++-------- l10n/ca/core.po | 64 +++++++------- l10n/da/core.po | 107 ++++++++++++------------ l10n/da/files.po | 87 +++++++++---------- l10n/da/files_external.po | 17 ++-- l10n/da/lib.po | 37 +++++---- l10n/da/user_webdavauth.po | 11 +-- l10n/sv/user_webdavauth.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_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_CN/core.po | 79 +++++++++--------- l10n/zh_CN/files_external.po | 17 ++-- l10n/zh_CN/settings.po | 31 +++---- l10n/zh_CN/user_webdavauth.po | 9 +- lib/l10n/ar.php | 5 +- lib/l10n/da.php | 7 +- settings/l10n/ar.php | 33 ++++++++ settings/l10n/zh_CN.php | 12 +++ 38 files changed, 528 insertions(+), 376 deletions(-) create mode 100644 apps/user_webdavauth/l10n/da.php diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 24652622c61..05404d27af7 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -1,5 +1,6 @@ "Der er ingen fejl, filen blev uploadet med success", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Den uploadede fil overskrider MAX_FILE_SIZE -direktivet som er specificeret i HTML-formularen", "The uploaded file was only partially uploaded" => "Den uploadede file blev kun delvist uploadet", "No file was uploaded" => "Ingen fil blev uploadet", @@ -18,6 +19,7 @@ "replaced {new_name} with {old_name}" => "erstattede {new_name} med {old_name}", "unshared {files}" => "ikke delte {files}", "deleted {files}" => "slettede {files}", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt.", "generating ZIP-file, it may take some time." => "genererer ZIP-fil, det kan tage lidt tid.", "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", "Upload Error" => "Fejl ved upload", @@ -27,6 +29,7 @@ "{count} files uploading" => "{count} filer uploades", "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.", +"Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" => "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud", "{count} files scanned" => "{count} filer skannet", "error while scanning" => "fejl under scanning", "Name" => "Navn", @@ -47,6 +50,7 @@ "New" => "Ny", "Text file" => "Tekstfil", "Folder" => "Mappe", +"From link" => "Fra link", "Upload" => "Upload", "Cancel upload" => "Fortryd upload", "Nothing in here. Upload something!" => "Her er tomt. Upload noget!", diff --git a/apps/files_external/l10n/da.php b/apps/files_external/l10n/da.php index 00a81f3da16..bae89a6cfdd 100644 --- a/apps/files_external/l10n/da.php +++ b/apps/files_external/l10n/da.php @@ -5,6 +5,8 @@ "Fill out all required fields" => "Udfyld alle nødvendige felter", "Please provide a valid Dropbox app key and secret." => "Angiv venligst en valid Dropbox app nøgle og hemmelighed", "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.", "External Storage" => "Ekstern opbevaring", "Mount point" => "Monteringspunkt", "Backend" => "Backend", diff --git a/apps/files_external/l10n/zh_CN.php b/apps/files_external/l10n/zh_CN.php index 247ef7ce95c..1bb88564630 100644 --- a/apps/files_external/l10n/zh_CN.php +++ b/apps/files_external/l10n/zh_CN.php @@ -5,6 +5,8 @@ "Fill out all required fields" => "完成所有必填项", "Please provide a valid Dropbox app key and secret." => "请提供有效的Dropbox应用key和secret", "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 分享挂载无法实现。请咨询系统管理员进行安装。", "External Storage" => "外部存储", "Mount point" => "挂载点", "Backend" => "后端", diff --git a/apps/user_webdavauth/l10n/da.php b/apps/user_webdavauth/l10n/da.php new file mode 100644 index 00000000000..7d9ee1d5b29 --- /dev/null +++ b/apps/user_webdavauth/l10n/da.php @@ -0,0 +1,4 @@ + "URL: http://", +"ownCloud will send the user credentials to this URL is interpret http 401 and http 403 as credentials wrong and all other codes as credentials correct." => "ownCloud vil sende brugeroplysningerne til denne webadresse er fortolker http 401 og http 403 som brugeroplysninger forkerte og alle andre koder som brugeroplysninger korrekte." +); diff --git a/apps/user_webdavauth/l10n/sv.php b/apps/user_webdavauth/l10n/sv.php index 9bd32954b05..245a5101341 100644 --- a/apps/user_webdavauth/l10n/sv.php +++ b/apps/user_webdavauth/l10n/sv.php @@ -1,3 +1,3 @@ "WebDAV URL: http://" +"URL: http://" => "URL: http://" ); diff --git a/apps/user_webdavauth/l10n/zh_CN.php b/apps/user_webdavauth/l10n/zh_CN.php index 33c77f7d30e..5b06409b42e 100644 --- a/apps/user_webdavauth/l10n/zh_CN.php +++ b/apps/user_webdavauth/l10n/zh_CN.php @@ -1,3 +1,3 @@ "WebDAV地址: http://" +"URL: http://" => "URL:http://" ); diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 80a22a248e6..d33de577b3d 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -1,10 +1,48 @@ "ألا توجد فئة للإضافة؟", +"This category already exists: " => "هذه الفئة موجودة مسبقاً", +"No categories selected for deletion." => "لم يتم اختيار فئة للحذف", "Settings" => "تعديلات", +"seconds ago" => "منذ ثواني", +"1 minute ago" => "منذ دقيقة", +"{minutes} minutes ago" => "{minutes} منذ دقائق", +"today" => "اليوم", +"Choose" => "اختيار", "Cancel" => "الغاء", +"No" => "لا", +"Yes" => "نعم", +"Ok" => "موافق", +"Error" => "خطأ", +"Error while sharing" => "حصل خطأ عند عملية المشاركة", +"Error while unsharing" => "حصل خطأ عند عملية إزالة المشاركة", +"Error while changing permissions" => "حصل خطأ عند عملية إعادة تعيين التصريح بالتوصل", +"Shared with you and the group {group} by {owner}" => "شورك معك ومع المجموعة {group} من قبل {owner}", +"Shared with you by {owner}" => "شورك معك من قبل {owner}", +"Share with" => "شارك مع", +"Share with link" => "شارك مع رابط", +"Password protect" => "حماية كلمة السر", "Password" => "كلمة السر", +"Set expiration date" => "تعيين تاريخ إنتهاء الصلاحية", +"Expiration date" => "تاريخ إنتهاء الصلاحية", +"Share via email:" => "مشاركة عبر البريد الإلكتروني:", +"No people found" => "لم يتم العثور على أي شخص", +"Resharing is not allowed" => "لا يسمح بعملية إعادة المشاركة", +"Shared in {item} with {user}" => "شورك في {item} مع {user}", "Unshare" => "إلغاء مشاركة", +"can edit" => "التحرير مسموح", +"access control" => "ضبط الوصول", +"create" => "إنشاء", +"update" => "تحديث", +"delete" => "حذف", +"share" => "مشاركة", +"Password protected" => "محمي بكلمة السر", +"Error unsetting expiration date" => "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية", +"Error setting expiration date" => "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية", +"ownCloud password reset" => "إعادة تعيين كلمة سر ownCloud", "Use the following link to reset your password: {link}" => "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}", "You will receive a link to reset your password via Email." => "سوف نرسل لك بريد يحتوي على وصلة لتجديد كلمة السر.", +"Reset email send." => "إعادة إرسال البريد الإلكتروني.", +"Request failed!" => "فشل الطلب", "Username" => "إسم المستخدم", "Request reset" => "طلب تعديل", "Your password was reset" => "لقد تم تعديل كلمة السر", @@ -16,9 +54,12 @@ "Apps" => "التطبيقات", "Admin" => "مستخدم رئيسي", "Help" => "المساعدة", +"Access forbidden" => "التوصّل محظور", "Cloud not found" => "لم يتم إيجاد", "Edit categories" => "عدل الفئات", "Add" => "أدخل", +"Security Warning" => "تحذير أمان", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "لا يوجد مولّد أرقام عشوائية ، الرجاء تفعيل الـ PHP OpenSSL extension.", "Create an admin account" => "أضف مستخدم رئيسي ", "Advanced" => "خيارات متقدمة", "Data folder" => "مجلد المعلومات", @@ -27,6 +68,7 @@ "Database user" => "مستخدم قاعدة البيانات", "Database password" => "كلمة سر مستخدم قاعدة البيانات", "Database name" => "إسم قاعدة البيانات", +"Database tablespace" => "مساحة جدول قاعدة البيانات", "Database host" => "خادم قاعدة البيانات", "Finish setup" => "انهاء التعديلات", "Sunday" => "الاحد", @@ -50,10 +92,16 @@ "December" => "كانون الاول", "web services under your control" => "خدمات الوب تحت تصرفك", "Log out" => "الخروج", +"Automatic logon rejected!" => "تم رفض تسجيل الدخول التلقائي!", +"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" => "أدخل", "You are logged out." => "تم الخروج بنجاح.", "prev" => "السابق", -"next" => "التالي" +"next" => "التالي", +"Security Warning!" => "تحذير أمان!", +"Please verify your password.
For security reasons you may be occasionally asked to enter your password again." => "الرجاء التحقق من كلمة السر.
من الممكن أحياناً أن نطلب منك إعادة إدخال كلمة السر مرة أخرى.", +"Verify" => "تحقيق" ); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index cf7cdfb7c94..f98922f8f38 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -33,7 +33,7 @@ "The object type is not specified." => "No s'ha especificat el tipus d'objecte.", "Error" => "Error", "The app name is not specified." => "No s'ha especificat el nom de l'aplicació.", -"The required file {file} is not installed!" => "El figtxer requerit {file} no està instal·lat!", +"The required file {file} is not installed!" => "El fitxer requerit {file} no està instal·lat!", "Error while sharing" => "Error en compartir", "Error while unsharing" => "Error en deixar de compartir", "Error while changing permissions" => "Error en canviar els permisos", diff --git a/core/l10n/da.php b/core/l10n/da.php index 2798b22830f..a792e1d9bae 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -1,15 +1,27 @@ "Bruger %s delte en fil med dig", +"User %s shared a folder with you" => "Bruger %s delte en mappe med dig", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Bruger %s delte filen \"%s\" med dig. Den kan hentes her: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Bruger %s delte mappe \"%s\" med dig. Det kan hentes her: %s", +"Category type not provided." => "Kategori typen ikke er fastsat.", "No category to add?" => "Ingen kategori at tilføje?", "This category already exists: " => "Denne kategori eksisterer allerede: ", +"Object type not provided." => "Object type ikke er fastsat.", +"%s ID not provided." => "%s ID ikke oplyst.", +"Error adding %s to favorites." => "Fejl ved tilføjelse af %s til favoritter.", "No categories selected for deletion." => "Ingen kategorier valgt", +"Error removing %s from favorites." => "Fejl ved fjernelse af %s fra favoritter.", "Settings" => "Indstillinger", "seconds ago" => "sekunder siden", "1 minute ago" => "1 minut siden", "{minutes} minutes ago" => "{minutes} minutter siden", +"1 hour ago" => "1 time siden", +"{hours} hours ago" => "{hours} timer siden", "today" => "i dag", "yesterday" => "i går", "{days} days ago" => "{days} dage siden", "last month" => "sidste måned", +"{months} months ago" => "{months} måneder siden", "months ago" => "måneder siden", "last year" => "sidste år", "years ago" => "år siden", @@ -18,7 +30,10 @@ "No" => "Nej", "Yes" => "Ja", "Ok" => "OK", +"The object type is not specified." => "Objekttypen er ikke angivet.", "Error" => "Fejl", +"The app name is not specified." => "Den app navn er ikke angivet.", +"The required file {file} is not installed!" => "Den krævede fil {file} er ikke installeret!", "Error while sharing" => "Fejl under deling", "Error while unsharing" => "Fejl under annullering af deling", "Error while changing permissions" => "Fejl under justering af rettigheder", @@ -28,6 +43,8 @@ "Share with link" => "Del med link", "Password protect" => "Beskyt med adgangskode", "Password" => "Kodeord", +"Email link to person" => "E-mail link til person", +"Send" => "Send", "Set expiration date" => "Vælg udløbsdato", "Expiration date" => "Udløbsdato", "Share via email:" => "Del via email:", @@ -44,9 +61,13 @@ "Password protected" => "Beskyttet med adgangskode", "Error unsetting expiration date" => "Fejl ved fjernelse af udløbsdato", "Error setting expiration date" => "Fejl under sætning af udløbsdato", +"Sending ..." => "Sender ...", +"Email sent" => "E-mail afsendt", "ownCloud password reset" => "Nulstil ownCloud kodeord", "Use the following link to reset your password: {link}" => "Anvend følgende link til at nulstille din adgangskode: {link}", "You will receive a link to reset your password via Email." => "Du vil modtage et link til at nulstille dit kodeord via email.", +"Reset email send." => "Reset-mail afsendt.", +"Request failed!" => "Anmodningen mislykkedes!", "Username" => "Brugernavn", "Request reset" => "Anmod om nulstilling", "Your password was reset" => "Dit kodeord blev nulstillet", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index a83382904d3..64b108ca1dd 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -1,4 +1,8 @@ "用户 %s 与您共享了一个文件", +"User %s shared a folder with you" => "用户 %s 与您共享了一个文件夹", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "用户 %s 与您共享了文件\"%s\"。文件下载地址:%s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "用户 %s 与您共享了文件夹\"%s\"。文件夹下载地址:%s", "Category type not provided." => "未提供分类类型。", "No category to add?" => "没有可添加分类?", "This category already exists: " => "此分类已存在: ", @@ -39,6 +43,7 @@ "Share with link" => "共享链接", "Password protect" => "密码保护", "Password" => "密码", +"Send" => "发送", "Set expiration date" => "设置过期日期", "Expiration date" => "过期日期", "Share via email:" => "通过Email共享", @@ -55,6 +60,8 @@ "Password protected" => "密码已受保护", "Error unsetting expiration date" => "取消设置过期日期时出错", "Error setting expiration date" => "设置过期日期时出错", +"Sending ..." => "正在发送...", +"Email sent" => "邮件已发送", "ownCloud password reset" => "重置 ownCloud 密码", "Use the following link to reset your password: {link}" => "使用以下链接重置您的密码:{link}", "You will receive a link to reset your password via Email." => "您将会收到包含可以重置密码链接的邮件。", diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 4671747f750..0785bd05e65 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 19:06+0000\n" +"Last-Translator: aboodilankaboot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,11 +49,11 @@ msgstr "" #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "" +msgstr "ألا توجد فئة للإضافة؟" #: ajax/vcategories/add.php:37 msgid "This category already exists: " -msgstr "" +msgstr "هذه الفئة موجودة مسبقاً" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 @@ -73,7 +74,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 @@ -86,15 +87,15 @@ msgstr "تعديلات" #: js/js.js:704 msgid "seconds ago" -msgstr "" +msgstr "منذ ثواني" #: js/js.js:705 msgid "1 minute ago" -msgstr "" +msgstr "منذ دقيقة" #: js/js.js:706 msgid "{minutes} minutes ago" -msgstr "" +msgstr "{minutes} منذ دقائق" #: js/js.js:707 msgid "1 hour ago" @@ -106,7 +107,7 @@ msgstr "" #: js/js.js:709 msgid "today" -msgstr "" +msgstr "اليوم" #: js/js.js:710 msgid "yesterday" @@ -138,7 +139,7 @@ msgstr "" #: js/oc-dialogs.js:126 msgid "Choose" -msgstr "" +msgstr "اختيار" #: js/oc-dialogs.js:146 js/oc-dialogs.js:166 msgid "Cancel" @@ -146,15 +147,15 @@ msgstr "الغاء" #: js/oc-dialogs.js:162 msgid "No" -msgstr "" +msgstr "لا" #: js/oc-dialogs.js:163 msgid "Yes" -msgstr "" +msgstr "نعم" #: js/oc-dialogs.js:180 msgid "Ok" -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 @@ -162,10 +163,10 @@ msgid "The object type is not specified." msgstr "" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" -msgstr "" +msgstr "خطأ" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -175,39 +176,39 @@ msgstr "" msgid "The required file {file} is not installed!" msgstr "" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" -msgstr "" +msgstr "حصل خطأ عند عملية المشاركة" #: js/share.js:135 msgid "Error while unsharing" -msgstr "" +msgstr "حصل خطأ عند عملية إزالة المشاركة" #: js/share.js:142 msgid "Error while changing permissions" -msgstr "" +msgstr "حصل خطأ عند عملية إعادة تعيين التصريح بالتوصل" #: js/share.js:151 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "شورك معك ومع المجموعة {group} من قبل {owner}" #: js/share.js:153 msgid "Shared with you by {owner}" -msgstr "" +msgstr "شورك معك من قبل {owner}" #: js/share.js:158 msgid "Share with" -msgstr "" +msgstr "شارك مع" #: js/share.js:163 msgid "Share with link" -msgstr "" +msgstr "شارك مع رابط" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" -msgstr "" +msgstr "حماية كلمة السر" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "كلمة السر" @@ -222,27 +223,27 @@ msgstr "" #: js/share.js:177 msgid "Set expiration date" -msgstr "" +msgstr "تعيين تاريخ إنتهاء الصلاحية" #: js/share.js:178 msgid "Expiration date" -msgstr "" +msgstr "تاريخ إنتهاء الصلاحية" #: js/share.js:210 msgid "Share via email:" -msgstr "" +msgstr "مشاركة عبر البريد الإلكتروني:" #: js/share.js:212 msgid "No people found" -msgstr "" +msgstr "لم يتم العثور على أي شخص" #: js/share.js:239 msgid "Resharing is not allowed" -msgstr "" +msgstr "لا يسمح بعملية إعادة المشاركة" #: js/share.js:275 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "شورك في {item} مع {user}" #: js/share.js:296 msgid "Unshare" @@ -250,51 +251,51 @@ msgstr "إلغاء مشاركة" #: js/share.js:308 msgid "can edit" -msgstr "" +msgstr "التحرير مسموح" #: js/share.js:310 msgid "access control" -msgstr "" +msgstr "ضبط الوصول" #: js/share.js:313 msgid "create" -msgstr "" +msgstr "إنشاء" #: js/share.js:316 msgid "update" -msgstr "" +msgstr "تحديث" #: js/share.js:319 msgid "delete" -msgstr "" +msgstr "حذف" #: js/share.js:322 msgid "share" -msgstr "" +msgstr "مشاركة" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" -msgstr "" +msgstr "محمي بكلمة السر" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" -msgstr "" +msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" -msgstr "" +msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "" -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "" #: lostpassword/controller.php:47 msgid "ownCloud password reset" -msgstr "" +msgstr "إعادة تعيين كلمة سر ownCloud" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -306,14 +307,14 @@ 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:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "إسم المستخدم" @@ -359,7 +360,7 @@ msgstr "المساعدة" #: templates/403.php:12 msgid "Access forbidden" -msgstr "" +msgstr "التوصّل محظور" #: templates/404.php:12 msgid "Cloud not found" @@ -375,13 +376,13 @@ msgstr "أدخل" #: templates/installation.php:23 templates/installation.php:31 msgid "Security Warning" -msgstr "" +msgstr "تحذير أمان" #: templates/installation.php:24 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "لا يوجد مولّد أرقام عشوائية ، الرجاء تفعيل الـ PHP OpenSSL extension." #: templates/installation.php:26 msgid "" @@ -402,44 +403,44 @@ msgstr "" msgid "Create an admin account" msgstr "أضف
مستخدم رئيسي " -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "خيارات متقدمة" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "مجلد المعلومات" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "أسس قاعدة البيانات" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "سيتم استخدمه" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "مستخدم قاعدة البيانات" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "كلمة سر مستخدم قاعدة البيانات" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "إسم قاعدة البيانات" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" -msgstr "" +msgstr "مساحة جدول قاعدة البيانات" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "خادم قاعدة البيانات" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "انهاء التعديلات" @@ -527,29 +528,29 @@ msgstr "خدمات الوب تحت تصرفك" msgid "Log out" msgstr "الخروج" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" -msgstr "" +msgstr "تم رفض تسجيل الدخول التلقائي!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "قد يكون حسابك في خطر إن لم تقم بإعادة تعيين كلمة السر حديثاً" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "الرجاء إعادة تعيين كلمة السر لتأمين حسابك." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "هل نسيت كلمة السر؟" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "تذكر" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "أدخل" @@ -567,14 +568,14 @@ msgstr "التالي" #: templates/verify.php:5 msgid "Security Warning!" -msgstr "" +msgstr "تحذير أمان!" #: templates/verify.php:6 msgid "" "Please verify your password.
For security reasons you may be " "occasionally asked to enter your password again." -msgstr "" +msgstr "الرجاء التحقق من كلمة السر.
من الممكن أحياناً أن نطلب منك إعادة إدخال كلمة السر مرة أخرى." #: templates/verify.php:16 msgid "Verify" -msgstr "" +msgstr "تحقيق" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index fc9b90e3d69..6a9cdf2b15b 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" +"POT-Creation-Date: 2012-12-24 00:11+0100\n" +"PO-Revision-Date: 2012-12-23 19: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" @@ -17,43 +17,43 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: app.php:285 +#: app.php:287 msgid "Help" msgstr "المساعدة" -#: app.php:292 +#: app.php:294 msgid "Personal" msgstr "شخصي" -#: app.php:297 +#: app.php:299 msgid "Settings" msgstr "تعديلات" -#: app.php:302 +#: app.php:304 msgid "Users" msgstr "المستخدمين" -#: app.php:309 +#: app.php:311 msgid "Apps" msgstr "" -#: app.php:311 +#: app.php:313 msgid "Admin" msgstr "" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "" -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "" @@ -83,11 +83,11 @@ msgstr "" #: template.php:103 msgid "seconds ago" -msgstr "" +msgstr "منذ ثواني" #: template.php:104 msgid "1 minute ago" -msgstr "" +msgstr "منذ دقيقة" #: template.php:105 #, php-format @@ -105,7 +105,7 @@ msgstr "" #: template.php:108 msgid "today" -msgstr "" +msgstr "اليوم" #: template.php:109 msgid "yesterday" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 0681094b946..e3ac2066d0d 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -4,14 +4,15 @@ # # Translators: # , 2012. +# , 2012. # , 2011, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 19:51+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:11+0100\n" +"PO-Revision-Date: 2012-12-23 18:36+0000\n" +"Last-Translator: aboodilankaboot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,27 +22,27 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -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:12 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/openid.php:13 msgid "OpenID Changed" @@ -53,7 +54,7 @@ msgstr "طلبك غير مفهوم" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" +msgstr "فشل إزالة المجموعة" #: ajax/removeuser.php:15 ajax/setquota.php:15 ajax/togglegroups.php:18 msgid "Authentication error" @@ -61,7 +62,7 @@ msgstr "لم يتم التأكد من الشخصية بنجاح" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "" +msgstr "فشل إزالة المستخدم" #: ajax/setlanguage.php:15 msgid "Language changed" @@ -69,21 +70,21 @@ msgstr "تم تغيير اللغة" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "لا يستطيع المدير إزالة حسابه من مجموعة المديرين" #: ajax/togglegroups.php:28 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "فشل إضافة المستخدم الى المجموعة %s" #: ajax/togglegroups.php:34 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "فشل إزالة المستخدم من المجموعة %s" #: js/apps.js:28 js/apps.js:67 msgid "Disable" -msgstr "" +msgstr "إيقاف" #: js/apps.js:28 js/apps.js:55 msgid "Enable" @@ -99,11 +100,11 @@ msgstr "__language_name__" #: templates/apps.php:10 msgid "Add your App" -msgstr "" +msgstr "أضف تطبيقاتك" #: templates/apps.php:11 msgid "More Apps" -msgstr "" +msgstr "المزيد من التطبيقات" #: templates/apps.php:27 msgid "Select an App" @@ -111,40 +112,40 @@ msgstr "إختر تطبيقاً" #: templates/apps.php:31 msgid "See application page at apps.owncloud.com" -msgstr "" +msgstr "راجع صفحة التطبيق على apps.owncloud.com" #: templates/apps.php:32 msgid "-licensed by " -msgstr "" +msgstr "-ترخيص من قبل " #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "كتاب توثيق المستخدم" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "كتاب توثيق المدير" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "توثيق متوفر على الشبكة" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "منتدى" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "تعقب علة" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "دعم تجاري" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "تم إستهلاك %s من المتوفر %s" #: templates/personal.php:12 msgid "Clients" @@ -152,15 +153,15 @@ msgstr "الزبائن" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "تحميل عملاء سطح المكتب" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "تحميل عميل آندرويد" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "تحميل عميل آي أو أس" #: templates/personal.php:21 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -168,7 +169,7 @@ msgstr "كلمات السر" #: templates/personal.php:22 msgid "Your password was changed" -msgstr "" +msgstr "لقد تم تغيير كلمة السر" #: templates/personal.php:23 msgid "Unable to change your password" @@ -212,15 +213,15 @@ msgstr "ساعد في الترجمه" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "إصدار" #: templates/personal.php:65 msgid "" @@ -230,7 +231,7 @@ msgid "" "licensed under the AGPL." -msgstr "" +msgstr "طوّر من قبل ownCloud مجتمع, الـ النص المصدري مرخص بموجب رخصة أفيرو العمومية." #: templates/users.php:21 templates/users.php:76 msgid "Name" @@ -246,7 +247,7 @@ msgstr "انشئ" #: templates/users.php:35 msgid "Default Quota" -msgstr "" +msgstr "الحصة النسبية الإفتراضية" #: templates/users.php:55 templates/users.php:138 msgid "Other" @@ -254,7 +255,7 @@ msgstr "شيء آخر" #: templates/users.php:80 templates/users.php:112 msgid "Group Admin" -msgstr "" +msgstr "مدير المجموعة" #: templates/users.php:82 msgid "Quota" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 0ce863841d7..9fd20a8ef12 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/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: 2012-12-14 00:16+0100\n" -"PO-Revision-Date: 2012-12-13 09:48+0000\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 14:22+0000\n" "Last-Translator: rogerc \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -163,8 +163,8 @@ msgid "The object type is not specified." msgstr "No s'ha especificat el tipus d'objecte." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Error" @@ -174,9 +174,9 @@ msgstr "No s'ha especificat el nom de l'aplicació." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "El figtxer requerit {file} no està instal·lat!" +msgstr "El fitxer requerit {file} no està instal·lat!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Error en compartir" @@ -204,11 +204,11 @@ msgstr "Comparteix amb" msgid "Share with link" msgstr "Comparteix amb enllaç" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Protegir amb contrasenya" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Contrasenya" @@ -273,23 +273,23 @@ msgstr "elimina" msgid "share" msgstr "comparteix" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data d'expiració" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Error en establir la data d'expiració" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" @@ -313,8 +313,8 @@ msgstr "S'ha enviat el correu reinicialització" msgid "Request failed!" msgstr "El requeriment ha fallat!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nom d'usuari" @@ -403,44 +403,44 @@ msgstr "La carpeta de dades i els fitxers provablement són accessibles des d'in msgid "Create an admin account" msgstr "Crea un compte d'administrador" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avançat" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Carpeta de dades" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configura la base de dades" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "s'usarà" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Usuari de la base de dades" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Contrasenya de la base de dades" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nom de la base de dades" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Espai de taula de la base de dades" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Ordinador central de la base de dades" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Acaba la configuració" @@ -528,29 +528,29 @@ msgstr "controleu els vostres serveis web" msgid "Log out" msgstr "Surt" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "L'ha rebutjat l'acceditació automàtica!" -#: templates/login.php:9 +#: templates/login.php:11 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:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Canvieu la contrasenya de nou per assegurar el vostre compte." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Heu perdut la contrasenya?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "recorda'm" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Inici de sessió" diff --git a/l10n/da/core.po b/l10n/da/core.po index 01fdc7642c0..6fa46250122 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # , 2011, 2012. # Morten Juhl-Johansen Zölde-Fejér , 2011-2012. # Ole Holm Frandsen , 2012. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 21:57+0000\n" +"Last-Translator: cronner \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" @@ -27,30 +28,30 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Bruger %s delte en fil med dig" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Bruger %s delte en mappe med dig" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "Bruger %s delte filen \"%s\" med dig. Den kan hentes her: %s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "Bruger %s delte mappe \"%s\" med dig. Det kan hentes her: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "Kategori typen ikke er fastsat." #: ajax/vcategories/add.php:30 msgid "No category to add?" @@ -64,18 +65,18 @@ msgstr "Denne kategori eksisterer allerede: " #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "" +msgstr "Object type ikke er fastsat." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s ID ikke oplyst." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "Fejl ved tilføjelse af %s til favoritter." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." @@ -84,7 +85,7 @@ msgstr "Ingen kategorier valgt" #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "Fejl ved fjernelse af %s fra favoritter." #: js/js.js:259 templates/layout.user.php:60 templates/layout.user.php:61 msgid "Settings" @@ -104,11 +105,11 @@ msgstr "{minutes} minutter siden" #: js/js.js:707 msgid "1 hour ago" -msgstr "" +msgstr "1 time siden" #: js/js.js:708 msgid "{hours} hours ago" -msgstr "" +msgstr "{hours} timer siden" #: js/js.js:709 msgid "today" @@ -128,7 +129,7 @@ msgstr "sidste måned" #: js/js.js:713 msgid "{months} months ago" -msgstr "" +msgstr "{months} måneder siden" #: js/js.js:714 msgid "months ago" @@ -165,23 +166,23 @@ msgstr "OK" #: 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 "Objekttypen er ikke angivet." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Fejl" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "Den app navn er ikke angivet." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "Den krævede fil {file} er ikke installeret!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Fejl under deling" @@ -209,22 +210,22 @@ msgstr "Del med" msgid "Share with link" msgstr "Del med link" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Beskyt med adgangskode" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Kodeord" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "E-mail link til person" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Send" #: js/share.js:177 msgid "Set expiration date" @@ -278,25 +279,25 @@ msgstr "slet" msgid "share" msgstr "del" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Beskyttet med adgangskode" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "Sender ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "E-mail afsendt" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -312,14 +313,14 @@ msgstr "Du vil modtage et link til at nulstille dit kodeord via email." #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "" +msgstr "Reset-mail afsendt." #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "" +msgstr "Anmodningen mislykkedes!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Brugernavn" @@ -408,44 +409,44 @@ msgstr "Din data mappe og dine filer er muligvis tilgængelige fra internettet. msgid "Create an admin account" msgstr "Opret en administratorkonto" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avanceret" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "vil blive brugt" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Databasebruger" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Databasekodeord" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Navn på database" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Database tabelplads" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Databasehost" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Afslut opsætning" @@ -533,29 +534,29 @@ msgstr "Webtjenester under din kontrol" msgid "Log out" msgstr "Log ud" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Automatisk login afvist!" -#: templates/login.php:9 +#: templates/login.php:11 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:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "Skift adgangskode for at sikre din konto igen." -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Mistet dit kodeord?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "husk" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Log ind" diff --git a/l10n/da/files.po b/l10n/da/files.po index 2b9b44a9169..185ea7031e7 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2012. # Morten Juhl-Johansen Zölde-Fejér , 2011-2012. # Ole Holm Frandsen , 2012. # , 2012. @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-01 00:01+0100\n" -"PO-Revision-Date: 2012-11-30 23:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 21:45+0000\n" +"Last-Translator: cronner \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" @@ -31,7 +32,7 @@ msgstr "Der er ingen fejl, filen blev uploadet med success" #: ajax/upload.php:21 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini" #: ajax/upload.php:23 msgid "" @@ -59,11 +60,11 @@ msgstr "Fejl ved skrivning til disk." msgid "Files" msgstr "Filer" -#: js/fileactions.js:117 templates/index.php:83 templates/index.php:84 +#: js/fileactions.js:117 templates/index.php:84 templates/index.php:85 msgid "Unshare" msgstr "Fjern deling" -#: js/fileactions.js:119 templates/index.php:89 templates/index.php:90 +#: js/fileactions.js:119 templates/index.php:90 templates/index.php:91 msgid "Delete" msgstr "Slet" @@ -71,39 +72,39 @@ msgstr "Slet" msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "replace" msgstr "erstat" -#: js/filelist.js:201 +#: js/filelist.js:199 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:201 js/filelist.js:203 +#: js/filelist.js:199 js/filelist.js:201 msgid "cancel" msgstr "fortryd" -#: js/filelist.js:250 +#: js/filelist.js:248 msgid "replaced {new_name}" msgstr "erstattede {new_name}" -#: js/filelist.js:250 js/filelist.js:252 js/filelist.js:284 js/filelist.js:286 +#: js/filelist.js:248 js/filelist.js:250 js/filelist.js:282 js/filelist.js:284 msgid "undo" msgstr "fortryd" -#: js/filelist.js:252 +#: js/filelist.js:250 msgid "replaced {new_name} with {old_name}" msgstr "erstattede {new_name} med {old_name}" -#: js/filelist.js:284 +#: js/filelist.js:282 msgid "unshared {files}" msgstr "ikke delte {files}" -#: js/filelist.js:286 +#: js/filelist.js:284 msgid "deleted {files}" msgstr "slettede {files}" @@ -111,82 +112,82 @@ msgstr "slettede {files}" msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." -#: js/files.js:183 +#: js/files.js:174 msgid "generating ZIP-file, it may take some time." msgstr "genererer ZIP-fil, det kan tage lidt tid." -#: js/files.js:218 +#: js/files.js:212 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" -#: js/files.js:218 +#: js/files.js:212 msgid "Upload Error" msgstr "Fejl ved upload" -#: js/files.js:235 +#: js/files.js:229 msgid "Close" msgstr "Luk" -#: js/files.js:254 js/files.js:368 js/files.js:398 +#: js/files.js:248 js/files.js:362 js/files.js:392 msgid "Pending" msgstr "Afventer" -#: js/files.js:274 +#: js/files.js:268 msgid "1 file uploading" msgstr "1 fil uploades" -#: js/files.js:277 js/files.js:331 js/files.js:346 +#: js/files.js:271 js/files.js:325 js/files.js:340 msgid "{count} files uploading" msgstr "{count} filer uploades" -#: js/files.js:349 js/files.js:382 +#: js/files.js:343 js/files.js:376 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/files.js:451 +#: js/files.js:445 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." -#: js/files.js:523 +#: js/files.js:515 msgid "Invalid folder name. Usage of \"Shared\" is reserved by Owncloud" -msgstr "" +msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" -#: js/files.js:704 +#: js/files.js:699 msgid "{count} files scanned" msgstr "{count} filer skannet" -#: js/files.js:712 +#: js/files.js:707 msgid "error while scanning" msgstr "fejl under scanning" -#: js/files.js:785 templates/index.php:65 +#: js/files.js:780 templates/index.php:66 msgid "Name" msgstr "Navn" -#: js/files.js:786 templates/index.php:76 +#: js/files.js:781 templates/index.php:77 msgid "Size" msgstr "Størrelse" -#: js/files.js:787 templates/index.php:78 +#: js/files.js:782 templates/index.php:79 msgid "Modified" msgstr "Ændret" -#: js/files.js:814 +#: js/files.js:801 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:816 +#: js/files.js:803 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:824 +#: js/files.js:811 msgid "1 file" msgstr "1 fil" -#: js/files.js:826 +#: js/files.js:813 msgid "{count} files" msgstr "{count} filer" @@ -236,7 +237,7 @@ msgstr "Mappe" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "Fra link" #: templates/index.php:35 msgid "Upload" @@ -246,28 +247,28 @@ msgstr "Upload" msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/index.php:57 +#: templates/index.php:58 msgid "Nothing in here. Upload something!" msgstr "Her er tomt. Upload noget!" -#: templates/index.php:71 +#: templates/index.php:72 msgid "Download" msgstr "Download" -#: templates/index.php:103 +#: templates/index.php:104 msgid "Upload too large" msgstr "Upload for stor" -#: templates/index.php:105 +#: templates/index.php:106 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." -#: templates/index.php:110 +#: templates/index.php:111 msgid "Files are being scanned, please wait." msgstr "Filerne bliver indlæst, vent venligst." -#: templates/index.php:113 +#: templates/index.php:114 msgid "Current scanning" msgstr "Indlæser" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 804a2489d08..d21b07f05e6 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 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: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 21:47+0000\n" +"Last-Translator: cronner \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" @@ -47,14 +48,14 @@ msgstr "Fejl ved konfiguration af Google Drive plads" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +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:435 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 " 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." #: templates/settings.php:3 msgid "External Storage" @@ -101,7 +102,7 @@ msgid "Users" msgstr "Brugere" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "Slet" @@ -113,10 +114,10 @@ msgstr "Aktiver ekstern opbevaring for brugere" msgid "Allow users to mount their own external storage" msgstr "Tillad brugere at montere deres egne eksterne opbevaring" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "SSL-rodcertifikater" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "Importer rodcertifikat" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 76cd064267c..187d797c533 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 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: 2012-11-16 00:02+0100\n" -"PO-Revision-Date: 2012-11-14 23:13+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:11+0100\n" +"PO-Revision-Date: 2012-12-23 21:58+0000\n" +"Last-Translator: cronner \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" @@ -19,43 +20,43 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:285 +#: app.php:287 msgid "Help" msgstr "Hjælp" -#: app.php:292 +#: app.php:294 msgid "Personal" msgstr "Personlig" -#: app.php:297 +#: app.php:299 msgid "Settings" msgstr "Indstillinger" -#: app.php:302 +#: app.php:304 msgid "Users" msgstr "Brugere" -#: app.php:309 +#: app.php:311 msgid "Apps" msgstr "Apps" -#: app.php:311 +#: app.php:313 msgid "Admin" msgstr "Admin" -#: files.php:332 +#: files.php:365 msgid "ZIP download is turned off." msgstr "ZIP-download er slået fra." -#: files.php:333 +#: files.php:366 msgid "Files need to be downloaded one by one." msgstr "Filer skal downloades en for en." -#: files.php:333 files.php:358 +#: files.php:366 files.php:391 msgid "Back to Files" msgstr "Tilbage til Filer" -#: files.php:357 +#: files.php:390 msgid "Selected files too large to generate zip file." msgstr "De markerede filer er for store til at generere en ZIP-fil." @@ -81,7 +82,7 @@ msgstr "SMS" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Billeder" #: template.php:103 msgid "seconds ago" @@ -98,12 +99,12 @@ msgstr "%d minutter siden" #: template.php:106 msgid "1 hour ago" -msgstr "" +msgstr "1 time siden" #: template.php:107 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "%d timer siden" #: template.php:108 msgid "today" @@ -125,7 +126,7 @@ msgstr "Sidste måned" #: template.php:112 #, php-format msgid "%d months ago" -msgstr "" +msgstr "%d måneder siden" #: template.php:113 msgid "last year" @@ -151,4 +152,4 @@ msgstr "Check for opdateringer er deaktiveret" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Kunne ikke finde kategorien \"%s\"" diff --git a/l10n/da/user_webdavauth.po b/l10n/da/user_webdavauth.po index 3ff9f07c589..73cb352861f 100644 --- a/l10n/da/user_webdavauth.po +++ b/l10n/da/user_webdavauth.po @@ -3,13 +3,14 @@ # 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: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 22:14+0000\n" +"Last-Translator: cronner \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" @@ -19,11 +20,11 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" "ownCloud will send the user credentials to this URL is interpret http 401 " "and http 403 as credentials wrong and all other codes as credentials " "correct." -msgstr "" +msgstr "ownCloud vil sende brugeroplysningerne til denne webadresse er fortolker http 401 og http 403 som brugeroplysninger forkerte og alle andre koder som brugeroplysninger korrekte." diff --git a/l10n/sv/user_webdavauth.po b/l10n/sv/user_webdavauth.po index b6c5c862388..9d0afe72975 100644 --- a/l10n/sv/user_webdavauth.po +++ b/l10n/sv/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 13:56+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +20,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" #: templates/settings.php:6 msgid "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 4b7fb0fec62..dd269ac2440 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\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 7a44cdd0641..d521a4ad6fc 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\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 8e65b3fa81d..791b21e4910 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\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 d9aed4d9c67..8c1397baf0e 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\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 f790c23a1b9..bc5ba1ad9ea 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\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 d59a26bbdb8..0576b77aa21 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\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 7c919b714a9..dd29190b8da 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:11+0100\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 f8796fdcda4..5528f1026e9 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:11+0100\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 69bcd199616..c783b1c38bb 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\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 a09b859730d..835e8193715 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-23 00:09+0100\n" +"POT-Creation-Date: 2012-12-24 00:10+0100\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_CN/core.po b/l10n/zh_CN/core.po index 118d37c13f9..2742708ecc6 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -4,6 +4,7 @@ # # Translators: # , 2012. +# Dianjin Wang <1132321739qq@gmail.com>, 2012. # Phoenix Nemo <>, 2012. # , 2012. # , 2011, 2012. @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 14:31+0000\n" +"Last-Translator: Dianjin Wang <1132321739qq@gmail.com>\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" @@ -24,26 +25,26 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "用户 %s 与您共享了一个文件" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "用户 %s 与您共享了一个文件夹" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "用户 %s 与您共享了文件\"%s\"。文件下载地址:%s" #: ajax/share.php:90 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "用户 %s 与您共享了文件夹\"%s\"。文件夹下载地址:%s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -165,8 +166,8 @@ msgid "The object type is not specified." msgstr "未指定对象类型。" #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "错误" @@ -178,7 +179,7 @@ msgstr "未指定App名称。" msgid "The required file {file} is not installed!" msgstr "所需文件{file}未安装!" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "共享时出错" @@ -206,11 +207,11 @@ msgstr "共享" msgid "Share with link" msgstr "共享链接" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "密码保护" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "密码" @@ -221,7 +222,7 @@ msgstr "" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "发送" #: js/share.js:177 msgid "Set expiration date" @@ -275,25 +276,25 @@ msgstr "删除" msgid "share" msgstr "共享" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "密码已受保护" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "设置过期日期时出错" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "正在发送..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "邮件已发送" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -315,8 +316,8 @@ msgstr "重置邮件已发送。" msgid "Request failed!" msgstr "请求失败!" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "用户名" @@ -405,44 +406,44 @@ msgstr "您的数据文件夹和文件可由互联网访问。OwnCloud提供的. msgid "Create an admin account" msgstr "创建管理员账号" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "高级" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "数据目录" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "配置数据库" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "将被使用" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "数据库名" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "数据库表空间" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "安装完成" @@ -530,29 +531,29 @@ msgstr "由您掌控的网络服务" msgid "Log out" msgstr "注销" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "自动登录被拒绝!" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "如果您没有最近修改您的密码,您的帐户可能会受到影响!" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "请修改您的密码,以保护您的账户安全。" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "忘记密码?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "记住" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "登录" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index fda4fc50739..674ecf16c69 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# Dianjin Wang <1132321739qq@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-11 23:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 14:40+0000\n" +"Last-Translator: Dianjin Wang <1132321739qq@gmail.com>\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" @@ -46,14 +47,14 @@ msgstr "配置Google Drive存储时出错" msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "警告:“smbclient” 尚未安装。CIFS/SMB 分享挂载无法实现。请咨询系统管理员进行安装。" #: lib/config.php:435 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 "警告:PHP中尚未启用或安装FTP。FTP 分享挂载无法实现。请咨询系统管理员进行安装。" #: templates/settings.php:3 msgid "External Storage" @@ -100,7 +101,7 @@ msgid "Users" msgstr "用户" #: templates/settings.php:108 templates/settings.php:109 -#: templates/settings.php:149 templates/settings.php:150 +#: templates/settings.php:144 templates/settings.php:145 msgid "Delete" msgstr "删除" @@ -112,10 +113,10 @@ msgstr "启用用户外部存储" msgid "Allow users to mount their own external storage" msgstr "允许用户挂载自有外部存储" -#: templates/settings.php:139 +#: templates/settings.php:136 msgid "SSL root certificates" msgstr "SSL根证书" -#: templates/settings.php:158 +#: templates/settings.php:153 msgid "Import Root Certificate" msgstr "导入根证书" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 8a68e4eac0a..2e39772a758 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -4,6 +4,7 @@ # # Translators: # , 2012. +# Dianjin Wang <1132321739qq@gmail.com>, 2012. # Phoenix Nemo <>, 2012. # , 2012. # , 2012. @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:11+0100\n" +"PO-Revision-Date: 2012-12-23 13:54+0000\n" +"Last-Translator: Dianjin Wang <1132321739qq@gmail.com>\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" @@ -122,27 +123,27 @@ msgstr "-核准: #: templates/help.php:3 msgid "User Documentation" -msgstr "" +msgstr "用户文档" #: templates/help.php:4 msgid "Administrator Documentation" -msgstr "" +msgstr "管理员文档" #: templates/help.php:6 msgid "Online Documentation" -msgstr "" +msgstr "在线文档" #: templates/help.php:7 msgid "Forum" -msgstr "" +msgstr "论坛" #: templates/help.php:9 msgid "Bugtracker" -msgstr "" +msgstr "问题跟踪器" #: templates/help.php:11 msgid "Commercial Support" -msgstr "" +msgstr "商业支持" #: templates/personal.php:8 #, php-format @@ -155,15 +156,15 @@ msgstr "客户" #: templates/personal.php:13 msgid "Download Desktop Clients" -msgstr "" +msgstr "下载桌面客户端" #: templates/personal.php:14 msgid "Download Android Client" -msgstr "" +msgstr "下载 Android 客户端" #: templates/personal.php:15 msgid "Download iOS Client" -msgstr "" +msgstr "下载 iOS 客户端" #: templates/personal.php:21 templates/users.php:23 templates/users.php:77 msgid "Password" @@ -215,15 +216,15 @@ msgstr "帮助翻译" #: templates/personal.php:52 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:54 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "用该地址来连接文件管理器中的 ownCloud" #: templates/personal.php:63 msgid "Version" -msgstr "" +msgstr "版本" #: templates/personal.php:65 msgid "" diff --git a/l10n/zh_CN/user_webdavauth.po b/l10n/zh_CN/user_webdavauth.po index e8ca11af596..fc3ccc1393b 100644 --- a/l10n/zh_CN/user_webdavauth.po +++ b/l10n/zh_CN/user_webdavauth.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# Dianjin Wang <1132321739qq@gmail.com>, 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-20 00:11+0100\n" -"PO-Revision-Date: 2012-12-19 23:12+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"PO-Revision-Date: 2012-12-23 13:55+0000\n" +"Last-Translator: Dianjin Wang <1132321739qq@gmail.com>\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" @@ -20,7 +21,7 @@ msgstr "" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL:http://" #: templates/settings.php:6 msgid "" diff --git a/lib/l10n/ar.php b/lib/l10n/ar.php index 3ae226f04fd..77e02dd77b1 100644 --- a/lib/l10n/ar.php +++ b/lib/l10n/ar.php @@ -5,5 +5,8 @@ "Users" => "المستخدمين", "Authentication error" => "لم يتم التأكد من الشخصية بنجاح", "Files" => "الملفات", -"Text" => "معلومات إضافية" +"Text" => "معلومات إضافية", +"seconds ago" => "منذ ثواني", +"1 minute ago" => "منذ دقيقة", +"today" => "اليوم" ); diff --git a/lib/l10n/da.php b/lib/l10n/da.php index 7458b329782..a0ab1f17014 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -14,16 +14,21 @@ "Token expired. Please reload page." => "Adgang er udløbet. Genindlæs siden.", "Files" => "Filer", "Text" => "SMS", +"Images" => "Billeder", "seconds ago" => "sekunder siden", "1 minute ago" => "1 minut siden", "%d minutes ago" => "%d minutter siden", +"1 hour ago" => "1 time siden", +"%d hours ago" => "%d timer siden", "today" => "I dag", "yesterday" => "I går", "%d days ago" => "%d dage siden", "last month" => "Sidste måned", +"%d months ago" => "%d måneder siden", "last year" => "Sidste år", "years ago" => "år siden", "%s is available. Get more information" => "%s er tilgængelig. Få mere information", "up to date" => "opdateret", -"updates check is disabled" => "Check for opdateringer er deaktiveret" +"updates check is disabled" => "Check for opdateringer er deaktiveret", +"Could not find category \"%s\"" => "Kunne ikke finde kategorien \"%s\"" ); diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 9edbe1a4212..730db722111 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -1,14 +1,41 @@ "فشل تحميل القائمة من الآب ستور", +"Group already exists" => "المجموعة موجودة مسبقاً", +"Unable to add group" => "فشل إضافة المجموعة", +"Could not enable app. " => "فشل عملية تفعيل التطبيق", +"Email saved" => "تم حفظ البريد الإلكتروني", +"Invalid email" => "البريد الإلكتروني غير صالح", "OpenID Changed" => "تم تغيير ال OpenID", "Invalid request" => "طلبك غير مفهوم", +"Unable to delete group" => "فشل إزالة المجموعة", "Authentication error" => "لم يتم التأكد من الشخصية بنجاح", +"Unable to delete user" => "فشل إزالة المستخدم", "Language changed" => "تم تغيير اللغة", +"Admins can't remove themself from the admin group" => "لا يستطيع المدير إزالة حسابه من مجموعة المديرين", +"Unable to add user to group %s" => "فشل إضافة المستخدم الى المجموعة %s", +"Unable to remove user from group %s" => "فشل إزالة المستخدم من المجموعة %s", +"Disable" => "إيقاف", "Enable" => "تفعيل", "Saving..." => "حفظ", "__language_name__" => "__language_name__", +"Add your App" => "أضف تطبيقاتك", +"More Apps" => "المزيد من التطبيقات", "Select an App" => "إختر تطبيقاً", +"See application page at apps.owncloud.com" => "راجع صفحة التطبيق على apps.owncloud.com", +"-licensed by " => "-ترخيص من قبل ", +"User Documentation" => "كتاب توثيق المستخدم", +"Administrator Documentation" => "كتاب توثيق المدير", +"Online Documentation" => "توثيق متوفر على الشبكة", +"Forum" => "منتدى", +"Bugtracker" => "تعقب علة", +"Commercial Support" => "دعم تجاري", +"You have used %s of the available %s" => "تم إستهلاك %s من المتوفر %s", "Clients" => "الزبائن", +"Download Desktop Clients" => "تحميل عملاء سطح المكتب", +"Download Android Client" => "تحميل عميل آندرويد", +"Download iOS Client" => "تحميل عميل آي أو أس", "Password" => "كلمات السر", +"Your password was changed" => "لقد تم تغيير كلمة السر", "Unable to change your password" => "لم يتم تعديل كلمة السر بنجاح", "Current password" => "كلمات السر الحالية", "New password" => "كلمات سر جديدة", @@ -19,10 +46,16 @@ "Fill in an email address to enable password recovery" => "أدخل عنوانك البريدي لتفعيل استرجاع كلمة المرور", "Language" => "اللغة", "Help translate" => "ساعد في الترجمه", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات", +"Version" => "إصدار", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "طوّر من قبل ownCloud مجتمع, الـ النص المصدري مرخص بموجب رخصة أفيرو العمومية.", "Name" => "الاسم", "Groups" => "مجموعات", "Create" => "انشئ", +"Default Quota" => "الحصة النسبية الإفتراضية", "Other" => "شيء آخر", +"Group Admin" => "مدير المجموعة", "Quota" => "حصه", "Delete" => "حذف" ); diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index adc07e20675..99fb0b2279c 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -23,8 +23,17 @@ "Select an App" => "选择一个应用", "See application page at apps.owncloud.com" => "查看在 app.owncloud.com 的应用程序页面", "-licensed by " => "-核准: ", +"User Documentation" => "用户文档", +"Administrator Documentation" => "管理员文档", +"Online Documentation" => "在线文档", +"Forum" => "论坛", +"Bugtracker" => "问题跟踪器", +"Commercial Support" => "商业支持", "You have used %s of the available %s" => "你已使用 %s,有效空间 %s", "Clients" => "客户", +"Download Desktop Clients" => "下载桌面客户端", +"Download Android Client" => "下载 Android 客户端", +"Download iOS Client" => "下载 iOS 客户端", "Password" => "密码", "Your password was changed" => "密码已修改", "Unable to change your password" => "无法修改密码", @@ -37,6 +46,9 @@ "Fill in an email address to enable password recovery" => "填写电子邮件地址以启用密码恢复功能", "Language" => "语言", "Help translate" => "帮助翻译", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "用该地址来连接文件管理器中的 ownCloud", +"Version" => "版本", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "由ownCloud社区开发, 源代码AGPL许可证下发布。", "Name" => "名称", "Groups" => "组", -- cgit v1.2.3 From 5d59ac07391841677e204958ea20be3fe05cd8ef Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Tue, 25 Dec 2012 00:11:11 +0100 Subject: [tx-robot] updated from transifex --- apps/user_ldap/l10n/fr.php | 2 + core/l10n/fr.php | 7 ++++ l10n/fr/core.po | 79 +++++++++++++++++++------------------ l10n/fr/settings.po | 31 ++++++++------- l10n/fr/user_ldap.po | 11 +++--- 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_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 +- settings/l10n/fr.php | 12 ++++++ 16 files changed, 93 insertions(+), 69 deletions(-) diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index a0b1c6b7d9c..9750d1352a8 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -1,4 +1,6 @@ Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "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.", +"Warning: The PHP LDAP module needs is not installed, the backend will not work. Please ask your system administrator to install it." => "Avertissement: Le module PHP LDAP requis n'est pas installé, l'application ne marchera pas. Contactez votre administrateur système pour qu'il l'installe.", "Host" => "Hôte", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Vous pouvez omettre le protocole, sauf si vous avez besoin de SSL. Dans ce cas préfixez avec ldaps://", "Base DN" => "DN Racine", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index f02a7b0087c..3d174b327a2 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -1,4 +1,7 @@ "L'utilisateur %s a partagé un fichier avec vous", +"User %s shared a folder with you" => "L'utilsateur %s a partagé un dossier avec vous", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "L'utilisateur %s a partagé le fichier \"%s\" avec vous. Vous pouvez le télécharger ici : %s", "Category type not provided." => "Type de catégorie non spécifié.", "No category to add?" => "Pas de catégorie à ajouter ?", "This category already exists: " => "Cette catégorie existe déjà : ", @@ -39,6 +42,8 @@ "Share with link" => "Partager via lien", "Password protect" => "Protéger par un mot de passe", "Password" => "Mot de passe", +"Email link to person" => "Envoyez le lien par email", +"Send" => "Envoyer", "Set expiration date" => "Spécifier la date d'expiration", "Expiration date" => "Date d'expiration", "Share via email:" => "Partager via e-mail :", @@ -55,6 +60,8 @@ "Password protected" => "Protégé par un mot de passe", "Error unsetting expiration date" => "Un erreur est survenue pendant la suppression de la date d'expiration", "Error setting expiration date" => "Erreur lors de la spécification de la date d'expiration", +"Sending ..." => "En cours d'envoi ...", +"Email sent" => "Email envoyé", "ownCloud password reset" => "Réinitialisation de votre mot de passe Owncloud", "Use the following link to reset your password: {link}" => "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}", "You will receive a link to reset your password via Email." => "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe.", diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 3630d49e784..58f5d6bd5e7 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -7,6 +7,7 @@ # , 2012. # , 2012. # Guillaume Paumier , 2012. +# , 2012. # Nahir Mohamed , 2012. # , 2012. # , 2011. @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-13 00:17+0100\n" -"PO-Revision-Date: 2012-12-12 23:17+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-25 00:10+0100\n" +"PO-Revision-Date: 2012-12-24 14:22+0000\n" +"Last-Translator: mishka \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" @@ -28,19 +29,19 @@ msgstr "" #: ajax/share.php:84 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "L'utilisateur %s a partagé un fichier avec vous" #: ajax/share.php:86 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "L'utilsateur %s a partagé un dossier avec vous" #: ajax/share.php:88 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "L'utilisateur %s a partagé le fichier \"%s\" avec vous. Vous pouvez le télécharger ici : %s" #: ajax/share.php:90 #, php-format @@ -169,8 +170,8 @@ msgid "The object type is not specified." msgstr "Le type d'objet n'est pas spécifié." #: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:541 -#: js/share.js:553 +#: js/oc-vcategories.js:195 js/share.js:135 js/share.js:142 js/share.js:554 +#: js/share.js:566 msgid "Error" msgstr "Erreur" @@ -182,7 +183,7 @@ msgstr "Le nom de l'application n'est pas spécifié." msgid "The required file {file} is not installed!" msgstr "Le fichier requis {file} n'est pas installé !" -#: js/share.js:124 js/share.js:581 +#: js/share.js:124 js/share.js:594 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" @@ -210,22 +211,22 @@ msgstr "Partager avec" msgid "Share with link" msgstr "Partager via lien" -#: js/share.js:164 +#: js/share.js:166 msgid "Password protect" msgstr "Protéger par un mot de passe" -#: js/share.js:168 templates/installation.php:42 templates/login.php:24 +#: js/share.js:168 templates/installation.php:44 templates/login.php:35 #: templates/verify.php:13 msgid "Password" msgstr "Mot de passe" #: js/share.js:172 msgid "Email link to person" -msgstr "" +msgstr "Envoyez le lien par email" #: js/share.js:173 msgid "Send" -msgstr "" +msgstr "Envoyer" #: js/share.js:177 msgid "Set expiration date" @@ -279,25 +280,25 @@ msgstr "supprimer" msgid "share" msgstr "partager" -#: js/share.js:353 js/share.js:528 js/share.js:530 +#: js/share.js:356 js/share.js:541 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:541 +#: js/share.js:554 msgid "Error unsetting expiration date" msgstr "Un erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:553 +#: js/share.js:566 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:568 +#: js/share.js:581 msgid "Sending ..." -msgstr "" +msgstr "En cours d'envoi ..." -#: js/share.js:579 +#: js/share.js:592 msgid "Email sent" -msgstr "" +msgstr "Email envoyé" #: lostpassword/controller.php:47 msgid "ownCloud password reset" @@ -319,8 +320,8 @@ msgstr "Mail de réinitialisation envoyé." msgid "Request failed!" msgstr "La requête a échoué !" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:39 +#: templates/login.php:28 msgid "Username" msgstr "Nom d'utilisateur" @@ -409,44 +410,44 @@ msgstr "Votre dossier data et vos fichiers sont probablement accessibles depuis msgid "Create an admin account" msgstr "Créer un compte administrateur" -#: templates/installation.php:48 +#: templates/installation.php:50 msgid "Advanced" msgstr "Avancé" -#: templates/installation.php:50 +#: templates/installation.php:52 msgid "Data folder" msgstr "Répertoire des données" -#: templates/installation.php:57 +#: templates/installation.php:59 msgid "Configure the database" msgstr "Configurer la base de données" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:64 templates/installation.php:75 +#: templates/installation.php:85 templates/installation.php:95 msgid "will be used" msgstr "sera utilisé" -#: templates/installation.php:105 +#: templates/installation.php:107 msgid "Database user" msgstr "Utilisateur pour la base de données" -#: templates/installation.php:109 +#: templates/installation.php:111 msgid "Database password" msgstr "Mot de passe de la base de données" -#: templates/installation.php:113 +#: templates/installation.php:115 msgid "Database name" msgstr "Nom de la base de données" -#: templates/installation.php:121 +#: templates/installation.php:123 msgid "Database tablespace" msgstr "Tablespaces de la base de données" -#: templates/installation.php:127 +#: templates/installation.php:129 msgid "Database host" msgstr "Serveur de la base de données" -#: templates/installation.php:132 +#: templates/installation.php:134 msgid "Finish setup" msgstr "Terminer l'installation" @@ -534,29 +535,29 @@ msgstr "services web sous votre contrôle" msgid "Log out" msgstr "Se déconnecter" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "Connexion automatique rejetée !" -#: templates/login.php:9 +#: templates/login.php:11 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:10 +#: templates/login.php:13 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:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "Mot de passe perdu ?" -#: templates/login.php:27 +#: templates/login.php:39 msgid "remember" msgstr "se souvenir de moi" -#: templates/login.php:28 +#: templates/login.php:41 msgid "Log in" msgstr "Connexion" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index ffafd0a3264..3d95e66bbea 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -11,6 +11,7 @@ # , 2012. # Jan-Christoph Borchardt , 2011. # , 2012. +# , 2012. # Nahir Mohamed , 2012. # , 2012. # Robert Di Rosa <>, 2012. @@ -20,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-21 00:10+0100\n" -"PO-Revision-Date: 2012-12-19 23:20+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-25 00:10+0100\n" +"PO-Revision-Date: 2012-12-24 14:10+0000\n" +"Last-Translator: mishka \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" @@ -130,27 +131,27 @@ msgstr "Distribué sous licence , par , 2012. # , 2012. +# , 2012. # Romain DEP. , 2012. # , 2012. # , 2012. @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-15 00:11+0100\n" -"PO-Revision-Date: 2012-12-14 23:11+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2012-12-25 00:10+0100\n" +"PO-Revision-Date: 2012-12-24 14:18+0000\n" +"Last-Translator: mishka \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" @@ -27,13 +28,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 "" +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." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module needs is not installed, the backend will" " not work. Please ask your system administrator to install it." -msgstr "" +msgstr "Avertissement: Le module PHP LDAP requis n'est pas installé, l'application ne marchera pas. Contactez votre administrateur système pour qu'il l'installe." #: templates/settings.php:15 msgid "Host" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index dd269ac2440..ff3c8bfbf6b 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 d521a4ad6fc..0818212bd19 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 791b21e4910..fb7b97cbf90 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 8c1397baf0e..659e1e0bb54 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 bc5ba1ad9ea..1984b3a0014 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 0576b77aa21..4b79897af20 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 dd29190b8da..f7d273a1391 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:11+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 5528f1026e9..081fc8b3630 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:11+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 c783b1c38bb..1915a2b814d 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\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 835e8193715..8eab468ae32 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-12-24 00:10+0100\n" +"POT-Creation-Date: 2012-12-25 00:10+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index b504d261f66..b4b3d46e05f 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -23,8 +23,17 @@ "Select an App" => "Sélectionner une Application", "See application page at apps.owncloud.com" => "Voir la page des applications à l'url apps.owncloud.com", "-licensed by " => "Distribué sous licence , par ", +"User Documentation" => "Documentation utilisateur", +"Administrator Documentation" => "Documentation administrateur", +"Online Documentation" => "Documentation en ligne", +"Forum" => "Forum", +"Bugtracker" => "Suivi de bugs", +"Commercial Support" => "Support commercial", "You have used %s of the available %s" => "Vous avez utilisé %s des %s disponibles", "Clients" => "Clients", +"Download Desktop Clients" => "Télécharger des clients de bureau", +"Download Android Client" => "Télécharger le client Android", +"Download iOS Client" => "Télécharger le client iOS", "Password" => "Mot de passe", "Your password was changed" => "Votre mot de passe a été changé", "Unable to change your password" => "Impossible de changer votre mot de passe", @@ -37,6 +46,9 @@ "Fill in an email address to enable password recovery" => "Entrez votre adresse e-mail pour permettre la réinitialisation du mot de passe", "Language" => "Langue", "Help translate" => "Aidez à traduire", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Utiliser cette adresse pour vous connecter à ownCloud dans votre gestionnaire de fichiers", +"Version" => "Version", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Développé par la communauté ownCloud, le code source est publié sous license AGPL.", "Name" => "Nom", "Groups" => "Groupes", -- cgit v1.2.3