diff options
author | Georg Ehrke <developer@georgehrke.com> | 2014-05-31 14:55:00 +0200 |
---|---|---|
committer | Georg Ehrke <developer@georgehrke.com> | 2014-05-31 14:55:00 +0200 |
commit | c8636ca4d9528faf42b1cd877bb73e56d26244cf (patch) | |
tree | b65bc6f1d6af00e15e97eb2cc518eeda2a9896e3 /settings | |
parent | 2bcfd8e084b27ed89cf6e62bc9ab2c681d5a8361 (diff) | |
parent | cff9440a37a64a43403b7dd57a99a203410e426a (diff) | |
download | nextcloud-server-c8636ca4d9528faf42b1cd877bb73e56d26244cf.tar.gz nextcloud-server-c8636ca4d9528faf42b1cd877bb73e56d26244cf.zip |
Merge branch 'master' into update_shipped_apps_from_appstore
Conflicts:
lib/private/app.php
lib/private/installer.php
Diffstat (limited to 'settings')
69 files changed, 912 insertions, 345 deletions
diff --git a/settings/admin.php b/settings/admin.php index 49dde59ce2a..a0769892ef4 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -10,6 +10,7 @@ OC_Util::checkAdminUser(); OC_Util::addStyle( "settings", "settings" ); OC_Util::addScript( "settings", "admin" ); OC_Util::addScript( "settings", "log" ); +OC_Util::addScript( 'core', 'multiselect' ); OC_App::setActiveNavigationEntry( "admin" ); $tmpl = new OC_Template( 'settings', 'admin', 'user'); @@ -38,6 +39,7 @@ $tmpl->assign('entriesremain', $entriesremain); $tmpl->assign('htaccessworking', $htaccessworking); $tmpl->assign('internetconnectionworking', OC_Util::isInternetConnectionEnabled() ? OC_Util::isInternetConnectionWorking() : false); $tmpl->assign('isLocaleWorking', OC_Util::isSetLocaleWorking()); +$tmpl->assign('isAnnotationsWorking', OC_Util::isAnnotationsWorking()); $tmpl->assign('isWebDavWorking', OC_Util::isWebDAVWorking()); $tmpl->assign('has_fileinfo', OC_Util::fileInfoLoaded()); $tmpl->assign('old_php', OC_Util::isPHPoutdated()); @@ -48,6 +50,23 @@ $tmpl->assign('shareAPIEnabled', OC_Appconfig::getValue('core', 'shareapi_enable $tmpl->assign('shareDefaultExpireDateSet', OC_Appconfig::getValue('core', 'shareapi_default_expire_date', 'no')); $tmpl->assign('shareExpireAfterNDays', OC_Appconfig::getValue('core', 'shareapi_expire_after_n_days', '7')); $tmpl->assign('shareEnforceExpireDate', OC_Appconfig::getValue('core', 'shareapi_enforce_expire_date', 'no')); +$excludeGroups = OC_Appconfig::getValue('core', 'shareapi_exclude_groups', 'no') === 'yes' ? true : false; +$tmpl->assign('shareExcludeGroups', $excludeGroups); +$allGroups = OC_Group::getGroups(); +$excludedGroupsList = OC_Appconfig::getValue('core', 'shareapi_exclude_groups_list', ''); +$excludedGroups = $excludedGroupsList !== '' ? explode(',', $excludedGroupsList) : array(); +$groups = array(); +foreach ($allGroups as $group) { + if (in_array($group, $excludedGroups)) { + $groups[$group] = array('gid' => $group, + 'excluded' => true); + } else { + $groups[$group] = array('gid' => $group, + 'excluded' => false); + } +} +ksort($groups); +$tmpl->assign('groups', $groups); // Check if connected using HTTPS @@ -60,6 +79,7 @@ $tmpl->assign('isConnectedViaHTTPS', $connectedHTTPS); $tmpl->assign('enforceHTTPSEnabled', OC_Config::getValue( "forcessl", false)); $tmpl->assign('allowLinks', OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes')); +$tmpl->assign('enforceLinkPassword', \OCP\Util::isPublicLinkPasswordRequired()); $tmpl->assign('allowPublicUpload', OC_Appconfig::getValue('core', 'shareapi_allow_public_upload', 'yes')); $tmpl->assign('allowResharing', OC_Appconfig::getValue('core', 'shareapi_allow_resharing', 'yes')); $tmpl->assign('allowMailNotification', OC_Appconfig::getValue('core', 'shareapi_allow_mail_notification', 'yes')); diff --git a/settings/ajax/decryptall.php b/settings/ajax/decryptall.php index d12df230d41..55685f778d1 100644 --- a/settings/ajax/decryptall.php +++ b/settings/ajax/decryptall.php @@ -10,7 +10,7 @@ OC_App::loadApp('files_encryption'); $params = array('uid' => \OCP\User::getUser(), 'password' => $_POST['password']); -$view = new OC_FilesystemView('/'); +$view = new OC\Files\View('/'); $util = new \OCA\Encryption\Util($view, \OCP\User::getUser()); $l = \OC_L10N::get('settings'); diff --git a/settings/ajax/deletekeys.php b/settings/ajax/deletekeys.php new file mode 100644 index 00000000000..1f84452e117 --- /dev/null +++ b/settings/ajax/deletekeys.php @@ -0,0 +1,17 @@ +<?php + +OCP\JSON::checkLoggedIn(); +OCP\JSON::callCheck(); + +$l = \OC_L10N::get('settings'); +$user = \OC_User::getUser(); +$view = new \OC\Files\View('/' . $user . '/files_encryption'); + +$keyfilesDeleted = $view->deleteAll('keyfiles.backup'); +$sharekeysDeleted = $view->deleteAll('share-keys.backup'); + +if ($keyfilesDeleted && $sharekeysDeleted) { + \OCP\JSON::success(array('data' => array('message' => $l->t('Encryption keys deleted permanently')))); +} else { + \OCP\JSON::error(array('data' => array('message' => $l->t('Couldn\'t permanently delete your encryption keys, please check your owncloud.log or ask your administrator')))); +} diff --git a/settings/ajax/excludegroups.php b/settings/ajax/excludegroups.php new file mode 100644 index 00000000000..2934a448a6a --- /dev/null +++ b/settings/ajax/excludegroups.php @@ -0,0 +1,18 @@ +<?php +OC_JSON::checkSubAdminUser(); +OCP\JSON::callCheck(); + +$selectedGroups = isset($_POST["selectedGroups"]) ? json_decode($_POST["selectedGroups"]) : array(); +$changedGroup = isset($_POST["changedGroup"]) ? $_POST["changedGroup"] : ''; + +if ($changedGroup !== '') { + if(($key = array_search($changedGroup, $selectedGroups)) !== false) { + unset($selectedGroups[$key]); + } else { + $selectedGroups[] = $changedGroup; + } +} else { + \OCP\Util::writeLog('core', 'Can not update list of excluded groups from sharing, parameter missing', \OCP\Util::WARN); +} + +\OC_Appconfig::setValue('core', 'shareapi_exclude_groups_list', implode(',', $selectedGroups)); diff --git a/settings/ajax/restorekeys.php b/settings/ajax/restorekeys.php new file mode 100644 index 00000000000..68e19c90457 --- /dev/null +++ b/settings/ajax/restorekeys.php @@ -0,0 +1,24 @@ +<?php + +OCP\JSON::checkLoggedIn(); +OCP\JSON::callCheck(); + +$l = \OC_L10N::get('settings'); +$user = \OC_User::getUser(); +$view = new \OC\Files\View('/' . $user . '/files_encryption'); + +$keyfilesRestored = $view->rename('keyfiles.backup', 'keyfiles'); +$sharekeysRestored = $view->rename('share-keys.backup' , 'share-keys'); + +if ($keyfilesRestored && $sharekeysRestored) { + \OCP\JSON::success(array('data' => array('message' => $l->t('Backups restored successfully')))); +} else { + // if one of the move operation was succesful we remove the files back to have a consistent state + if($keyfilesRestored) { + $view->rename('keyfiles', 'keyfiles.backup'); + } + if($sharekeysRestored) { + $view->rename('share-keys' , 'share-keys.backup'); + } + \OCP\JSON::error(array('data' => array('message' => $l->t('Couldn\'t restore your encryption keys, please check your owncloud.log or ask your administrator')))); +} diff --git a/settings/changepassword/controller.php b/settings/changepassword/controller.php index 9f1e7329964..052715555e5 100644 --- a/settings/changepassword/controller.php +++ b/settings/changepassword/controller.php @@ -52,7 +52,7 @@ class Controller { if (\OC_App::isEnabled('files_encryption')) { //handle the recovery case - $util = new \OCA\Encryption\Util(new \OC_FilesystemView('/'), $username); + $util = new \OCA\Encryption\Util(new \OC\Files\View('/'), $username); $recoveryAdminEnabled = \OC_Appconfig::getValue('files_encryption', 'recoveryAdminEnabled'); $validRecoveryPassword = false; diff --git a/settings/css/settings.css b/settings/css/settings.css index 5d8f9a7541c..be6cfe1e9bf 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -103,8 +103,8 @@ select.quota.active { background: #fff; } #app-navigation.appwarning:hover { background: #fbb; } -small.externalapp { color:#FFF; background-color:#BBB; font-weight:bold; font-size: 0.6em; margin: 0; padding: 0.1em 0.2em; border-radius: 4px;} -small.recommendedapp { color:#FFF; background-color:#888; font-weight:bold; font-size: 0.6em; margin: 0; padding: 0.1em 0.2em; border-radius: 4px;} +small.externalapp { color:#FFF; background-color:#BBB; font-weight:bold; font-size: 0.6em; margin: 0; padding: 0.1em 0.2em; border-radius: 3px;} +small.recommendedapp { color:#FFF; background-color:#888; font-weight:bold; font-size: 0.6em; margin: 0; padding: 0.1em 0.2em; border-radius: 3px;} small.externalapp.list, small.recommendedapp.list { position: absolute; right: 10px; top: 12px; } span.version { margin-left:1em; margin-right:1em; color:#555; } @@ -132,7 +132,8 @@ table.grid td.date{ span.securitywarning {color:#C33; font-weight:bold; } span.connectionwarning {color:#933; font-weight:bold; } table.shareAPI td { padding-bottom: 0.8em; } -table.shareAPI input#shareapi_expire_after_n_days {width: 25px;} +table.shareAPI input#shareapiExpireAfterNDays {width: 25px;} +table.shareAPI .indent { padding-left: 2em; } #mail_settings p label:first-child { display: inline-block; @@ -157,9 +158,18 @@ table.shareAPI input#shareapi_expire_after_n_days {width: 25px;} vertical-align: text-bottom; } +#selectGroups select { + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + box-sizing: border-box; + display: inline-block; + height: 36px; + padding: 7px 10px +} + span.success { background: #37ce02; - border-radius: 8px; + border-radius: 3px; } span.error { diff --git a/settings/js/admin.js b/settings/js/admin.js index c04c0505deb..bc95c6a3dc5 100644 --- a/settings/js/admin.js +++ b/settings/js/admin.js @@ -1,4 +1,49 @@ +var SharingGroupList = { + applyMultipleSelect: function(element) { + var checked = []; + if ($(element).hasClass('groupsselect')) { + if (element.data('userGroups')) { + checked = element.data('userGroups'); + } + var checkHandeler = function(group) { + $.post(OC.filePath('settings', 'ajax', 'excludegroups.php'), + {changedGroup: group, selectedGroups: JSON.stringify(checked)}, + function() {}); + }; + + + var addGroup = function(select, group) { + $(this).each(function(index, element) { + if ($(element).find('option[value="' + group + '"]').length === 0 && + select.data('msid') !== $(element).data('msid')) { + $(element).append('<option value="' + escapeHTML(group) + '">' + + escapeHTML(group) + '</option>'); + } + }); + }; + + var label = null; + element.multiSelect({ + createCallback: addGroup, + createText: label, + selectedFirst: true, + checked: checked, + oncheck: checkHandeler, + onuncheck: checkHandeler, + minWidth: 100 + }); + + } + } +}; + $(document).ready(function(){ + + $('select#excludedGroups[multiple]').each(function (index, element) { + SharingGroupList.applyMultipleSelect($(element)); + }); + + $('#loglevel').change(function(){ $.post(OC.filePath('settings','ajax','setloglevel.php'), { level: $(this).val() },function(){ OC.Log.reload(); @@ -31,6 +76,14 @@ $(document).ready(function(){ OC.AppConfig.setValue('core', $(this).attr('name'), value); }); + $('#shareapiDefaultExpireDate').change(function() { + $("#setDefaultExpireDate").toggleClass('hidden', !this.checked); + }); + + $('#allowLinks').change(function() { + $("#publicLinkSettings").toggleClass('hidden', !this.checked); + }); + $('#security').change(function(){ $.post(OC.filePath('settings','ajax','setsecurity.php'), { enforceHTTPS: $('#forcessl').val() },function(){} ); }); @@ -65,7 +118,7 @@ $(document).ready(function(){ OC.msg.startSaving('#mail_settings_msg'); var post = $( "#mail_settings" ).serialize(); $.post(OC.generateUrl('/settings/admin/mailsettings'), post, function(data){ - OC.msg.finishedSaving('#mail_settings .msg', data); + OC.msg.finishedSaving('#mail_settings_msg', data); }); }); @@ -76,4 +129,8 @@ $(document).ready(function(){ OC.msg.finishedAction('#sendtestmail_msg', data); }); }); + + $('#shareapiExcludeGroups').change(function() { + $("#selectExcludedGroups").toggleClass('hidden', !this.checked); + }); }); diff --git a/settings/js/personal.js b/settings/js/personal.js index c1f1ef7466b..f56dd3425f7 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -26,7 +26,7 @@ jQuery.fn.keyUpDelayedOrEnter = function(callback){ } }, 1000)); - this.keypress(function () { + this.keypress(function (event) { if (event.keyCode === 13 && that.val() !== '' ){ event.preventDefault(); cb(); @@ -212,17 +212,30 @@ $(document).ready(function(){ OC.Encryption.decryptAll(privateKeyPassword); }); + + $('button:button[name="submitRestoreKeys"]').click(function() { + $('#restoreBackupKeys button:button[name="submitDeleteKeys"]').prop("disabled", true); + $('#restoreBackupKeys button:button[name="submitRestoreKeys"]').prop("disabled", true); + OC.Encryption.restoreKeys(); + }); + + $('button:button[name="submitDeleteKeys"]').click(function() { + $('#restoreBackupKeys button:button[name="submitDeleteKeys"]').prop("disabled", true); + $('#restoreBackupKeys button:button[name="submitRestoreKeys"]').prop("disabled", true); + OC.Encryption.deleteKeys(); + }); + $('#decryptAll input:password[name="privateKeyPassword"]').keyup(function(event) { var privateKeyPassword = $('#decryptAll input:password[id="privateKeyPassword"]').val(); if (privateKeyPassword !== '' ) { - $('#decryptAll button:button[name="submitDecryptAll"]').removeAttr("disabled"); + $('#decryptAll button:button[name="submitDecryptAll"]').prop("disabled", false); if(event.which === 13) { $('#decryptAll button:button[name="submitDecryptAll"]').prop("disabled", true); $('#decryptAll input:password[name="privateKeyPassword"]').prop("disabled", true); OC.Encryption.decryptAll(privateKeyPassword); } } else { - $('#decryptAll button:button[name="submitDecryptAll"]').attr("disabled", "true"); + $('#decryptAll button:button[name="submitDecryptAll"]').prop("disabled", true); } }); @@ -294,29 +307,59 @@ $(document).ready(function(){ OC.Encryption = { decryptAll: function(password) { - OC.Encryption.msg.startDecrypting('#decryptAll .msg'); + var message = t('settings', 'Decrypting files... Please wait, this can take some time.'); + OC.Encryption.msg.start('#decryptAll .msg', message); $.post('ajax/decryptall.php', {password:password}, function(data) { if (data.status === "error") { - OC.Encryption.msg.finishedDecrypting('#decryptAll .msg', data); - $('#decryptAll input:password[name="privateKeyPassword"]').removeAttr("disabled"); + OC.Encryption.msg.finished('#decryptAll .msg', data); + $('#decryptAll input:password[name="privateKeyPassword"]').prop("disabled", false); + } else { + OC.Encryption.msg.finished('#decryptAll .msg', data); + } + $('#restoreBackupKeys').removeClass('hidden'); + }); + }, + + deleteKeys: function() { + var message = t('settings', 'Delete encryption keys permanently.'); + OC.Encryption.msg.start('#restoreBackupKeys .msg', message); + $.post('ajax/deletekeys.php', null, function(data) { + if (data.status === "error") { + OC.Encryption.msg.finished('#restoreBackupKeys .msg', data); + $('#restoreBackupKeys button:button[name="submitDeleteKeys"]').prop("disabled", false); + $('#restoreBackupKeys button:button[name="submitRestoreKeys"]').prop("disabled", false); + } else { + OC.Encryption.msg.finished('#restoreBackupKeys .msg', data); + } + }); + }, + + restoreKeys: function() { + var message = t('settings', 'Restore encryption keys.'); + OC.Encryption.msg.start('#restoreBackupKeys .msg', message); + $.post('ajax/restorekeys.php', {}, function(data) { + if (data.status === "error") { + OC.Encryption.msg.finished('#restoreBackupKeys .msg', data); + $('#restoreBackupKeys button:button[name="submitDeleteKeys"]').prop("disabled", false); + $('#restoreBackupKeys button:button[name="submitRestoreKeys"]').prop("disabled", false); } else { - OC.Encryption.msg.finishedDecrypting('#decryptAll .msg', data); + OC.Encryption.msg.finished('#restoreBackupKeys .msg', data); } }); } }; OC.Encryption.msg={ - startDecrypting:function(selector){ + start:function(selector, msg){ var spinner = '<img src="'+ OC.imagePath('core', 'loading-small.gif') +'">'; $(selector) - .html( t('settings', 'Decrypting files... Please wait, this can take some time.') + ' ' + spinner ) + .html( msg + ' ' + spinner ) .removeClass('success') .removeClass('error') .stop(true, true) .show(); }, - finishedDecrypting:function(selector, data){ + finished:function(selector, data){ if( data.status === "success" ){ $(selector).html( data.data.message ) .addClass('success') diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index d62c69adfac..719129d6be2 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -93,9 +93,8 @@ $TRANSLATIONS = array( "Enable Share API" => "السماح بالمشاركة عن طريق الAPI ", "Allow apps to use the Share API" => "السماح للتطبيقات بالمشاركة عن طريق الAPI", "Allow links" => "السماح بالعناوين", -"Allow users to share items to the public with links" => "السماح للمستعملين بمشاركة البنود للعموم عن طريق الروابط ", "Allow public uploads" => "السماح بالرفع للعامة ", -"Allow users to enable others to upload into their publicly shared folders" => "السماح للمستخدمين بتفعيل الرفع للاخرين من خلال مجلد المشاركة العام ", +"Allow users to share items to the public with links" => "السماح للمستعملين بمشاركة البنود للعموم عن طريق الروابط ", "Allow resharing" => "السماح بإعادة المشاركة ", "Allow users to share items shared with them again" => "السماح للمستخدمين باعادة مشاركة الملفات التي تم مشاركتها معهم", "Allow users to share with anyone" => "السماح للمستعملين بإعادة المشاركة مع أي أحد ", @@ -147,8 +146,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "اختر صورة الملف الشخصي", "Language" => "اللغة", "Help translate" => "ساعد في الترجمه", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "استخدم هذا العنوان لـ <a href=\"%s\" target=\"_blank\">الدخول الى ملفاتك عن طريق WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "البرنامج المشفر لم يعد مفعل, يرجى فك التشفير عن كل ملفاتك", "Log-in password" => "كلمه سر الدخول", "Decrypt all Files" => "فك تشفير جميع الملفات ", diff --git a/settings/l10n/ast.php b/settings/l10n/ast.php index 99dc480038f..fd7a6146972 100644 --- a/settings/l10n/ast.php +++ b/settings/l10n/ast.php @@ -19,10 +19,13 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "Descifráronse los ficheros", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Nun pudieron descifrase sus ficheros. Revisa'l owncloud.log o consulta col alministrador", "Couldn't decrypt your files, check your password and try again" => "Nun pudieron descifrase los ficheros. Revisa la contraseña ya inténtalo dempués", +"Encryption keys deleted permanently" => "Desaniciaes dafechu les claves de cifráu", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Nun pudieron desaniciase dafechu les tos claves d'encriptación, por favor comprueba'l to owncloud.log o entruga a un alministrador", "Email saved" => "Corréu-e guardáu", "Invalid email" => "Corréu electrónicu non válidu", "Unable to delete group" => "Nun pudo desaniciase'l grupu", "Unable to delete user" => "Nun pudo desaniciase l'usuariu", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Nun pudieron restaurase dafechu les tos claves d'encriptación, por favor comprueba'l to owncloud.log o entruga a un alministrador", "Language changed" => "Camudóse la llingua", "Invalid request" => "Solicitú inválida", "Admins can't remove themself from the admin group" => "Los alministradores nun puen desaniciase a ellos mesmos del grupu d'alministrador", @@ -56,6 +59,8 @@ $TRANSLATIONS = array( "Good password" => "Contraseña bona", "Strong password" => "Contraseña mui bona", "Decrypting files... Please wait, this can take some time." => "Descifrando ficheros... Espera por favor, esto pue llevar daqué de tiempu.", +"Delete encryption keys permanently." => "Desanciar dafechu les claves de cifráu.", +"Restore encryption keys." => "Restaurar claves de cifráu.", "deleted" => "desaniciáu", "undo" => "desfacer", "Unable to remove user" => "Imposible desaniciar al usuariu", @@ -106,20 +111,18 @@ $TRANSLATIONS = array( "Enable Share API" => "Activar API de Compartición", "Allow apps to use the Share API" => "Permitir a les aplicaciones usar la API de Compartición", "Allow links" => "Permitir enllaces", -"Allow users to share items to the public with links" => "Permitir a los usuarios compartir elementos col públicu per aciu d'enllaces", "Allow public uploads" => "Permitir xubes públiques", -"Allow users to enable others to upload into their publicly shared folders" => "Permitir a los usuarios habilitar a otros pa xubir ficheros nes sos carpetes compartíes públicamente", +"Set default expiration date" => "Afitar la data d'espiración predeterminada", +"Expire after " => "Caduca dempués de", +"days" => "díes", +"Enforce expiration date" => "Facer cumplir la data de caducidá", +"Allow users to share items to the public with links" => "Permitir a los usuarios compartir elementos col públicu per aciu d'enllaces", "Allow resharing" => "Permitir re-compartición", "Allow users to share items shared with them again" => "Permitir a los usuarios compartir de nuevu elementos ya compartíos", "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualesquier persona", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir namái colos usuarios nos sos grupos", "Allow mail notification" => "Permitir notificaciones per corréu-e", "Allow users to send mail notification for shared files" => "Permitir a los usuarios unviar mensaxes de notificación pa ficheros compartíos", -"Set default expiration date" => "Afitar la data d'espiración predeterminada", -"Expire after " => "Caduca dempués de", -"days" => "díes", -"Enforce expiration date" => "Facer cumplir la data de caducidá", -"Expire shares by default after N days" => "Ficheros compartíos caduquen dempués de N díes", "Security" => "Seguridá", "Enforce HTTPS" => "Forciar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forciar a los veceros a coneutase a %s per duana d'una conexón cifrada.", @@ -176,11 +179,11 @@ $TRANSLATIONS = array( "Choose as profile image" => "Esbillar como imaxe de perfil", "Language" => "Llingua", "Help translate" => "Ayúdanos nes traducciones", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Usa esta direición pa <a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">acceder a los ficheros a traviés de WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "L'aplicación de cifráu yá nun ta activada, descifra tolos ficheros", "Log-in password" => "Contraseña d'accesu", "Decrypt all Files" => "Descifrar ficheros", +"Restore Encryption Keys" => "Restaurar claves de cifráu.", +"Delete Encryption Keys" => "Desaniciar claves de cifráu", "Login Name" => "Nome d'usuariu", "Create" => "Crear", "Admin Recovery Password" => "Recuperación de la contraseña d'alministración", diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index 4715447b7f9..9573343a1d6 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -54,7 +54,6 @@ $TRANSLATIONS = array( "Cancel" => "Отказ", "Language" => "Език", "Help translate" => "Помогнете с превода", -"WebDAV" => "WebDAV", "Login Name" => "Потребител", "Create" => "Създаване", "Default Storage" => "Хранилище по подразбиране", diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php index 574426ea634..a782a53bca1 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -57,7 +57,6 @@ $TRANSLATIONS = array( "Cancel" => "বাতির", "Language" => "ভাষা", "Help translate" => "অনুবাদ করতে সহায়তা করুন", -"WebDAV" => "WebDAV", "Login Name" => "প্রবেশ", "Create" => "তৈরী কর", "Default Storage" => "পূর্বনির্ধারিত সংরক্ষণাগার", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 0a4324e5a58..a1e6c25bbf5 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -106,9 +106,8 @@ $TRANSLATIONS = array( "Enable Share API" => "Habilita l'API de compartir", "Allow apps to use the Share API" => "Permet que les aplicacions utilitzin l'API de compartir", "Allow links" => "Permet enllaços", -"Allow users to share items to the public with links" => "Permet als usuaris compartir elements amb el públic amb enllaços", "Allow public uploads" => "Permet pujada pública", -"Allow users to enable others to upload into their publicly shared folders" => "Permet als usuaris habilitar pujades de tercers en les seves carpetes compartides al públic", +"Allow users to share items to the public with links" => "Permet als usuaris compartir elements amb el públic amb enllaços", "Allow resharing" => "Permet compartir de nou", "Allow users to share items shared with them again" => "Permet als usuaris compartir de nou elements ja compartits amb ells", "Allow users to share with anyone" => "Permet compartir amb qualsevol", @@ -147,7 +146,7 @@ $TRANSLATIONS = array( "Forum" => "Fòrum", "Bugtracker" => "Seguiment d'errors", "Commercial Support" => "Suport comercial", -"Get the apps to sync your files" => "Obtén les aplicacions per sincronitzar fitxers", +"Get the apps to sync your files" => "Obtingueu les aplicacions per sincronitzar els vostres fitxers", "Show First Run Wizard again" => "Torna a mostrar l'assistent de primera execució", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Heu utilitzat <strong>%s</strong> d'un total disponible de <strong>%s</strong>", "Password" => "Contrasenya", @@ -170,8 +169,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "Selecciona com a imatge de perfil", "Language" => "Idioma", "Help translate" => "Ajudeu-nos amb la traducció", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Useu aquesta adreça per <a href=\"%s\" target=\"_blank\">accedir als fitxers via WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "L'aplicació d'encriptació ja no està activada, desencripteu tots els vostres fitxers", "Log-in password" => "Contrasenya d'accés", "Decrypt all Files" => "Desencripta tots els fitxers", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index e4fbf0c65b3..2b68fa87792 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -19,10 +19,14 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "Soubory úspěšně dešifrovány", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Nebylo možno dešifrovat soubory, zkontroluje prosím owncloud.log nebo kontaktujte svého administrátora", "Couldn't decrypt your files, check your password and try again" => "Nebylo možno dešifrovat soubory, zkontrolujte své heslo a zkuste znovu", +"Encryption keys deleted permanently" => "Šifrovací klíče trvale smazány", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Nebylo možno trvale smazat vaše šifrovací klíče, zkontrolujte prosím owncloud.log nebo kontaktujte svého administrátora", "Email saved" => "E-mail uložen", "Invalid email" => "Neplatný e-mail", "Unable to delete group" => "Nelze smazat skupinu", "Unable to delete user" => "Nelze smazat uživatele", +"Backups restored successfully" => "Zálohy úspěšně obnoveny", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Nebylo možno obnovit vaše šifrovací klíče, zkontrolujte prosím owncloud.log nebo kontaktujte svého administrátora", "Language changed" => "Jazyk byl změněn", "Invalid request" => "Neplatný požadavek", "Admins can't remove themself from the admin group" => "Správci se nemohou odebrat sami ze skupiny správců", @@ -56,6 +60,8 @@ $TRANSLATIONS = array( "Good password" => "Dobré heslo", "Strong password" => "Silné heslo", "Decrypting files... Please wait, this can take some time." => "Probíhá dešifrování souborů... Čekejte prosím, tato operace může trvat nějakou dobu.", +"Delete encryption keys permanently." => "Trvale smazat šifrovací klíče", +"Restore encryption keys." => "Obnovit šifrovací klíče", "deleted" => "smazáno", "undo" => "vrátit zpět", "Unable to remove user" => "Nelze odebrat uživatele", @@ -106,20 +112,21 @@ $TRANSLATIONS = array( "Enable Share API" => "Povolit API sdílení", "Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení", "Allow links" => "Povolit odkazy", -"Allow users to share items to the public with links" => "Povolit uživatelům sdílet položky veřejně pomocí odkazů", +"Enforce password protection" => "Vynutit ochranu heslem", "Allow public uploads" => "Povolit veřejné nahrávání souborů", -"Allow users to enable others to upload into their publicly shared folders" => "Povolit uživatelům, aby mohli ostatním umožnit nahrávat do jejich veřejně sdílené složky", +"Set default expiration date" => "Nastavit výchozí datum vypršení platnosti", +"Expire after " => "Vyprší po", +"days" => "dnech", +"Enforce expiration date" => "Vynutit datum vypršení", +"Allow users to share items to the public with links" => "Povolit uživatelům sdílet položky veřejně pomocí odkazů", "Allow resharing" => "Povolit znovu-sdílení", "Allow users to share items shared with them again" => "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny", "Allow users to share with anyone" => "Povolit uživatelům sdílet s kýmkoliv", "Allow users to only share with users in their groups" => "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách", "Allow mail notification" => "Povolit e-mailová upozornění", "Allow users to send mail notification for shared files" => "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory", -"Set default expiration date" => "Nastavit výchozí datum vypršení platnosti", -"Expire after " => "Vyprší po", -"days" => "dnech", -"Enforce expiration date" => "Vynutit datum vypršení", -"Expire shares by default after N days" => "Výchozí lhůta vypršení sdílení po N dnech", +"Exclude groups from sharing" => "Vyjmout skupiny ze sdílení", +"These groups will still be able to receive shares, but not to initiate them." => "Těmto skupinám bude stále možno sdílet, nemohou ale sami sdílet ostatním.", "Security" => "Zabezpečení", "Enforce HTTPS" => "Vynutit HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynutí připojování klientů k %s šifrovaným spojením.", @@ -176,11 +183,12 @@ $TRANSLATIONS = array( "Choose as profile image" => "Vybrat jako profilový obrázek", "Language" => "Jazyk", "Help translate" => "Pomoci s překladem", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Použijte <a href=\"%s\" target=\"_blank\">tuto adresu pro přístup k vašim souborům přes WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "Šifrovací aplikace již není spuštěna, dešifrujte prosím všechny své soubory", "Log-in password" => "Přihlašovací heslo", "Decrypt all Files" => "Odšifrovat všechny soubory", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Vaše šifrovací klíče byly zálohovány. Pokud se něco pokazilo, dají se znovu obnovit. Smažte je trvale pouze pokud jste jisti, že jsou všechny vaše soubory bezchybně dešifrovány.", +"Restore Encryption Keys" => "Obnovit Šifrovací Klíče", +"Delete Encryption Keys" => "Smazat Šifrovací Klíče", "Login Name" => "Přihlašovací jméno", "Create" => "Vytvořit", "Admin Recovery Password" => "Heslo obnovy správce", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 0a755da9fd3..e37b776dc2c 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -93,9 +93,10 @@ $TRANSLATIONS = array( "Enable Share API" => "Aktiver Share API", "Allow apps to use the Share API" => "Tillad apps til at bruge Share API", "Allow links" => "Tillad links", -"Allow users to share items to the public with links" => "Tillad brugere at dele elementer til offentligheden med links", "Allow public uploads" => "Tillad offentlig upload", -"Allow users to enable others to upload into their publicly shared folders" => "Tillad brugere at give andre mulighed for at uploade i deres offentligt delte mapper", +"Expire after " => "Udløber efter", +"days" => "dage", +"Allow users to share items to the public with links" => "Tillad brugere at dele elementer til offentligheden med links", "Allow resharing" => "Tillad videredeling", "Allow users to share items shared with them again" => "Tillad brugere at dele elementer delt med dem igen", "Allow users to share with anyone" => "Tillad brugere at dele med alle", @@ -154,8 +155,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "Vælg som profilbillede", "Language" => "Sprog", "Help translate" => "Hjælp med oversættelsen", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Brug denne adresse for at <a href=\"%s\" target=\"_blank\">tilgå dine filer via WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "Krypteringsprogrammet er ikke længere aktiveret. Dekrypter venligst alle dine filer", "Log-in password" => "Log-in kodeord", "Decrypt all Files" => "Dekrypter alle Filer ", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 2b3060dd6d5..eb32555701f 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -2,7 +2,7 @@ $TRANSLATIONS = array( "Invalid value supplied for %s" => "Ungültiger Wert für %s übermittelt", "Saved" => "Gespeichert", -"test email settings" => "E-Mail-Einstellungen teste", +"test email settings" => "E-Mail-Einstellungen testen", "If you received this email, the settings seem to be correct." => "Wenn Sie diese E-Mail erhalten haben, sind die Einstellungen korrekt.", "A problem occurred while sending the e-mail. Please revisit your settings." => "Ein Problem ist beim Senden der E-Mail aufgetreten. Bitte überprüfe deine Einstellungen", "Email sent" => "E-Mail wurde verschickt", @@ -19,10 +19,14 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "Dateien erfolgreich entschlüsselt", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Dateien konnten nicht entschlüsselt werden, prüfe bitte Dein owncloud.log oder frage Deinen Administrator", "Couldn't decrypt your files, check your password and try again" => "Dateien konnten nicht entschlüsselt werden, bitte prüfe Dein Passwort und versuche es erneut.", +"Encryption keys deleted permanently" => "Verschlüsselungsschlüssel dauerhaft gelöscht", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Verschlüsselungsschlüssel konnten nicht dauerhaft gelöscht werden, prüfe bitte Dein owncloud.log oder frage Deinen Administrator", "Email saved" => "E-Mail Adresse gespeichert", "Invalid email" => "Ungültige E-Mail Adresse", "Unable to delete group" => "Gruppe konnte nicht gelöscht werden", "Unable to delete user" => "Benutzer konnte nicht gelöscht werden", +"Backups restored successfully" => "Backups erfolgreich wiederhergestellt", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Verschlüsselungsschlüssel konnten nicht wiederhergestellt werden, prüfe bitte Dein owncloud.log oder frage Deinen Administrator", "Language changed" => "Sprache geändert", "Invalid request" => "Fehlerhafte Anfrage", "Admins can't remove themself from the admin group" => "Administratoren können sich nicht selbst aus der Admin-Gruppe löschen.", @@ -56,6 +60,8 @@ $TRANSLATIONS = array( "Good password" => "Gutes Passwort", "Strong password" => "Starkes Passwort", "Decrypting files... Please wait, this can take some time." => "Entschlüssle Dateien ... Bitte warten, denn dieser Vorgang kann einige Zeit beanspruchen.", +"Delete encryption keys permanently." => "Verschlüsselungsschlüssel dauerhaft löschen.", +"Restore encryption keys." => "Verschlüsselungsschlüssel wiederherstellen.", "deleted" => "gelöscht", "undo" => "rückgängig machen", "Unable to remove user" => "Benutzer konnte nicht entfernt werden.", @@ -106,20 +112,21 @@ $TRANSLATIONS = array( "Enable Share API" => "Aktiviere Sharing-API", "Allow apps to use the Share API" => "Erlaubt Apps die Nutzung der Share-API", "Allow links" => "Erlaubt Links", -"Allow users to share items to the public with links" => "Erlaubt Benutzern, Inhalte über öffentliche Links zu teilen", +"Enforce password protection" => "Passwortschutz erzwingen", "Allow public uploads" => "Öffentliches Hochladen erlauben", -"Allow users to enable others to upload into their publicly shared folders" => "Erlaubt es Benutzern, andere Benutzer einzurichten, dass diese in deren öffentlich freigegebenen Ordner hochladen dürfen", +"Set default expiration date" => "Setze Ablaufdatum", +"Expire after " => "Ablauf nach dem", +"days" => "Tage", +"Enforce expiration date" => "Ablaufdatum erzwingen", +"Allow users to share items to the public with links" => "Erlaubt Benutzern, Inhalte über öffentliche Links zu teilen", "Allow resharing" => "Erlaubt erneutes Teilen", "Allow users to share items shared with them again" => "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen", "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen", "Allow mail notification" => "Mail-Benachrichtigung erlauben", "Allow users to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", -"Set default expiration date" => "Setze Ablaufdatum", -"Expire after " => "Ablauf nach dem", -"days" => "Tage", -"Enforce expiration date" => "Ablaufdatum erzwingen", -"Expire shares by default after N days" => "Lässt Freigaben in der Grundeinstellung nach N-Tagen ablaufen", +"Exclude groups from sharing" => "Gruppen von Freigaben ausschließen", +"These groups will still be able to receive shares, but not to initiate them." => "Diese Gruppen können weiterhin Freigaben empfangen, aber selbst keine mehr initiieren.", "Security" => "Sicherheit", "Enforce HTTPS" => "Erzwinge HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen.", @@ -127,13 +134,14 @@ $TRANSLATIONS = array( "Email Server" => "E-Mail-Server", "This is used for sending out notifications." => "Dies wird zum Senden von Benachrichtigungen verwendet.", "From address" => "Absender-Adresse", +"mail" => "Mail", "Authentication required" => "Authentifizierung benötigt", "Server address" => "Adresse des Servers", "Port" => "Port", "Credentials" => "Zugangsdaten", "SMTP Username" => "SMTP Benutzername", -"SMTP Password" => "SMTP Passwor", -"Test email settings" => "Teste E-Mail-Einstellunge", +"SMTP Password" => "SMTP Passwort", +"Test email settings" => "Teste E-Mail-Einstellungen", "Send email" => "Sende E-Mail", "Log" => "Log", "Log level" => "Loglevel", @@ -176,11 +184,12 @@ $TRANSLATIONS = array( "Choose as profile image" => "Als Profilbild wählen", "Language" => "Sprache", "Help translate" => "Hilf bei der Übersetzung", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Verwenden Sie diese Adresse, um <a href=\"%s\" target=\"_blank\">via WebDAV auf Ihre Dateien zuzugreifen</a>", "The encryption app is no longer enabled, please decrypt all your files" => "Die Verschlüsselungsanwendung ist nicht länger aktiviert, bitte entschlüsseln Sie alle ihre Daten.", "Log-in password" => "Login-Passwort", "Decrypt all Files" => "Alle Dateien entschlüsseln", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Deine Verschlüsselungsschlüssel wiederherstellen wurden zu einem Backup-Speicherort verschoben. Wenn irgendetwas schief läuft können die Schlüssel wiederhergestellt werden. Lösche diese nur dann dauerhaft, wenn Du dir sicher bist, dass alle Dateien korrekt entschlüsselt wurden.", +"Restore Encryption Keys" => "Verschlüsselungsschlüssel wiederherstellen", +"Delete Encryption Keys" => "Verschlüsselungsschlüssel löschen", "Login Name" => "Loginname", "Create" => "Anlegen", "Admin Recovery Password" => "Admin-Wiederherstellungspasswort", diff --git a/settings/l10n/de_CH.php b/settings/l10n/de_CH.php index 9bfe06d0236..77d22684429 100644 --- a/settings/l10n/de_CH.php +++ b/settings/l10n/de_CH.php @@ -57,9 +57,8 @@ $TRANSLATIONS = array( "Enable Share API" => "Share-API aktivieren", "Allow apps to use the Share API" => "Anwendungen erlauben, die Share-API zu benutzen", "Allow links" => "Links erlauben", -"Allow users to share items to the public with links" => "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen", "Allow public uploads" => "Erlaube öffentliches hochladen", -"Allow users to enable others to upload into their publicly shared folders" => "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen", +"Allow users to share items to the public with links" => "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen", "Allow resharing" => "Erlaube Weiterverteilen", "Allow users to share items shared with them again" => "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen", "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", @@ -100,7 +99,6 @@ $TRANSLATIONS = array( "Cancel" => "Abbrechen", "Language" => "Sprache", "Help translate" => "Helfen Sie bei der Übersetzung", -"WebDAV" => "WebDAV", "Log-in password" => "Login-Passwort", "Decrypt all Files" => "Alle Dateien entschlüsseln", "Login Name" => "Loginname", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index b5c0985cecb..16c4ed8a175 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -19,10 +19,14 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "Dateien erfolgreich entschlüsselt", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Dateien konnten nicht entschlüsselt werden, prüfen Sie bitte Ihre owncloud.log oder fragen Sie Ihren Administrator", "Couldn't decrypt your files, check your password and try again" => "Dateien konnten nicht entschlüsselt werden, bitte prüfen Sie Ihr Passwort und versuchen Sie es erneut.", +"Encryption keys deleted permanently" => "Verschlüsselungsschlüssel dauerhaft gelöscht", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Verschlüsselungsschlüssel konnten nicht dauerhaft gelöscht werden, prüfen Sie bitte Ihre owncloud.log oder frage Deinen Administrator", "Email saved" => "E-Mail-Adresse gespeichert", "Invalid email" => "Ungültige E-Mail-Adresse", "Unable to delete group" => "Die Gruppe konnte nicht gelöscht werden", "Unable to delete user" => "Der Benutzer konnte nicht gelöscht werden", +"Backups restored successfully" => "Backups erfolgreich wiederhergestellt", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Verschlüsselungsschlüssel konnten nicht wiederhergestellt werden, prüfen Sie bitte Ihre owncloud.log oder fragen Sie Ihren Administrator", "Language changed" => "Sprache geändert", "Invalid request" => "Ungültige Anforderung", "Admins can't remove themself from the admin group" => "Administratoren können sich nicht selbst aus der admin-Gruppe löschen", @@ -56,6 +60,8 @@ $TRANSLATIONS = array( "Good password" => "Gutes Passwort", "Strong password" => "Starkes Passwort", "Decrypting files... Please wait, this can take some time." => "Entschlüssle Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen.", +"Delete encryption keys permanently." => "Verschlüsselungsschlüssel dauerhaft löschen.", +"Restore encryption keys." => "Verschlüsselungsschlüssel wiederherstellen.", "deleted" => "gelöscht", "undo" => "rückgängig machen", "Unable to remove user" => "Der Benutzer konnte nicht entfernt werden.", @@ -106,20 +112,21 @@ $TRANSLATIONS = array( "Enable Share API" => "Share-API aktivieren", "Allow apps to use the Share API" => "Anwendungen erlauben, die Share-API zu benutzen", "Allow links" => "Links erlauben", -"Allow users to share items to the public with links" => "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen", +"Enforce password protection" => "Passwortschutz erzwingen", "Allow public uploads" => "Öffentliches Hochladen erlauben", -"Allow users to enable others to upload into their publicly shared folders" => "Erlaubt es Benutzern, andere Benutzer einzurichten, dass diese in deren öffentlich freigegebenen Ordner hochladen dürfen", +"Set default expiration date" => "Setze Ablaufdatum", +"Expire after " => "Ablauf nach dem", +"days" => "Tage", +"Enforce expiration date" => "Ablaufdatum erzwingen", +"Allow users to share items to the public with links" => "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen", "Allow resharing" => "Erlaube Weiterverteilen", "Allow users to share items shared with them again" => "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen", "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen", "Allow mail notification" => "Mail-Benachrichtigung erlauben", "Allow users to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", -"Set default expiration date" => "Setze Ablaufdatum", -"Expire after " => "Ablauf nach dem", -"days" => "Tage", -"Enforce expiration date" => "Ablaufdatum erzwingen", -"Expire shares by default after N days" => "Lässt Freigaben in der Grundeinstellung nach N-Tagen ablaufen", +"Exclude groups from sharing" => "Gruppen von Freigaben ausschließen", +"These groups will still be able to receive shares, but not to initiate them." => "Diese Gruppen können weiterhin Freigaben empfangen, aber selbst keine mehr initiieren.", "Security" => "Sicherheit", "Enforce HTTPS" => "HTTPS erzwingen", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen.", @@ -127,6 +134,7 @@ $TRANSLATIONS = array( "Email Server" => "E-Mail-Server", "This is used for sending out notifications." => "Dies wird für das Senden von Benachrichtigungen verwendet.", "From address" => "Absender-Adresse", +"mail" => "Mail", "Authentication required" => "Authentifizierung benötigt", "Server address" => "Adresse des Servers", "Port" => "Port", @@ -176,11 +184,12 @@ $TRANSLATIONS = array( "Choose as profile image" => "Als Profilbild wählen", "Language" => "Sprache", "Help translate" => "Helfen Sie bei der Übersetzung", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Verwenden Sie diese Adresse, um <a href=\"%s\" target=\"_blank\">via WebDAV auf Ihre Dateien zuzugreifen</a>", "The encryption app is no longer enabled, please decrypt all your files" => "Die Verschlüsselungsanwendung ist nicht länger aktiv, bitte entschlüsseln Sie alle ihre Daten", "Log-in password" => "Login-Passwort", "Decrypt all Files" => "Alle Dateien entschlüsseln", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Ihre Verschlüsselungsschlüssel wiederherstellen wurden zu einem Backup-Speicherort verschoben. Wenn irgendetwas schief läuft können die Schlüssel wiederhergestellt werden. Löschen Sie diese nur dann dauerhaft, wenn Sie sich sicher sind, dass alle Dateien korrekt entschlüsselt wurden.", +"Restore Encryption Keys" => "Verschlüsselungsschlüssel wiederherstellen", +"Delete Encryption Keys" => "Verschlüsselungsschlüssel löschen", "Login Name" => "Loginname", "Create" => "Erstellen", "Admin Recovery Password" => "Admin-Passwort-Wiederherstellung", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 1ca97b63da8..03981cab6cd 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -16,10 +16,17 @@ $TRANSLATIONS = array( "Unable to change full name" => "Δεν ήταν δυνατή η αλλαγή του πλήρους ονόματός σας", "Group already exists" => "Η ομάδα υπάρχει ήδη", "Unable to add group" => "Αδυναμία προσθήκης ομάδας", +"Files decrypted successfully" => "Τα αρχεία αποκρυπτογραφήθηκαν με επιτυχία", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Δεν ήταν δυνατή η αποκρυπτογράφηση των αρχείων, παρακαλώ ελέγξτε το owncloud.log ή ενημερωθείτε από τον διαχειριστή συστημάτων σας", +"Couldn't decrypt your files, check your password and try again" => "Δεν ήταν δυνατή η αποκρυπτογράφηση των αρχείων σας, ελέγξτε τον κωδικό πρόσβασής σας και δοκιμάστε πάλι", +"Encryption keys deleted permanently" => "Τα κλειδιά κρυπτογράφησης αφαιρέθηκαν οριστικά", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Δεν ήταν δυνατή η οριστική διαγραφή των κλειδιών κρυπτογράφησής σας, παρακαλώ ελέγξτε το owncloud.log ή επικοινωνήστε με τον διαχειριστή σας", "Email saved" => "Το email αποθηκεύτηκε ", "Invalid email" => "Μη έγκυρο email", "Unable to delete group" => "Αδυναμία διαγραφής ομάδας", "Unable to delete user" => "Αδυναμία διαγραφής χρήστη", +"Backups restored successfully" => "Η επαναφορά αντιγράφων ασφαλείας έγινε με επιτυχία", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Δεν ήταν δυνατή η επαναφορά των κλειδιών κρυπτογράφησής σας, παρακαλώ ελέγξτε το owncloud.log ή επικοινωνήστε με τον διαχειριστή σας", "Language changed" => "Η γλώσσα άλλαξε", "Invalid request" => "Μη έγκυρο αίτημα", "Admins can't remove themself from the admin group" => "Οι διαχειριστές δεν μπορούν να αφαιρέσουν τους εαυτούς τους από την ομάδα των διαχειριστών", @@ -53,6 +60,8 @@ $TRANSLATIONS = array( "Good password" => "Καλό συνθηματικό", "Strong password" => "Δυνατό συνθηματικό", "Decrypting files... Please wait, this can take some time." => "Αποκρυπτογράφηση αρχείων... Παρακαλώ περιμένετε, αυτό μπορεί να πάρει κάποιο χρόνο.", +"Delete encryption keys permanently." => "Οριστική διαγραφή των κλειδιων κρυπτογράφησης.", +"Restore encryption keys." => "Επαναφορά των κλειδιών κρυπτογράφησης.", "deleted" => "διαγράφηκε", "undo" => "αναίρεση", "Unable to remove user" => "Αδυναμία αφαίρεση χρήστη", @@ -103,14 +112,21 @@ $TRANSLATIONS = array( "Enable Share API" => "Ενεργοποίηση API διαμοιρασμού", "Allow apps to use the Share API" => "Επιτρέπει την χρήση του API διαμοιρασμού σε εφαρμογές ", "Allow links" => "Επιτρέπονται οι σύνδεσμοι", -"Allow users to share items to the public with links" => "Επιτρέπει τους χρήστες να διαμοιράζουν δημόσια με συνδέσμους", +"Enforce password protection" => "Επιβολή προστασίας με κωδικό", "Allow public uploads" => "Επιτρέπεται το κοινόχρηστο ανέβασμα", -"Allow users to enable others to upload into their publicly shared folders" => "Επιτρέπει τους χρήστες να καθιστούν άλλους χρήστες ικανούς να ανεβάζουν στους κοινόχρηστους φακέλους τους", +"Set default expiration date" => "Ορισμός ερήμην ημερομηνίας λήξης", +"Expire after " => "Λήξη μετά από", +"days" => "ημέρες", +"Enforce expiration date" => "Επιβολή της ημερομηνίας λήξης", +"Allow users to share items to the public with links" => "Επιτρέπει τους χρήστες να διαμοιράζουν δημόσια με συνδέσμους", "Allow resharing" => "Επιτρέπεται ο επαναδιαμοιρασμός", "Allow users to share items shared with them again" => "Επιτρέπει στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί", "Allow users to share with anyone" => "Επιτρέπεται στους χρήστες ο διαμοιρασμός με οποιονδήποτε", "Allow users to only share with users in their groups" => "Επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας", "Allow mail notification" => "Επιτρέπονται ειδοποιήσεις ηλεκτρονικού ταχυδρομείου", +"Allow users to send mail notification for shared files" => "Επιτρέψτε στους χρήστες να στέλνουν ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία", +"Exclude groups from sharing" => "Εξαίρεση ομάδων από τον διαμοιρασμό", +"These groups will still be able to receive shares, but not to initiate them." => "Αυτές οι ομάδες θα συνεχίσουν να λαμβάνουν διαμοιρασμούς, αλλά δεν θα είναι δυνατό να τους δημιουργήσουν.", "Security" => "Ασφάλεια", "Enforce HTTPS" => "Επιβολή χρήσης HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Επιβάλλει τους πελάτες να συνδέονται στο %s μέσω κρυπτογραφημένης σύνδεσης.", @@ -167,11 +183,12 @@ $TRANSLATIONS = array( "Choose as profile image" => "Επιλογή εικόνας προφίλ", "Language" => "Γλώσσα", "Help translate" => "Βοηθήστε στη μετάφραση", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Χρησιμοποιήστε αυτήν την διεύθυνση για να αποκτήσετε <a href=\"%s\" target=\"_blank\">πρόσβαση στα αρχεία σας μέσω WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "Η εφαρμογή κρυπτογράφησης δεν είναι πλέον ενεργοποιημένη, παρακαλώ αποκρυπτογραφήστε όλα τα αρχεία σας", "Log-in password" => "Συνθηματικό εισόδου", "Decrypt all Files" => "Αποκρυπτογράφηση όλων των Αρχείων", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Τα κλειδιά κρυπτογράφησής σας μεταφέρονται σε θέση αντιγράφου ασφαλείας. Αν κάτι πάει στραβά, μπορείτε να τα επαναφέρετε. Διαγράψτε τα οριστικά μόνο αν είστε βέβαιοι ότι όλα τα αρχεία αποκρυπτογραφήθηκαν σωστά.", +"Restore Encryption Keys" => "Επαναφορά κλειδιών κρυπτογράφησης", +"Delete Encryption Keys" => "Διαγραφή κλειδιών κρυπτογράφησης", "Login Name" => "Όνομα Σύνδεσης", "Create" => "Δημιουργία", "Admin Recovery Password" => "Κωδικός Επαναφοράς Διαχειριστή ", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index 37dc464d671..ef3cc9bb519 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -19,10 +19,14 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "Files decrypted successfully", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Couldn't decrypt your files, please check your owncloud.log or ask your administrator", "Couldn't decrypt your files, check your password and try again" => "Couldn't decrypt your files, check your password and try again", +"Encryption keys deleted permanently" => "Encryption keys deleted permanently", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator", "Email saved" => "Email saved", "Invalid email" => "Invalid email", "Unable to delete group" => "Unable to delete group", "Unable to delete user" => "Unable to delete user", +"Backups restored successfully" => "Backups restored successfully", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator", "Language changed" => "Language changed", "Invalid request" => "Invalid request", "Admins can't remove themself from the admin group" => "Admins can't remove themselves from the admin group", @@ -56,6 +60,8 @@ $TRANSLATIONS = array( "Good password" => "Good password", "Strong password" => "Strong password", "Decrypting files... Please wait, this can take some time." => "Decrypting files... Please wait, this can take some time.", +"Delete encryption keys permanently." => "Delete encryption keys permanently.", +"Restore encryption keys." => "Restore encryption keys.", "deleted" => "deleted", "undo" => "undo", "Unable to remove user" => "Unable to remove user", @@ -106,20 +112,21 @@ $TRANSLATIONS = array( "Enable Share API" => "Enable Share API", "Allow apps to use the Share API" => "Allow apps to use the Share API", "Allow links" => "Allow links", -"Allow users to share items to the public with links" => "Allow users to share items to the public with links", +"Enforce password protection" => "Enforce password protection", "Allow public uploads" => "Allow public uploads", -"Allow users to enable others to upload into their publicly shared folders" => "Allow users to enable others to upload into their publicly shared folders", +"Set default expiration date" => "Set default expiry date", +"Expire after " => "Expire after ", +"days" => "days", +"Enforce expiration date" => "Enforce expiry date", +"Allow users to share items to the public with links" => "Allow users to share items to the public with links", "Allow resharing" => "Allow resharing", "Allow users to share items shared with them again" => "Allow users to share items shared with them again", "Allow users to share with anyone" => "Allow users to share with anyone", "Allow users to only share with users in their groups" => "Allow users to only share with users in their groups", "Allow mail notification" => "Allow mail notification", "Allow users to send mail notification for shared files" => "Allow users to send mail notification for shared files", -"Set default expiration date" => "Set default expiry date", -"Expire after " => "Expire after ", -"days" => "days", -"Enforce expiration date" => "Enforce expiry date", -"Expire shares by default after N days" => "Expire shares by default after N days", +"Exclude groups from sharing" => "Exclude groups from sharing", +"These groups will still be able to receive shares, but not to initiate them." => "These groups will still be able to receive shares, but not to initiate them.", "Security" => "Security", "Enforce HTTPS" => "Enforce HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forces the clients to connect to %s via an encrypted connection.", @@ -127,6 +134,7 @@ $TRANSLATIONS = array( "Email Server" => "Email Server", "This is used for sending out notifications." => "This is used for sending out notifications.", "From address" => "From address", +"mail" => "mail", "Authentication required" => "Authentication required", "Server address" => "Server address", "Port" => "Port", @@ -176,11 +184,12 @@ $TRANSLATIONS = array( "Choose as profile image" => "Choose as profile image", "Language" => "Language", "Help translate" => "Help translate", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "The encryption app is no longer enabled, please decrypt all your files", "Log-in password" => "Log-in password", "Decrypt all Files" => "Decrypt all Files", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly.", +"Restore Encryption Keys" => "Restore Encryption Keys", +"Delete Encryption Keys" => "Delete Encryption Keys", "Login Name" => "Login Name", "Create" => "Create", "Admin Recovery Password" => "Admin Recovery Password", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index f63c5140a45..775419b72dd 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -1,48 +1,93 @@ <?php $TRANSLATIONS = array( +"Saved" => "Konservita", "Email sent" => "La retpoŝtaĵo sendiĝis", +"Send mode" => "Sendi pli", "Encryption" => "Ĉifrado", +"Authentication method" => "Aŭtentiga metodo", "Unable to load list from App Store" => "Ne eblis ŝargi liston el aplikaĵovendejo", "Authentication error" => "Aŭtentiga eraro", +"Your full name has been changed." => "Via plena nomo ŝanĝitas.", +"Unable to change full name" => "Ne eblis ŝanĝi la plenan nomon", "Group already exists" => "La grupo jam ekzistas", "Unable to add group" => "Ne eblis aldoni la grupon", +"Files decrypted successfully" => "La dosieroj malĉifriĝis sukcese", +"Encryption keys deleted permanently" => "La ĉifroklavojn foriĝis por ĉiam.", "Email saved" => "La retpoŝtadreso konserviĝis", "Invalid email" => "Nevalida retpoŝtadreso", "Unable to delete group" => "Ne eblis forigi la grupon", "Unable to delete user" => "Ne eblis forigi la uzanton", +"Backups restored successfully" => "La savokopioj restaŭriĝis sukcese", "Language changed" => "La lingvo estas ŝanĝita", "Invalid request" => "Nevalida peto", "Admins can't remove themself from the admin group" => "Administrantoj ne povas forigi sin mem el la administra grupo.", "Unable to add user to group %s" => "Ne eblis aldoni la uzanton al la grupo %s", "Unable to remove user from group %s" => "Ne eblis forigi la uzantan el la grupo %s", +"Couldn't update app." => "Ne eblis ĝisdatigi la aplikaĵon.", +"Wrong password" => "Malĝusta pasvorto", +"Unable to change password" => "Ne eblis ŝanĝi la pasvorton", +"Sending..." => "Sendante...", "User Documentation" => "Dokumentaro por uzantoj", +"Admin Documentation" => "Administra dokumentaro", +"Update to {appversion}" => "Ĝisdatigi al {appversion}", "Disable" => "Malkapabligi", "Enable" => "Kapabligi", +"Please wait...." => "Bonvolu atendi...", +"Updating...." => "Ĝisdatigata...", +"Error while updating app" => "Eraris ĝisdatigo de la aplikaĵo", "Error" => "Eraro", "Update" => "Ĝisdatigi", +"Updated" => "Ĝisdatigita", +"Select a profile picture" => "Elekti profilan bildon", +"Very weak password" => "Tre malforta pasvorto", +"Weak password" => "Malforta pasvorto", +"So-so password" => "Mezaĉa pasvorto", +"Good password" => "Bona pasvorto", +"Strong password" => "Forta pasvorto", +"Delete encryption keys permanently." => "Forigi ĉifroklavojn por ĉiam.", +"Restore encryption keys." => "Restaŭri ĉifroklavojn.", "deleted" => "forigita", "undo" => "malfari", +"Unable to remove user" => "Ne eblis forigi la uzanton", "Groups" => "Grupoj", "Group Admin" => "Grupadministranto", "Delete" => "Forigi", +"add group" => "aldoni grupon", +"A valid username must be provided" => "Valida uzantonomo devas proviziĝi", +"Error creating user" => "Eraris kreo de uzanto", +"A valid password must be provided" => "Valida pasvorto devas proviziĝi", "__language_name__" => "Esperanto", "None" => "Nenio", "Login" => "Ensaluti", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Sekureca averto", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita.", +"Module 'fileinfo' missing" => "La modulo «fileinfo» mankas", +"Locale not working" => "La lokaĵaro ne funkcias", "Cron" => "Cron", "Sharing" => "Kunhavigo", "Enable Share API" => "Kapabligi API-on por Kunhavigo", "Allow apps to use the Share API" => "Kapabligi aplikaĵojn uzi la API-on pri Kunhavigo", "Allow links" => "Kapabligi ligilojn", +"Allow public uploads" => "Permesi publikajn alŝutojn", +"days" => "tagoj", "Allow users to share items to the public with links" => "Kapabligi uzantojn kunhavigi erojn kun la publiko perligile", "Allow resharing" => "Kapabligi rekunhavigon", "Allow users to share items shared with them again" => "Kapabligi uzantojn rekunhavigi erojn kunhavigitajn kun ili", "Allow users to share with anyone" => "Kapabligi uzantojn kunhavigi kun ĉiu ajn", "Allow users to only share with users in their groups" => "Kapabligi uzantojn nur kunhavigi kun uzantoj el siaj grupoj", +"Allow mail notification" => "Permesi retpoŝtan sciigon", +"Security" => "Sekuro", +"Email Server" => "Retpoŝtoservilo", +"From address" => "El adreso", +"Authentication required" => "Aŭtentiĝo nepras", "Server address" => "Servila adreso", "Port" => "Pordo", "Credentials" => "Aŭtentigiloj", +"SMTP Username" => "SMTP-uzantonomo", +"SMTP Password" => "SMTP-pasvorto", +"Send email" => "Sendi retpoŝton", "Log" => "Protokolo", "Log level" => "Registronivelo", "More" => "Pli", @@ -52,7 +97,9 @@ $TRANSLATIONS = array( "Add your App" => "Aldonu vian aplikaĵon", "More Apps" => "Pli da aplikaĵoj", "Select an App" => "Elekti aplikaĵon", +"Documentation:" => "Dokumentaro:", "See application page at apps.owncloud.com" => "Vidu la paĝon pri aplikaĵoj ĉe apps.owncloud.com", +"See application website" => "Vidi la TTT-ejon de la aplikaĵo", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"</span>-permesilhavigita de <span class=\"author\"></span>", "Administrator Documentation" => "Dokumentaro por administrantoj", "Online Documentation" => "Reta dokumentaro", @@ -60,20 +107,29 @@ $TRANSLATIONS = array( "Bugtracker" => "Cimoraportejo", "Commercial Support" => "Komerca subteno", "Get the apps to sync your files" => "Ekhavu la aplikaĵojn por sinkronigi viajn dosierojn", -"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Vi uzas <strong>%s</strong> el la haveblaj <strong>%s</strong>", +"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Vi uzas <strong>%s</strong> el la disponeblaj <strong>%s</strong>", "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", "New password" => "Nova pasvorto", "Change password" => "Ŝanĝi la pasvorton", +"Full Name" => "Plena nomo", "Email" => "Retpoŝto", "Your email address" => "Via retpoŝta adreso", "Profile picture" => "Profila bildo", +"Upload new" => "Alŝuti novan", +"Select new from Files" => "Elekti novan el dosieroj", +"Remove image" => "Forigi bildon", "Cancel" => "Nuligi", +"Choose as profile image" => "Elekti kiel profilan bildon", "Language" => "Lingvo", "Help translate" => "Helpu traduki", -"WebDAV" => "WebDAV", +"Log-in password" => "Ensaluta pasvorto", +"Decrypt all Files" => "Malĉifri ĉiujn dosierojn", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Viaj ĉifroklavoj moviĝis al savokopia loko. Se io malsukcesas, vi povas restaŭri la klavojn. Nur forigu ilin porĉiame se vi certas, ke ĉiuj dosieroj malĉifriĝis korekte.", +"Restore Encryption Keys" => "Restaŭri ĉifroklavojn", +"Delete Encryption Keys" => "Forigi ĉifroklavojn", "Login Name" => "Ensaluti", "Create" => "Krei", "Default Storage" => "Defaŭlta konservejo", @@ -81,6 +137,8 @@ $TRANSLATIONS = array( "Other" => "Alia", "Username" => "Uzantonomo", "Storage" => "Konservejo", +"change full name" => "ŝanĝi plenan nomon", +"set new password" => "agordi novan pasvorton", "Default" => "Defaŭlta" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 953718bac4f..e5069661f44 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -19,10 +19,14 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "Los archivos fueron descifrados", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "No se pudo descifrar sus archivos. Revise el owncloud.log o consulte con su administrador", "Couldn't decrypt your files, check your password and try again" => "No se pudo descifrar sus archivos. Revise su contraseña e inténtelo de nuevo", +"Encryption keys deleted permanently" => "Claves de cifrado eliminadas permanentemente", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "No se pudieron eliminar permanentemente sus claves de cifrado. Revise owncloud.log o consulte con su administrador.", "Email saved" => "Correo electrónico guardado", "Invalid email" => "Correo electrónico no válido", "Unable to delete group" => "No se pudo eliminar el grupo", "Unable to delete user" => "No se pudo eliminar el usuario", +"Backups restored successfully" => "Copia de seguridad restaurada", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "No se pudieron restarurar sus claves de cifrado. Revise owncloud.log o consulte con su administrador.", "Language changed" => "Idioma cambiado", "Invalid request" => "Petición no válida", "Admins can't remove themself from the admin group" => "Los administradores no se pueden eliminar a ellos mismos del grupo de administrador", @@ -56,6 +60,8 @@ $TRANSLATIONS = array( "Good password" => "Contraseña buena", "Strong password" => "Contraseña muy buena", "Decrypting files... Please wait, this can take some time." => "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo.", +"Delete encryption keys permanently." => "Eliminar claves de cifrado permanentemente.", +"Restore encryption keys." => "Restaurar claves de cifrado.", "deleted" => "eliminado", "undo" => "deshacer", "Unable to remove user" => "Imposible eliminar al usuario", @@ -106,20 +112,21 @@ $TRANSLATIONS = array( "Enable Share API" => "Activar API de Compartición", "Allow apps to use the Share API" => "Permitir a las aplicaciones utilizar la API de Compartición", "Allow links" => "Permitir enlaces", -"Allow users to share items to the public with links" => "Permitir a los usuarios compartir elementos con el público mediante enlaces", +"Enforce password protection" => "Mejora la protección por contraseña.", "Allow public uploads" => "Permitir subidas públicas", -"Allow users to enable others to upload into their publicly shared folders" => "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente", +"Set default expiration date" => "Establecer fecha de caducidad predeterminada", +"Expire after " => "Caduca luego de", +"days" => "días", +"Enforce expiration date" => "Imponer fecha de caducidad", +"Allow users to share items to the public with links" => "Permitir a los usuarios compartir elementos con el público mediante enlaces", "Allow resharing" => "Permitir re-compartición", "Allow users to share items shared with them again" => "Permitir a los usuarios compartir de nuevo elementos ya compartidos", "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquier persona", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los usuarios en sus grupos", "Allow mail notification" => "Permitir notificaciones por correo electrónico", "Allow users to send mail notification for shared files" => "Permitir a los usuarios enviar mensajes de notificación para ficheros compartidos", -"Set default expiration date" => "Establecer fecha de caducidad predeterminada", -"Expire after " => "Caduca luego de", -"days" => "días", -"Enforce expiration date" => "Imponer fecha de caducidad", -"Expire shares by default after N days" => "Archivos compartidos caducan luego de N días", +"Exclude groups from sharing" => "Excluye grupos de compartir", +"These groups will still be able to receive shares, but not to initiate them." => "Estos grupos aún podrán recibir contenidos compartidos, pero no podrán, pero no podrán iniciarlos.", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada.", @@ -127,6 +134,7 @@ $TRANSLATIONS = array( "Email Server" => "Servidor de correo electrónico", "This is used for sending out notifications." => "Esto se usa para enviar notificaciones.", "From address" => "Desde la dirección", +"mail" => "correo electrónico", "Authentication required" => "Se necesita autenticación", "Server address" => "Dirección del servidor", "Port" => "Puerto", @@ -176,11 +184,12 @@ $TRANSLATIONS = array( "Choose as profile image" => "Seleccionar como imagen de perfil", "Language" => "Idioma", "Help translate" => "Ayúdanos a traducir", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Utilice esta dirección para<a href=\"%s/server/5.0/user_manual/files/files.html\" target=\"_blank\">acceder a sus archivos a través de WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "La aplicación de cifrado ya no está activada, descifre todos sus archivos", "Log-in password" => "Contraseña de acceso", "Decrypt all Files" => "Descifrar archivos", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Sus claves de cifrado se archivarán en una localización segura. Así en caso de que algo fuese mal podrá recuperan sus claves. Borre sus claves de cifrado permanentemente solamente si esta seguro de que sus archivos han sido descifrados correctamente.", +"Restore Encryption Keys" => "Restaurar claves de cifrado", +"Delete Encryption Keys" => "Eliminar claves de cifrado", "Login Name" => "Nombre de usuario", "Create" => "Crear", "Admin Recovery Password" => "Recuperación de la contraseña de administración", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 7d834e9170a..f212b842ed5 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -101,9 +101,8 @@ $TRANSLATIONS = array( "Enable Share API" => "Habilitar Share API", "Allow apps to use the Share API" => "Permitir a las aplicaciones usar la Share API", "Allow links" => "Permitir enlaces", -"Allow users to share items to the public with links" => "Permitir a los usuarios compartir enlaces públicos", "Allow public uploads" => "Permitir subidas públicas", -"Allow users to enable others to upload into their publicly shared folders" => "Permitir que los usuarios autoricen a otros a subir archivos en sus directorios públicos compartidos", +"Allow users to share items to the public with links" => "Permitir a los usuarios compartir enlaces públicos", "Allow resharing" => "Permitir Re-Compartir", "Allow users to share items shared with them again" => "Permite a los usuarios volver a compartir items que les fueron compartidos", "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquiera.", @@ -166,8 +165,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "Elegir como imagen de perfil", "Language" => "Idioma", "Help translate" => "Ayudanos a traducir", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Usar esta dirección para <a href=\"%s\" target=\"_blank\">acceder a tus archivos vía WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "La aplicación de encriptación ya no está habilidata, por favor desencripte todos sus archivos.", "Log-in password" => "Clave de acceso", "Decrypt all Files" => "Desencriptar todos los archivos", diff --git a/settings/l10n/es_MX.php b/settings/l10n/es_MX.php index 2eb3946cbba..84d0ffd9bd5 100644 --- a/settings/l10n/es_MX.php +++ b/settings/l10n/es_MX.php @@ -80,9 +80,8 @@ $TRANSLATIONS = array( "Enable Share API" => "Activar API de Compartición", "Allow apps to use the Share API" => "Permitir a las aplicaciones utilizar la API de Compartición", "Allow links" => "Permitir enlaces", -"Allow users to share items to the public with links" => "Permitir a los usuarios compartir elementos con el público mediante enlaces", "Allow public uploads" => "Permitir subidas públicas", -"Allow users to enable others to upload into their publicly shared folders" => "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente", +"Allow users to share items to the public with links" => "Permitir a los usuarios compartir elementos con el público mediante enlaces", "Allow resharing" => "Permitir re-compartición", "Allow users to share items shared with them again" => "Permitir a los usuarios compartir de nuevo elementos ya compartidos", "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquier persona", @@ -132,8 +131,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "Seleccionar como imagen de perfil", "Language" => "Idioma", "Help translate" => "Ayúdanos a traducir", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Utilice esta dirección para <a href=\"%s\" target=\"_blank\">acceder a sus archivos vía WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "La aplicación de cifrado ya no está activada, descifre todos sus archivos", "Log-in password" => "Contraseña de acceso", "Decrypt all Files" => "Descifrar archivos", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index a76b73c9aef..7e85505bbc8 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -106,18 +106,16 @@ $TRANSLATIONS = array( "Enable Share API" => "Luba Share API", "Allow apps to use the Share API" => "Luba rakendustel kasutada Share API-t", "Allow links" => "Luba lingid", -"Allow users to share items to the public with links" => "Luba kasutajatel jagada kirjeid avalike linkidega", "Allow public uploads" => "Luba avalikud üleslaadimised", -"Allow users to enable others to upload into their publicly shared folders" => "Luba kasutajatel üleslaadimine teiste poolt oma avalikult jagatud kataloogidesse ", +"Expire after " => "Aegu pärast", +"days" => "päeva", +"Allow users to share items to the public with links" => "Luba kasutajatel jagada kirjeid avalike linkidega", "Allow resharing" => "Luba edasijagamine", "Allow users to share items shared with them again" => "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud", "Allow users to share with anyone" => "Luba kasutajatel kõigiga jagada", "Allow users to only share with users in their groups" => "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad", "Allow mail notification" => "Luba teavitused e-postiga", "Allow users to send mail notification for shared files" => "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta", -"Expire after " => "Aegu pärast", -"days" => "päeva", -"Expire shares by default after N days" => "Peata jagamine N päeva möödudes", "Security" => "Turvalisus", "Enforce HTTPS" => "Sunni peale HTTPS-i kasutamine", "Forces the clients to connect to %s via an encrypted connection." => "Sunnib kliente %s ühenduma krüpteeritult.", @@ -174,8 +172,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "Vali profiilipildiks", "Language" => "Keel", "Help translate" => "Aita tõlkida", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Kasuta seda aadressi <a href=\"%s\" target=\"_blank\">oma failidele ligipääsuks WebDAV kaudu</a>", "The encryption app is no longer enabled, please decrypt all your files" => "Küpteeringu rakend pole lubatud, dekrüpteeri kõik oma failid", "Log-in password" => "Sisselogimise parool", "Decrypt all Files" => "Dekrüpteeri kõik failid", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 054a40a61b9..29e9e42abb1 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"Saved" => "Gordeta", "Email sent" => "Eposta bidalia", "Encryption" => "Enkriptazioa", "Unable to load list from App Store" => "Ezin izan da App Dendatik zerrenda kargatu", @@ -36,6 +37,11 @@ $TRANSLATIONS = array( "Update" => "Eguneratu", "Updated" => "Eguneratuta", "Select a profile picture" => "Profil argazkia aukeratu", +"Very weak password" => "Pasahitz oso ahula", +"Weak password" => "Pasahitz ahula", +"So-so password" => "Halamoduzko pasahitza", +"Good password" => "Pasahitz ona", +"Strong password" => "Pasahitz sendoa", "deleted" => "ezabatuta", "undo" => "desegin", "Unable to remove user" => "Ezin izan da erabiltzailea aldatu", @@ -73,9 +79,8 @@ $TRANSLATIONS = array( "Enable Share API" => "Gaitu Elkarbanatze APIa", "Allow apps to use the Share API" => "Baimendu aplikazioak Elkarbanatze APIa erabiltzeko", "Allow links" => "Baimendu loturak", -"Allow users to share items to the public with links" => "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki elkarbanatzen", "Allow public uploads" => "Baimendu igoera publikoak", -"Allow users to enable others to upload into their publicly shared folders" => "Baimendu erabiltzaileak besteak bere partekatutako karpetetan fitxategiak igotzea", +"Allow users to share items to the public with links" => "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki elkarbanatzen", "Allow resharing" => "Baimendu birpartekatzea", "Allow users to share items shared with them again" => "Baimendu erabiltzaileak haiekin elkarbanatutako fitxategiak berriz ere elkarbanatzen", "Allow users to share with anyone" => "Baimendu erabiltzaileak edonorekin elkarbanatzen", @@ -125,8 +130,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "Profil irudi bezala aukeratu", "Language" => "Hizkuntza", "Help translate" => "Lagundu itzultzen", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "<a href=\"%s\" target=\"_blank\">helbidea erabili zure fitxategiak WebDAV bidez eskuratzeko</a>", "The encryption app is no longer enabled, please decrypt all your files" => "Enkriptazio aplikazioa ez dago jada gaiturik, mesedez desenkriptatu zure fitxategi guztiak.", "Log-in password" => "Saioa hasteko pasahitza", "Decrypt all Files" => "Desenkripattu fitxategi guztiak", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index f42a263c3ff..366f7ac6996 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -35,6 +35,10 @@ $TRANSLATIONS = array( "Update" => "به روز رسانی", "Updated" => "بروز رسانی انجام شد", "Select a profile picture" => "انتخاب تصویر پروفایل", +"Weak password" => "رمز عبور ضعیف", +"So-so password" => "رمز عبور متوسط", +"Good password" => "رمز عبور خوب", +"Strong password" => "رمز عبور قوی", "Decrypting files... Please wait, this can take some time." => "در حال بازگشایی رمز فایلها... لطفاً صبر نمایید. این امر ممکن است مدتی زمان ببرد.", "deleted" => "حذف شده", "undo" => "بازگشت", @@ -68,9 +72,8 @@ $TRANSLATIONS = array( "Enable Share API" => "فعال کردن API اشتراک گذاری", "Allow apps to use the Share API" => "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری", "Allow links" => "اجازه ی لینک ها", -"Allow users to share items to the public with links" => "اجازه دادن به کاربران برای اشتراک گذاری آیتم ها با عموم از طریق پیوند ها", "Allow public uploads" => "اجازه بارگذاری عمومی", -"Allow users to enable others to upload into their publicly shared folders" => "به کاربران اجازه داده شود که امکان بارگذاری در پوشه هایی که بصورت عمومی به اشتراک گذاشته اند را برای سایرین فعال سازند", +"Allow users to share items to the public with links" => "اجازه دادن به کاربران برای اشتراک گذاری آیتم ها با عموم از طریق پیوند ها", "Allow resharing" => "مجوز اشتراک گذاری مجدد", "Allow users to share items shared with them again" => "اجازه به کاربران برای اشتراک گذاری دوباره با آنها", "Allow users to share with anyone" => "اجازه به کابران برای اشتراک گذاری با همه", @@ -120,8 +123,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "یک تصویر پروفایل انتخاب کنید", "Language" => "زبان", "Help translate" => "به ترجمه آن کمک کنید", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "از این آدرس استفاده کنید تا <a href=\"%s\" target=\"_blank\">بتوانید به فایلهای خود توسط WebDAV دسترسی پیدا کنید</a>", "Log-in password" => "رمز ورود", "Decrypt all Files" => "تمام فایلها رمزگشایی شود", "Login Name" => "نام کاربری", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index ea4d83b1c87..c3fc3640275 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -19,10 +19,12 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "Tiedostojen salaus purettiin onnistuneesti", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Tiedostojen salauksen purkaminen epäonnistui. Tarkista owncloud.log-tiedosto tai ota yhteys ylläpitäjään", "Couldn't decrypt your files, check your password and try again" => "Tiedostojen salauksen purkaminen epäonnistui. Tarkista salasanasi ja yritä uudelleen", +"Encryption keys deleted permanently" => "Salausavaimet poistettiin pysyvästi", "Email saved" => "Sähköposti tallennettu", "Invalid email" => "Virheellinen sähköposti", "Unable to delete group" => "Ryhmän poisto epäonnistui", "Unable to delete user" => "Käyttäjän poisto epäonnistui", +"Backups restored successfully" => "Varmuuskopiot palautettiin onnistuneesti", "Language changed" => "Kieli on vaihdettu", "Invalid request" => "Virheellinen pyyntö", "Admins can't remove themself from the admin group" => "Ylläpitäjät eivät poistaa omia tunnuksiaan ylläpitäjien ryhmästä", @@ -52,6 +54,8 @@ $TRANSLATIONS = array( "Good password" => "Hyvä salasana", "Strong password" => "Vahva salasana", "Decrypting files... Please wait, this can take some time." => "Puretaan tiedostojen salausta... Odota, tämä voi kestää jonkin aikaa.", +"Delete encryption keys permanently." => "Poista salausavaimet pysyvästi.", +"Restore encryption keys." => "Palauta salausavaimet.", "deleted" => "poistettu", "undo" => "kumoa", "Unable to remove user" => "Käyttäjän poistaminen ei onnistunut", @@ -96,19 +100,20 @@ $TRANSLATIONS = array( "Enable Share API" => "Käytä jakamisen ohjelmointirajapintaa", "Allow apps to use the Share API" => "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa", "Allow links" => "Salli linkit", -"Allow users to share items to the public with links" => "Salli käyttäjien jakaa kohteita käyttäen linkkejä", "Allow public uploads" => "Salli julkiset lähetykset", +"Set default expiration date" => "Aseta oletusvanhenemispäivä", +"Expire after " => "Vanhenna", +"days" => "päivän jälkeen", +"Enforce expiration date" => "Pakota vanhenemispäivä", +"Allow users to share items to the public with links" => "Salli käyttäjien jakaa kohteita käyttäen linkkejä", "Allow resharing" => "Salli uudelleenjakaminen", "Allow users to share items shared with them again" => "Mahdollistaa käyttäjien jakavan uudelleen heidän kanssaan jaettuja kohteita", "Allow users to share with anyone" => "Salli käyttäjien jakaa kenen tahansa kanssa", "Allow users to only share with users in their groups" => "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken", "Allow mail notification" => "Salli sähköposti-ilmoitukset", "Allow users to send mail notification for shared files" => "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", -"Set default expiration date" => "Aseta oletusvanhenemispäivä", -"Expire after " => "Vanhenna", -"days" => "päivän jälkeen", -"Enforce expiration date" => "Pakota vanhenemispäivä", -"Expire shares by default after N days" => "Vanhenna jaot oletuksena N päivän jälkeen", +"Exclude groups from sharing" => "Kiellä ryhmiä jakamasta", +"These groups will still be able to receive shares, but not to initiate them." => "Nämä ryhmät kykenevät vastaanottamaan jakoja, mutta eivät kuitenkaan itse pysty luoda jakoja.", "Security" => "Tietoturva", "Enforce HTTPS" => "Pakota HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta.", @@ -165,11 +170,11 @@ $TRANSLATIONS = array( "Choose as profile image" => "Valitse profiilikuvaksi", "Language" => "Kieli", "Help translate" => "Auta kääntämisessä", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Käytä tätä osoitetta <a href=\"%s\" target=\"_blank\">käyttääksesi tiedostojasi WebDAVin kautta</a>", "The encryption app is no longer enabled, please decrypt all your files" => "Salaussovellus ei ole enää käytössä, joten pura kaikkien tiedostojesi salaus", "Log-in password" => "Kirjautumissalasana", "Decrypt all Files" => "Pura kaikkien tiedostojen salaus", +"Restore Encryption Keys" => "Palauta salausavaimet", +"Delete Encryption Keys" => "Poista salausavaimet", "Login Name" => "Kirjautumisnimi", "Create" => "Luo", "Default Storage" => "Oletustallennustila", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 6338e477dea..37e73e0b809 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -19,10 +19,14 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "Fichiers décryptés avec succès", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Impossible de décrypter vos fichiers, veuillez vérifier votre owncloud.log ou demander à votre administrateur", "Couldn't decrypt your files, check your password and try again" => "Impossible de décrypter vos fichiers, vérifiez votre mot de passe et essayez à nouveau", +"Encryption keys deleted permanently" => "Clés de chiffrement définitivement supprimées.", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Impossible de supprimer définitivement vos clés de chiffrement, merci de regarder journal owncloud.log ou de demander à votre administrateur", "Email saved" => "E-mail sauvegardé", "Invalid email" => "E-mail invalide", "Unable to delete group" => "Impossible de supprimer le groupe", "Unable to delete user" => "Impossible de supprimer l'utilisateur", +"Backups restored successfully" => "La sauvegarde a été restaurée avec succès", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Impossible de restaurer vos clés de chiffrement, merci de regarder journal owncloud.log ou de demander à votre administrateur", "Language changed" => "Langue changée", "Invalid request" => "Requête invalide", "Admins can't remove themself from the admin group" => "Les administrateurs ne peuvent pas se retirer eux-mêmes du groupe admin", @@ -56,6 +60,8 @@ $TRANSLATIONS = array( "Good password" => "Mot de passe de sécurité suffisante", "Strong password" => "Mot de passe de forte sécurité", "Decrypting files... Please wait, this can take some time." => "Déchiffrement en cours... Cela peut prendre un certain temps.", +"Delete encryption keys permanently." => "Supprimer définitivement les clés de chiffrement", +"Restore encryption keys." => "Restaurer les clés de chiffrement", "deleted" => "supprimé", "undo" => "annuler", "Unable to remove user" => "Impossible de retirer l'utilisateur", @@ -106,20 +112,21 @@ $TRANSLATIONS = array( "Enable Share API" => "Activer l'API de partage", "Allow apps to use the Share API" => "Autoriser les applications à utiliser l'API de partage", "Allow links" => "Autoriser les liens", -"Allow users to share items to the public with links" => "Autoriser les utilisateurs à partager des éléments publiquement à l'aide de liens", +"Enforce password protection" => "Appliquer la protection par mot de passe", "Allow public uploads" => "Autoriser les téléversements publics", -"Allow users to enable others to upload into their publicly shared folders" => "Permet d'autoriser les autres utilisateurs à téléverser dans le dossier partagé public de l'utilisateur", +"Set default expiration date" => "Spécifier la date d'expiration par défaut", +"Expire after " => "Expire après", +"days" => "jours", +"Enforce expiration date" => "Impose la date d'expiration", +"Allow users to share items to the public with links" => "Autoriser les utilisateurs à partager des éléments publiquement à l'aide de liens", "Allow resharing" => "Autoriser le repartage", "Allow users to share items shared with them again" => "Autoriser les utilisateurs à partager des éléments qui ont été partagés avec eux", "Allow users to share with anyone" => "Autoriser les utilisateurs à partager avec tout le monde", "Allow users to only share with users in their groups" => "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement", "Allow mail notification" => "Autoriser les notifications par couriel", "Allow users to send mail notification for shared files" => "Autoriser les utilisateurs à envoyer une notification par courriel concernant les fichiers partagés", -"Set default expiration date" => "Spécifier la date d'expiration par défaut", -"Expire after " => "Expire après", -"days" => "jours", -"Enforce expiration date" => "Impose la date d'expiration", -"Expire shares by default after N days" => "Par défaut, les partages expireront après N jours", +"Exclude groups from sharing" => "Exclure les groupes du partage", +"These groups will still be able to receive shares, but not to initiate them." => "Ces groupes restent autorisés à partager, mais ne peuvent pas les initier", "Security" => "Sécurité", "Enforce HTTPS" => "Forcer HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forcer les clients à se connecter à %s via une connexion chiffrée.", @@ -127,6 +134,7 @@ $TRANSLATIONS = array( "Email Server" => "Serveur mail", "This is used for sending out notifications." => "Ceci est utilisé pour l'envoi des notifications.", "From address" => "Adresse source", +"mail" => "courriel", "Authentication required" => "Authentification requise", "Server address" => "Adresse du serveur", "Port" => "Port", @@ -176,11 +184,12 @@ $TRANSLATIONS = array( "Choose as profile image" => "Choisir en temps que photo de profil ", "Language" => "Langue", "Help translate" => "Aidez à traduire", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Utiliser cette adresse pour <a href=\"%s\" target=\"_blank\"> accéder à vos fichiers par WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "L'app de chiffrement n’est plus activée, veuillez déchiffrer tous vos fichiers", "Log-in password" => "Mot de passe de connexion", "Decrypt all Files" => "Déchiffrer tous les fichiers", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Vos clés de chiffrement ont été déplacées dans l'emplacement de backup. Si quelque chose devait mal se passer, vous pouvez restaurer les clés. Choisissez la suppression permanente seulement si vous êtes sûr que tous les fichiers ont été déchiffrés correctement.", +"Restore Encryption Keys" => "Restaurer les clés de chiffrement", +"Delete Encryption Keys" => "Supprimer les clés de chiffrement", "Login Name" => "Nom d'utilisateur", "Create" => "Créer", "Admin Recovery Password" => "Récupération du mot de passe administrateur", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 207007d56d8..056247b0076 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -19,10 +19,14 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "Ficheiros descifrados satisfactoriamente", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Non foi posíbel descifrar os seus ficheiros. revise o ficheiro de rexistro owncloud.log, ou pregúntelle ao administrador", "Couldn't decrypt your files, check your password and try again" => "Non foi posíbel descifrar os seus ficheiros. revise o seu contrasinal e ténteo de novo", +"Encryption keys deleted permanently" => "As chaves de cifrado foron eliminadas permanentemente", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Non foi posíbel eliminar permanentemente as chaves de cifrado. revise o ficheiro de rexistro owncloud.log, ou pregúntelle ao administrador", "Email saved" => "Correo gardado", "Invalid email" => "Correo incorrecto", "Unable to delete group" => "Non é posíbel eliminar o grupo.", "Unable to delete user" => "Non é posíbel eliminar o usuario", +"Backups restored successfully" => "As copias de seguranza foron restauradas satisfactoriamente", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Non foi posíbel restaurar as chaves de cifrado. revise o ficheiro de rexistro owncloud.log, ou pregúntelle ao administrador", "Language changed" => "O idioma cambiou", "Invalid request" => "Petición incorrecta", "Admins can't remove themself from the admin group" => "Os administradores non poden eliminarse a si mesmos do grupo admin", @@ -56,6 +60,8 @@ $TRANSLATIONS = array( "Good password" => "Bo contrasinal", "Strong password" => "Contrasinal forte", "Decrypting files... Please wait, this can take some time." => "Descifrando ficheiros... isto pode levar un anaco.", +"Delete encryption keys permanently." => "Eliminar permanentemente as chaves de cifrado.", +"Restore encryption keys." => "Restaurar as chaves de cifrado.", "deleted" => "eliminado", "undo" => "desfacer", "Unable to remove user" => "Non é posíbel retirar o usuario", @@ -106,20 +112,21 @@ $TRANSLATIONS = array( "Enable Share API" => "Activar o API para compartir", "Allow apps to use the Share API" => "Permitir que os aplicativos empreguen o API para compartir", "Allow links" => "Permitir ligazóns", -"Allow users to share items to the public with links" => "Permitir que os usuarios compartan elementos ao público con ligazóns", +"Enforce password protection" => "Forzar a protección por contrasinal", "Allow public uploads" => "Permitir os envíos públicos", -"Allow users to enable others to upload into their publicly shared folders" => "Permitir que os usuarios lle permitan a outros enviar aos seus cartafoles compartidos publicamente", +"Set default expiration date" => "Definir a data predeterminada de caducidade", +"Expire after " => "Caduca após", +"days" => "días", +"Enforce expiration date" => "Obrigar a data de caducidade", +"Allow users to share items to the public with links" => "Permitir que os usuarios compartan elementos ao público con ligazóns", "Allow resharing" => "Permitir compartir", "Allow users to share items shared with them again" => "Permitir que os usuarios compartan de novo os elementos compartidos con eles", "Allow users to share with anyone" => "Permitir que os usuarios compartan con calquera", "Allow users to only share with users in their groups" => "Permitir que os usuarios compartan só cos usuarios dos seus grupos", "Allow mail notification" => "Permitir o envío de notificacións por correo", "Allow users to send mail notification for shared files" => "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos", -"Set default expiration date" => "Definir a data predeterminada de caducidade", -"Expire after " => "Caduca após", -"days" => "días", -"Enforce expiration date" => "Obrigar a data de caducidade", -"Expire shares by default after N days" => "As comparticións, de xeito predeterminado, caducan aos N días", +"Exclude groups from sharing" => "Excluír grupos da compartición", +"These groups will still be able to receive shares, but not to initiate them." => "Estes grupos poderán recibir comparticións, mais non inicialas.", "Security" => "Seguranza", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar que os clientes se conecten a %s empregando unha conexión cifrada.", @@ -127,6 +134,7 @@ $TRANSLATIONS = array( "Email Server" => "Servidor de correo", "This is used for sending out notifications." => "Isto utilizase para o envío de notificacións.", "From address" => "Desde o enderezo", +"mail" => "correo", "Authentication required" => "Requírese autenticación", "Server address" => "Enderezo do servidor", "Port" => "Porto", @@ -176,11 +184,12 @@ $TRANSLATIONS = array( "Choose as profile image" => "Escolla unha imaxe para o perfil", "Language" => "Idioma", "Help translate" => "Axude na tradución", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Empregue esta ligazón <a href=\"%s\" target=\"_blank\">para acceder aos sus ficheiros mediante WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "O aplicativo de cifrado non está activado, descifre todos os ficheiros", "Log-in password" => "Contrasinal de acceso", "Decrypt all Files" => "Descifrar todos os ficheiros", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "As chaves de cifrado foron movidas á copia de seguranza. Se ten algún problema pode restaurar as chaves. Elimineas permanentemente só se está seguro de que é posíbel descifrar correctamente todos os ficheiros.", +"Restore Encryption Keys" => "Restaurar as chaves de cifrado", +"Delete Encryption Keys" => "Eliminar as chaves de cifrado", "Login Name" => "Nome de acceso", "Create" => "Crear", "Admin Recovery Password" => "Contrasinal de recuperación do administrador", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index 0b42c2167ad..b5e80155b82 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -91,7 +91,6 @@ $TRANSLATIONS = array( "Cancel" => "ביטול", "Language" => "פה", "Help translate" => "עזרה בתרגום", -"WebDAV" => "WebDAV", "Login Name" => "שם כניסה", "Create" => "יצירה", "Admin Recovery Password" => "ססמת השחזור של המנהל", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 928b42a2014..9cca3377042 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -89,9 +89,8 @@ $TRANSLATIONS = array( "Enable Share API" => "A megosztás API-jának engedélyezése", "Allow apps to use the Share API" => "Lehetővé teszi, hogy a programmodulok is használhassák a megosztást", "Allow links" => "Linkek engedélyezése", -"Allow users to share items to the public with links" => "Lehetővé teszi, hogy a felhasználók linkek segítségével külsősökkel is megoszthassák az adataikat", "Allow public uploads" => "Feltöltést engedélyezése mindenki számára", -"Allow users to enable others to upload into their publicly shared folders" => "Engedélyezni a felhasználóknak, hogy beállíithassák, hogy mások feltölthetnek a nyilvánosan megosztott mappákba.", +"Allow users to share items to the public with links" => "Lehetővé teszi, hogy a felhasználók linkek segítségével külsősökkel is megoszthassák az adataikat", "Allow resharing" => "A továbbosztás engedélyezése", "Allow users to share items shared with them again" => "Lehetővé teszi, hogy a felhasználók a velük megosztott állományokat megosszák egy további, harmadik féllel", "Allow users to share with anyone" => "A felhasználók bárkivel megoszthatják állományaikat", @@ -142,8 +141,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "Válassz profil képet", "Language" => "Nyelv", "Help translate" => "Segítsen a fordításban!", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Ezt a címet használd, hogy <a href=\"%s\" target=\"_blank\">hozzáférj a fileokhoz WebDAV-on keresztül</a>", "The encryption app is no longer enabled, please decrypt all your files" => "A titkosító alkalmazás továbbiakban nem lesz engedélyezve, szüntesd meg a titkosítását a file-jaidnak.", "Log-in password" => "Bejelentkezési jelszó", "Decrypt all Files" => "Kititkosítja az összes file-t", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index 07c46a673d3..ac6cd5cae5a 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"Saved" => "Disimpan", "Email sent" => "Email terkirim", "Encryption" => "Enkripsi", "Unable to load list from App Store" => "Tidak dapat memuat daftar dari App Store", @@ -36,6 +37,11 @@ $TRANSLATIONS = array( "Update" => "Perbarui", "Updated" => "Diperbarui", "Select a profile picture" => "Pilih foto profil", +"Very weak password" => "Sandi sangat lemah", +"Weak password" => "Sandi lemah", +"So-so password" => "Sandi lumayan", +"Good password" => "Sandi baik", +"Strong password" => "Sandi kuat", "Decrypting files... Please wait, this can take some time." => "Mendeskripsi berkas... Modon tunggu, ini memerlukan beberapa saat.", "deleted" => "dihapus", "undo" => "urungkan", @@ -79,9 +85,8 @@ $TRANSLATIONS = array( "Enable Share API" => "Aktifkan API Pembagian", "Allow apps to use the Share API" => "Izinkan aplikasi untuk menggunakan API Pembagian", "Allow links" => "Izinkan tautan", -"Allow users to share items to the public with links" => "Izinkan pengguna untuk berbagi item kepada publik lewat tautan", "Allow public uploads" => "Izinkan unggahan publik", -"Allow users to enable others to upload into their publicly shared folders" => "Izinkan pengguna memungkinkan orang lain untuk mengunggah kedalam folder berbagi publik mereka", +"Allow users to share items to the public with links" => "Izinkan pengguna untuk berbagi item kepada publik lewat tautan", "Allow resharing" => "Izinkan pembagian ulang", "Allow users to share items shared with them again" => "Izinkan pengguna untuk berbagi kembali item yang dibagikan kepada mereka.", "Allow users to share with anyone" => "Izinkan pengguna untuk berbagi kepada siapa saja", @@ -131,8 +136,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "Pilih sebagai gambar profil", "Language" => "Bahasa", "Help translate" => "Bantu menerjemahkan", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Gunakan alamat ini untuk <a href=\"%s\" target=\"_blank\">mengakses Berkas via WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "Aplikasi enkripsi tidak lagi diaktifkan, silahkan mendekripsi semua file Anda", "Log-in password" => "Sandi masuk", "Decrypt all Files" => "Deskripsi semua Berkas", diff --git a/settings/l10n/is.php b/settings/l10n/is.php index 3f8b5accda2..fc296053138 100644 --- a/settings/l10n/is.php +++ b/settings/l10n/is.php @@ -58,7 +58,6 @@ $TRANSLATIONS = array( "Cancel" => "Hætta við", "Language" => "Tungumál", "Help translate" => "Hjálpa við þýðingu", -"WebDAV" => "WebDAV", "Create" => "Búa til", "Default Storage" => "Sjálfgefin gagnageymsla", "Unlimited" => "Ótakmarkað", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index e0fcb6cde6c..f8c0361c09e 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -19,10 +19,14 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "File decifrato correttamente", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Impossibile decifrare i tuoi file, controlla il file owncloud.log o chiedi al tuo amministratore", "Couldn't decrypt your files, check your password and try again" => "Impossibile decifrare i tuoi file, controlla la password e prova ancora", +"Encryption keys deleted permanently" => "Chiavi di cifratura eliminate definitivamente", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Impossibile eliminare definitivamente le chiavi di cifratura, controlla il file owncloud.log o chiedi al tuo amministratore", "Email saved" => "Email salvata", "Invalid email" => "Email non valida", "Unable to delete group" => "Impossibile eliminare il gruppo", "Unable to delete user" => "Impossibile eliminare l'utente", +"Backups restored successfully" => "Copie di sicurezza ripristinate correttamente", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Impossibile ripristinare le chiavi di cifratura, controlla il file owncloud.log o chiedi al tuo amministratore", "Language changed" => "Lingua modificata", "Invalid request" => "Richiesta non valida", "Admins can't remove themself from the admin group" => "Gli amministratori non possono rimuovere se stessi dal gruppo di amministrazione", @@ -56,6 +60,8 @@ $TRANSLATIONS = array( "Good password" => "Password buona", "Strong password" => "Password forte", "Decrypting files... Please wait, this can take some time." => "Decifratura dei file in corso... Attendi, potrebbe richiedere del tempo.", +"Delete encryption keys permanently." => "Elimina definitivamente le chiavi di cifratura.", +"Restore encryption keys." => "Ripristina le chiavi di cifratura.", "deleted" => "eliminati", "undo" => "annulla", "Unable to remove user" => "Impossibile rimuovere l'utente", @@ -106,20 +112,21 @@ $TRANSLATIONS = array( "Enable Share API" => "Abilita API di condivisione", "Allow apps to use the Share API" => "Consenti alle applicazioni di utilizzare le API di condivisione", "Allow links" => "Consenti collegamenti", -"Allow users to share items to the public with links" => "Consenti agli utenti di condividere pubblicamente elementi tramite collegamenti", +"Enforce password protection" => "Imponi la protezione con password", "Allow public uploads" => "Consenti caricamenti pubblici", -"Allow users to enable others to upload into their publicly shared folders" => "Consenti agli utenti di abilitare altri al caricamento nelle loro cartelle pubbliche condivise", +"Set default expiration date" => "Imposta data di scadenza predefinita", +"Expire after " => "Scadenza dopo", +"days" => "giorni", +"Enforce expiration date" => "Forza la data di scadenza", +"Allow users to share items to the public with links" => "Consenti agli utenti di condividere pubblicamente elementi tramite collegamenti", "Allow resharing" => "Consenti la ri-condivisione", "Allow users to share items shared with them again" => "Consenti agli utenti di condividere a loro volta elementi condivisi da altri", "Allow users to share with anyone" => "Consenti agli utenti di condividere con chiunque", "Allow users to only share with users in their groups" => "Consenti agli utenti di condividere solo con utenti dei loro gruppi", "Allow mail notification" => "Consenti le notifiche tramite posta elettronica", "Allow users to send mail notification for shared files" => "Consenti agli utenti di inviare email di notifica per i file condivisi", -"Set default expiration date" => "Imposta data di scadenza predefinita", -"Expire after " => "Scadenza dopo", -"days" => "giorni", -"Enforce expiration date" => "Forza la data di scadenza", -"Expire shares by default after N days" => "Le condivisioni scadono in modo predefinito dopo N giorni", +"Exclude groups from sharing" => "Escludi gruppi dalla condivisione", +"These groups will still be able to receive shares, but not to initiate them." => "Questi gruppi saranno in grado di ricevere condivisioni, ma non iniziarle.", "Security" => "Protezione", "Enforce HTTPS" => "Forza HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forza i client a connettersi a %s tramite una connessione cifrata.", @@ -127,6 +134,7 @@ $TRANSLATIONS = array( "Email Server" => "Server di posta", "This is used for sending out notifications." => "Viene utilizzato per inviare le notifiche.", "From address" => "Indirizzo mittente", +"mail" => "posta", "Authentication required" => "Autenticazione richiesta", "Server address" => "Indirizzo del server", "Port" => "Porta", @@ -176,11 +184,12 @@ $TRANSLATIONS = array( "Choose as profile image" => "Scegli come immagine del profilo", "Language" => "Lingua", "Help translate" => "Migliora la traduzione", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Utilizza questo indirizzo per <a href=\"%s\" target=\"_blank\">accedere ai tuoi file con WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "L'applicazione di cifratura non è più abilitata, decifra tutti i tuoi file", "Log-in password" => "Password di accesso", "Decrypt all Files" => "Decifra tutti i file", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Le tue chiavi di cifratura sono state spostate in una posizione sicura. Se qualcosa non dovesse funzionare, potrai ripristinare le chiavi. Eliminale definitivamente solo se sei sicuro che tutti i file siano stati decifrati.", +"Restore Encryption Keys" => "Ripristina chiavi di cifratura", +"Delete Encryption Keys" => "Elimina chiavi di cifratura", "Login Name" => "Nome utente", "Create" => "Crea", "Admin Recovery Password" => "Password di ripristino amministrativa", diff --git a/settings/l10n/ja.php b/settings/l10n/ja.php index 186be0c377c..e580e2956b8 100644 --- a/settings/l10n/ja.php +++ b/settings/l10n/ja.php @@ -19,10 +19,14 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "ファイルの復号化に成功しました", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "ファイルを復号化することができませんでした。owncloud のログを調査するか、管理者に連絡してください。", "Couldn't decrypt your files, check your password and try again" => "ファイルを復号化することができませんでした。パスワードを確認のうえ再試行してください。", +"Encryption keys deleted permanently" => "暗号化キーは完全に削除されます", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "暗号化キーを完全に削除できませんでした。owncloud.logを確認するか、管理者に問い合わせてください。", "Email saved" => "メールアドレスを保存しました", "Invalid email" => "無効なメールアドレス", "Unable to delete group" => "グループを削除できません", "Unable to delete user" => "ユーザーを削除できません", +"Backups restored successfully" => "バックアップの復元に成功しました", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "暗号化キーを復元できませんでした。owncloud.logを確認するか、管理者に問い合わせてください。", "Language changed" => "言語が変更されました", "Invalid request" => "不正なリクエスト", "Admins can't remove themself from the admin group" => "管理者は自身を管理者グループから削除できません。", @@ -56,6 +60,8 @@ $TRANSLATIONS = array( "Good password" => "良好なパスワード", "Strong password" => "強いパスワード", "Decrypting files... Please wait, this can take some time." => "ファイルを複合中... しばらくお待ちください、この処理には少し時間がかかるかもしれません。", +"Delete encryption keys permanently." => "暗号化キーを永久に削除する。", +"Restore encryption keys." => "暗号化キーを復元する。", "deleted" => "削除", "undo" => "元に戻す", "Unable to remove user" => "ユーザーを削除できません", @@ -106,20 +112,19 @@ $TRANSLATIONS = array( "Enable Share API" => "共有APIを有効にする", "Allow apps to use the Share API" => "アプリからの共有APIの利用を許可する", "Allow links" => "リンクを許可する", -"Allow users to share items to the public with links" => "ユーザーがリンクによりアイテムを公開することを許可する", +"Enforce password protection" => "常にパスワード保護を有効にする", "Allow public uploads" => "パブリックなアップロードを許可", -"Allow users to enable others to upload into their publicly shared folders" => "公開している共有フォルダーへのアップロードを共有しているメンバーにも許可", +"Set default expiration date" => "有効期限の既定値を設定", +"Expire after " => "無効になるまで", +"days" => "日", +"Enforce expiration date" => "有効期限を反映させる", +"Allow users to share items to the public with links" => "ユーザーがリンクによりアイテムを公開することを許可する", "Allow resharing" => "再共有を許可する", "Allow users to share items shared with them again" => "ユーザーが共有しているアイテムの再共有を許可する", "Allow users to share with anyone" => "ユーザーに誰とでも共有することを許可する", "Allow users to only share with users in their groups" => "ユーザーにグループ内のユーザーとのみ共有を許可する", "Allow mail notification" => "メール通知を許可", "Allow users to send mail notification for shared files" => "共有ファイルに関するメール通知の送信をユーザに許可する", -"Set default expiration date" => "有効期限の既定値を設定", -"Expire after " => "無効になるまで", -"days" => "日", -"Enforce expiration date" => "有効期限を反映させる", -"Expire shares by default after N days" => "既定値では N 日後に共有を無効にします", "Security" => "セキュリティ", "Enforce HTTPS" => "常にHTTPSを使用する", "Forces the clients to connect to %s via an encrypted connection." => "クライアントから %sへの接続を常に暗号化します。", @@ -176,11 +181,12 @@ $TRANSLATIONS = array( "Choose as profile image" => "プロファイル画像として選択", "Language" => "言語", "Help translate" => "翻訳に協力する", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "<a href=\"%s\" target=\"_blank\">WebDAV 経由でファイルにアクセス</a> するにはこのアドレスを利用してください", "The encryption app is no longer enabled, please decrypt all your files" => "暗号化アプリはもはや有効ではありません、すべてのファイルを複合してください", "Log-in password" => "ログインパスワード", "Decrypt all Files" => "すべてのファイルを複合する", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "暗号化キーはバックアップ場所に移動されました。何か問題があった場合は、キーを復元することができます。すべてのファイルが正しく復号化されたことが確信できる場合にのみ、キーを完全に削除してください。", +"Restore Encryption Keys" => "暗号化キーを復元する", +"Delete Encryption Keys" => "暗号化キーを削除する", "Login Name" => "ログイン名", "Create" => "作成", "Admin Recovery Password" => "管理者リカバリパスワード", diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index 88f6ef514d5..b11d6227122 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -92,7 +92,6 @@ $TRANSLATIONS = array( "Cancel" => "უარყოფა", "Language" => "ენა", "Help translate" => "თარგმნის დახმარება", -"WebDAV" => "WebDAV", "Login Name" => "მომხმარებლის სახელი", "Create" => "შექმნა", "Default Storage" => "საწყისი საცავი", diff --git a/settings/l10n/km.php b/settings/l10n/km.php index 679c7cd3901..0bf073001e4 100644 --- a/settings/l10n/km.php +++ b/settings/l10n/km.php @@ -1,6 +1,11 @@ <?php $TRANSLATIONS = array( +"Saved" => "បានរក្សាទុក", +"test email settings" => "សាកល្បងការកំណត់អ៊ីមែល", +"If you received this email, the settings seem to be correct." => "ប្រសិនបើអ្នកទទួលបានអ៊ីមែលនេះ មានន័យថាការកំណត់គឺបានត្រឹមមត្រូវហើយ។", +"A problem occurred while sending the e-mail. Please revisit your settings." => "មានកំហុសកើតឡើងនៅពេលកំពុងផ្ញើអ៊ីមែលចេញ។ សូមមើលការកំណត់របស់អ្នកម្ដងទៀត។", "Email sent" => "បានផ្ញើអ៊ីមែល", +"You need to set your user email before being able to send test emails." => "អ្នកត្រូវតែកំណត់អ៊ីមែលរបស់អ្នកមុននឹងអាចផ្ញើអ៊ីមែលសាកល្បងបាន។", "Encryption" => "កូដនីយកម្ម", "Unable to load list from App Store" => "មិនអាចផ្ទុកបញ្ជីកម្មវិធីពី App Store", "Authentication error" => "កំហុសការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវ", @@ -16,7 +21,10 @@ $TRANSLATIONS = array( "Unable to add user to group %s" => "មិនអាចបន្ថែមអ្នកប្រើទៅក្រុម %s", "Unable to remove user from group %s" => "មិនអាចដកអ្នកប្រើចេញពីក្រុម %s", "Couldn't update app." => "មិនអាចធ្វើបច្ចុប្បន្នភាពកម្មវិធី។", +"Wrong password" => "ខុសពាក្យសម្ងាត់", +"Sending..." => "កំពុងផ្ញើ...", "User Documentation" => "ឯកសារសម្រាប់អ្នកប្រើប្រាស់", +"Admin Documentation" => "កម្រងឯកសារអភិបាល", "Update to {appversion}" => "ធ្វើបច្ចុប្បន្នភាពទៅ {appversion}", "Disable" => "បិទ", "Enable" => "បើក", @@ -26,6 +34,12 @@ $TRANSLATIONS = array( "Error" => "កំហុស", "Update" => "ធ្វើបច្ចុប្បន្នភាព", "Updated" => "បានធ្វើបច្ចុប្បន្នភាព", +"Select a profile picture" => "ជ្រើសរូបភាពប្រវត្តិរូប", +"Very weak password" => "ពាក្យសម្ងាត់ខ្សោយណាស់", +"Weak password" => "ពាក្យសម្ងាត់ខ្សោយ", +"So-so password" => "ពាក្យសម្ងាត់ធម្មតា", +"Good password" => "ពាក្យសម្ងាត់ល្អ", +"Strong password" => "ពាក្យសម្ងាត់ខ្លាំង", "deleted" => "បានលុប", "undo" => "មិនធ្វើវិញ", "Unable to remove user" => "មិនអាចដកអ្នកប្រើចេញ", @@ -37,7 +51,10 @@ $TRANSLATIONS = array( "Error creating user" => "មានកំហុសក្នុងការបង្កើតអ្នកប្រើ", "A valid password must be provided" => "ត្រូវផ្ដល់ពាក្យសម្ងាត់ឲ្យបានត្រឹមត្រូវ", "__language_name__" => "__language_name__", +"None" => "គ្មាន", "Login" => "ចូល", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "បម្រាមសុវត្ថិភាព", "Setup Warning" => "បម្រាមការដំឡើង", "Module 'fileinfo' missing" => "ខ្វះម៉ូឌុល 'fileinfo'", @@ -48,12 +65,17 @@ $TRANSLATIONS = array( "Enable Share API" => "បើក API ចែករំលែក", "Allow apps to use the Share API" => "អនុញ្ញាតឲ្យកម្មវិធីប្រើ API ចែករំលែក", "Allow links" => "អនុញ្ញាតតំណ", +"Allow public uploads" => "អនុញ្ញាតការផ្ទុកឡើងជាសាធារណៈ", "Allow users to share items to the public with links" => "អនុញ្ញាតឲ្យអ្នកប្រើចែករំលែករបស់ទៅសាធារណៈជាមួយតំណ", "Allow resharing" => "អនុញ្ញាតការចែករំលែកម្ដងទៀត", "Allow users to share with anyone" => "អនុញ្ញាតឲ្យអ្នកប្រើចែករំលែកជាមួយនរណាម្នាក់", "Security" => "សុវត្ថិភាព", "Enforce HTTPS" => "បង្ខំ HTTPS", +"Email Server" => "ម៉ាស៊ីនបម្រើអ៊ីមែល", +"From address" => "ពីអាសយដ្ឋាន", "Server address" => "អាសយដ្ឋានម៉ាស៊ីនបម្រើ", +"Port" => "ច្រក", +"Send email" => "ផ្ញើអ៊ីមែល", "Log" => "Log", "Log level" => "កម្រិត Log", "More" => "ច្រើនទៀត", @@ -67,18 +89,29 @@ $TRANSLATIONS = array( "Forum" => "វេទិកាពិភាក្សា", "Bugtracker" => "Bugtracker", "Password" => "ពាក្យសម្ងាត់", +"Your password was changed" => "ពាក្យសម្ងាត់របស់អ្នកត្រូវបានប្ដូរ", +"Unable to change your password" => "មិនអាចប្ដូរពាក្យសម្ងាត់របស់អ្នកបានទេ", "Current password" => "ពាក្យសម្ងាត់បច្ចុប្បន្ន", "New password" => "ពាក្យសម្ងាត់ថ្មី", "Change password" => "ប្តូរពាក្យសម្ងាត់", "Email" => "អ៊ីមែល", "Your email address" => "អ៊ីម៉ែលរបស់អ្នក", +"Profile picture" => "រូបភាពប្រវត្តិរូប", +"Upload new" => "ផ្ទុកឡើងថ្មី", +"Select new from Files" => "ជ្រើសថ្មីពីឯកសារ", +"Remove image" => "ដករូបភាពចេញ", "Cancel" => "លើកលែង", "Language" => "ភាសា", "Help translate" => "ជួយបកប្រែ", -"WebDAV" => "WebDAV", +"Log-in password" => "ពាក្យសម្ងាត់ចូលគណនី", "Login Name" => "ចូល", "Create" => "បង្កើត", +"Default Storage" => "ឃ្លាំងផ្ទុកលំនាំដើម", +"Unlimited" => "មិនកំណត់", "Other" => "ផ្សេងៗ", -"Username" => "ឈ្មោះអ្នកប្រើ" +"Username" => "ឈ្មោះអ្នកប្រើ", +"Storage" => "ឃ្លាំងផ្ទុក", +"set new password" => "កំណត់ពាក្យសម្ងាត់ថ្មី", +"Default" => "លំនាំដើម" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index b17a25e4c32..f8319249d4d 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -1,5 +1,6 @@ <?php $TRANSLATIONS = array( +"Saved" => "저장됨", "Email sent" => "이메일 발송됨", "Encryption" => "암호화", "Unable to load list from App Store" => "앱 스토어에서 목록을 가져올 수 없습니다", @@ -90,9 +91,8 @@ $TRANSLATIONS = array( "Enable Share API" => "공유 API 사용하기", "Allow apps to use the Share API" => "앱에서 공유 API를 사용할 수 있도록 허용", "Allow links" => "링크 허용", -"Allow users to share items to the public with links" => "사용자가 개별 항목의 링크를 공유할 수 있도록 허용", "Allow public uploads" => "공개 업로드 허용", -"Allow users to enable others to upload into their publicly shared folders" => "다른 사용자들이 공개된 공유 폴더에 파일 업로드 허용", +"Allow users to share items to the public with links" => "사용자가 개별 항목의 링크를 공유할 수 있도록 허용", "Allow resharing" => "재공유 허용", "Allow users to share items shared with them again" => "사용자에게 공유된 항목을 다시 공유할 수 있도록 허용", "Allow users to share with anyone" => "누구나와 공유할 수 있도록 허용", @@ -151,8 +151,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "프로필 이미지로 사용", "Language" => "언어", "Help translate" => "번역 돕기", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "WebDAV로 파일에 접근하려면 <a href=\"%s\" target=\"_blank\">이 주소를 사용하십시오</a>", "The encryption app is no longer enabled, please decrypt all your files" => "암호화 앱이 비활성화되었습니다. 모든 파일을 복호화해야 합니다.", "Log-in password" => "로그인 암호", "Decrypt all Files" => "모든 파일 복호화", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 2e7036aaaed..45728392c41 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -69,9 +69,8 @@ $TRANSLATIONS = array( "Enable Share API" => "Įjungti Share API", "Allow apps to use the Share API" => "Leidžia programoms naudoti Share API", "Allow links" => "Lesti nuorodas", -"Allow users to share items to the public with links" => "Leisti naudotojams viešai dalintis elementais su nuorodomis", "Allow public uploads" => "Leisti viešus įkėlimus", -"Allow users to enable others to upload into their publicly shared folders" => "Leisti naudotojams įgalinti kitus įkelti į savo viešai dalinamus aplankus", +"Allow users to share items to the public with links" => "Leisti naudotojams viešai dalintis elementais su nuorodomis", "Allow resharing" => "Leisti dalintis", "Allow users to share items shared with them again" => "Leisti naudotojams toliau dalintis elementais pasidalintais su jais", "Allow users to share with anyone" => "Leisti naudotojams dalintis su bet kuo", @@ -120,8 +119,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "Pasirinkite profilio paveiksliuką", "Language" => "Kalba", "Help translate" => "Padėkite išversti", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Naudokite šį adresą, kad <a href=\"%s\" target=\"_blank\">pasiektumėte savo failus per WebDAV</a>", "Log-in password" => "Prisijungimo slaptažodis", "Decrypt all Files" => "Iššifruoti visus failus", "Login Name" => "Vartotojo vardas", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index 7d5f964a96e..261f5a6d37e 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -56,9 +56,8 @@ $TRANSLATIONS = array( "Enable Share API" => "Aktivēt koplietošanas API", "Allow apps to use the Share API" => "Ļauj lietotnēm izmantot koplietošanas API", "Allow links" => "Atļaut saites", -"Allow users to share items to the public with links" => "Ļaut lietotājiem publiski dalīties ar vienumiem, izmantojot saites", "Allow public uploads" => "Atļaut publisko augšupielādi", -"Allow users to enable others to upload into their publicly shared folders" => "Ļaut lietotājiem iespējot atļaut citiem augšupielādēt failus viņu publiskajās mapēs", +"Allow users to share items to the public with links" => "Ļaut lietotājiem publiski dalīties ar vienumiem, izmantojot saites", "Allow resharing" => "Atļaut atkārtotu koplietošanu", "Allow users to share items shared with them again" => "Ļaut lietotājiem dalīties ar vienumiem atkārtoti", "Allow users to share with anyone" => "Ļaut lietotājiem dalīties ar visiem", @@ -100,7 +99,6 @@ $TRANSLATIONS = array( "Cancel" => "Atcelt", "Language" => "Valoda", "Help translate" => "Palīdzi tulkot", -"WebDAV" => "WebDAV", "Log-in password" => "Pieslēgšanās parole", "Decrypt all Files" => "Atšifrēt visus failus", "Login Name" => "Ierakstīšanās vārds", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 975079eb39e..27bdcc73048 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -95,7 +95,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "Одбери фотографија за профилот", "Language" => "Јазик", "Help translate" => "Помогни во преводот", -"WebDAV" => "WebDAV", "Log-in password" => "Лозинка за најавување", "Decrypt all Files" => "Дешифрирај ги сите датотеки", "Login Name" => "Име за најава", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index a43bde76bcc..4ed4930271d 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -1,18 +1,32 @@ <?php $TRANSLATIONS = array( +"Invalid value supplied for %s" => "Ugyldig verdi angitt for %s", "Saved" => "Lagret", +"test email settings" => "test innstillinger for e-post", +"If you received this email, the settings seem to be correct." => "Hvis du mottok denne e-posten er innstillingene tydeligvis korrekte.", +"A problem occurred while sending the e-mail. Please revisit your settings." => "Et problem oppstod under sending av e-posten. Sjekk innstillingene.", "Email sent" => "E-post sendt", +"You need to set your user email before being able to send test emails." => "Du må sette e-postadressen for brukeren din før du kan teste sending av e-post.", +"Send mode" => "Sendemodus", "Encryption" => "Kryptering", +"Authentication method" => "Autentiseringsmetode", "Unable to load list from App Store" => "Lasting av liste fra App Store feilet.", "Authentication error" => "Autentiseringsfeil", "Your full name has been changed." => "Ditt fulle navn er blitt endret.", "Unable to change full name" => "Klarte ikke å endre fullt navn", "Group already exists" => "Gruppen finnes allerede", "Unable to add group" => "Kan ikke legge til gruppe", +"Files decrypted successfully" => "Dekryptering av filer vellykket", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Kunne ikke dekryptere filene dine. Sjekk owncloud.log eller spør administratoren", +"Couldn't decrypt your files, check your password and try again" => "Kunne ikke dekryptere filene dine. Sjekk passordet ditt og prøv igjen", +"Encryption keys deleted permanently" => "Krypteringsnøkler permanent slettet", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Kunne ikke slette krypteringsnøklene dine permanent. Sjekk owncloud.log eller spør administratoren", "Email saved" => "Epost lagret", "Invalid email" => "Ugyldig epost", "Unable to delete group" => "Kan ikke slette gruppe", "Unable to delete user" => "Kan ikke slette bruker", +"Backups restored successfully" => "Vellykket gjenoppretting fra sikkerhetskopier", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Kunne ikke gjenopprette krypteringsnøklene dine. Sjekk owncloud.log eller spør administratoren", "Language changed" => "Språk endret", "Invalid request" => "Ugyldig forespørsel", "Admins can't remove themself from the admin group" => "Admin kan ikke flytte seg selv fra admingruppen", @@ -27,6 +41,7 @@ $TRANSLATIONS = array( "Unable to change password" => "Kunne ikke endre passord", "Sending..." => "Sender...", "User Documentation" => "Brukerdokumentasjon", +"Admin Documentation" => "Admin-dokumentasjon", "Update to {appversion}" => "Oppdater til {appversion}", "Disable" => "Slå avBehandle ", "Enable" => "Aktiver", @@ -41,9 +56,12 @@ $TRANSLATIONS = array( "Select a profile picture" => "Velg et profilbilde", "Very weak password" => "Veldig svakt passord", "Weak password" => "Svakt passord", +"So-so password" => "So-so-passord", "Good password" => "Bra passord", "Strong password" => "Sterkt passord", "Decrypting files... Please wait, this can take some time." => "Dekrypterer filer... Vennligst vent, dette kan ta litt tid.", +"Delete encryption keys permanently." => "Slett krypteringsnøkler permanent.", +"Restore encryption keys." => "Gjenopprett krypteringsnøkler.", "deleted" => "slettet", "undo" => "angre", "Unable to remove user" => "Kunne ikke slette bruker", @@ -63,6 +81,8 @@ $TRANSLATIONS = array( "Fatal issues only" => "Kun fatale problemer", "None" => "Ingen", "Login" => "Logg inn", +"Plain" => "Enkel", +"NT LAN Manager" => "NT LAN Manager", "SSL" => "SSL", "TLS" => "TLS", "Security Warning" => "Sikkerhetsadvarsel", @@ -82,6 +102,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Ingen internettilkopling", "This 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." => "Denne serveren har ikke en fungerende Internett-tilkobling. Dette betyr at noen av funksjonene, slik som montering av ekstern lagring, påminnelser om oppdatering eller installering av 3-parts apper ikke fungerer. Fjerntilgang til filer og utsending av påminnelser i e-post virker kanskje ikke heller. Vi anbefaler at Internett-forbindelsen for denne serveren aktiveres hvis du vil ha full funksjonalitet.", "Cron" => "Cron", +"Last cron was executed at %s." => "Siste cron ble utført %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Siste cron ble utført %s. Dette er mer enn en time siden. Noe ser ut til å være galt.", +"Cron was not executed yet!" => "Cron er ikke utført ennå!", "Execute one task with each page loaded" => "Utfør en oppgave med hver side som blir lastet", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php er registrert i en webcron-tjeneste for å kalle cron.php hvert 15. minutt over http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Bruk systemets cron-tjeneste for å kalle cron.php hvert 15. minutt.", @@ -89,23 +112,36 @@ $TRANSLATIONS = array( "Enable Share API" => "Aktiver API for Deling", "Allow apps to use the Share API" => "Tillat apps å bruke API for Deling", "Allow links" => "Tillat lenker", -"Allow users to share items to the public with links" => "Tillat brukere å dele filer offentlig med lenker", +"Enforce password protection" => "Tving passordbeskyttelse", "Allow public uploads" => "Tillat offentlig opplasting", -"Allow users to enable others to upload into their publicly shared folders" => "Tillat at brukere lar andre laste opp til deres offentlig delte mapper", +"Set default expiration date" => "Sett standard utløpsdato", +"Expire after " => "Utløper etter", +"days" => "dager", +"Enforce expiration date" => "Tving utløpsdato", +"Allow users to share items to the public with links" => "Tillat brukere å dele filer offentlig med lenker", "Allow resharing" => "TIllat videredeling", "Allow users to share items shared with them again" => "Tillat brukere å dele filer som allerede har blitt delt med dem", "Allow users to share with anyone" => "Tillat brukere å dele med alle", "Allow users to only share with users in their groups" => "Tillat kun deling med andre brukere i samme gruppe", "Allow mail notification" => "Tillat påminnelser i e-post", +"Allow users to send mail notification for shared files" => "Tlllat at brukere sender e-postvarsler for delte filer", +"Exclude groups from sharing" => "Utelukk grupper fra deling", +"These groups will still be able to receive shares, but not to initiate them." => "Disse gruppene vil fremdeles kunne motta delinger men ikke lage dem.", "Security" => "Sikkerhet", "Enforce HTTPS" => "Tving HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tvinger klientene til å koble til %s via en kryptert forbindelse.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Vennligst koble til din %s via HTTPS for å aktivere eller deaktivere tvungen SSL.", +"Email Server" => "E-postserver", +"This is used for sending out notifications." => "Dette brukes for utsending av varsler.", "From address" => "Fra adresse", +"mail" => "e-post", +"Authentication required" => "Autentisering kreves", "Server address" => "Server-adresse", "Port" => "Port", +"Credentials" => "Påloggingsdetaljer", "SMTP Username" => "SMTP-brukernavn", "SMTP Password" => "SMTP-passord", +"Test email settings" => "Test innstillinger for e-post", "Send email" => "Send e-post", "Log" => "Logg", "Log level" => "Loggnivå", @@ -118,6 +154,7 @@ $TRANSLATIONS = array( "Select an App" => "Velg en app", "Documentation:" => "Dokumentasjon:", "See application page at apps.owncloud.com" => "Se applikasjonens side på apps.owncloud.org", +"See application website" => "Vis applikasjonens nettsted", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-lisensiert av <span class=\"author\"></span>", "Administrator Documentation" => "Administratordokumentasjon", "Online Documentation" => "Online dokumentasjon", @@ -136,6 +173,7 @@ $TRANSLATIONS = array( "Full Name" => "Fullt navn", "Email" => "Epost", "Your email address" => "Din e-postadresse", +"Fill in an email address to enable password recovery and receive notifications" => "Legg inn en e-postadresse for å aktivere passordgjenfinning og motta varsler", "Profile picture" => "Profilbilde", "Upload new" => "Last opp nytt", "Select new from Files" => "Velg nytt fra Filer", @@ -146,11 +184,12 @@ $TRANSLATIONS = array( "Choose as profile image" => "Velg som profilbilde", "Language" => "Språk", "Help translate" => "Bidra til oversettelsen", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Bruk denne adressen for å <a href=\"%s\" target=\"_blank\">aksessere filene dine via WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "Krypterings-appen er ikke aktiv lenger. Vennligst dekrypter alle filene dine", "Log-in password" => "Innloggingspassord", "Decrypt all Files" => "Dekrypter alle filer", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Krypteringsnøklene dine er flyttet til en plass for sikkerhetskopier. Hvis noe gikk galt kan du gjenopprette nøklene. Ikke slett dem permanent før du er ikker på at alle filer er dekryptert korrekt.", +"Restore Encryption Keys" => "Gjenopprett krypteringsnøkler", +"Delete Encryption Keys" => "Slett krypteringsnøkler", "Login Name" => "Logginn navn", "Create" => "Opprett", "Admin Recovery Password" => "Administrativt gjenopprettingspassord", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 97554ed050f..b67908a4a36 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -19,10 +19,14 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "Bestanden succesvol ontsleuteld", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Kon uw bestanden niet ontsleutelem. Controleer uw owncloud logs of vraag het uw beheerder", "Couldn't decrypt your files, check your password and try again" => "Kon uw bestanden niet ontsleutelen. Controleer uw wachtwoord en probeer het opnieuw", +"Encryption keys deleted permanently" => "Cryptosleutels permanent verwijderd", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Kom uw cryptosleutels niet permanent verwijderen. Controleer uw owncloud.log, of neem contact op met uw beheerder.", "Email saved" => "E-mail bewaard", "Invalid email" => "Ongeldige e-mail", "Unable to delete group" => "Niet in staat om groep te verwijderen", "Unable to delete user" => "Niet in staat om gebruiker te verwijderen", +"Backups restored successfully" => "Backup succesvol terggezet", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Kon uw cryptosleutels niet herstellen. Controleer uw owncloud.log of neem contact op met uw beheerder", "Language changed" => "Taal aangepast", "Invalid request" => "Ongeldige aanvraag", "Admins can't remove themself from the admin group" => "Admins kunnen zichzelf niet uit de admin groep verwijderen", @@ -56,6 +60,8 @@ $TRANSLATIONS = array( "Good password" => "Goed wachtwoord", "Strong password" => "Sterk wachtwoord", "Decrypting files... Please wait, this can take some time." => "Bestanden worden gedecodeerd... Even geduld alstublieft, dit kan even duren.", +"Delete encryption keys permanently." => "Verwijder de encryptiesleutels permanent", +"Restore encryption keys." => "Herstel de encryptiesleutels", "deleted" => "verwijderd", "undo" => "ongedaan maken", "Unable to remove user" => "Kon gebruiker niet verwijderen", @@ -106,20 +112,21 @@ $TRANSLATIONS = array( "Enable Share API" => "Activeren Share API", "Allow apps to use the Share API" => "Apps toestaan de Share API te gebruiken", "Allow links" => "Toestaan links", -"Allow users to share items to the public with links" => "Toestaan dat gebruikers objecten met links delen met anderen", +"Enforce password protection" => "Dwing wachtwoordbeveiliging af", "Allow public uploads" => "Sta publieke uploads toe", -"Allow users to enable others to upload into their publicly shared folders" => "Sta gebruikers toe anderen in hun publiek gedeelde mappen bestanden te uploaden", +"Set default expiration date" => "Stel standaard vervaldatum in", +"Expire after " => "Vervalt na", +"days" => "dagen", +"Enforce expiration date" => "Verplicht de vervaldatum", +"Allow users to share items to the public with links" => "Toestaan dat gebruikers objecten met links delen met anderen", "Allow resharing" => "Toestaan opnieuw delen", "Allow users to share items shared with them again" => "Toestaan dat gebruikers objecten die anderen met hun gedeeld hebben zelf ook weer delen met anderen", "Allow users to share with anyone" => "Toestaan dat gebruikers met iedereen delen", "Allow users to only share with users in their groups" => "Instellen dat gebruikers alleen met leden binnen hun groepen delen", "Allow mail notification" => "Toestaan e-mailnotificaties", "Allow users to send mail notification for shared files" => "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", -"Set default expiration date" => "Stel standaard vervaldatum in", -"Expire after " => "Vervalt na", -"days" => "dagen", -"Enforce expiration date" => "Verplicht de vervaldatum", -"Expire shares by default after N days" => "Laat shares standaard vervallen na N dagen", +"Exclude groups from sharing" => "Sluit groepen uit van delen", +"These groups will still be able to receive shares, but not to initiate them." => "Deze groepen kunnen gedeelde mappen bestanden ontvangen, maar kunnen ze niet starten.", "Security" => "Beveiliging", "Enforce HTTPS" => "Afdwingen HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Dwingt de clients om een versleutelde verbinding te maken met %s", @@ -127,6 +134,7 @@ $TRANSLATIONS = array( "Email Server" => "E-mailserver", "This is used for sending out notifications." => "Dit wordt gestuurd voor het verzenden van meldingen.", "From address" => "Afzenderadres", +"mail" => "e-mail", "Authentication required" => "Authenticatie vereist", "Server address" => "Server adres", "Port" => "Poort", @@ -176,11 +184,12 @@ $TRANSLATIONS = array( "Choose as profile image" => "Kies als profielafbeelding", "Language" => "Taal", "Help translate" => "Help met vertalen", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Gebruik deze link <a href=\"%s\" target=\"_blank\">om uw bestanden via WebDAV te benaderen</a>", "The encryption app is no longer enabled, please decrypt all your files" => "De crypto app is niet langer geactiveerd, u moet alle bestanden decrypten.", "Log-in password" => "Inlog-wachtwoord", "Decrypt all Files" => "Decodeer alle bestanden", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Uw cryptosleutels zijn verplaatst naar een backup locatie. Als iets iets verkeerd ging, kunt u de sleutels herstellen. Verwijder ze alleen permanent als u zeker weet dat de bestanden goed zijn versleuteld.", +"Restore Encryption Keys" => "Herstel cryptosleutels", +"Delete Encryption Keys" => "Verwijder cryptosleutels", "Login Name" => "Inlognaam", "Create" => "Aanmaken", "Admin Recovery Password" => "Beheer herstel wachtwoord", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 7eacdbedfb0..c064d66c708 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -64,9 +64,8 @@ $TRANSLATIONS = array( "Enable Share API" => "Slå på API-et for deling", "Allow apps to use the Share API" => "La app-ar bruka API-et til deling", "Allow links" => "Tillat lenkjer", -"Allow users to share items to the public with links" => "La brukarar dela ting offentleg med lenkjer", "Allow public uploads" => "Tillat offentlege opplastingar", -"Allow users to enable others to upload into their publicly shared folders" => "La brukarar tillata andre å lasta opp i deira offentleg delte mapper", +"Allow users to share items to the public with links" => "La brukarar dela ting offentleg med lenkjer", "Allow resharing" => "Tillat vidaredeling", "Allow users to share items shared with them again" => "La brukarar vidaredela delte ting", "Allow users to share with anyone" => "La brukarar dela med kven som helst", @@ -112,7 +111,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "Vel som profilbilete", "Language" => "Språk", "Help translate" => "Hjelp oss å omsetja", -"WebDAV" => "WebDAV", "Log-in password" => "Innloggingspassord", "Decrypt all Files" => "Dekrypter alle filene", "Login Name" => "Innloggingsnamn", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index dbdc2ef9999..2ff5b00d986 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -19,10 +19,14 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "Pliki zostały poprawnie zdeszyfrowane", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Nie można zdeszyfrować Twoich plików, proszę sprawdzić owncloud.log lub zapytać administratora", "Couldn't decrypt your files, check your password and try again" => "Nie można zdeszyfrować Twoich plików, sprawdź swoje hasło i spróbuj ponownie", +"Encryption keys deleted permanently" => "Klucze szyfrujące zostały trwale usunięte", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Nie można trwale usunąć Twoich kluczy szyfrujących, proszę sprawdź owncloud.log lub zapytaj administratora", "Email saved" => "E-mail zapisany", "Invalid email" => "Nieprawidłowy e-mail", "Unable to delete group" => "Nie można usunąć grupy", "Unable to delete user" => "Nie można usunąć użytkownika", +"Backups restored successfully" => "Archiwum zostało prawidłowo przywrócone", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Nie można przywrócić kluczy szyfrujących, proszę sprawdzić owncloud.log lub zapytać administratora", "Language changed" => "Zmieniono język", "Invalid request" => "Nieprawidłowe żądanie", "Admins can't remove themself from the admin group" => "Administratorzy nie mogą usunąć siebie samych z grupy administratorów", @@ -56,6 +60,8 @@ $TRANSLATIONS = array( "Good password" => "Dobre hasło", "Strong password" => "Mocne hasło", "Decrypting files... Please wait, this can take some time." => "Odszyfrowuje pliki... Proszę czekać, to może zająć jakiś czas.", +"Delete encryption keys permanently." => "Usuń trwale klucze szyfrujące.", +"Restore encryption keys." => "Przywróć klucze szyfrujące.", "deleted" => "usunięto", "undo" => "cofnij", "Unable to remove user" => "Nie można usunąć użytkownika", @@ -106,20 +112,21 @@ $TRANSLATIONS = array( "Enable Share API" => "Włącz API udostępniania", "Allow apps to use the Share API" => "Zezwalaj aplikacjom na korzystanie z API udostępniania", "Allow links" => "Zezwalaj na odnośniki", -"Allow users to share items to the public with links" => "Zezwalaj użytkownikom na publiczne współdzielenie zasobów za pomocą odnośników", +"Enforce password protection" => "Wymuś zabezpieczenie hasłem", "Allow public uploads" => "Pozwól na publiczne wczytywanie", -"Allow users to enable others to upload into their publicly shared folders" => "Użytkownicy mogą włączyć dla innych wgrywanie do ich publicznych katalogów", +"Set default expiration date" => "Ustaw domyślną datę wygaśnięcia", +"Expire after " => "Wygaś po", +"days" => "dniach", +"Enforce expiration date" => "Wymuś datę wygaśnięcia", +"Allow users to share items to the public with links" => "Zezwalaj użytkownikom na publiczne współdzielenie zasobów za pomocą odnośników", "Allow resharing" => "Zezwalaj na ponowne udostępnianie", "Allow users to share items shared with them again" => "Zezwalaj użytkownikom na ponowne współdzielenie zasobów już z nimi współdzielonych", "Allow users to share with anyone" => "Zezwalaj użytkownikom na współdzielenie z kimkolwiek", "Allow users to only share with users in their groups" => "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup", "Allow mail notification" => "Pozwól na mailowe powiadomienia", "Allow users to send mail notification for shared files" => "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików", -"Set default expiration date" => "Ustaw domyślną datę wygaśnięcia", -"Expire after " => "Wygaś po", -"days" => "dniach", -"Enforce expiration date" => "Wymuś datę wygaśnięcia", -"Expire shares by default after N days" => "Wygaś udziały domyślnie po N dniach", +"Exclude groups from sharing" => "Wyklucz grupy z udostępniania", +"These groups will still be able to receive shares, but not to initiate them." => "Grupy te nadal będą mogli otrzymywać udostępnione udziały, ale nie do ich inicjowania.", "Security" => "Bezpieczeństwo", "Enforce HTTPS" => "Wymuś HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego.", @@ -176,11 +183,12 @@ $TRANSLATIONS = array( "Choose as profile image" => "Wybierz zdjęcie profilu", "Language" => "Język", "Help translate" => "Pomóż w tłumaczeniu", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Użyj tego adresu do <a href=\"%s\" target=\"_blank\">dostępu do twoich plików przez WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "Aplikacja szyfrowanie nie jest włączona, odszyfruj wszystkie plik", "Log-in password" => "Hasło logowania", "Decrypt all Files" => "Odszyfruj wszystkie pliki", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Twoje klucze szyfrujące zostały przeniesione do lokalizacji archialnej. Jeśli coś poszło nie tak, możesz je przywrócić. Usuń je trwale tylko, gdy jesteś pewien(na), że wszystkie pliki zostały prawidłowo zdeszyfrowane.", +"Restore Encryption Keys" => "Przywróć klucze szyfrujące", +"Delete Encryption Keys" => "Usuń klucze szyfrujące", "Login Name" => "Login", "Create" => "Utwórz", "Admin Recovery Password" => "Odzyskiwanie hasła administratora", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index e7534a21a7d..e8da8ee94a3 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -19,10 +19,14 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "Arquivos descriptografados com sucesso", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Não foi possível descriptografar os arquivos, verifique a sua owncloud.log ou pergunte ao seu administrador", "Couldn't decrypt your files, check your password and try again" => "Não foi possível descriptografar os arquivos, verifique sua senha e tente novamente", +"Encryption keys deleted permanently" => "Chaves de criptografia excluídas permanentemente", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Não foi possível excluir permanentemente suas chaves de criptografia, por favor, verifique o seu owncloud.log ou pergunte ao seu administrador", "Email saved" => "E-mail salvo", "Invalid email" => "E-mail inválido", "Unable to delete group" => "Não foi possível remover grupo", "Unable to delete user" => "Não foi possível remover usuário", +"Backups restored successfully" => "Backup restaurado com sucesso", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Não foi possível salvar as chaves de criptografia, por favor, verifique o seu owncloud.log ou pergunte ao seu administrador", "Language changed" => "Idioma alterado", "Invalid request" => "Pedido inválido", "Admins can't remove themself from the admin group" => "Admins não podem ser removidos do grupo admin", @@ -56,6 +60,8 @@ $TRANSLATIONS = array( "Good password" => "Boa senha", "Strong password" => "Senha forte", "Decrypting files... Please wait, this can take some time." => "Decriptando arquivos... Por favor aguarde, isso pode levar algum tempo.", +"Delete encryption keys permanently." => "Eliminando a chave de criptografia permanentemente.", +"Restore encryption keys." => "Restaurar chave de criptografia.", "deleted" => "excluído", "undo" => "desfazer", "Unable to remove user" => "Impossível remover usuário", @@ -106,20 +112,21 @@ $TRANSLATIONS = array( "Enable Share API" => "Habilitar API de Compartilhamento", "Allow apps to use the Share API" => "Permitir que aplicativos usem a API de Compartilhamento", "Allow links" => "Permitir links", -"Allow users to share items to the public with links" => "Permitir que usuários compartilhem itens com o público usando links", +"Enforce password protection" => "Reforce a proteção por senha", "Allow public uploads" => "Permitir envio público", -"Allow users to enable others to upload into their publicly shared folders" => "Permitir que usuários deem permissão a outros para enviarem arquivios para suas pastas compartilhadas publicamente", +"Set default expiration date" => "Configurar a data de expiração", +"Expire after " => "Expirar depois de", +"days" => "dias", +"Enforce expiration date" => "Fazer cumprir a data de expiração", +"Allow users to share items to the public with links" => "Permitir que usuários compartilhem itens com o público usando links", "Allow resharing" => "Permitir recompartilhamento", "Allow users to share items shared with them again" => "Permitir que usuários compartilhem novamente itens compartilhados com eles", "Allow users to share with anyone" => "Permitir que usuários compartilhem com qualquer um", "Allow users to only share with users in their groups" => "Permitir que usuários compartilhem somente com usuários em seus grupos", "Allow mail notification" => "Permitir notificação por email", "Allow users to send mail notification for shared files" => "Permitir aos usuários enviar notificação de email para arquivos compartilhados", -"Set default expiration date" => "Configurar a data de expiração", -"Expire after " => "Expirar depois de", -"days" => "dias", -"Enforce expiration date" => "Fazer cumprir a data de expiração", -"Expire shares by default after N days" => "Expirar compartilhamentos automaticamente depois de N dias", +"Exclude groups from sharing" => "Excluir grupos de compartilhamento", +"These groups will still be able to receive shares, but not to initiate them." => "Esses grupos ainda serão capazes de receber compartilhamentos, mas não para iniciá-los.", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Obrigar os clientes que se conectem a %s através de uma conexão criptografada.", @@ -127,6 +134,7 @@ $TRANSLATIONS = array( "Email Server" => "Servidor de Email", "This is used for sending out notifications." => "Isto é usado para o envio de notificações.", "From address" => "Do Endereço", +"mail" => "email", "Authentication required" => "Autenticação é requerida", "Server address" => "Endereço do servidor", "Port" => "Porta", @@ -176,11 +184,12 @@ $TRANSLATIONS = array( "Choose as profile image" => "Escolha como imagem para o perfil", "Language" => "Idioma", "Help translate" => "Ajude a traduzir", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Use este endereço <a href=\"%s\" target=\"_blank\">para ter acesso a seus Arquivos via WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "O aplicativo de criptografia não está habilitado, por favor descriptar todos os seus arquivos", "Log-in password" => "Senha de login", "Decrypt all Files" => "Decripti todos os Arquivos", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Suas chaves de criptografia forão movidas para o local de backup. Se alguma coisa deu errado, você pode salvar as chaves. Só excluí-las permanentemente se você tiver certeza de que todos os arquivos forão descriptografados corretamente.", +"Restore Encryption Keys" => "Restaurar Chaves de Criptografia", +"Delete Encryption Keys" => "Eliminar Chaves de Criptografia", "Login Name" => "Nome de Login", "Create" => "Criar", "Admin Recovery Password" => "Recuperação da Senha do Administrador", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 6bd466bfd67..f8b63bf55d8 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -1,9 +1,12 @@ <?php $TRANSLATIONS = array( +"Invalid value supplied for %s" => "Valor dado a %s éinválido", "Saved" => "Guardado", "test email settings" => "testar configurações de email", +"If you received this email, the settings seem to be correct." => "Se você recebeu este e-mail as configurações parecem estar correctas", "A problem occurred while sending the e-mail. Please revisit your settings." => "Ocorreu um erro ao enviar o email. Por favor verifique as definições.", "Email sent" => "E-mail enviado", +"You need to set your user email before being able to send test emails." => "Você precisa de configurar o seu e-mail de usuário antes de ser capaz de enviar e-mails de teste", "Send mode" => "Modo de envio", "Encryption" => "Encriptação", "Authentication method" => "Método de autenticação", @@ -14,10 +17,16 @@ $TRANSLATIONS = array( "Group already exists" => "O grupo já existe", "Unable to add group" => "Impossível acrescentar o grupo", "Files decrypted successfully" => "Ficheiros desencriptados com sucesso", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Não foi possível desencriptar os seus arquivos. Verifique a sua owncloud.log ou pergunte ao seu administrador", +"Couldn't decrypt your files, check your password and try again" => "Não foi possível desencriptar os seus arquivos. Verifique a sua senha e tente novamente", +"Encryption keys deleted permanently" => "A chave de encriptação foi eliminada permanentemente", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Não foi possível excluir permanentemente a sua chave de encriptação. Verifique a sua owncloud.log ou pergunte ao seu administrador", "Email saved" => "Email guardado", "Invalid email" => "Email inválido", "Unable to delete group" => "Impossível apagar grupo", "Unable to delete user" => "Impossível apagar utilizador", +"Backups restored successfully" => "Cópias de segurança foram restauradas com sucesso", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Nao foi possivel restaurar as suas chaves de encriptacao. Verifique a sua owncloud.log ou pergunte ao seu administrador", "Language changed" => "Idioma alterado", "Invalid request" => "Pedido Inválido", "Admins can't remove themself from the admin group" => "Os administradores não se podem remover a eles mesmos do grupo admin.", @@ -51,6 +60,8 @@ $TRANSLATIONS = array( "Good password" => "Password Forte", "Strong password" => "Password muito forte", "Decrypting files... Please wait, this can take some time." => "A desencriptar os ficheiros... Por favor aguarde, esta operação pode demorar algum tempo.", +"Delete encryption keys permanently." => "Excluir as chaves encriptadas de forma permanente.", +"Restore encryption keys." => "Restaurar chaves encriptadas.", "deleted" => "apagado", "undo" => "desfazer", "Unable to remove user" => "Não foi possível remover o utilizador", @@ -71,6 +82,7 @@ $TRANSLATIONS = array( "None" => "Nenhum", "Login" => "Login", "Plain" => "Plano", +"NT LAN Manager" => "Gestor de NT LAN", "SSL" => "SSL", "TLS" => "TLS", "Security Warning" => "Aviso de Segurança", @@ -90,6 +102,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "A ligação à internet não está a funcionar", "This 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." => "Este servidor ownCloud não tem uma ligação de internet a funcionar. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretender obter todas as funcionalidades do ownCloud.", "Cron" => "Cron", +"Last cron was executed at %s." => "O ultimo cron foi executado em %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "O ultima cron foi executado em %s a mais duma hora. Algo não está certo.", +"Cron was not executed yet!" => "Cron ainda não foi executado!", "Execute one task with each page loaded" => "Executar uma tarefa com cada página carregada", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php está registado num serviço webcron para chamar a página cron.php por http a cada 15 minutos.", "Use systems cron service to call the cron.php file every 15 minutes." => "Use o serviço cron do sistema para chamar o ficheiro cron.php a cada 15 minutos.", @@ -97,16 +112,21 @@ $TRANSLATIONS = array( "Enable Share API" => "Activar a API de partilha", "Allow apps to use the Share API" => "Permitir que os utilizadores usem a API de partilha", "Allow links" => "Permitir links", -"Allow users to share items to the public with links" => "Permitir que os utilizadores partilhem itens com o público utilizando um link.", +"Enforce password protection" => "Forçar protecção da palavra passe", "Allow public uploads" => "Permitir Envios Públicos", -"Allow users to enable others to upload into their publicly shared folders" => "Permitir aos utilizadores que possam definir outros utilizadores para carregar ficheiros para as suas pastas publicas", +"Set default expiration date" => "Especificar a data padrão de expiração", +"Expire after " => "Expira após", +"days" => "dias", +"Enforce expiration date" => "Forçar a data de expiração", +"Allow users to share items to the public with links" => "Permitir que os utilizadores partilhem itens com o público utilizando um link.", "Allow resharing" => "Permitir repartilha", "Allow users to share items shared with them again" => "Permitir que os utilizadores partilhem itens partilhados com eles", "Allow users to share with anyone" => "Permitir que os utilizadores partilhem com todos", "Allow users to only share with users in their groups" => "Permitir que os utilizadores partilhem somente com utilizadores do seu grupo", "Allow mail notification" => "Permitir notificação por email", -"Expire after " => "Expira após", -"days" => "dias", +"Allow users to send mail notification for shared files" => "Permita que o utilizador envie notificações por correio electrónico para ficheiros partilhados", +"Exclude groups from sharing" => "Excluir grupos das partilhas", +"These groups will still be able to receive shares, but not to initiate them." => "Estes grupos poderão receber partilhas, mas não poderão iniciá-las.", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forçar os clientes a ligar a %s através de uma ligação encriptada", @@ -114,6 +134,7 @@ $TRANSLATIONS = array( "Email Server" => "Servidor de email", "This is used for sending out notifications." => "Isto é utilizado para enviar notificações", "From address" => "Do endereço", +"mail" => "Correio", "Authentication required" => "Autenticação necessária", "Server address" => "Endereço do servidor", "Port" => "Porto", @@ -152,6 +173,7 @@ $TRANSLATIONS = array( "Full Name" => "Nome completo", "Email" => "Email", "Your email address" => "O seu endereço de email", +"Fill in an email address to enable password recovery and receive notifications" => "Preencha com um endereço e-mail para permitir a recuperação de senha e receber notificações", "Profile picture" => "Foto do perfil", "Upload new" => "Carregar novo", "Select new from Files" => "Seleccionar novo a partir dos ficheiros", @@ -162,11 +184,12 @@ $TRANSLATIONS = array( "Choose as profile image" => "Escolha uma fotografia de perfil", "Language" => "Idioma", "Help translate" => "Ajude a traduzir", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Utilize esta ligação para <a href=\"%s\" target=\"_blank\">aceder aos seus ficheiros via WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "A aplicação de encriptação já não está ativa, por favor desincripte todos os seus ficheiros", "Log-in password" => "Password de entrada", "Decrypt all Files" => "Desencriptar todos os ficheiros", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "As suas chaves de encriptação foram movidas para um local de segurança. Em caso de algo correr mal você pode restaurar as chaves. Só deve eliminar as chaves permanentemente se tiver certeza absoluta que os ficheiros são decrepitados correctamente.", +"Restore Encryption Keys" => "Restaurar as chaves de encriptação", +"Delete Encryption Keys" => "Apagar as chaves de encriptação", "Login Name" => "Nome de utilizador", "Create" => "Criar", "Admin Recovery Password" => "Recuperar password de administrador", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 7ada22648de..b16f65324a7 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -77,9 +77,8 @@ $TRANSLATIONS = array( "Enable Share API" => "Activare API partajare", "Allow apps to use the Share API" => "Permite aplicațiilor să folosească API-ul de partajare", "Allow links" => "Pemite legături", -"Allow users to share items to the public with links" => "Permite utilizatorilor să partajeze fișiere în mod public prin legături", "Allow public uploads" => "Permite încărcări publice", -"Allow users to enable others to upload into their publicly shared folders" => "Permite utilizatorilor sa activeze opțiunea de încărcare a fișierelor în dosarele lor publice de către alte persoane", +"Allow users to share items to the public with links" => "Permite utilizatorilor să partajeze fișiere în mod public prin legături", "Allow resharing" => "Permite repartajarea", "Allow users to share items shared with them again" => "Permite utilizatorilor să repartajeze fișiere partajate cu ei", "Allow users to share with anyone" => "Permite utilizatorilor să partajeze cu oricine", @@ -130,8 +129,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "Alege drept imagine de profil", "Language" => "Limba", "Help translate" => "Ajută la traducere", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Folosește această adresă <a href=\"%s\" target=\"_blank\">pentru acces la fișierele tale folosind WebDAV</a>", "Log-in password" => "Parolă", "Decrypt all Files" => "Decriptează toate fișierele", "Login Name" => "Autentificare", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 1e780926f77..82677dbb6dd 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -16,10 +16,14 @@ $TRANSLATIONS = array( "Unable to change full name" => "Невозможно изменить полное имя", "Group already exists" => "Группа уже существует", "Unable to add group" => "Невозможно добавить группу", +"Files decrypted successfully" => "Дешифрование файлов прошло успешно", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Ошибка при дешифровании файлов. Обратитесь к вашему системному администратору. Доп информация в owncloud.log", +"Couldn't decrypt your files, check your password and try again" => "Ошибка при дешифровании файлов. Проверьте Ваш пароль и повторите попытку", "Email saved" => "Email сохранен", "Invalid email" => "Неправильный Email", "Unable to delete group" => "Невозможно удалить группу", "Unable to delete user" => "Невозможно удалить пользователя", +"Backups restored successfully" => "Резервная копия успешно восстановлена", "Language changed" => "Язык изменён", "Invalid request" => "Неправильный запрос", "Admins can't remove themself from the admin group" => "Администратор не может удалить сам себя из группы admin", @@ -98,14 +102,14 @@ $TRANSLATIONS = array( "Enable Share API" => "Включить API общего доступа", "Allow apps to use the Share API" => "Позволить приложениям использовать API общего доступа", "Allow links" => "Разрешить ссылки", -"Allow users to share items to the public with links" => "Разрешить пользователям открывать в общий доступ элементы с публичной ссылкой", "Allow public uploads" => "Разрешить открытые загрузки", -"Allow users to enable others to upload into their publicly shared folders" => "Разрешить пользователям позволять другим загружать в их открытые папки", +"Allow users to share items to the public with links" => "Разрешить пользователям открывать в общий доступ элементы с публичной ссылкой", "Allow resharing" => "Разрешить переоткрытие общего доступа", "Allow users to share items shared with them again" => "Позволить пользователям открывать общий доступ к эллементам уже открытым в общий доступ", "Allow users to share with anyone" => "Разрешить пользователя делать общий доступ любому", "Allow users to only share with users in their groups" => "Разрешить пользователям делать общий доступ только для пользователей их групп", "Allow mail notification" => "Разрешить уведомление по почте", +"Allow users to send mail notification for shared files" => "Разрешить пользователю оповещать почтой о расшаренных файлах", "Security" => "Безопасность", "Enforce HTTPS" => "Принудить к HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Принудить клиентов подключаться к %s через шифрованное соединение.", @@ -161,8 +165,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "Выберите изображение профиля", "Language" => "Язык", "Help translate" => "Помочь с переводом", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Используйте этот адресс для <a href=\"%s\" target=\"_blank\">доступа к вашим файлам через WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "Приложение для шифрования выключено, пожалуйста, расшифруйте ваши файлы", "Log-in password" => "Пароль входа", "Decrypt all Files" => "Снять шифрование со всех файлов", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index 3468a87ae18..c977985b669 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -104,17 +104,16 @@ $TRANSLATIONS = array( "Enable Share API" => "Povoliť API zdieľania", "Allow apps to use the Share API" => "Povoliť aplikáciám používať API na zdieľanie", "Allow links" => "Povoliť odkazy", -"Allow users to share items to the public with links" => "Povoliť používateľom zdieľať položky pre verejnosť cez odkazy", "Allow public uploads" => "Povoliť verejné nahrávanie súborov", -"Allow users to enable others to upload into their publicly shared folders" => "Povoliť používateľom umožniť iným používateľom nahrávať do ich zdieľaného priečinka", +"Expire after " => "Platnosť", +"days" => "dni", +"Allow users to share items to the public with links" => "Povoliť používateľom zdieľať položky pre verejnosť cez odkazy", "Allow resharing" => "Povoliť zdieľanie ďalej", "Allow users to share items shared with them again" => "Povoliť používateľom ďalej zdieľať zdieľané položky", "Allow users to share with anyone" => "Povoliť používateľom zdieľať s kýmkoľvek", "Allow users to only share with users in their groups" => "Povoliť používateľom zdieľať len s používateľmi v ich skupinách", "Allow mail notification" => "Povoliť odosielať upozornenia emailom", "Allow users to send mail notification for shared files" => "Povoliť používateľom zasielať emailom oznámenie o zdieľaní súborov", -"Expire after " => "Platnosť", -"days" => "dni", "Security" => "Zabezpečenie", "Enforce HTTPS" => "Vynútiť HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynúti pripájanie klientov k %s šifrovaným pripojením.", @@ -170,8 +169,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "Vybrať ako avatara", "Language" => "Jazyk", "Help translate" => "Pomôcť s prekladom", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Použite túto linku <a href=\"%s\" target=\"_blank\">pre prístup k vašim súborom cez WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "Šifrovacia aplikácia už nie je spustená, dešifrujte všetky svoje súbory.", "Log-in password" => "Prihlasovacie heslo", "Decrypt all Files" => "Dešifrovať všetky súbory", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index c633d472684..8a2b7218442 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -105,9 +105,8 @@ $TRANSLATIONS = array( "Enable Share API" => "Omogoči API souporabe", "Allow apps to use the Share API" => "Dovoli programom uporabo vmesnika API souporabe", "Allow links" => "Dovoli povezave", -"Allow users to share items to the public with links" => "Uporabnikom dovoli souporabo predmetov z javnimi povezavami", "Allow public uploads" => "Dovoli javno pošiljanje datotek v oblak", -"Allow users to enable others to upload into their publicly shared folders" => "Dovoli uporabnikom, da omogočijo drugim uporabnikom, pošiljati datoteke v javno mapo.", +"Allow users to share items to the public with links" => "Uporabnikom dovoli souporabo predmetov z javnimi povezavami", "Allow resharing" => "Dovoli nadaljnjo souporabo", "Allow users to share items shared with them again" => "Uporabnikom dovoli nadaljnjo souporabo predmetov", "Allow users to share with anyone" => "Uporabnikom dovoli souporabo s komerkoli", @@ -167,8 +166,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "Izberi kot sliko profila", "Language" => "Jezik", "Help translate" => "Sodelujte pri prevajanju", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Uporabite naslov <a href=\"%s\" target=\"_blank\"> za dostop do datotek rpeko sistema WebDAV</a>.", "The encryption app is no longer enabled, please decrypt all your files" => "Program za šifriranje ni več omogočen. Odšifrirati je treba vse datoteke.", "Log-in password" => "Prijavno geslo", "Decrypt all Files" => "Odšifriraj vse datoteke", diff --git a/settings/l10n/sq.php b/settings/l10n/sq.php index 29925683c0b..ca74ba573c4 100644 --- a/settings/l10n/sq.php +++ b/settings/l10n/sq.php @@ -49,9 +49,8 @@ $TRANSLATIONS = array( "Enable Share API" => "Aktivizo API për ndarjet", "Allow apps to use the Share API" => "Lejoni aplikacionet të përdorin share API", "Allow links" => "Lejo lidhjet", -"Allow users to share items to the public with links" => "Lejoni përdoruesit të ndajnë elementët publikisht nëpermjet lidhjeve", "Allow public uploads" => "Lejo ngarkimin publik", -"Allow users to enable others to upload into their publicly shared folders" => "Lejo përdoruesit të mundësojnë të tjerët që të ngarkojnë materiale në dosjen e tyre publike", +"Allow users to share items to the public with links" => "Lejoni përdoruesit të ndajnë elementët publikisht nëpermjet lidhjeve", "Allow resharing" => "Lejo ri-ndarjen", "Allow users to share items shared with them again" => "Lejoni përdoruesit të ndjanë dhe ata elementë të ndarë më parë ngë të tjerë", "Allow users to share with anyone" => "Lejo përdoruesit të ndajnë me cilindo", @@ -89,7 +88,6 @@ $TRANSLATIONS = array( "Cancel" => "Anullo", "Language" => "Gjuha", "Help translate" => "Ndihmoni në përkthim", -"WebDAV" => "WebDAV", "Login Name" => "Emri i Përdoruesit", "Create" => "Krijo", "Admin Recovery Password" => "Rigjetja e fjalëkalimit të Admin", diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 3723ef3fe5f..408e704d40b 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -90,7 +90,6 @@ $TRANSLATIONS = array( "Cancel" => "Откажи", "Language" => "Језик", "Help translate" => " Помозите у превођењу", -"WebDAV" => "WebDAV", "Login Name" => "Корисничко име", "Create" => "Направи", "Default Storage" => "Подразумевано складиште", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index f76eed303b9..160036c7d98 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -19,10 +19,14 @@ $TRANSLATIONS = array( "Files decrypted successfully" => "Filerna dekrypterades utan fel", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Det gick inte att dekryptera dina filer, kontrollera din owncloud.log eller fråga administratören", "Couldn't decrypt your files, check your password and try again" => "Det gick inte att dekryptera filerna, kontrollera ditt lösenord och försök igen", +"Encryption keys deleted permanently" => "Krypteringsnycklar raderades permanent", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Det gick inte att permanent ta bort dina krypteringsnycklar, kontrollera din owncloud.log eller fråga din administratör", "Email saved" => "E-post sparad", "Invalid email" => "Ogiltig e-post", "Unable to delete group" => "Kan inte radera grupp", "Unable to delete user" => "Kan inte radera användare", +"Backups restored successfully" => "Återställning av säkerhetskopior lyckades", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Kan inte återställa dina krypteringsnycklar, vänligen kontrollera din owncloud.log eller fråga din administratör.", "Language changed" => "Språk ändrades", "Invalid request" => "Ogiltig begäran", "Admins can't remove themself from the admin group" => "Administratörer kan inte ta bort sig själva från admingruppen", @@ -56,6 +60,8 @@ $TRANSLATIONS = array( "Good password" => "Bra lösenord", "Strong password" => "Starkt lösenord", "Decrypting files... Please wait, this can take some time." => "Dekrypterar filer... Vänligen vänta, detta kan ta en stund.", +"Delete encryption keys permanently." => "Radera krypteringsnycklar permanent", +"Restore encryption keys." => "Återställ krypteringsnycklar", "deleted" => "raderad", "undo" => "ångra", "Unable to remove user" => "Kan inte ta bort användare", @@ -106,18 +112,21 @@ $TRANSLATIONS = array( "Enable Share API" => "Aktivera delat API", "Allow apps to use the Share API" => "Tillåt applikationer att använda delat API", "Allow links" => "Tillåt länkar", -"Allow users to share items to the public with links" => "Tillåt delning till allmänheten via publika länkar", +"Enforce password protection" => "Tillämpa lösenordskydd", "Allow public uploads" => "Tillåt offentlig uppladdning", -"Allow users to enable others to upload into their publicly shared folders" => "Tillåt användare att aktivera\nTillåt användare att göra det möjligt för andra att ladda upp till sina offentligt delade mappar", +"Set default expiration date" => "Ställ in standardutgångsdatum", +"Expire after " => "Förfaller efter", +"days" => "dagar", +"Enforce expiration date" => "Tillämpa förfallodatum", +"Allow users to share items to the public with links" => "Tillåt delning till allmänheten via publika länkar", "Allow resharing" => "Tillåt vidaredelning", "Allow users to share items shared with them again" => "Tillåt användare att dela vidare filer som delats med dem", "Allow users to share with anyone" => "Tillåt delning med alla", "Allow users to only share with users in their groups" => "Tillåt bara delning med användare i egna grupper", "Allow mail notification" => "Tillåt e-post notifikation", "Allow users to send mail notification for shared files" => "Tillåt användare att skicka mailnotifieringar för delade filer", -"Expire after " => "Förfaller efter", -"days" => "dagar", -"Expire shares by default after N days" => "Låt delningar förfalla som standard efter N dagar", +"Exclude groups from sharing" => "Exkludera grupp från att dela", +"These groups will still be able to receive shares, but not to initiate them." => "Dessa grupper kommer fortfarande kunna ta emot delningar, men inte skapa delningar.", "Security" => "Säkerhet", "Enforce HTTPS" => "Kräv HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tvingar klienterna att ansluta till %s via en krypterad anslutning.", @@ -125,6 +134,7 @@ $TRANSLATIONS = array( "Email Server" => "E-postserver", "This is used for sending out notifications." => "Detta används för att skicka ut notifieringar.", "From address" => "Från adress", +"mail" => "mail", "Authentication required" => "Autentisering krävs", "Server address" => "Serveradress", "Port" => "Port", @@ -174,11 +184,12 @@ $TRANSLATIONS = array( "Choose as profile image" => "Välj som profilbild", "Language" => "Språk", "Help translate" => "Hjälp att översätta", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "Använd denna adress till <a href=\"%s\" target=\"_blank\">nå dina Filer via WebDAV</a>", "The encryption app is no longer enabled, please decrypt all your files" => "Krypteringsapplikationen är inte längre aktiverad, vänligen dekryptera alla dina filer", "Log-in password" => "Inloggningslösenord", "Decrypt all Files" => "Dekryptera alla filer", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Dina krypteringsnycklar flyttas till en backup. Om något gick fel kan du återställa nycklarna. Bara ta bort dem permanent om du är säker på att alla filer dekrypteras korrekt.", +"Restore Encryption Keys" => "Återställ krypteringsnycklar", +"Delete Encryption Keys" => "Radera krypteringsnycklar", "Login Name" => "Inloggningsnamn", "Create" => "Skapa", "Admin Recovery Password" => "Admin återställningslösenord", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 14000c59ca1..f2fa7dd6ead 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -79,7 +79,6 @@ $TRANSLATIONS = array( "Cancel" => "ยกเลิก", "Language" => "ภาษา", "Help translate" => "ช่วยกันแปล", -"WebDAV" => "WebDAV", "Login Name" => "ชื่อที่ใช้สำหรับเข้าสู่ระบบ", "Create" => "สร้าง", "Default Storage" => "พื้นที่จำกัดข้อมูลเริ่มต้น", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 4a49dc0bc5f..5bb25289b0f 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -15,14 +15,18 @@ $TRANSLATIONS = array( "Your full name has been changed." => "Tam adınız değiştirildi.", "Unable to change full name" => "Tam adınız değiştirilirken hata", "Group already exists" => "Grup zaten mevcut", -"Unable to add group" => "Gruba eklenemiyor", -"Files decrypted successfully" => "Dosya şifresi başarıyla çözüldü", -"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Dosyalarınızın şifresi kaldırılamadı, lütfen owncloud.log dosyasına bakın veya yöneticinizle iletişime geçin.", -"Couldn't decrypt your files, check your password and try again" => "Dosyalarınızın şifresi kaldırılamadı, parolanızı denetleyip yeniden deneyin.", +"Unable to add group" => "Grup eklenemiyor", +"Files decrypted successfully" => "Dosyaların şifrelemesi başarıyla kaldırıldı", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Dosyalarınızın şifrelemesi kaldırılamadı, lütfen owncloud.log dosyasına bakın veya yöneticinizle iletişime geçin", +"Couldn't decrypt your files, check your password and try again" => "Dosyalarınızın şifrelemesi kaldırılamadı, parolanızı denetleyip yeniden deneyin", +"Encryption keys deleted permanently" => "Şifreleme anahtarları kalıcı olarak silindi", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Şifreleme anahtarlarınız kalıcı olarak silinemedi, lütfen owncloud.log dosyasını denetleyin veya yöneticinize danışın", "Email saved" => "E-posta kaydedildi", "Invalid email" => "Geçersiz e-posta", "Unable to delete group" => "Grup silinemiyor", "Unable to delete user" => "Kullanıcı silinemiyor", +"Backups restored successfully" => "Yedekler başarıyla geri yüklendi", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Şifreleme anahtarlarınız geri yüklenemedi, lütfen owncloud.log dosyasını denetleyin veya yöneticinize danışın", "Language changed" => "Dil değiştirildi", "Invalid request" => "Geçersiz istek", "Admins can't remove themself from the admin group" => "Yöneticiler kendilerini admin grubundan kaldıramaz", @@ -31,15 +35,15 @@ $TRANSLATIONS = array( "Couldn't update app." => "Uygulama güncellenemedi.", "Wrong password" => "Hatalı parola", "No user supplied" => "Kullanıcı girilmedi", -"Please provide an admin recovery password, otherwise all user data will be lost" => "Lütfen bir yönetici kurtarma parolası girin, aksi takdirde tüm kullanıcı verisi kaybedilecek", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Lütfen yönetici kurtarma parolasını girin, aksi takdirde tüm kullanıcı verisi kaybedilecek", "Wrong admin recovery password. Please check the password and try again." => "Hatalı yönetici kurtarma parolası. Lütfen parolayı denetleyip yeniden deneyin.", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "Arka uç parola değişimini desteklemiyor ancak kullanıcı şifreleme anahtarı başarıyla güncellendi.", "Unable to change password" => "Parola değiştirilemiyor", "Sending..." => "Gönderiliyor...", "User Documentation" => "Kullanıcı Belgelendirmesi", "Admin Documentation" => "Yönetici Belgelendirmesi", -"Update to {appversion}" => "{appversion} Güncelle", -"Disable" => "Devre dışı bırak", +"Update to {appversion}" => "{appversion} sürümüne güncelle", +"Disable" => "Devre Dışı Bırak", "Enable" => "Etkinleştir", "Please wait...." => "Lütfen bekleyin....", "Error while disabling app" => "Uygulama devre dışı bırakılırken hata", @@ -47,7 +51,7 @@ $TRANSLATIONS = array( "Updating...." => "Güncelleniyor....", "Error while updating app" => "Uygulama güncellenirken hata", "Error" => "Hata", -"Update" => "Güncelleme", +"Update" => "Güncelle", "Updated" => "Güncellendi", "Select a profile picture" => "Bir profil fotoğrafı seçin", "Very weak password" => "Çok güçsüz parola", @@ -55,7 +59,9 @@ $TRANSLATIONS = array( "So-so password" => "Normal parola", "Good password" => "İyi parola", "Strong password" => "Güçlü parola", -"Decrypting files... Please wait, this can take some time." => "Dosyaların şifresi çözülüyor... Lütfen bekleyin, bu biraz zaman alabilir.", +"Decrypting files... Please wait, this can take some time." => "Dosyaların şifrelemesi kaldırılıyor... Lütfen bekleyin, bu biraz zaman alabilir.", +"Delete encryption keys permanently." => "Şifreleme anahtarlarını kalıcı olarak sil.", +"Restore encryption keys." => "Şifreleme anahtarlarını geri yükle.", "deleted" => "silinen:", "undo" => "geri al", "Unable to remove user" => "Kullanıcı kaldırılamıyor", @@ -68,11 +74,11 @@ $TRANSLATIONS = array( "A valid password must be provided" => "Geçerli bir parola mutlaka sağlanmalı", "Warning: Home directory for user \"{user}\" already exists" => "Uyarı: \"{user}\" kullanıcısı için zaten bir Ev dizini mevcut", "__language_name__" => "Türkçe", -"Everything (fatal issues, errors, warnings, info, debug)" => "Her şey (Ölümcül konular, hatalar, uyarılar, bilgi, hata ayıklama)", -"Info, warnings, errors and fatal issues" => "Bilgi, uyarılar, hatalar ve ölümcül konular", -"Warnings, errors and fatal issues" => "Uyarılar, hatalar ve ölümcül konular", -"Errors and fatal issues" => "Hatalar ve ölümcül konular", -"Fatal issues only" => "Sadece ölümcül konular", +"Everything (fatal issues, errors, warnings, info, debug)" => "Her şey (Ciddi sorunlar, hatalar, uyarılar, bilgi, hata ayıklama)", +"Info, warnings, errors and fatal issues" => "Bilgi, uyarılar, hatalar ve ciddi sorunlar", +"Warnings, errors and fatal issues" => "Uyarılar, hatalar ve ciddi sorunlar", +"Errors and fatal issues" => "Hatalar ve ciddi sorunlar", +"Fatal issues only" => "Sadece ciddi sorunlar", "None" => "Hiçbiri", "Login" => "Oturum Aç", "Plain" => "Düz", @@ -80,17 +86,17 @@ $TRANSLATIONS = array( "SSL" => "SSL", "TLS" => "TLS", "Security Warning" => "Güvenlik Uyarısı", -"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "%s konumuna HTTP aracılığıyla erişiyorsunuz. Sunucunuzu HTTPS kullanımını zorlaması üzere yapılandırmanızı şiddetle öneririz.", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "%s erişiminiz HTTP aracılığıyla yapılıyor. Sunucunuzu, HTTPS kullanımını zorlamak üzere yapılandırmanızı şiddetle öneririz.", "Your data directory and your files are probably accessible from the internet. The .htaccess file 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." => "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu belge kök dizini dışına almanızı şiddetle tavsiye ederiz.", "Setup Warning" => "Kurulum Uyarısı", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya eşitlemesine izin vermek üzere düzgün bir şekilde yapılandırılmamış. WebDAV arayüzü sorunlu görünüyor.", "Please double check the <a href=\"%s\">installation guides</a>." => "Lütfen <a href='%s'>kurulum kılavuzlarını</a> tekrar kontrol edin.", "Module 'fileinfo' missing" => "Modül 'fileinfo' kayıp", -"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz.", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modülü 'fileinfo' kayıp. MIME türü tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz.", "Your PHP version is outdated" => "PHP sürümünüz eski", "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "PHP sürümünüz eski. Eski sürümlerde sorun olduğundan 5.3.8 veya daha yeni bir sürüme güncellemenizi şiddetle tavsiye ederiz. Bu kurulumun da doğru çalışmaması da olasıdır.", -"Locale not working" => "Locale çalışmıyor.", -"System locale can not be set to a one which supports UTF-8." => "Sistem yereli, UTF-8 destekleyenlerden biri olarak ayarlanamadı", +"Locale not working" => "Yerel çalışmıyor", +"System locale can not be set to a one which supports UTF-8." => "Sistem yereli, UTF-8 destekleyenlerden biri olarak ayarlanamadı.", "This means that there might be problems with certain characters in file names." => "Bu, dosya adlarında belirli karakterlerde problem olabileceği anlamına gelir.", "We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Şu dillerden birini desteklemesi için sisteminize gerekli paketleri kurmanızı şiddetle tavsiye ederiz: %s.", "Internet connection not working" => "İnternet bağlantısı çalışmıyor", @@ -101,25 +107,26 @@ $TRANSLATIONS = array( "Cron was not executed yet!" => "Cron henüz çalıştırılmadı!", "Execute one task with each page loaded" => "Yüklenen her sayfa ile bir görev çalıştır", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php, http üzerinden her 15 dakikada bir çağrılması için webcron hizmetine kaydedilir.", -"Use systems cron service to call the cron.php file every 15 minutes." => "Cron.php dosyasını her 15 dakikada bir çağırmak için sistem cron hizmetini kullan.", +"Use systems cron service to call the cron.php file every 15 minutes." => "cron.php dosyasını her 15 dakikada bir çağırmak için sistem cron hizmetini kullan.", "Sharing" => "Paylaşım", "Enable Share API" => "Paylaşım API'sini etkinleştir", "Allow apps to use the Share API" => "Uygulamaların paylaşım API'sini kullanmasına izin ver", "Allow links" => "Bağlantılara izin ver", -"Allow users to share items to the public with links" => "Kullanıcıların ögeleri paylaşması için herkese açık bağlantılara izin ver", +"Enforce password protection" => "Parola korumasını zorla", "Allow public uploads" => "Herkes tarafından yüklemeye izin ver", -"Allow users to enable others to upload into their publicly shared folders" => "Kullanıcıların, herkese açık dizinlerine, başkalarının dosya yüklemelerini etkinleştirmelerine izin ver", -"Allow resharing" => "Paylaşıma izin ver", +"Set default expiration date" => "Öntanımlı son kullanma tarihini ayarla", +"Expire after " => "Süre", +"days" => "gün sonra dolsun", +"Enforce expiration date" => "Son kullanma tarihini zorla", +"Allow users to share items to the public with links" => "Kullanıcıların ögeleri paylaşması için herkese açık bağlantılara izin ver", +"Allow resharing" => "Yeniden paylaşıma izin ver", "Allow users to share items shared with them again" => "Kullanıcıların kendileri ile paylaşılan ögeleri yeniden paylaşmasına izin ver", -"Allow users to share with anyone" => "Kullanıcıların her şeyi paylaşmalarına izin ver", +"Allow users to share with anyone" => "Kullanıcıların herkesle paylaşmasına izin ver", "Allow users to only share with users in their groups" => "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver", "Allow mail notification" => "Posta bilgilendirmesine izin ver", "Allow users to send mail notification for shared files" => "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver", -"Set default expiration date" => "Öntanımlı son kullanma tarihini ayarla", -"Expire after " => "Şu süreden sonra süresi dolsun", -"days" => "gün", -"Enforce expiration date" => "Son kullanma tarihini zorla", -"Expire shares by default after N days" => "Paylaşımların süresini öntanımlı olarak N günden sonra doldur", +"Exclude groups from sharing" => "Grupları paylaşma eyleminden hariç tut", +"These groups will still be able to receive shares, but not to initiate them." => "Bu gruplar hala paylaşımları alabilecek, ancak başlatamayacaktır.", "Security" => "Güvenlik", "Enforce HTTPS" => "HTTPS bağlantısına zorla", "Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar.", @@ -127,6 +134,7 @@ $TRANSLATIONS = array( "Email Server" => "E-Posta Sunucusu", "This is used for sending out notifications." => "Bu, bildirimler gönderilirken kullanılır.", "From address" => "Kimden adresi", +"mail" => "posta", "Authentication required" => "Kimlik doğrulama gerekli", "Server address" => "Sunucu adresi", "Port" => "Port", @@ -138,7 +146,7 @@ $TRANSLATIONS = array( "Log" => "Günlük", "Log level" => "Günlük seviyesi", "More" => "Daha fazla", -"Less" => "Az", +"Less" => "Daha az", "Version" => "Sürüm", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud topluluğu</a> tarafından geliştirilmiş olup, <a href=\"https://github.com/owncloud\" target=\"_blank\">kaynak kodu</a>, <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> altında lisanslanmıştır.", "Add your App" => "Uygulamanızı Ekleyin", @@ -147,17 +155,17 @@ $TRANSLATIONS = array( "Documentation:" => "Belgelendirme:", "See application page at apps.owncloud.com" => "Uygulamanın sayfasına apps.owncloud.com adresinden bakın ", "See application website" => "Uygulama web sitesine bakın", -"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-lisanslayan <span class=\"author\"></span>", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span> ile lisanslayan: <span class=\"author\"></span>", "Administrator Documentation" => "Yönetici Belgelendirmesi", "Online Documentation" => "Çevrimiçi Belgelendirme", "Forum" => "Forum", "Bugtracker" => "Hata Takip Sistemi", "Commercial Support" => "Ticari Destek", -"Get the apps to sync your files" => "Dosyalarınızı eşitlemek için uygulamayı indirin", -"Show First Run Wizard again" => "İlk Çalıştırma Sihirbazını yeniden göster", +"Get the apps to sync your files" => "Dosyalarınızı eşitlemek için uygulamaları indirin", +"Show First Run Wizard again" => "İlk Çalıştırma Sihirbazı'nı yeniden göster", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Kullandığınız: <strong>%s</strong>. Kullanılabilir alan: <strong>%s</strong>", "Password" => "Parola", -"Your password was changed" => "Şifreniz değiştirildi", +"Your password was changed" => "Parolanız değiştirildi", "Unable to change your password" => "Parolanız değiştirilemiyor", "Current password" => "Mevcut parola", "New password" => "Yeni parola", @@ -176,23 +184,24 @@ $TRANSLATIONS = array( "Choose as profile image" => "Profil resmi olarak seç", "Language" => "Dil", "Help translate" => "Çevirilere yardım edin", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "<a href=\"%s\" target=\"_blank\">Dosyalarınıza WebDAV aracılığıyla erişmek için</a> bu adresi kullanın", -"The encryption app is no longer enabled, please decrypt all your files" => "Şifreleme uygulaması artık etkin değil, tüm dosyalarınızın şifrelemesini kaldırın", +"The encryption app is no longer enabled, please decrypt all your files" => "Şifreleme uygulaması artık etkin değil, lütfen tüm dosyalarınızın şifrelemesini kaldırın", "Log-in password" => "Oturum açma parolası", -"Decrypt all Files" => "Tüm dosyaların şifresini çöz", +"Decrypt all Files" => "Tüm Dosyaların Şifrelemesini Kaldır", +"Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." => "Şifreleme anahtarlarınız yedek bir konuma taşındı. Eğer bir şeyler yanlış gittiyse, anahtarlarınızı geri yükleyebilirsiniz. Bu anahtarları, sadece tüm dosyalarınızın şifrelemelerinin düzgün bir şekilde kaldırıldığından eminseniz kalıcı olarak silin.", +"Restore Encryption Keys" => "Şifreleme Anahtarlarını Geri Yükle", +"Delete Encryption Keys" => "Şifreleme Anahtarlarını Sil", "Login Name" => "Giriş Adı", "Create" => "Oluştur", "Admin Recovery Password" => "Yönetici Kurtarma Parolası", -"Enter the recovery password in order to recover the users files during password change" => "Parola değiştirme sırasında kullanıcı dosyalarını kurtarmak için bir kurtarma paroalsı girin", +"Enter the recovery password in order to recover the users files during password change" => "Parola değiştirme sırasında kullanıcı dosyalarını kurtarmak için kurtarma parolasını girin", "Default Storage" => "Varsayılan Depolama", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Lütfen disk alanı kotasını girin (örnek: \"512MB\" veya \"12GB\")", -"Unlimited" => "Limitsiz", +"Unlimited" => "Sınırsız", "Other" => "Diğer", "Username" => "Kullanıcı Adı", "Storage" => "Depolama", "change full name" => "tam adı değiştir", "set new password" => "yeni parola belirle", -"Default" => "Varsayılan" +"Default" => "Öntanımlı" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/settings/l10n/ug.php b/settings/l10n/ug.php index c55834f7337..2136f9af1e5 100644 --- a/settings/l10n/ug.php +++ b/settings/l10n/ug.php @@ -68,7 +68,6 @@ $TRANSLATIONS = array( "Cancel" => "ۋاز كەچ", "Language" => "تىل", "Help translate" => "تەرجىمىگە ياردەم", -"WebDAV" => "WebDAV", "Login Name" => "تىزىمغا كىرىش ئاتى", "Create" => "قۇر", "Default Storage" => "كۆڭۈلدىكى ساقلىغۇچ", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 0c8adce29c0..a1520a0defc 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -96,7 +96,6 @@ $TRANSLATIONS = array( "Cancel" => "Відмінити", "Language" => "Мова", "Help translate" => "Допомогти з перекладом", -"WebDAV" => "WebDAV", "Login Name" => "Ім'я Логіну", "Create" => "Створити", "Default Storage" => "сховище за замовчуванням", diff --git a/settings/l10n/ur_PK.php b/settings/l10n/ur_PK.php index 0144e2b534c..39973159745 100644 --- a/settings/l10n/ur_PK.php +++ b/settings/l10n/ur_PK.php @@ -1,9 +1,21 @@ <?php $TRANSLATIONS = array( +"Email sent" => "ارسال شدہ ای میل ", +"Invalid request" => "غلط درخواست", "Error" => "ایرر", +"Very weak password" => "بہت کمزور پاسورڈ", +"Weak password" => "کمزور پاسورڈ", +"So-so password" => "نص نص پاسورڈ", +"Good password" => "اچھا پاسورڈ", +"Strong password" => "مضبوط پاسورڈ", +"Delete" => "حذف کریں", +"Security Warning" => "حفاظتی انتباہ", +"More" => "مزید", +"Less" => "کم", "Password" => "پاسورڈ", "New password" => "نیا پاسورڈ", "Cancel" => "منسوخ کریں", +"Other" => "دیگر", "Username" => "یوزر نیم" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index da9dbdf0a1f..ef8c20ef94e 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -86,7 +86,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "Chọn hình ảnh như hồ sơ cá nhân", "Language" => "Ngôn ngữ", "Help translate" => "Hỗ trợ dịch thuật", -"WebDAV" => "WebDAV", "Login Name" => "Tên đăng nhập", "Create" => "Tạo", "Default Storage" => "Bộ nhớ mặc định", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index f11b0457112..8f35fd938a4 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -1,13 +1,24 @@ <?php $TRANSLATIONS = array( +"Invalid value supplied for %s" => "%s 获得了无效值", +"Saved" => "已保存", +"test email settings" => "测试电子邮件设置", +"If you received this email, the settings seem to be correct." => "如果您收到了这封邮件,看起来设置没有问题。", +"A problem occurred while sending the e-mail. Please revisit your settings." => "发送电子邮件时发生了问题。请检查您的设置。", "Email sent" => "邮件已发送", +"You need to set your user email before being able to send test emails." => "在发送测试邮件钱您需要设置您的用户电子邮件", +"Send mode" => "发送模式", "Encryption" => "加密", +"Authentication method" => "认证方法", "Unable to load list from App Store" => "无法从应用商店载入列表", "Authentication error" => "认证错误", "Your full name has been changed." => "您的全名已修改。", "Unable to change full name" => "无法修改全名", "Group already exists" => "已存在该组", "Unable to add group" => "无法添加组", +"Files decrypted successfully" => "文件解密成功", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "无法解密您的文件,请检查您的 owncloud.log 或询问管理员", +"Couldn't decrypt your files, check your password and try again" => "无法解密您的文件,请检查密码并重试。", "Email saved" => "电子邮件已保存", "Invalid email" => "无效的电子邮件", "Unable to delete group" => "无法删除组", @@ -20,8 +31,13 @@ $TRANSLATIONS = array( "Couldn't update app." => "无法更新 app。", "Wrong password" => "错误密码", "No user supplied" => "没有满足的用户", +"Please provide an admin recovery password, otherwise all user data will be lost" => "请提供管理员恢复密码,否则所有用户的数据都将遗失。", +"Wrong admin recovery password. Please check the password and try again." => "错误的管理员恢复密码。请检查密码并重试。", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "后端不支持修改密码,但是用户的加密密码已成功更新。", "Unable to change password" => "不能更改密码", +"Sending..." => "正在发送...", "User Documentation" => "用户文档", +"Admin Documentation" => "管理员文档", "Update to {appversion}" => "更新至 {appversion}", "Disable" => "禁用", "Enable" => "开启", @@ -33,6 +49,7 @@ $TRANSLATIONS = array( "Error" => "错误", "Update" => "更新", "Updated" => "已更新", +"Select a profile picture" => "选择头像", "Very weak password" => "非常弱的密码", "Weak password" => "弱密码", "So-so password" => "一般强度的密码", @@ -58,7 +75,12 @@ $TRANSLATIONS = array( "Fatal issues only" => "仅灾难性问题", "None" => "无", "Login" => "登录", +"Plain" => "Plain", +"NT LAN Manager" => "NT LAN 管理器", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "安全警告", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "您正通过 HTTP 访问 %s。我们强烈建议您配置你的服务器来要求使用 HTTPS。", "Your data directory and your files are probably accessible from the internet. The .htaccess file 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." => "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器以外。", "Setup Warning" => "设置警告", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏.", @@ -66,31 +88,51 @@ $TRANSLATIONS = array( "Module 'fileinfo' missing" => "模块'文件信息'丢失", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果.", "Your PHP version is outdated" => "您的 PHP 版本不是最新版", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "您的 PHP 版本已过期。强烈建议更新至 5.3.8 或者更新版本因为老版本存在已知问题。本次安装可能并未正常工作。", "Locale not working" => "本地化无法工作", +"System locale can not be set to a one which supports UTF-8." => "系统语系无法设置为支持 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 one of the following locales: %s." => "强烈建议在您的系统上安装需要的软件包来支持以下语系之一:%s。", "Internet connection not working" => "因特网连接无法工作", "This 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." => "此服务器上没有可用的因特网连接. 这意味着某些特性将无法工作,例如挂载外部存储器, 提醒更新或安装第三方应用等. 从远程访问文件和发送提醒电子邮件也可能无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接.", "Cron" => "计划任务", +"Last cron was executed at %s." => "上次定时任务执行于 %s。", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "上次定时任务执行于 %s。这是在一个小时之前执行的,可能出了什么问题。", +"Cron was not executed yet!" => "定时任务还未被执行!", "Execute one task with each page loaded" => "每个页面加载后执行一个任务", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php 已注册于一个 webcron 服务来通过 http 每 15 分钟执行 cron.php。", "Use systems cron service to call the cron.php file every 15 minutes." => "使用系统 cron 服务每15分钟调用一次 cron.php 文件。", "Sharing" => "共享", "Enable Share API" => "启用共享API", "Allow apps to use the Share API" => "允许应用软件使用共享API", "Allow links" => "允许链接", -"Allow users to share items to the public with links" => "允许用户使用连接公开共享项目", "Allow public uploads" => "允许公开上传", -"Allow users to enable others to upload into their publicly shared folders" => "用户可让其他人上传到他的公开共享文件夹", +"Set default expiration date" => "设置默认过期日期", +"Expire after " => "过期于", +"days" => "天", +"Enforce expiration date" => "强制过期日期", +"Allow users to share items to the public with links" => "允许用户使用连接公开共享项目", "Allow resharing" => "允许再次共享", "Allow users to share items shared with them again" => "允许用户将共享给他们的项目再次共享", "Allow users to share with anyone" => "允许用户向任何人共享", "Allow users to only share with users in their groups" => "允许用户只向同组用户共享", "Allow mail notification" => "允许邮件通知", +"Allow users to send mail notification for shared files" => "允许用户发送共享文件的邮件通知", "Security" => "安全", "Enforce HTTPS" => "强制使用 HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "强制客户端通过加密连接连接到%s。", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "请经由HTTPS连接到这个%s 实例来启用或禁用强制SSL.", +"Email Server" => "电子邮件服务器", +"This is used for sending out notifications." => "这被用于发送通知。", +"From address" => "来自地址", +"Authentication required" => "需要认证", "Server address" => "服务器地址", "Port" => "端口", "Credentials" => "凭证", +"SMTP Username" => "SMTP 用户名", +"SMTP Password" => "SMTP 密码", +"Test email settings" => "测试电子邮件设置", +"Send email" => "发送邮件", "Log" => "日志", "Log level" => "日志级别", "More" => "更多", @@ -100,7 +142,9 @@ $TRANSLATIONS = array( "Add your App" => "添加应用", "More Apps" => "更多应用", "Select an App" => "选择一个应用", +"Documentation:" => "文档:", "See application page at apps.owncloud.com" => "查看在 app.owncloud.com 的应用程序页面", +"See application website" => "参见应用程序网站", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-核准: <span class=\"author\"></span>", "Administrator Documentation" => "管理员文档", "Online Documentation" => "在线文档", @@ -119,16 +163,18 @@ $TRANSLATIONS = array( "Full Name" => "全名", "Email" => "电子邮件", "Your email address" => "您的电子邮件", +"Fill in an email address to enable password recovery and receive notifications" => "填入电子邮件地址从而启用密码恢复和接收通知", "Profile picture" => "联系人图片", "Upload new" => "上传新的", "Select new from Files" => "从文件中选择一个新的", "Remove image" => "移除图片", +"Either png or jpg. Ideally square but you will be able to crop it." => "png 或 jpg。正方形比较理想但你也可以之后对其进行裁剪。", "Your avatar is provided by your original account." => "您的头像由您的原始账户所提供。", "Cancel" => "取消", +"Choose as profile image" => "用作头像", "Language" => "语言", "Help translate" => "帮助翻译", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "使用这个地址 <a href=\"%s\" target=\"_blank\">通过 WebDAV 访问您的文件</a>", +"The encryption app is no longer enabled, please decrypt all your files" => "加密 app 不再被启用,请解密您所有的文件", "Log-in password" => "登录密码", "Decrypt all Files" => "解密所有文件", "Login Name" => "登录名称", diff --git a/settings/l10n/zh_HK.php b/settings/l10n/zh_HK.php index 7237a99c889..ee98d2a6b14 100644 --- a/settings/l10n/zh_HK.php +++ b/settings/l10n/zh_HK.php @@ -12,6 +12,7 @@ $TRANSLATIONS = array( "New password" => "新密碼", "Email" => "電郵", "Cancel" => "取消", +"Create" => "新增", "Username" => "用戶名稱" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 567d6fb5940..c60ca4223e8 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -106,9 +106,8 @@ $TRANSLATIONS = array( "Enable Share API" => "啟用分享 API", "Allow apps to use the Share API" => "允許 apps 使用分享 API", "Allow links" => "允許連結", -"Allow users to share items to the public with links" => "允許使用者以結連公開分享檔案", "Allow public uploads" => "允許任何人上傳", -"Allow users to enable others to upload into their publicly shared folders" => "允許使用者將他們公開分享的資料夾設定為「任何人皆可上傳」", +"Allow users to share items to the public with links" => "允許使用者以結連公開分享檔案", "Allow resharing" => "允許轉貼分享", "Allow users to share items shared with them again" => "允許使用者分享其他使用者分享給他的檔案", "Allow users to share with anyone" => "允許使用者與任何人分享檔案", @@ -171,8 +170,6 @@ $TRANSLATIONS = array( "Choose as profile image" => "設定為大頭貼", "Language" => "語言", "Help translate" => "幫助翻譯", -"WebDAV" => "WebDAV", -"Use this address to <a href=\"%s\" target=\"_blank\">access your Files via WebDAV</a>" => "使用這個地址<a href=\"%s\" target=\"_blank\">來透過 WebDAV 存取檔案</a>", "The encryption app is no longer enabled, please decrypt all your files" => "加密的軟體不能長時間啟用,請解密所有您的檔案", "Log-in password" => "登入密碼", "Decrypt all Files" => "解密所有檔案", diff --git a/settings/personal.php b/settings/personal.php index 0da14a8c8c4..47b2dc1a46a 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -33,7 +33,9 @@ $userLang=OC_Preferences::getValue( OC_User::getUser(), 'core', 'lang', OC_L10N: $languageCodes=OC_L10N::findAvailableLanguages(); //check if encryption was enabled in the past -$enableDecryptAll = OC_Util::encryptedFiles(); +$filesStillEncrypted = OC_Util::encryptedFiles(); +$backupKeysExists = OC_Util::backupKeysExists(); +$enableDecryptAll = $filesStillEncrypted || $backupKeysExists; // array of common languages $commonlangcodes = array( @@ -92,6 +94,8 @@ $tmpl->assign('passwordChangeSupported', OC_User::canUserChangePassword(OC_User: $tmpl->assign('displayNameChangeSupported', OC_User::canUserChangeDisplayName(OC_User::getUser())); $tmpl->assign('displayName', OC_User::getDisplayName()); $tmpl->assign('enableDecryptAll' , $enableDecryptAll); +$tmpl->assign('backupKeysExists' , $backupKeysExists); +$tmpl->assign('filesStillEncrypted' , $filesStillEncrypted); $tmpl->assign('enableAvatars', \OC_Config::getValue('enable_avatars', true)); $tmpl->assign('avatarChangeSupported', OC_User::canUserChangeAvatar(OC_User::getUser())); diff --git a/settings/routes.php b/settings/routes.php index a8bb0d981e8..0e0f293b9be 100644 --- a/settings/routes.php +++ b/settings/routes.php @@ -54,6 +54,10 @@ $this->create('settings_ajax_setlanguage', '/settings/ajax/setlanguage.php') ->actionInclude('settings/ajax/setlanguage.php'); $this->create('settings_ajax_decryptall', '/settings/ajax/decryptall.php') ->actionInclude('settings/ajax/decryptall.php'); +$this->create('settings_ajax_restorekeys', '/settings/ajax/restorekeys.php') + ->actionInclude('settings/ajax/restorekeys.php'); +$this->create('settings_ajax_deletekeys', '/settings/ajax/deletekeys.php') + ->actionInclude('settings/ajax/deletekeys.php'); // apps $this->create('settings_ajax_apps_ocs', '/settings/ajax/apps/ocs.php') ->actionInclude('settings/ajax/apps/ocs.php'); @@ -80,3 +84,5 @@ $this->create('settings_admin_mail_test', '/settings/admin/mailtest') ->action('OC\Settings\Admin\Controller', 'sendTestMail'); $this->create('settings_ajax_setsecurity', '/settings/ajax/setsecurity.php') ->actionInclude('settings/ajax/setsecurity.php'); +$this->create('settings_ajax_excludegroups', '/settings/ajax/excludegroups.php') + ->actionInclude('settings/ajax/excludegroups.php'); diff --git a/settings/templates/admin.php b/settings/templates/admin.php index d8a800ca202..a86fe9c0ac7 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -83,6 +83,21 @@ if (!$_['isWebDavWorking']) { <?php } +// Are doc blocks accessible? +if (!$_['isAnnotationsWorking']) { + ?> +<div class="section"> + <h2><?php p($l->t('Setup Warning'));?></h2> + + <span class="securitywarning"> + <?php p($l->t('PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible.')); ?> + <?php p($l->t('This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator.')); ?> + </span> + +</div> +<?php +} + // if module fileinfo available? if (!$_['has_fileinfo']) { ?> @@ -217,15 +232,29 @@ if (!$_['internetconnectionworking']) { <input type="checkbox" name="shareapi_allow_links" id="allowLinks" value="1" <?php if ($_['allowLinks'] === 'yes') print_unescaped('checked="checked"'); ?> /> <label for="allowLinks"><?php p($l->t('Allow links'));?></label><br/> - <em><?php p($l->t('Allow users to share items to the public with links')); ?></em> - </td> - </tr> - <tr> - <td <?php if ($_['shareAPIEnabled'] == 'no') print_unescaped('class="hidden"');?>> + <div <?php ($_['allowLinks'] === 'yes') ? print_unescaped('class="indent"') : print_unescaped('class="hidden indent"');?> id="publicLinkSettings"> + <input type="checkbox" name="shareapi_enforce_links_password" id="enforceLinkPassword" + value="1" <?php if ($_['enforceLinkPassword']) print_unescaped('checked="checked"'); ?> /> + <label for="enforceLinkPassword"><?php p($l->t('Enforce password protection'));?></label><br/> <input type="checkbox" name="shareapi_allow_public_upload" id="allowPublicUpload" value="1" <?php if ($_['allowPublicUpload'] == 'yes') print_unescaped('checked="checked"'); ?> /> <label for="allowPublicUpload"><?php p($l->t('Allow public uploads'));?></label><br/> - <em><?php p($l->t('Allow users to enable others to upload into their publicly shared folders')); ?></em> + + <input type="checkbox" name="shareapi_default_expire_date" id="shareapiDefaultExpireDate" + value="1" <?php if ($_['shareDefaultExpireDateSet'] === 'yes') print_unescaped('checked="checked"'); ?> /> + <label for="shareapiDefaultExpireDate"><?php p($l->t('Set default expiration date'));?></label><br/> + <div id="setDefaultExpireDate" <?php ($_['shareDefaultExpireDateSet'] === 'no') ? print_unescaped('class="hidden indent"') : print_unescaped('class="indent"');?>> + <?php p($l->t( 'Expire after ' )); ?> + <input type="text" name='shareapi_expire_after_n_days' id="shareapiExpireAfterNDays" placeholder="<?php p('7')?>" + value='<?php p($_['shareExpireAfterNDays']) ?>' /> + <?php p($l->t( 'days' )); ?> + <input type="checkbox" name="shareapi_enforce_expire_date" id="shareapiEnforceExpireDate" + value="1" <?php if ($_['shareEnforceExpireDate'] == 'yes') print_unescaped('checked="checked"'); ?> /> + <label for="shareapiEnforceExpireDate"><?php p($l->t('Enforce expiration date'));?></label><br/> + </div> + + </div> + <em><?php p($l->t('Allow users to share items to the public with links')); ?></em> </td> </tr> <tr> @@ -254,23 +283,24 @@ if (!$_['internetconnectionworking']) { <em><?php p($l->t('Allow users to send mail notification for shared files')); ?></em> </td> </tr> - <tr> - <td <?php if ($_['shareAPIEnabled'] == 'no') print_unescaped('class="hidden"');?>> - <input type="checkbox" name="shareapi_default_expire_date" id="shareapi_default_expire_date" - value="1" <?php if ($_['shareDefaultExpireDateSet'] == 'yes') print_unescaped('checked="checked"'); ?> /> - <label for="shareapi_default_expire_date"><?php p($l->t('Set default expiration date'));?></label><br/> - <?php p($l->t( 'Expire after ' )); ?> - <input type="text" name='shareapi_expire_after_n_days' id="shareapi_expire_after_n_days" placeholder="<?php p('7')?>" - value='<?php p($_['shareExpireAfterNDays']) ?>' /> - <?php p($l->t( 'days' )); ?> - <input type="checkbox" name="shareapi_enforce_expire_date" id="shareapi_enforce_expire_date" - value="1" <?php if ($_['shareEnforceExpireDate'] == 'yes') print_unescaped('checked="checked"'); ?> /> - <label for="shareapi_enforce_expire_date"><?php p($l->t('Enforce expiration date'));?></label><br/> - <em><?php p($l->t('Expire shares by default after N days')); ?></em> + <td <?php if ($_['shareAPIEnabled'] === 'no') print_unescaped('class="hidden"');?>> + <input type="checkbox" name="shareapi_exclude_groups" id="shareapiExcludeGroups" + value="1" <?php if ($_['shareExcludeGroups']) print_unescaped('checked="checked"'); ?> /> + <label for="shareapiExcludeGroups"><?php p($l->t('Exclude groups from sharing'));?></label><br/> + <div id="selectExcludedGroups" class="<?php ($_['shareExcludeGroups']) ? p('indent') : p('hidden indent'); ?>"> + <select + class="groupsselect" + id="excludedGroups" data-placeholder="groups" + title="<?php p($l->t('Groups'))?>" multiple="multiple"> + <?php foreach($_["groups"] as $group): ?> + <option value="<?php p($group['gid'])?>" <?php if($group['excluded']) { p('selected="selected"'); }?>><?php p($group['gid']);?></option> + <?php endforeach;?> + </select> + </div> + <em><?php p($l->t('These groups will still be able to receive shares, but not to initiate them.')); ?></em> </td> </tr> - </table> </div> @@ -308,9 +338,9 @@ if (!$_['internetconnectionworking']) { </div> <div id="mail_settings" class="section"> - <h2><?php p($l->t('Email Server'));?> <span id="mail_settings_msg" class="msg"></span></h2> + <h2><?php p($l->t('Email Server'));?></h2> - <p><?php p($l->t('This is used for sending out notifications.')); ?></p> + <p><?php p($l->t('This is used for sending out notifications.')); ?> <span id="mail_settings_msg" class="msg"></span></p> <p> <label for="mail_smtpmode"><?php p($l->t( 'Send mode' )); ?></label> @@ -342,10 +372,10 @@ if (!$_['internetconnectionworking']) { <p> <label for="mail_from_address"><?php p($l->t( 'From address' )); ?></label> - <input type="text" name='mail_from_address' id="mail_from_address" placeholder="<?php p('mail')?>" + <input type="text" name='mail_from_address' id="mail_from_address" placeholder="<?php p($l->t('mail'))?>" value='<?php p($_['mail_from_address']) ?>' /> @ - <input type="text" name='mail_domain' id="mail_domain" placeholder="<?php p('example.com')?>" + <input type="text" name='mail_domain' id="mail_domain" placeholder="example.com" value='<?php p($_['mail_domain']) ?>' /> </p> @@ -368,7 +398,7 @@ if (!$_['internetconnectionworking']) { <p id="setting_smtphost" <?php if ($_['mail_smtpmode'] != 'smtp') print_unescaped(' class="hidden"'); ?>> <label for="mail_smtphost"><?php p($l->t( 'Server address' )); ?></label> - <input type="text" name='mail_smtphost' id="mail_smtphost" placeholder="<?php p('smtp.example.com')?>" + <input type="text" name='mail_smtphost' id="mail_smtphost" placeholder="smtp.example.com" value='<?php p($_['mail_smtphost']) ?>' /> : <input type="text" name='mail_smtpport' id="mail_smtpport" placeholder="<?php p($l->t('Port'))?>" diff --git a/settings/templates/personal.php b/settings/templates/personal.php index cc1fce88c9f..1d1500743ad 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -133,21 +133,20 @@ if($_['passwordChangeSupported']) { <?php endif; ?> </form> -<div class="section"> - <h2><?php p($l->t('WebDAV'));?></h2> - <code><?php print_unescaped(OC_Helper::linkToRemote('webdav')); ?></code><br /> - <em><?php print_unescaped($l->t('Use this address to <a href="%s" target="_blank">access your Files via WebDAV</a>', array(link_to_docs('user-webdav'))));?></em> -</div> - <?php foreach($_['forms'] as $form) { print_unescaped($form); };?> <?php if($_['enableDecryptAll']): ?> -<div class="section" id="decryptAll"> +<div class="section"> + <h2> <?php p( $l->t( 'Encryption' ) ); ?> </h2> + + <?php if($_['filesStillEncrypted']): ?> + + <div id="decryptAll"> <?php p($l->t( "The encryption app is no longer enabled, please decrypt all your files" )); ?> <p> <input @@ -164,8 +163,34 @@ if($_['passwordChangeSupported']) { <span class="msg"></span> </p> <br /> + </div> + + <?php endif; ?> + + + + <div id="restoreBackupKeys" <?php $_['backupKeysExists'] ? '' : print_unescaped("class='hidden'") ?>> + + <?php p($l->t( "Your encryption keys are moved to a backup location. If something went wrong you can restore the keys. Only delete them permanently if you are sure that all files are decrypted correctly." )); ?> + <p> + <button + type="button" + name="submitRestoreKeys"><?php p($l->t( "Restore Encryption Keys" )); ?> + </button> + <button + type="button" + name="submitDeleteKeys"><?php p($l->t( "Delete Encryption Keys" )); ?> + </button> + <span class="msg"></span> + + </p> + <br /> + + </div> + + </div> -<?php endif; ?> + <?php endif; ?> <div class="section"> <h2><?php p($l->t('Version'));?></h2> |