diff options
Diffstat (limited to 'settings')
69 files changed, 557 insertions, 491 deletions
diff --git a/settings/admin.php b/settings/admin.php index d2be04fcd1d..dd1c604edb1 100755 --- a/settings/admin.php +++ b/settings/admin.php @@ -83,7 +83,7 @@ $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', 'no')); -$tmpl->assign('sharePolicy', OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global')); +$tmpl->assign('onlyShareWithGroupMembers', \OC\Share\Share::shareWithGroupMembersOnly()); $tmpl->assign('forms', array()); foreach($forms as $form) { $tmpl->append('forms', $form); diff --git a/settings/css/settings.css b/settings/css/settings.css index cd81cfb2b3d..ecfcfadc9b9 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -5,17 +5,6 @@ select#languageinput, select#timezone { width:15em; } input#openid, input#webdav { width:20em; } -#user-controls { - -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; - position: fixed; - right: 0; - left: 230px; - height: 44px; - padding: 0; margin: 0; - background: #eee; border-bottom: 1px solid #e7e7e7; - z-index: 50; -} - /* PERSONAL */ #rootcert_import { margin: 0 0 10px 0; @@ -79,7 +68,7 @@ li.active span.utils .delete:hover, li.active .rename:hover { opacity: 1; } span.utils .delete, .rename { display: none; } #app-navigation ul li.active > span.utils .delete, #app-navigation ul li.active > span.utils .rename { display: block; } -#usersearchform { position: absolute; top: 4px; right: 10px; } +#usersearchform { position: absolute; top: 2px; right: 250px; } #usersearchform label { font-weight: 700; } form { display:inline; } diff --git a/settings/js/admin.js b/settings/js/admin.js index 8c7572fa394..bc95c6a3dc5 100644 --- a/settings/js/admin.js +++ b/settings/js/admin.js @@ -83,9 +83,6 @@ $(document).ready(function(){ $('#allowLinks').change(function() { $("#publicLinkSettings").toggleClass('hidden', !this.checked); }); - $('#allowResharing').change(function() { - $("#resharingSettings").toggleClass('hidden', !this.checked); - }); $('#security').change(function(){ $.post(OC.filePath('settings','ajax','setsecurity.php'), { enforceHTTPS: $('#forcessl').val() },function(){} ); diff --git a/settings/js/apps.js b/settings/js/apps.js index 95e56485a6a..4cd7520caa7 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -45,15 +45,30 @@ OC.Settings.Apps = OC.Settings.Apps || { page.find('span.userDocumentation').html("<a id='userDocumentation' href='" + app.documentation.user + "'>" + t('settings', 'User Documentation') + "</a>"); page.find('p.documentation').show(); } + else { + page.find('span.userDocumentation').empty(); + userDocumentation = false; + } if (typeof(app.documentation.admin) !== 'undefined') { adminDocumentation = true; page.find('span.adminDocumentation').html("<a id='adminDocumentation' href='" + app.documentation.admin + "'>" + t('settings', 'Admin Documentation') + "</a>"); page.find('p.documentation').show(); } + else { + page.find('span.adminDocumentation').empty(); + adminDocumentation = false; + } if(userDocumentation && adminDocumentation) { - page.find('span.userDocumentation').after(', '); + page.find('span.comma').remove(); + page.find('span.userDocumentation').after('<span class="comma">, </span>'); } + else { + page.find('span.comma').remove(); + } + } + else { + page.find('p.documentation').hide(); } if (typeof(app.website) !== 'undefined') { diff --git a/settings/js/users/deleteHandler.js b/settings/js/users/deleteHandler.js index 894744ba3e9..56355317f8d 100644 --- a/settings/js/users/deleteHandler.js +++ b/settings/js/users/deleteHandler.js @@ -93,8 +93,8 @@ DeleteHandler.prototype.showNotification = function() { this.hideNotification(); } $('#notification').data(this.notificationDataID, true); - var msg = this.notificationMessage.replace(this.notificationPlaceholder, - this.oidToDelete); + var msg = this.notificationMessage.replace( + this.notificationPlaceholder, escapeHTML(this.oidToDelete)); this.notifier.showHtml(msg); } }; @@ -163,7 +163,7 @@ DeleteHandler.prototype.delete = function() { dh.removeCallback(dh.oidToDelete); dh.canceled = true; } else { - OC.dialogs.alert(result.data.message, t('settings', 'Unable to delete ' + escapeHTML(dh.oidToDelete))); + OC.dialogs.alert(result.data.message, t('settings', 'Unable to delete {objName}', {objName: escapeHTML(dh.oidToDelete)})); dh.undoCallback(dh.oidToDelete); } } diff --git a/settings/js/users/groups.js b/settings/js/users/groups.js index 0ff8bdd6384..dcaf593b886 100644 --- a/settings/js/users/groups.js +++ b/settings/js/users/groups.js @@ -202,8 +202,8 @@ GroupList = { //configure undo OC.Notification.hide(); - var msg = t('settings', 'deleted') + ' %oid <span class="undo">' + - t('settings', 'undo') + '</span>'; + var msg = escapeHTML(t('settings', 'deleted {groupName}', {groupName: '%oid'})) + '<span class="undo">' + + escapeHTML(t('settings', 'undo')) + '</span>'; GroupDeleteHandler.setNotification(OC.Notification, 'deletegroup', msg, GroupList.show); diff --git a/settings/js/users/users.js b/settings/js/users/users.js index 68098e03a50..a911225c5c5 100644 --- a/settings/js/users/users.js +++ b/settings/js/users/users.js @@ -251,8 +251,8 @@ var UserList = { //configure undo OC.Notification.hide(); - var msg = t('settings', 'deleted') + ' %oid <span class="undo">' + - t('settings', 'undo') + '</span>'; + var msg = escapeHTML(t('settings', 'deleted {userName}', {userName: '%oid'})) + '<span class="undo">' + + escapeHTML(t('settings', 'undo')) + '</span>'; UserDeleteHandler.setNotification(OC.Notification, 'deleteuser', msg, UserList.show); diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 9be19f04fca..135b80184b0 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -50,7 +50,6 @@ $TRANSLATIONS = array( "Good password" => "كلمة السر جيدة", "Strong password" => "كلمة السر قوية", "Decrypting files... Please wait, this can take some time." => "فك تشفير الملفات... يرجى الانتظار, من الممكن ان ياخذ بعض الوقت.", -"deleted" => "تم الحذف", "undo" => "تراجع", "Groups" => "مجموعات", "Group Admin" => "مدير المجموعة", @@ -90,15 +89,9 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "الملف cron.php تم تسجيله فى خدمه webcron لاستدعاء الملف cron.php كل 15 دقيقه", "Use systems cron service to call the cron.php file every 15 minutes." => "استخدم نظام خدمة cron لـ استدعاء ملف cron.php كل 15 دقيقة ", "Sharing" => "مشاركة", -"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 items shared with them again" => "السماح للمستخدمين باعادة مشاركة الملفات التي تم مشاركتها معهم", -"Allow users to share with anyone" => "السماح للمستعملين بإعادة المشاركة مع أي أحد ", -"Allow users to only share with users in their groups" => "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم", "Security" => "حماية", "Enforce HTTPS" => "فرض HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "اجبار العميل للاتصال بـ %s عن طريق اتصال مشفر", diff --git a/settings/l10n/ast.php b/settings/l10n/ast.php index 0513589482f..4afbe1c50bb 100644 --- a/settings/l10n/ast.php +++ b/settings/l10n/ast.php @@ -20,12 +20,13 @@ $TRANSLATIONS = array( "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", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Nun pudieron desaniciase dafechu les tos claves de cifráu, 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", +"Backups restored successfully" => "Copia de seguridá restaurada", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Nun pudieron restaurase dafechu les tos claves de cifráu, 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", @@ -59,15 +60,18 @@ $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.", +"Delete encryption keys permanently." => "Desaniciar dafechu les claves de cifráu.", "Restore encryption keys." => "Restaurar claves de cifráu.", -"Unable to delete " => "Nun pue desaniciase", -"deleted" => "desaniciáu", +"Unable to delete {objName}" => "Nun pue desaniciase {objName}", +"Error creating group" => "Fallu creando grupu", +"A valid group name must be provided" => "Hai d'escribir un nome de grupu válidu", +"deleted {groupName}" => "desaniciáu {groupName}", "undo" => "desfacer", "Groups" => "Grupos", "Group Admin" => "Alministrador del Grupu", "Delete" => "Desaniciar", "never" => "enxamás", +"deleted {userName}" => "desaniciáu {userName}", "add group" => "amestar Grupu", "A valid username must be provided" => "Tien d'apurrise un nome d'usuariu válidu", "Error creating user" => "Fallu al crear usuariu", @@ -91,6 +95,10 @@ $TRANSLATIONS = array( "Setup Warning" => "Avisu de configuración", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "El sirvidor web entá nun ta configurado pa permitir la sincronización de ficheros yá que la interface WebDAV paez nun tar funcionando.", "Please double check the <a href=\"%s\">installation guides</a>." => "Por favor, vuelvi a comprobar les <a href=\"%s\">guíes de instalación</a>.", +"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "PHP ta aparentemente configuráu pa desaniciar bloques de documentos en llinia. Esto va facer que delles aplicaciones principales nun tean accesibles.", +"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "Dablemente esto seya culpa d'un caché o acelerador, como por exemplu Zend OPcache o eAccelerator.", +"Database Performance Info" => "Información de rindimienti de la base de datos", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "Ta usándose SQLite como base de datos. Pa instalaciones más grandes, recomendamos cambiar esto. Pa migrar a otra base de datos, usa la ferramienta de llinia de comandos: 'occ db:convert-type'", "Module 'fileinfo' missing" => "Nun s'atopó'l módulu \"fileinfo\"", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Nun s'atopó'l módulu PHP 'fileinfo'. Encamentámoste qu'habilites esti módulu pa obtener meyores resultaos cola deteición de tribes MIME.", "Your PHP version is outdated" => "La versión de PHP nun ta anovada", @@ -109,20 +117,19 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php rexístrase nun serviciu webcron pa llamar a cron.php cada 15 minutos al traviés de HTTP.", "Use systems cron service to call the cron.php file every 15 minutes." => "Usa'l serviciu cron del sistema pa llamar al ficheru cron.php cada 15 minutos.", "Sharing" => "Compartiendo", -"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 via link" => "Permitir a los usuarios compartir vía enllaz", +"Enforce password protection" => "Ameyora la proteición por contraseña.", "Allow public uploads" => "Permitir xubes públiques", "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", +"Restrict users to only share with users in their groups" => "Restrinxir a los usuarios a compartir namái con otros usuarios nos sos grupos", "Allow users to send mail notification for shared files" => "Permitir a los usuarios unviar mensaxes de notificación pa ficheros compartíos", +"Exclude groups from sharing" => "Esclúi grupos de compartir", +"These groups will still be able to receive shares, but not to initiate them." => "Estos grupos van poder siguir recibiendo conteníos compartíos, pero nun van poder anicialos", "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.", @@ -152,6 +159,7 @@ $TRANSLATIONS = array( "See application page at apps.owncloud.com" => "Ver la páxina d'aplicaciones en apps.owncloud.com", "See application website" => "Ver sitiu web de l'aplicación", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-llicencia otorgada por <span class=\"author\"></span>", +"Enable only for specific groups" => "Habilitar namái pa grupos específicos", "All" => "Toos", "Administrator Documentation" => "Documentación d'alministrador", "Online Documentation" => "Documentación en llinia", @@ -184,21 +192,26 @@ $TRANSLATIONS = array( "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", +"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." => "Les claves de cifráu van guardase nuna llocalización segura. D'esta miente, en casu de que daqué saliere mal, vas poder recuperar les claves. Desanicia dafechu les claves de cifráu namái si tas seguru de que los ficheros descifráronse correcho.", "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", "Enter the recovery password in order to recover the users files during password change" => "Introduz la contraseña de recuperación col envís de recuperar los ficheros de los usuarios mientres el cambéu de contraseña.", +"Search Users and Groups" => "Guetar Usuarios y Grupos", "Add Group" => "Amestar grupu", "Group" => "Grupu", "Everyone" => "Toos", "Admins" => "Almins", +"Default Quota" => "Cuota predeterminada", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Por favor indica la cuota d'almacenamientu (ex: \"512 MB\" o \"12 GB\")", "Unlimited" => "Non llendáu", "Other" => "Otru", "Username" => "Nome d'usuariu", -"Last Login" => "Aniciu de sesión caberu", +"Quota" => "Cuota", +"Storage Location" => "Llocalización d'almacenamientu", +"Last Login" => "Caberu aniciu de sesión", "change full name" => "camudar el nome completu", "set new password" => "afitar nueva contraseña", "Default" => "Predetermináu" diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index 93529b3a3c8..78822e117f7 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -20,7 +20,6 @@ $TRANSLATIONS = array( "Error" => "Грешка", "Update" => "Обновяване", "Updated" => "Обновено", -"deleted" => "изтрито", "undo" => "възтановяване", "Groups" => "Групи", "Delete" => "Изтриване", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index c2ba3c7403f..bf63f6388cc 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -56,7 +56,6 @@ $TRANSLATIONS = array( "Good password" => "Contrasenya bona", "Strong password" => "Contrasenya forta", "Decrypting files... Please wait, this can take some time." => "Desencriptant fitxers... Espereu, això pot trigar una estona.", -"deleted" => "esborrat", "undo" => "desfés", "Groups" => "Grups", "Group Admin" => "Grup Admin", @@ -103,15 +102,9 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php està registrat en un servei webcron que fa una crida a cron.php cada 15 minuts a través de http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Utilitza el servei cron del sistema per fer una crida al fitxer cron.php cada 15 minuts.", "Sharing" => "Compartir", -"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 public uploads" => "Permet pujada pública", -"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", -"Allow users to only share with users in their groups" => "Permet als usuaris compartir només amb els usuaris del seu grup", "Security" => "Seguretat", "Enforce HTTPS" => "Força HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Força la connexió dels clients a %s a través d'una connexió encriptada.", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index e2ff2bbeaaf..67762a81661 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -62,12 +62,16 @@ $TRANSLATIONS = array( "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", +"Unable to delete {objName}" => "Nelze smazat {objName}", +"Error creating group" => "Chyba při vytváření skupiny", +"A valid group name must be provided" => "Musíte zadat platný název skupiny", +"deleted {groupName}" => "smazána {groupName}", "undo" => "vrátit zpět", "Groups" => "Skupiny", "Group Admin" => "Správa skupiny", "Delete" => "Smazat", "never" => "nikdy", +"deleted {userName}" => "smazán {userName}", "add group" => "přidat skupinu", "A valid username must be provided" => "Musíte zadat platné uživatelské jméno", "Error creating user" => "Chyba při vytváření užiatele", @@ -91,6 +95,10 @@ $TRANSLATIONS = array( "Setup Warning" => "Upozornění nastavení", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV se zdá nefunkční.", "Please double check the <a href=\"%s\">installation guides</a>." => "Zkontrolujte prosím znovu <a href=\"%s\">instalační příručku</a>.", +"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "PHP je patrně nastaveno tak, aby odstraňovalo vnitřní části dokumentů. Toto bude mít za následek množsví nedostupných hlavních aplikací.", +"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "Toto je pravděpodobně způsobeno aplikacemi pro urychlení načítání jako jsou Zend OPcache nebo eAccelerator.", +"Database Performance Info" => "Informace o výkonu databáze", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "Je použita databáze SQLite. Pro větší instalace doporučujeme toto změnit. Pro migraci na jiný typ databáze lze použít příkaz: 'occ db:convert-type'", "Module 'fileinfo' missing" => "Schází modul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME.", "Your PHP version is outdated" => "Vaše verze PHP je zastaralá", @@ -109,20 +117,16 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php je registrován u služby webcron, aby volal cron.php jednou za 15 minut přes http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Použít systémovou službu cron pro volání cron.php každých 15 minut.", "Sharing" => "Sdílení", -"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 via link" => "Povolit uživatelům sdílení pomocí odkazů", "Enforce password protection" => "Vynutit ochranu heslem", "Allow public uploads" => "Povolit veřejné nahrávání souborů", "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", +"Restrict users to only share with users in their groups" => "Povolit sdílení pouze mezi uživateli v rámci skupiny", "Allow users to send mail notification for shared files" => "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory", "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.", @@ -133,6 +137,7 @@ $TRANSLATIONS = array( "Email Server" => "E-mailový server", "This is used for sending out notifications." => "Toto se používá pro odesílání upozornění.", "From address" => "Adresa odesílatele", +"mail" => "e-mail", "Authentication required" => "Vyžadováno ověření", "Server address" => "Adresa serveru", "Port" => "Port", @@ -154,6 +159,7 @@ $TRANSLATIONS = array( "See application page at apps.owncloud.com" => "Více na stránce s aplikacemi na apps.owncloud.com", "See application website" => "Prohlédněte si webovou stránku aplikace", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencováno <span class=\"author\"></span>", +"Enable only for specific groups" => "Povolit pouze pro vybrané skupiny", "All" => "Vše", "Administrator Documentation" => "Dokumentace správce", "Online Documentation" => "Online dokumentace", @@ -193,13 +199,19 @@ $TRANSLATIONS = array( "Create" => "Vytvořit", "Admin Recovery Password" => "Heslo obnovy správce", "Enter the recovery password in order to recover the users files during password change" => "Zadejte heslo obnovy pro obnovení souborů uživatele při změně hesla", +"Search Users and Groups" => "Prohledat Užiatele a Skupiny", +"Add Group" => "Přidat skupinu", "Group" => "Skupina", +"Everyone" => "Všichni", +"Admins" => "Administrátoři", "Default Quota" => "Výchozí kvóta", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Zvolte prosím kvótu pro úložiště (např. \"512 MB\" nebo \"12 GB\")", "Unlimited" => "Neomezeně", "Other" => "Jiný", "Username" => "Uživatelské jméno", "Quota" => "Kvóta", +"Storage Location" => "Umístění úložiště", +"Last Login" => "Poslední přihlášení", "change full name" => "změnit celé jméno", "set new password" => "nastavit nové heslo", "Default" => "Výchozí" diff --git a/settings/l10n/da.php b/settings/l10n/da.php index e5cfe0412ce..227ad8c72da 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -4,12 +4,17 @@ $TRANSLATIONS = array( "test email settings" => "test email indstillinger", "Email sent" => "E-mail afsendt", "Encryption" => "Kryptering", +"Authentication method" => "Godkendelsesmetode", "Unable to load list from App Store" => "Kunne ikke indlæse listen fra App Store", "Authentication error" => "Adgangsfejl", "Your full name has been changed." => "Dit fulde navn er blevet ændret.", "Unable to change full name" => "Ikke i stand til at ændre dit fulde navn", "Group already exists" => "Gruppen findes allerede", "Unable to add group" => "Gruppen kan ikke oprettes", +"Files decrypted successfully" => "Filer dekrypteret med succes", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Dine filer kunne ikke dekrypteres. Gennemse din owncloud log eller spørg din administrator", +"Couldn't decrypt your files, check your password and try again" => "Dine filer kunne ikke dekrypteres. Check din adgangskode og forsøg igen", +"Encryption keys deleted permanently" => "Krypteringsnøgle slettet permanent", "Email saved" => "Email adresse gemt", "Invalid email" => "Ugyldig email adresse", "Unable to delete group" => "Gruppen kan ikke slettes", @@ -47,12 +52,18 @@ $TRANSLATIONS = array( "Good password" => "Godt kodeord", "Strong password" => "Stærkt kodeord", "Decrypting files... Please wait, this can take some time." => "Dekryptere filer... Vent venligst, dette kan tage lang tid. ", -"deleted" => "Slettet", +"Delete encryption keys permanently." => "Slet krypteringsnøgler permanent.", +"Restore encryption keys." => "Genopret krypteringsnøgler.", +"Unable to delete {objName}" => "Kunne ikke slette {objName}", +"Error creating group" => "Fejl ved oprettelse af gruppe", +"A valid group name must be provided" => "Et gyldigt gruppenavn skal angives ", +"deleted {groupName}" => "slettede {groupName}", "undo" => "fortryd", "Groups" => "Grupper", "Group Admin" => "Gruppe Administrator", "Delete" => "Slet", "never" => "aldrig", +"deleted {userName}" => "slettede {userName}", "add group" => "Tilføj gruppe", "A valid username must be provided" => "Et gyldigt brugernavn skal angives", "Error creating user" => "Fejl ved oprettelse af bruger", @@ -75,6 +86,7 @@ $TRANSLATIONS = array( "Setup Warning" => "Opsætnings Advarsel", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt.", "Please double check the <a href=\"%s\">installation guides</a>." => "Dobbelttjek venligst <a href='%s'>installations vejledningerne</a>.", +"Database Performance Info" => "Database Performance Oplysninger", "Module 'fileinfo' missing" => "Module 'fileinfo' mangler", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion.", "Your PHP version is outdated" => "Din PHP-version er forældet", @@ -86,27 +98,29 @@ $TRANSLATIONS = array( "Internet connection not working" => "Internetforbindelse fungerer ikke", "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 ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af 3.-parts applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker samtlige funktioner.", "Cron" => "Cron", +"Last cron was executed at %s." => "Seneste 'cron' blev kørt %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Seneste 'cron' blev kørt %s. Dette er over en time siden - noget må være galt.", +"Cron was not executed yet!" => "Cron har ikke kørt endnu!", "Execute one task with each page loaded" => "Udføre en opgave med hver side indlæst", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php er registreret til at en webcron service skal kalde cron.php hvert 15 minut over http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Brug systemets cron service til at kalde cron.php hvert 15. minut.", "Sharing" => "Deling", -"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 public uploads" => "Tillad offentlig upload", +"Set default expiration date" => "Vælg standard udløbsdato", "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", +"Enforce expiration date" => "Påtving udløbsdato", "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", -"Allow users to only share with users in their groups" => "Tillad brugere at kun dele med brugerne i deres grupper", +"Allow users to send mail notification for shared files" => "Tillad brugere at sende mail underretninger for delte filer", +"Exclude groups from sharing" => "Ekskluder grupper fra at dele", "Security" => "Sikkerhed", "Enforce HTTPS" => "Gennemtving HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tving klienten til at forbinde til %s via en kryptetet forbindelse.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Forbind venligst til din %s via HTTPS for at aktivere eller deaktivere SSL tvang.", "Email Server" => "Email Server", "From address" => "Fra adresse", +"mail" => "mail", "Authentication required" => "Godkendelse påkrævet", "Server address" => "Serveradresse", "Port" => "Port", @@ -158,11 +172,15 @@ $TRANSLATIONS = array( "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 ", +"Restore Encryption Keys" => "Genopret Krypteringsnøgler", +"Delete Encryption Keys" => "Slet Krypteringsnøgler", "Login Name" => "Loginnavn", "Create" => "Ny", "Admin Recovery Password" => "Administrator gendannelse kodeord", "Enter the recovery password in order to recover the users files during password change" => "Indtast et gendannelse kodeord for, at kunne gendanne brugerens filer ved ændring af kodeord", +"Add Group" => "Tilføj Gruppe", "Group" => "Gruppe", +"Everyone" => "Alle", "Default Quota" => "Standard kvote", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Indtast venligst lagerkvote (f.eks. \"512 MB\" eller \"12 GB\")", "Unlimited" => "Ubegrænset", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 4eed8bfc51b..1c2722d249f 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -62,15 +62,16 @@ $TRANSLATIONS = array( "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.", -"Unable to delete " => "Löschen nicht möglich", +"Unable to delete {objName}" => "Löschen von {objName} nicht möglich", "Error creating group" => "Fehler beim Erstellen der Gruppe", "A valid group name must be provided" => "Ein gültiger Gruppenname muss angegeben werden", -"deleted" => "gelöscht", +"deleted {groupName}" => "{groupName} gelöscht", "undo" => "rückgängig machen", "Groups" => "Gruppen", "Group Admin" => "Gruppenadministrator", "Delete" => "Löschen", "never" => "niemals", +"deleted {userName}" => "{userName} gelöscht", "add group" => "Gruppe hinzufügen", "A valid username must be provided" => "Es muss ein gültiger Benutzername angegeben werden", "Error creating user" => "Beim Anlegen des Benutzers ist ein Fehler aufgetreten", @@ -116,20 +117,16 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft.", "Use systems cron service to call the cron.php file every 15 minutes." => "Benutze den System-Crondienst um die cron.php alle 15 Minuten aufzurufen.", "Sharing" => "Teilen", -"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 via link" => "Erlaube Nutzern, mithilfe von Links zu teilen", "Enforce password protection" => "Passwortschutz erzwingen", "Allow public uploads" => "Öffentliches Hochladen erlauben", "Set default expiration date" => "Setze Ablaufdatum", -"Expire after " => "Ablauf nach dem", -"days" => "Tage", +"Expire after " => "Ablauf nach ", +"days" => "Tagen", "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", +"Restrict users to only share with users in their groups" => "c", "Allow users to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "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.", diff --git a/settings/l10n/de_CH.php b/settings/l10n/de_CH.php index 4174f36a594..6e84e68c48e 100644 --- a/settings/l10n/de_CH.php +++ b/settings/l10n/de_CH.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "Update" => "Update durchführen", "Updated" => "Aktualisiert", "Decrypting files... Please wait, this can take some time." => "Entschlüssel Dateien ... Bitte warten Sie, denn dieser Vorgang kann einige Zeit beanspruchen.", -"deleted" => "gelöscht", "undo" => "rückgängig machen", "Groups" => "Gruppen", "Group Admin" => "Gruppenadministrator", @@ -54,15 +53,9 @@ $TRANSLATIONS = array( "Cron" => "Cron", "Execute one task with each page loaded" => "Eine Aufgabe bei jedem Laden der Seite ausführen", "Sharing" => "Teilen", -"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 public uploads" => "Erlaube öffentliches hochladen", -"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", "Security" => "Sicherheit", "Enforce HTTPS" => "HTTPS erzwingen", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden.", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 793d141a165..5d9f1d08c4c 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -62,15 +62,16 @@ $TRANSLATIONS = array( "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.", -"Unable to delete " => "Löschen nicht möglich", +"Unable to delete {objName}" => "Löschen von {objName} nicht möglich", "Error creating group" => "Fehler beim Erstellen der Gruppe", "A valid group name must be provided" => "Ein gültiger Gruppenname muss angegeben werden", -"deleted" => "gelöscht", +"deleted {groupName}" => "{groupName} gelöscht", "undo" => "rückgängig machen", "Groups" => "Gruppen", "Group Admin" => "Gruppenadministrator", "Delete" => "Löschen", "never" => "niemals", +"deleted {userName}" => "{userName} gelöscht", "add group" => "Gruppe hinzufügen", "A valid username must be provided" => "Es muss ein gültiger Benutzername angegeben werden", "Error creating user" => "Beim Erstellen des Benutzers ist ein Fehler aufgetreten", @@ -116,20 +117,16 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php alle 15 Minuten per HTTP aufruft.", "Use systems cron service to call the cron.php file every 15 minutes." => "Benutzen Sie den System-Crondienst, um die cron.php alle 15 Minuten aufzurufen.", "Sharing" => "Teilen", -"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 via link" => "Erlaube Nutzern, mithilfe von Links zu teilen", "Enforce password protection" => "Passwortschutz erzwingen", "Allow public uploads" => "Öffentliches Hochladen erlauben", "Set default expiration date" => "Setze Ablaufdatum", -"Expire after " => "Ablauf nach dem", -"days" => "Tage", +"Expire after " => "Ablauf nach ", +"days" => "Tagen", "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", +"Restrict users to only share with users in their groups" => "Nutzer nur auf das Teilen in ihren Gruppen beschränken", "Allow users to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "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.", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index f9822837a8c..fd40a550a6c 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -62,7 +62,8 @@ $TRANSLATIONS = array( "Decrypting files... Please wait, this can take some time." => "Αποκρυπτογράφηση αρχείων... Παρακαλώ περιμένετε, αυτό μπορεί να πάρει κάποιο χρόνο.", "Delete encryption keys permanently." => "Οριστική διαγραφή των κλειδιων κρυπτογράφησης.", "Restore encryption keys." => "Επαναφορά των κλειδιών κρυπτογράφησης.", -"deleted" => "διαγράφηκε", +"Error creating group" => "Σφάλμα δημιουργίας ομάδας", +"A valid group name must be provided" => "Πρέπει να δοθεί ένα έγκυρο όνομα ομάδας", "undo" => "αναίρεση", "Groups" => "Ομάδες", "Group Admin" => "Ομάδα Διαχειριστών", @@ -91,6 +92,10 @@ $TRANSLATIONS = array( "Setup Warning" => "Ρύθμιση Προειδοποίησης", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη.", "Please double check the <a href=\"%s\">installation guides</a>." => "Ελέγξτε ξανά τις <a href=\"%s\">οδηγίες εγκατάστασης</a>.", +"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "Ο PHP φαίνεται να είναι ρυθμισμένος ώστε να αφαιρεί μπλοκ εσωτερικών κειμένων (inline doc). Αυτό θα καταστήσει κύριες εφαρμογές μη-διαθέσιμες.", +"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "Αυτό πιθανόν προκλήθηκε από προσωρινή μνήμη (cache)/επιταχυντή όπως τη Zend OPcache ή τον eAccelerator.", +"Database Performance Info" => "Πληροφορίες Επίδοσης Βάσης Δεδομένων", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "Ως βάση δεδομένων χρησιμοποιείται η SQLite. Για μεγαλύτερες εγκαταστάσεις συνιστούμε να την αλλάξετε. Για να μετακινηθείτε σε μια άλλη βάση δεδομένων χρησιμοποιείστε το εργαλείο γραμμής εντολών: 'occ db:convert-type'", "Module 'fileinfo' missing" => "Η ενοτητα 'fileinfo' λειπει", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. ", "Your PHP version is outdated" => "Η έκδοση PHP είναι απαρχαιωμένη", @@ -109,20 +114,16 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "Το cron.php είναι καταχωρημένο σε μια υπηρεσία webcron ώστε να καλεί το cron.php κάθε 15 λεπτά μέσω http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Χρήση της υπηρεσίας cron του συστήματος για να καλεστεί το αρχείο cron.php κάθε 15 λεπτά.", "Sharing" => "Διαμοιρασμός", -"Enable Share API" => "Ενεργοποίηση API διαμοιρασμού", "Allow apps to use the Share API" => "Επιτρέπει την χρήση του API διαμοιρασμού σε εφαρμογές ", -"Allow links" => "Επιτρέπονται οι σύνδεσμοι", +"Allow users to share via link" => "Να επιτρέπεται σε χρήστες ο διαμοιρασμός μέσω συνδέσμου", "Enforce password protection" => "Επιβολή προστασίας με κωδικό", "Allow public uploads" => "Επιτρέπεται το κοινόχρηστο ανέβασμα", "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" => "Επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας", +"Restrict users to only share with users in their groups" => "Να επιτρέπεται σε χρήστες ο διαμοιρασμός μόνο με χρήστες που ανήκουν στις ομάδες τους", "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." => "Αυτές οι ομάδες θα συνεχίσουν να λαμβάνουν διαμοιρασμούς, αλλά δεν θα είναι δυνατό να τους δημιουργήσουν.", @@ -155,6 +156,7 @@ $TRANSLATIONS = array( "See application page at apps.owncloud.com" => "Δείτε την σελίδα εφαρμογών στο apps.owncloud.com", "See application website" => "Δείτε την ιστοσελίδα της εφαρμογής", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "Άδεια χρήσης <span class=\"licence\"></span> από <span class=\"author\"></span>", +"Enable only for specific groups" => "Ενεργοποίηση μόνο για καθορισμένες ομάδες", "All" => "Όλες", "Administrator Documentation" => "Τεκμηρίωση Διαχειριστή", "Online Documentation" => "Τεκμηρίωση στο Διαδίκτυο", @@ -194,13 +196,19 @@ $TRANSLATIONS = array( "Create" => "Δημιουργία", "Admin Recovery Password" => "Κωδικός Επαναφοράς Διαχειριστή ", "Enter the recovery password in order to recover the users files during password change" => "Εισάγετε το συνθηματικό ανάκτησης ώστε να ανακτήσετε τα αρχεία χρηστών κατά την αλλαγή συνθηματικού", +"Search Users and Groups" => "Αναζήτηση Χρηστών και Ομάδων", +"Add Group" => "Προσθήκη Ομάδας", "Group" => "Ομάδα", +"Everyone" => "Όλοι", +"Admins" => "Διαχειριστές", "Default Quota" => "Προεπιλεγμένο Όριο", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Παρακαλώ εισάγετε επιτρεπόμενα μερίδια αποθηκευτικού χώρου (π.χ. \"512 MB\" ή \"12 GB\")", "Unlimited" => "Απεριόριστο", "Other" => "Άλλο", "Username" => "Όνομα χρήστη", "Quota" => "Σύνολο Χώρου", +"Storage Location" => "Τοποθεσία αποθηκευτικού χώρου", +"Last Login" => "Τελευταία Σύνδεση", "change full name" => "αλλαγή πλήρους ονόματος", "set new password" => "επιλογή νέου κωδικού", "Default" => "Προκαθορισμένο" diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index a267093ab92..092716ed85a 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -62,7 +62,8 @@ $TRANSLATIONS = array( "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", +"Error creating group" => "Error creating group", +"A valid group name must be provided" => "A valid group name must be provided", "undo" => "undo", "Groups" => "Groups", "Group Admin" => "Group Admin", @@ -93,6 +94,8 @@ $TRANSLATIONS = array( "Please double check the <a href=\"%s\">installation guides</a>." => "Please double check the <a href=\"%s\">installation guides</a>.", "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible.", "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator.", +"Database Performance Info" => "Database Performance Info", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "SQLite is used as database. For larger installations we recommend changing this. To migrate to another database use the command line tool: 'occ db:convert-type'", "Module 'fileinfo' missing" => "Module 'fileinfo' missing", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "The PHP module 'fileinfo' is missing. We strongly recommend enabling this module to get best results with mime-type detection.", "Your PHP version is outdated" => "Your PHP version is outdated", @@ -111,20 +114,16 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php is registered at a webcron service to call cron.php every 15 minutes over http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Use system's cron service to call the cron.php file every 15 minutes.", "Sharing" => "Sharing", -"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 via link" => "Allow users to share via link", "Enforce password protection" => "Enforce password protection", "Allow public uploads" => "Allow public uploads", "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", +"Restrict users to only share with users in their groups" => "Restrict users to only share with users in their groups", "Allow users to send mail notification for shared files" => "Allow users to send mail notification for shared files", "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.", @@ -157,6 +156,7 @@ $TRANSLATIONS = array( "See application page at apps.owncloud.com" => "See application page at apps.owncloud.com", "See application website" => "See application website", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>", +"Enable only for specific groups" => "Enable only for specific groups", "All" => "All", "Administrator Documentation" => "Administrator Documentation", "Online Documentation" => "Online Documentation", @@ -196,11 +196,19 @@ $TRANSLATIONS = array( "Create" => "Create", "Admin Recovery Password" => "Admin Recovery Password", "Enter the recovery password in order to recover the users files during password change" => "Enter the recovery password in order to recover the user's files during password change", +"Search Users and Groups" => "Search Users and Groups", +"Add Group" => "Add Group", "Group" => "Group", +"Everyone" => "Everyone", +"Admins" => "Admins", +"Default Quota" => "Default Quota", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Please enter storage quota (e.g. \"512 MB\" or \"12 GB\")", "Unlimited" => "Unlimited", "Other" => "Other", "Username" => "Username", +"Quota" => "Quota", +"Storage Location" => "Storage Location", +"Last Login" => "Last Login", "change full name" => "change full name", "set new password" => "set new password", "Default" => "Default" diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index d1413e7d039..6f271bcbb43 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -46,7 +46,6 @@ $TRANSLATIONS = array( "Strong password" => "Forta pasvorto", "Delete encryption keys permanently." => "Forigi ĉifroklavojn por ĉiam.", "Restore encryption keys." => "Restaŭri ĉifroklavojn.", -"deleted" => "forigita", "undo" => "malfari", "Groups" => "Grupoj", "Group Admin" => "Grupadministranto", @@ -67,16 +66,10 @@ $TRANSLATIONS = array( "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", "Security" => "Sekuro", "Email Server" => "Retpoŝtoservilo", "From address" => "El adreso", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 9398e3b29b4..41cb37444d2 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -62,12 +62,16 @@ $TRANSLATIONS = array( "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", +"Unable to delete {objName}" => "No es posible eliminar {objName}", +"Error creating group" => "Error al crear un grupo", +"A valid group name must be provided" => "Se debe dar un nombre válido para el grupo ", +"deleted {groupName}" => "borrado {groupName}", "undo" => "deshacer", "Groups" => "Grupos", "Group Admin" => "Administrador del Grupo", "Delete" => "Eliminar", "never" => "nunca", +"deleted {userName}" => "borrado {userName}", "add group" => "añadir Grupo", "A valid username must be provided" => "Se debe proporcionar un nombre de usuario válido", "Error creating user" => "Error al crear usuario", @@ -91,7 +95,10 @@ $TRANSLATIONS = array( "Setup Warning" => "Advertencia de configuración", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir la sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.", "Please double check the <a href=\"%s\">installation guides</a>." => "Por favor, vuelva a comprobar las <a href='%s'>guías de instalación</a>.", +"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "PHP está aparentemente configurado para eliminar bloques de documentos en línea. Esto hará que varias aplicaciones del principales no estén accesibles.", "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "Probablemente esto sea causado por un cache o acelerador, como por ejemplo Zend OPcache o eAccelerator.", +"Database Performance Info" => "Información de rendimiento de la base de datos", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "Se está usando SQLite como base de datos. Para instalaciones más grandes, recomendamos cambiar esto. Para migrar a otra base de datos, use la herramienta de línea de comandos: 'occ db:convert-type'", "Module 'fileinfo' missing" => "No se ha encontrado el módulo \"fileinfo\"", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "No se ha encontrado el modulo PHP 'fileinfo'. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección de tipos MIME.", "Your PHP version is outdated" => "Su versión de PHP no está actualizada", @@ -110,20 +117,16 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP.", "Use systems cron service to call the cron.php file every 15 minutes." => "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos.", "Sharing" => "Compartiendo", -"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 via link" => "Permite a los usuarios compartir por medio de enlaces", "Enforce password protection" => "Mejora la protección por contraseña.", "Allow public uploads" => "Permitir subidas públicas", "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", +"Restrict users to only share with users in their groups" => "Restringe a los usuarios a compartir solo con otros usuarios en sus grupos", "Allow users to send mail notification for shared files" => "Permitir a los usuarios enviar mensajes de notificación para ficheros compartidos", "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.", @@ -156,6 +159,7 @@ $TRANSLATIONS = array( "See application page at apps.owncloud.com" => "Ver la página de aplicaciones en apps.owncloud.com", "See application website" => "Ver sitio web de la aplicación", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencia otorgada por <span class=\"author\"></span>", +"Enable only for specific groups" => "Activar solamente para grupos específicos", "All" => "Todos", "Administrator Documentation" => "Documentación de administrador", "Online Documentation" => "Documentación en línea", @@ -195,13 +199,19 @@ $TRANSLATIONS = array( "Create" => "Crear", "Admin Recovery Password" => "Recuperación de la contraseña de administración", "Enter the recovery password in order to recover the users files during password change" => "Introduzca la contraseña de recuperación a fin de recuperar los archivos de los usuarios durante el cambio de contraseña.", +"Search Users and Groups" => "Buscar usuarios y grupos", +"Add Group" => "Agregar grupo", "Group" => "Grupo", +"Everyone" => "Todos", +"Admins" => "Administradores", "Default Quota" => "Cuota predeterminada", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")", "Unlimited" => "Ilimitado", "Other" => "Otro", "Username" => "Nombre de usuario", "Quota" => "Cuota", +"Storage Location" => "Ubicación de almacenamiento", +"Last Login" => "Último inicio de sesión", "change full name" => "cambiar el nombre completo", "set new password" => "establecer nueva contraseña", "Default" => "Predeterminado" diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 37f87bf3bfa..22aec7b1459 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -54,7 +54,6 @@ $TRANSLATIONS = array( "Good password" => "Buena contraseña. ", "Strong password" => "Contraseña fuerte.", "Decrypting files... Please wait, this can take some time." => "Desencriptando archivos... Por favor espere, esto puede tardar.", -"deleted" => "borrado", "undo" => "deshacer", "Groups" => "Grupos", "Group Admin" => "Grupo Administrador", @@ -98,15 +97,9 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php está registrado en el servicio webcron para llamarlo cada 15 minutos usando http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Usar el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos.", "Sharing" => "Compartiendo", -"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 public uploads" => "Permitir subidas públicas", -"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.", -"Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los de sus mismos grupos", "Allow users to send mail notification for shared files" => "Habilitar a los usuarios para enviar notificaciones por correo para archivos compartidos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", diff --git a/settings/l10n/es_MX.php b/settings/l10n/es_MX.php index d3e4065b5c2..3322ac417dc 100644 --- a/settings/l10n/es_MX.php +++ b/settings/l10n/es_MX.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "Updated" => "Actualizado", "Select a profile picture" => "Seleccionar una imagen de perfil", "Decrypting files... Please wait, this can take some time." => "Descifrando archivos... Espere por favor, esto puede llevar algo de tiempo.", -"deleted" => "eliminado", "undo" => "deshacer", "Groups" => "Grupos", "Group Admin" => "Administrador del Grupo", @@ -77,15 +76,9 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php se registra en un servicio webcron para llamar a cron.php cada 15 minutos a través de HTTP.", "Use systems cron service to call the cron.php file every 15 minutes." => "Utiliza el servicio cron del sistema para llamar al archivo cron.php cada 15 minutos.", "Sharing" => "Compartiendo", -"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 public uploads" => "Permitir subidas públicas", -"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", "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.", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 59002373e04..75dc7b15a77 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -56,7 +56,6 @@ $TRANSLATIONS = array( "Good password" => "Hea parool", "Strong password" => "Väga hea parool", "Decrypting files... Please wait, this can take some time." => "Dekrüpteerin faile... Palun oota, see võib võtta veidi aega.", -"deleted" => "kustutatud", "undo" => "tagasi", "Groups" => "Grupid", "Group Admin" => "Grupi admin", @@ -103,17 +102,11 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php on registreeritud webcron teenuses, et käivitada fail cron.php iga 15 minuti tagant üle http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Kasuta süsteemi cron teenust, et käivitada fail cron.php iga 15 minuti tagant.", "Sharing" => "Jagamine", -"Enable Share API" => "Luba Share API", "Allow apps to use the Share API" => "Luba rakendustel kasutada Share API-t", -"Allow links" => "Luba lingid", "Allow public uploads" => "Luba avalikud üleslaadimised", "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 users to send mail notification for shared files" => "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta", "Security" => "Turvalisus", "Enforce HTTPS" => "Sunni peale HTTPS-i kasutamine", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index f96733d0b1c..2307b2133b3 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -1,18 +1,32 @@ <?php $TRANSLATIONS = array( +"Invalid value supplied for %s" => "%s-entzako baliogabea", "Saved" => "Gordeta", +"test email settings" => "probatu eposta ezarpenak", +"If you received this email, the settings seem to be correct." => "Eposta hau jaso baduzu, zure ezarpenak egokiak direnaren seinale", +"A problem occurred while sending the e-mail. Please revisit your settings." => "Arazo bat gertatu da eposta bidaltzean. Berrikusi zure ezarpenak.", "Email sent" => "Eposta bidalia", +"You need to set your user email before being able to send test emails." => "Epostaren erabiltzailea zehaztu behar duzu probako eposta bidali aurretik.", +"Send mode" => "Bidaltzeko modua", "Encryption" => "Enkriptazioa", +"Authentication method" => "Autentifikazio metodoa", "Unable to load list from App Store" => "Ezin izan da App Dendatik zerrenda kargatu", "Authentication error" => "Autentifikazio errorea", "Your full name has been changed." => "Zure izena aldatu egin da.", "Unable to change full name" => "Ezin izan da izena aldatu", "Group already exists" => "Taldea dagoeneko existitzenda", "Unable to add group" => "Ezin izan da taldea gehitu", +"Files decrypted successfully" => "Fitxategiak ongi deskodetu dira.", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Ezin izan dira zure fitxategiak deskodetu, egiaztatu zure owncloud.log edo galdetu administratzaileari", +"Couldn't decrypt your files, check your password and try again" => "Ezin izan dira deskodetu zure fitxategiak, egiaztatu zure pasahitza eta saiatu berriz", +"Encryption keys deleted permanently" => "Enkriptatze gakoak behin betiko ezabatuak", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Ezin izan dira zure enkriptatze gakoak behin betiko ezabatu, egiaztatu zure owncloud.log edo galdetu administratzaileari", "Email saved" => "Eposta gorde da", "Invalid email" => "Baliogabeko eposta", "Unable to delete group" => "Ezin izan da taldea ezabatu", "Unable to delete user" => "Ezin izan da erabiltzailea ezabatu", +"Backups restored successfully" => "Babeskopiak ongi leheneratu dira", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Ezin izan dira zure enkriptatze gakoak leheneratu, egiaztatu zure owncloud.log edo galdetu administratzaileari", "Language changed" => "Hizkuntza aldatuta", "Invalid request" => "Baliogabeko eskaera", "Admins can't remove themself from the admin group" => "Kudeatzaileak ezin du bere burua kendu kudeatzaile taldetik", @@ -22,9 +36,12 @@ $TRANSLATIONS = array( "Wrong password" => "Pasahitz okerra", "No user supplied" => "Ez da erabiltzailerik zehaztu", "Please provide an admin recovery password, otherwise all user data will be lost" => "Mesedez eman berreskuratzeko administrazio pasahitza, bestela erabiltzaile datu guztiak galduko dira", -"Wrong admin recovery password. Please check the password and try again." => "Berreskuratze administradore pasahitz ez egokia. Medesez egiaztatu pasahitza eta saiatu berriz.", +"Wrong admin recovery password. Please check the password and try again." => "Administratzailearen berreskuratze pasahitza ez egokia. Mesedez egiaztatu pasahitza eta saiatu berriz.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Atzeko prozesuak ez du pasahitz aldaketa onartzen, baina erabiltzailearen enkriptatze gakoa ongi eguneratu da.", "Unable to change password" => "Ezin izan da pasahitza aldatu", +"Sending..." => "Bidaltzen...", "User Documentation" => "Erabiltzaile dokumentazioa", +"Admin Documentation" => "Administrazio dokumentazioa", "Update to {appversion}" => "Eguneratu {appversion}-ra", "Disable" => "Ez-gaitu", "Enable" => "Gaitu", @@ -36,13 +53,17 @@ $TRANSLATIONS = array( "Error" => "Errorea", "Update" => "Eguneratu", "Updated" => "Eguneratuta", -"Select a profile picture" => "Profil argazkia aukeratu", +"Select a profile picture" => "Profilaren irudia 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", +"Decrypting files... Please wait, this can take some time." => "Fitxategiak deskodetzen... Itxaron, bere denbora eskatzen du.", +"Delete encryption keys permanently." => "Ezabatu enkriptatze gakoak behin betiko", +"Restore encryption keys." => "Leheneratu enkriptatze gakoak", +"Error creating group" => "Errore bat izan da taldea sortzean", +"A valid group name must be provided" => "Baliozko talde izena eman behar da", "undo" => "desegin", "Groups" => "Taldeak", "Group Admin" => "Talde administradorea", @@ -53,58 +74,91 @@ $TRANSLATIONS = array( "Error creating user" => "Errore bat egon da erabiltzailea sortzean", "A valid password must be provided" => "Baliozko pasahitza eman behar da", "Warning: Home directory for user \"{user}\" already exists" => "Abisua: \"{user}\" erabiltzailearen Home karpeta dagoeneko exisititzen da", -"__language_name__" => "Euskera", +"__language_name__" => "Euskara", +"Everything (fatal issues, errors, warnings, info, debug)" => "Dena (arazo larriak, erroreak, abisuak, informazioa, arazketa)", +"Info, warnings, errors and fatal issues" => "Informazioa, abisuak, erroreak eta arazo larriak.", +"Warnings, errors and fatal issues" => "Abisuak, erroreak eta arazo larriak", +"Errors and fatal issues" => "Erroreak eta arazo larriak", +"Fatal issues only" => "Bakarrik arazo larriak", "None" => "Ezer", "Login" => "Saio hasiera", +"Plain" => "Arrunta", +"NT LAN Manager" => "NT LAN Manager", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Segurtasun abisua", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "%s HTTP bidez erabiltzen ari zara. Aholkatzen dizugu zure zerbitzaria HTTPS erabil dezan.", "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." => "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea.", -"Setup Warning" => "Konfiguratu Abisuak", +"Setup Warning" => "Konfiguratu abisuak", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi.", "Please double check the <a href=\"%s\">installation guides</a>." => "Mesedez birpasatu <a href=\"%s\">instalazio gidak</a>.", -"Module 'fileinfo' missing" => "'fileinfo' Modulua falta da", +"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "Badirudi PHP konfiguratuta dagoela lineako dokumentu blokeak aldatzeko. Honek zenbait oinarrizko aplikazio eskuraezin bihurtuko ditu.", +"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "Hau ziur aski cache/accelerator batek eragin du, hala nola Zend OPcache edo eAccelerator.", +"Database Performance Info" => "Database Performance informazioa", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "SQLite erabili da datu-base gisa. Instalazio handiagoetarako gomendatzen dugu aldatzea. Beste datu base batera migratzeko erabili komando-lerro tresna hau: 'occ db:convert-type'", +"Module 'fileinfo' missing" => "'fileinfo' modulua falta da", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP 'fileinfo' modulua falta da. Modulu hau gaitzea aholkatzen dizugu mime-type ezberdinak hobe detektatzeko.", "Your PHP version is outdated" => "Zure PHP bertsioa zaharkituta dago", "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." => "Zure PHP bertsioa zaharkituta dago. Gure aholkua 5.3.8 edo bertsio berriago batera eguneratzea da, bertsio zaharragoak arazoak ematen baitituzte. Posible da instalazio honek ez funtzionatzea ongi.", "Locale not working" => "Lokala ez dabil", -"System locale can not be set to a one which supports UTF-8." => "Sistemaren lokala ezin da UTF-8 onartzen duen batera ezarri.", +"System locale can not be set to a one which supports UTF-8." => "Eskualdeko ezarpena ezin da UTF-8 onartzen duen batera ezarri.", "This means that there might be problems with certain characters in file names." => "Honek esan nahi du fitxategien izenetako karaktere batzuekin arazoak egon daitezkeela.", +"We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Biziki gomendatzen dizugu beharrezkoak diren paketea zure sisteman instalatzea honi euskarria eman ahal izateko: %s.", "Internet connection not working" => "Interneteko konexioak ez du funtzionatzen", "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." => "Zerbitzari honen interneteko konexioa ez dabil. Honek esan nahi du kanpoko biltegiratze zerbitzuak, eguneraketen informazioa edo bestelako aplikazioen instalazioa bezalako programek ez dutela funtzionatuko. Urrunetik fitxategiak eskuratzea eta e-postak bidaltzea ere ezinezkoa izan daiteke. onwCloud-en aukera guztiak erabili ahal izateko zerbitzari honetan interneteko konexioa gaitzea aholkatzen dizugu.", "Cron" => "Cron", +"Last cron was executed at %s." => "Azken cron-a %s-etan exekutatu da", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Azken cron-a %s-etan exekutatu da. Ordu bat baino gehiago pasa da, zerbait gaizki dabilela dirudi.", +"Cron was not executed yet!" => "Cron-a oraindik ez da exekutatu!", "Execute one task with each page loaded" => "Exekutatu zeregin bat orri karga bakoitzean", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php webcron zerbitzu batean erregistratua dago cron.php 15 minuturo http bidez deitzeko.", "Use systems cron service to call the cron.php file every 15 minutes." => "Erabili sistemaren cron zerbitzua cron.php fitxategia 15 minuturo deitzeko.", "Sharing" => "Partekatzea", -"Enable Share API" => "Gaitu Elkarbanatze APIa", -"Allow apps to use the Share API" => "Baimendu aplikazioak Elkarbanatze APIa erabiltzeko", -"Allow links" => "Baimendu loturak", +"Allow apps to use the Share API" => "Baimendu aplikazioak partekatzeko APIa erabiltzeko", +"Allow users to share via link" => "Baimendu erabiltzaileak esteken bidez partekatzea", +"Enforce password protection" => "Betearazi pasahitzaren babesa", "Allow public uploads" => "Baimendu igoera publikoak", -"Allow users to share items to the public with links" => "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki elkarbanatzen", +"Set default expiration date" => "Ezarri muga data lehenetsia", +"Expire after " => "Iraungia honen ondoren", +"days" => "egun", +"Enforce expiration date" => "Muga data betearazi", "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", -"Allow users to only share with users in their groups" => "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen", +"Restrict users to only share with users in their groups" => "Mugatu partekatzeak taldeko erabiltzaileetara", +"Allow users to send mail notification for shared files" => "Baimendu erabiltzaileak epostako jakinarazpenak bidaltzen partekatutako fitxategientzat", +"Exclude groups from sharing" => "Baztertu taldeak partekatzean", +"These groups will still be able to receive shares, but not to initiate them." => "Talde hauek oraindik jaso ahal izango dute partekatzeak, baina ezingo dute partekatu", "Security" => "Segurtasuna", "Enforce HTTPS" => "Behartu HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Bezeroak %s-ra konexio enkriptatu baten bidez konektatzera behartzen ditu.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Mesedez konektatu zure %s-ra HTTPS bidez SSL zehaztapenak aldatzeko.", +"Email Server" => "Eposta zerbitzaria", +"This is used for sending out notifications." => "Hau jakinarazpenak bidaltzeko erabiltzen da.", +"From address" => "Helbidetik", +"mail" => "posta", +"Authentication required" => "Autentikazioa beharrezkoa", "Server address" => "Zerbitzariaren helbidea", "Port" => "Portua", "Credentials" => "Kredentzialak", -"Log" => "Egunkaria", +"SMTP Username" => "SMTP erabiltzaile-izena", +"SMTP Password" => "SMTP pasahitza", +"Test email settings" => "Probatu eposta ezarpenak", +"Send email" => "Bidali eposta", +"Log" => "Log", "Log level" => "Erregistro maila", "More" => "Gehiago", "Less" => "Gutxiago", "Version" => "Bertsioa", "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 komunitateak</a> garatuta, <a href=\"https://github.com/owncloud\" target=\"_blank\">itubruru kodea</a><a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr> lizentziarekin banatzen da</a>.", "Add your App" => "Gehitu zure aplikazioa", -"More Apps" => "App gehiago", -"Select an App" => "Aukeratu programa bat", -"See application page at apps.owncloud.com" => "Ikusi programen orria apps.owncloud.com en", +"More Apps" => "Aplikazio gehiago", +"Select an App" => "Aukeratu aplikazio bat", +"Documentation:" => "Dokumentazioa:", +"See application page at apps.owncloud.com" => "Ikusi aplikazioaren orria apps.owncloud.com orrian", +"See application website" => "Ikusi aplikazioaren webgunea", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-lizentziatua <span class=\"author\"></span>", +"Enable only for specific groups" => "Baimendu bakarri talde espezifikoetarako", "All" => "Denak", -"Administrator Documentation" => "Administradore dokumentazioa", +"Administrator Documentation" => "Administratzaile dokumentazioa", "Online Documentation" => "Online dokumentazioa", "Forum" => "Foroa", "Bugtracker" => "Bugtracker", @@ -113,7 +167,7 @@ $TRANSLATIONS = array( "Show First Run Wizard again" => "Erakutsi berriz Lehenengo Aldiko Morroia", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Dagoeneko <strong>%s</strong> erabili duzu eskuragarri duzun <strong>%s</strong>etatik", "Password" => "Pasahitza", -"Your password was changed" => "Zere pasahitza aldatu da", +"Your password was changed" => "Zure pasahitza aldatu da", "Unable to change your password" => "Ezin izan da zure pasahitza aldatu", "Current password" => "Uneko pasahitza", "New password" => "Pasahitz berria", @@ -121,11 +175,13 @@ $TRANSLATIONS = array( "Full Name" => "Izena", "Email" => "E-posta", "Your email address" => "Zure e-posta", +"Fill in an email address to enable password recovery and receive notifications" => "Bete ezazu eposta helbide bat pasahitza berreskuratzeko eta jakinarazpenak jasotzeko", "Profile picture" => "Profilaren irudia", "Upload new" => "Igo berria", "Select new from Files" => "Hautatu berria Fitxategietatik", "Remove image" => "Irudia ezabatu", "Either png or jpg. Ideally square but you will be able to crop it." => "png edo jpg. Hobe karratua baina mozteko aukera izango duzu.", +"Your avatar is provided by your original account." => "Zure jatorrizko kontuak ezarri du zure avatar.", "Cancel" => "Ezeztatu", "Choose as profile image" => "Profil irudi bezala aukeratu", "Language" => "Hizkuntza", @@ -133,17 +189,26 @@ $TRANSLATIONS = array( "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", +"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." => "Zure enkriptatze gakoak babeskopiara eraman dira. Zerbait gaizki ateratzen bada berreskura ditzakezu giltzak. Behin betirako ezabatu bakarrik ziur bazaude fitxategi guztiak ongi deskodetu badira.", +"Restore Encryption Keys" => "Lehenera itzazu enkriptatze gakoak.", +"Delete Encryption Keys" => "Ezabatu enkriptatze gakoak", "Login Name" => "Sarrera Izena", "Create" => "Sortu", -"Admin Recovery Password" => "Kudeatzaile pasahitz berreskuratzea", -"Enter the recovery password in order to recover the users files during password change" => "berreskuratze pasahitza idatzi pasahitz aldaketan erabiltzaileen fitxategiak berreskuratzeko", +"Admin Recovery Password" => "Administratzailearen pasahitza berreskuratzea", +"Enter the recovery password in order to recover the users files during password change" => "Berreskuratze pasahitza idatzi pasahitz aldaketan erabiltzaileen fitxategiak berreskuratzeko", +"Search Users and Groups" => "Bilatu erabiltzaileak eta taldeak", +"Add Group" => "Gehitu taldea", "Group" => "Taldea", +"Everyone" => "Edonor", +"Admins" => "Administratzaileak", "Default Quota" => "Kuota lehentsia", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Mesedez sartu biltegiratze kouta (adb: \"512 MB\" edo \"12 GB\")", "Unlimited" => "Mugarik gabe", "Other" => "Bestelakoa", "Username" => "Erabiltzaile izena", "Quota" => "Kuota", +"Storage Location" => "Biltegiaren kokapena", +"Last Login" => "Azken saio hasiera", "change full name" => "aldatu izena", "set new password" => "ezarri pasahitz berria", "Default" => "Lehenetsia" diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index 2575ff4e1a8..f44e352290c 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Good password" => "رمز عبور خوب", "Strong password" => "رمز عبور قوی", "Decrypting files... Please wait, this can take some time." => "در حال بازگشایی رمز فایلها... لطفاً صبر نمایید. این امر ممکن است مدتی زمان ببرد.", -"deleted" => "حذف شده", "undo" => "بازگشت", "Groups" => "گروه ها", "Group Admin" => "گروه مدیران", @@ -69,15 +68,9 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php در یک سرویس webcron ثبت شده است که هر 15 دقیقه یک بار بر روی بستر http فراخوانی شود.", "Use systems cron service to call the cron.php file every 15 minutes." => "از سرویس کرون سرور استفاده شده است که فایل cron.php را هر 15 دقیقه یک بار فراخوانی کند.", "Sharing" => "اشتراک گذاری", -"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 items shared with them again" => "اجازه به کاربران برای اشتراک گذاری دوباره با آنها", -"Allow users to share with anyone" => "اجازه به کابران برای اشتراک گذاری با همه", -"Allow users to only share with users in their groups" => "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان", "Security" => "امنیت", "Enforce HTTPS" => "وادار کردن HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "کلاینتها را مجبور کن که از یک ارتباط رمزنگاری شده برای اتصال به %s استفاده کنند.", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 144ebdad225..4ae39d53011 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -20,11 +20,13 @@ $TRANSLATIONS = array( "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", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Salausavaintesi poistaminen pysyvästi ei onnistunut, tarkista owncloud.log tai ole yhteydessä ylläpitäjään", "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", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Salausavaintesi palauttaminen ei onnistunut, tarkista owncloud.log tai ole yhteydessä ylläpitäjään", "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ä", @@ -32,6 +34,10 @@ $TRANSLATIONS = array( "Unable to remove user from group %s" => "Käyttäjän poistaminen ryhmästä %s ei onnistu", "Couldn't update app." => "Sovelluksen päivitys epäonnistui.", "Wrong password" => "Väärä salasana", +"No user supplied" => "Käyttäjää ei määritetty", +"Please provide an admin recovery password, otherwise all user data will be lost" => "Anna ylläpitäjän palautussalasana, muuten kaikki käyttäjien data menetetään", +"Wrong admin recovery password. Please check the password and try again." => "Väärä ylläpitäjän salasana. Tarkista salasana ja yritä uudelleen.", +"Back-end doesn't support password change, but the users encryption key was successfully updated." => "Taustaosa ei tue salasanan vaihtamista, mutta käyttäjän salausavain päivitettiin onnistuneesti.", "Unable to change password" => "Salasanan vaihto ei onnistunut", "Sending..." => "Lähetetään...", "User Documentation" => "Käyttäjäohjeistus", @@ -56,15 +62,16 @@ $TRANSLATIONS = array( "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.", -"Unable to delete " => "Poistaminen epäonnistui", +"Unable to delete {objName}" => "Kohteen {objName} poistaminen epäonnistui", "Error creating group" => "Virhe ryhmää luotaessa", "A valid group name must be provided" => "Anna kelvollinen ryhmän nimi", -"deleted" => "poistettu", +"deleted {groupName}" => "poistettu {groupName}", "undo" => "kumoa", "Groups" => "Ryhmät", "Group Admin" => "Ryhmän ylläpitäjä", "Delete" => "Poista", "never" => "ei koskaan", +"deleted {userName}" => "poistettu {userName}", "add group" => "lisää ryhmä", "A valid username must be provided" => "Anna kelvollinen käyttäjätunnus", "Error creating user" => "Virhe käyttäjää luotaessa", @@ -82,6 +89,7 @@ $TRANSLATIONS = array( "TLS" => "TLS", "Security Warning" => "Turvallisuusvaroitus", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Käytät %sia HTTP-yhteydellä. Suosittelemme määrittämään palvelimen vaatimaan salattua HTTPS-yhteyttä.", +"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." => "Datahakemistosi ja kaikki tiedostosi ovat luultavasti käytettävissä suoraan internetistä. .htaccess-tiedosto ei toimi tällä hetkellä. Määritä verkkopalvelimen asetukset siten, ettei datahakemistosi ole suoraan käytettävissä tai siirrä kyseinen hakemisto pois verkkopalvelimen dokumenttijuuresta.", "Setup Warning" => "Asetusvaroitus", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web-palvelimen asetukset eivät ole kelvolliset tiedostojen synkronointia varten, koska WebDAV-liitäntä vaikuttaa olevan rikki.", "Please double check the <a href=\"%s\">installation guides</a>." => "Lue <a href=\"%s\">asennusohjeet</a> tarkasti.", @@ -96,25 +104,24 @@ $TRANSLATIONS = array( "This means that there might be problems with certain characters in file names." => "Tämä tarkoittaa, että tiettyjen merkkien kanssa tiedostojen nimissä saattaa olla ongelmia.", "We strongly suggest to install the required packages on your system to support one of the following locales: %s." => "Suosittelemme vahvasti asentamaan vaaditut paketit järjestelmään, jotta jotain seuraavista maa-asetuksista on mahdollista tukea: %s.", "Internet connection not working" => "Internet-yhteys ei toimi", +"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." => "Tällä palvelimella ei ole toimivaa internetyhteyttä. Sen seurauksena jotkin ominaisuudet, kuten erillisten tallennustilojen liittäminen, ilmoitukset päivityksistä tai kolmansien osapuolten sovellusten asentaminen eivät toimi. Tiedostojen käyttäminen etäältä ja ilmoitusten lähettäminen sähköpostitse eivät myöskään välttämättä toimi. Jos haluat käyttää kaikkia palvelimen ominaisuuksia, kytke palvelin internetiin.", "Cron" => "Cron", "Last cron was executed at %s." => "Viimeisin cron suoritettiin %s.", "Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Viimeisin cron suoritettiin %s. Siitä on yli tunti aikaa, joten jokin näyttää olevan pielessä.", "Cron was not executed yet!" => "Cronia ei suoritettu vielä!", +"Execute one task with each page loaded" => "Suorita yksi tehtävä jokaista ladattua sivua kohden", +"cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php kutsuu webcron-palvelun kautta cron.php:ta 15 minuutin välein http:tä käyttäen.", "Use systems cron service to call the cron.php file every 15 minutes." => "Käytä järjestelmän cron-palvelua cron.php-tiedoston kutsumiseen 15 minuutin välein", "Sharing" => "Jakaminen", -"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 via link" => "Salli käyttäjien jakaa linkkien kautta", "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", +"Restrict users to only share with users in their groups" => "Salli käyttäjien jakaa vain omassa ryhmässä olevien henkilöiden kesken", "Allow users to send mail notification for shared files" => "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", "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.", @@ -170,7 +177,7 @@ $TRANSLATIONS = array( "Upload new" => "Lähetä uusi", "Select new from Files" => "Valitse uusi tiedostoista", "Remove image" => "Poista kuva", -"Either png or jpg. Ideally square but you will be able to crop it." => "Joko png- tai jpg-kuva. Mieluite neliö, voit kuitenkin rajata kuvaa.", +"Either png or jpg. Ideally square but you will be able to crop it." => "Joko png- tai jpg-kuva. Mieluiten neliö, voit kuitenkin rajata kuvaa.", "Your avatar is provided by your original account." => "Avatar-kuvasi pohjautuu alkuperäiseen tiliisi.", "Cancel" => "Peru", "Choose as profile image" => "Valitse profiilikuvaksi", @@ -183,6 +190,7 @@ $TRANSLATIONS = array( "Delete Encryption Keys" => "Poista salausavaimet", "Login Name" => "Kirjautumisnimi", "Create" => "Luo", +"Admin Recovery Password" => "Ylläpitäjän palautussalasana", "Search Users and Groups" => "Etsi käyttäjiä ja ryhmiä", "Add Group" => "Lisää ryhmä", "Group" => "Ryhmä", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 58ddda4ffd2..4d8eda5c869 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -62,7 +62,8 @@ $TRANSLATIONS = array( "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é", +"Error creating group" => "Erreur lors de la création du groupe", +"A valid group name must be provided" => "Vous devez spécifier un nom de groupe valide", "undo" => "annuler", "Groups" => "Groupes", "Group Admin" => "Admin Groupe", @@ -91,7 +92,10 @@ $TRANSLATIONS = array( "Setup Warning" => "Avertissement, problème de configuration", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut.", "Please double check the <a href=\"%s\">installation guides</a>." => "Veuillez consulter à nouveau les <a href=\"%s\">guides d'installation</a>.", +"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "PHP est apparemment configuré pour supprimer les blocs de documentation internes. Cela rendra plusieurs applications de base inaccessibles.", "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "La raison est probablement l'utilisation d'un cache / accélérateur tel que Zend OPcache ou eAccelerator.", +"Database Performance Info" => "Performances de la base de données", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "SQLite est utilisée comme base de donnée. Pour des installations plus volumineuse, nous vous conseillons de changer ce réglage. Pour migrer vers une autre base de donnée, utilisez la commande : \"occ db:convert-type\"", "Module 'fileinfo' missing" => "Module 'fileinfo' manquant", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l'activer afin d'obtenir de meilleurs résultats pour la détection des types de fichiers.", "Your PHP version is outdated" => "Votre version de PHP est trop ancienne", @@ -110,20 +114,16 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php est enregistré en tant que service webcron pour appeler cron.php toutes les 15 minutes via http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Utilise le service cron du système pour appeler le fichier cron.php toutes les 15 minutes.", "Sharing" => "Partage", -"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 via link" => "Autoriser les utilisateurs à partager via des liens", "Enforce password protection" => "Appliquer la protection par mot de passe", "Allow public uploads" => "Autoriser les téléversements publics", "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", +"Restrict users to only share with users in their groups" => "Autoriser les utilisateurs à ne partager qu'avec les utilisateurs de leurs groupes", "Allow users to send mail notification for shared files" => "Autoriser les utilisateurs à envoyer une notification par courriel concernant les fichiers partagés", "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", @@ -156,6 +156,7 @@ $TRANSLATIONS = array( "See application page at apps.owncloud.com" => "Voir la page des applications à l'url apps.owncloud.com", "See application website" => "Voir le site web de l'application", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "Distribué sous licence <span class=\"licence\"></span>, par <span class=\"author\"></span>", +"Enable only for specific groups" => "Activer uniquement pour certains groupes", "All" => "Tous", "Administrator Documentation" => "Documentation administrateur", "Online Documentation" => "Documentation en ligne", @@ -195,13 +196,19 @@ $TRANSLATIONS = array( "Create" => "Créer", "Admin Recovery Password" => "Récupération du mot de passe administrateur", "Enter the recovery password in order to recover the users files during password change" => "Entrer le mot de passe de récupération dans le but de récupérer les fichiers utilisateurs pendant le changement de mot de passe", +"Search Users and Groups" => "Chercher parmi les utilisateurs et groupes", +"Add Group" => "Ajouter un groupe", "Group" => "Groupe", +"Everyone" => "Tout le monde", +"Admins" => "Administrateurs", "Default Quota" => "Quota par défaut", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Veuillez entrer le quota de stockage (ex. \"512 MB\" ou \"12 GB\")", "Unlimited" => "Illimité", "Other" => "Autre", "Username" => "Nom d'utilisateur", "Quota" => "Quota", +"Storage Location" => "Emplacement du Stockage", +"Last Login" => "Dernière Connexion", "change full name" => "Modifier le nom complet", "set new password" => "Changer le mot de passe", "Default" => "Défaut" diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index aba604681da..1b9818d987f 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -62,15 +62,16 @@ $TRANSLATIONS = array( "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.", -"Unable to delete " => "Non se pode eliminar", +"Unable to delete {objName}" => "Non é posíbel eliminar {objName}", "Error creating group" => "Produciuse un erro ao crear o grupo", "A valid group name must be provided" => "Debe fornecer un nome de grupo", -"deleted" => "eliminado", +"deleted {groupName}" => "{groupName} foi eliminado", "undo" => "desfacer", "Groups" => "Grupos", "Group Admin" => "Grupo Admin", "Delete" => "Eliminar", "never" => "nunca", +"deleted {userName}" => "{userName} foi eliminado", "add group" => "engadir un grupo", "A valid username must be provided" => "Debe fornecer un nome de usuario", "Error creating user" => "Produciuse un erro ao crear o usuario", @@ -116,20 +117,16 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php está rexistrado nun servizo de WebCron para chamar a cron.php cada 15 minutos a través de HTTP.", "Use systems cron service to call the cron.php file every 15 minutes." => "Use o servizo de sistema cron para chamar ao ficheiro cron.php cada 15 minutos.", "Sharing" => "Compartindo", -"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 via link" => "Permitir que os usuarios compartan a través de ligazóns", "Enforce password protection" => "Forzar a protección por contrasinal", "Allow public uploads" => "Permitir os envíos públicos", "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", +"Restrict users to only share with users in their groups" => "Restrinxir aos usuarios a compartir só cos usuarios dos seus grupos", "Allow users to send mail notification for shared files" => "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos", "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.", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index 6f317a9d887..5ff5cd2faa4 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -26,7 +26,6 @@ $TRANSLATIONS = array( "Error" => "שגיאה", "Update" => "עדכון", "Updated" => "מעודכן", -"deleted" => "נמחק", "undo" => "ביטול", "Groups" => "קבוצות", "Group Admin" => "מנהל הקבוצה", @@ -47,14 +46,8 @@ $TRANSLATIONS = array( "Cron" => "Cron", "Execute one task with each page loaded" => "יש להפעיל משימה אחת עם כל עמוד שנטען", "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 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" => "לאפשר למשתמשים לשתף עם משתמשים בקבוצות שלהם בלבד", "Security" => "אבטחה", "Enforce HTTPS" => "לאלץ HTTPS", "Server address" => "כתובת שרת", diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index 3904b1b0e9d..aa3a7fabdc0 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -9,7 +9,6 @@ $TRANSLATIONS = array( "Disable" => "Isključi", "Enable" => "Uključi", "Error" => "Greška", -"deleted" => "izbrisano", "undo" => "vrati", "Groups" => "Grupe", "Group Admin" => "Grupa Admin", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index c7dc45504e8..3de09218eaa 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -46,7 +46,6 @@ $TRANSLATIONS = array( "Good password" => "Jó jelszó", "Strong password" => "Erős jelszó", "Decrypting files... Please wait, this can take some time." => "File-ok kititkosítása folyamatban... Kérlek várj, ez hosszabb ideig is eltarthat ...", -"deleted" => "törölve", "undo" => "visszavonás", "Groups" => "Csoportok", "Group Admin" => "Csoportadminisztrátor", @@ -86,15 +85,9 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "A cron.php webcron szolgáltatásként van regisztrálva, hogy 15 percenként egyszer lefuttassa a cron.php-t.", "Use systems cron service to call the cron.php file every 15 minutes." => "Használjuk a rendszer cron szolgáltatását, hogy 15 percenként egyszer futtassa le a cron.php-t.", "Sharing" => "Megosztás", -"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 public uploads" => "Feltöltést engedélyezése mindenki számára", -"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", -"Allow users to only share with users in their groups" => "A felhasználók csak olyanokkal oszthatják meg állományaikat, akikkel közös csoportban vannak", "Security" => "Biztonság", "Enforce HTTPS" => "Kötelező HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak a %s szolgáltatáshoz.", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index 7a18a12ca3d..094f8fb3a57 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -43,7 +43,6 @@ $TRANSLATIONS = array( "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", "Groups" => "Grup", "Group Admin" => "Admin Grup", @@ -82,15 +81,9 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php didaftarkan pada layanan webcron untuk memanggil cron.php setiap 15 menit melalui http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Menggunakan sistem layanan cron untuk memanggil berkas cron.php setiap 15 menit.", "Sharing" => "Berbagi", -"Enable Share API" => "Aktifkan API Pembagian", "Allow apps to use the Share API" => "Izinkan aplikasi untuk menggunakan API Pembagian", -"Allow links" => "Izinkan tautan", "Allow public uploads" => "Izinkan unggahan publik", -"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", -"Allow users to only share with users in their groups" => "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri", "Security" => "Keamanan", "Enforce HTTPS" => "Selalu Gunakan HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Memaksa klien untuk menghubungkan ke %s menggunakan sambungan yang dienskripsi.", diff --git a/settings/l10n/is.php b/settings/l10n/is.php index ae57a00d6a1..2d5b6c0f5e9 100644 --- a/settings/l10n/is.php +++ b/settings/l10n/is.php @@ -23,7 +23,6 @@ $TRANSLATIONS = array( "Error" => "Villa", "Update" => "Uppfæra", "Updated" => "Uppfært", -"deleted" => "eytt", "undo" => "afturkalla", "Groups" => "Hópar", "Group Admin" => "Hópstjóri", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 44114d390e3..e836b7af278 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -62,15 +62,16 @@ $TRANSLATIONS = array( "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.", -"Unable to delete " => "Impossibile eliminare", +"Unable to delete {objName}" => "Impossibile eliminare {objName}", "Error creating group" => "Errore durante la creazione del gruppo", "A valid group name must be provided" => "Deve essere fornito un nome valido per il gruppo", -"deleted" => "eliminati", +"deleted {groupName}" => "{groupName} eliminato", "undo" => "annulla", "Groups" => "Gruppi", "Group Admin" => "Gruppi amministrati", "Delete" => "Elimina", "never" => "mai", +"deleted {userName}" => "{userName} eliminato", "add group" => "aggiungi gruppo", "A valid username must be provided" => "Deve essere fornito un nome utente valido", "Error creating user" => "Errore durante la creazione dell'utente", @@ -94,14 +95,14 @@ $TRANSLATIONS = array( "Setup Warning" => "Avviso di configurazione", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata.", "Please double check the <a href=\"%s\">installation guides</a>." => "Leggi attentamente le <a href='%s'>guide d'installazione</a>.", -"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "Sembra che PHP sia configurato per rimuovere i blocchi in linea della documentazione. Ciò renderà inaccessibili diverse applicazioni principali.", +"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "Sembra che PHP sia configurato per rimuovere i blocchi di documentazione in linea. Ciò renderà inaccessibili diverse applicazioni principali.", "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "Ciò è causato probabilmente da una cache/acceleratore come Zend OPcache o eAccelerator.", "Database Performance Info" => "Informazioni prestazioni del database", "SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "SQLite è utilizzato come database. Per installazioni grandi, consigliamo di cambiarlo. Per migrare a un altro database, utilizzare lo strumento da riga di comando: 'occ db:convert-type'", "Module 'fileinfo' missing" => "Modulo 'fileinfo' mancante", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME.", "Your PHP version is outdated" => "La tua versione di PHP è obsoleta", -"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." => "La tua versione di PHP è obsoleta. Ti consigliamo vivamente di aggiornare alla versione 5.3.8 o successiva poiché è sono noti problemi con le vecchie versioni. L'installazione attuale potrebbe non funzionare correttamente.", +"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." => "La tua versione di PHP è obsoleta. Ti consigliamo vivamente di aggiornare alla versione 5.3.8 o successiva poiché sono noti problemi con le vecchie versioni. L'installazione attuale potrebbe non funzionare correttamente.", "Locale not working" => "Locale non funzionante", "System locale can not be set to a one which supports UTF-8." => "La localizzazione di sistema non può essere impostata a una che supporta UTF-8.", "This means that there might be problems with certain characters in file names." => "Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file.", @@ -116,20 +117,16 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php è registrato su un servizio webcron per invocare cron.php ogni 15 minuti su http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Usa il servizio cron di sistema per invocare il file cron.php ogni 15 minuti.", "Sharing" => "Condivisione", -"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 via link" => "Consenti agli utenti di condivere tramite collegamento", "Enforce password protection" => "Imponi la protezione con password", "Allow public uploads" => "Consenti caricamenti pubblici", "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", +"Restrict users to only share with users in their groups" => "Limita gli utenti a condividere solo con gli utenti nei loro gruppi", "Allow users to send mail notification for shared files" => "Consenti agli utenti di inviare email di notifica per i file condivisi", "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.", diff --git a/settings/l10n/ja.php b/settings/l10n/ja.php index 82def2ea851..d9a8e0f56d5 100644 --- a/settings/l10n/ja.php +++ b/settings/l10n/ja.php @@ -12,8 +12,8 @@ $TRANSLATIONS = array( "Authentication method" => "認証方法", "Unable to load list from App Store" => "アプリストアからリストをロードできません", "Authentication error" => "認証エラー", -"Your full name has been changed." => "フルネームを変更しました。", -"Unable to change full name" => "フルネームを変更できません", +"Your full name has been changed." => "名前を変更しました。", +"Unable to change full name" => "名前を変更できません", "Group already exists" => "グループはすでに存在します", "Unable to add group" => "グループを追加できません", "Files decrypted successfully" => "ファイルの復号化に成功しました", @@ -62,14 +62,16 @@ $TRANSLATIONS = array( "Decrypting files... Please wait, this can take some time." => "ファイルを複合中... しばらくお待ちください、この処理には少し時間がかかるかもしれません。", "Delete encryption keys permanently." => "暗号化キーを永久に削除する。", "Restore encryption keys." => "暗号化キーを復元する。", -"Unable to delete " => "削除できません", +"Unable to delete {objName}" => "{objName} を削除できません", "Error creating group" => "グループの作成エラー", -"deleted" => "削除", +"A valid group name must be provided" => "有効なグループ名を指定する必要があります", +"deleted {groupName}" => "{groupName} を削除しました", "undo" => "元に戻す", "Groups" => "グループ", "Group Admin" => "グループ管理者", "Delete" => "削除", "never" => "無し", +"deleted {userName}" => "{userName} を削除しました", "add group" => "グループを追加", "A valid username must be provided" => "有効なユーザー名を指定する必要があります", "Error creating user" => "ユーザー作成エラー", @@ -93,6 +95,10 @@ $TRANSLATIONS = array( "Setup Warning" => "セットアップ警告", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインターフェースに問題があると思われるため、WEBサーバーはまだファイルの同期を許可するよう適切に設定されていません。", "Please double check the <a href=\"%s\">installation guides</a>." => "<a href=\"%s\">installation guides</a>をもう一度チェックするようにお願いいたします。", +"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "PHPでインラインドキュメントブロックを取り除く設定になっています。これによりコアアプリで利用できないものがいくつかあります。", +"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "これは、Zend OPcacheやeAccelerator 等のキャッシュ/アクセラレータが原因かもしれません。", +"Database Performance Info" => "データベースパフォーマンス情報", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "SQLite をデータベースとして利用します。大規模な運用では、利用しないことをお勧めします。別のデータベースへ移行する場合は、コマンドラインツール: 'occ db:convert-type'を使ってください。", "Module 'fileinfo' missing" => "モジュール 'fileinfo' が見つかりません", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。", "Your PHP version is outdated" => "PHPバーションが古くなっています。", @@ -111,21 +117,19 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.phpは、HTTP経由で15分ごとにcron.phpを実行するようwebcronサービスに登録されています", "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 via link" => "URLリンクで共有を許可する", "Enforce password protection" => "常にパスワード保護を有効にする", -"Allow public uploads" => "パブリックなアップロードを許可", +"Allow public uploads" => "パブリックなアップロードを許可する", "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" => "ユーザーにグループ内のユーザーとのみ共有を許可する", +"Restrict users to only share with users in their groups" => "グループ内のユーザーでのみ共有するように制限する", "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への接続を常に暗号化します。", @@ -168,8 +172,8 @@ $TRANSLATIONS = array( "Password" => "パスワード", "Your password was changed" => "パスワードを変更しました", "Unable to change your password" => "パスワードを変更することができません", -"Current password" => "Current password", -"New password" => "新しいパスワードを入力", +"Current password" => "現在のパスワード", +"New password" => "新しいパスワード", "Change password" => "パスワードを変更", "Full Name" => "名前", "Email" => "メール", @@ -198,6 +202,7 @@ $TRANSLATIONS = array( "Search Users and Groups" => "ユーザーとグループを検索", "Add Group" => "グループを追加", "Group" => "グループ", +"Everyone" => "全ての人", "Admins" => "管理者", "Default Quota" => "デフォルトのクォータサイズ", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "ストレージの割り当てを入力してください (例: \"512MB\" や \"12 GB\")", @@ -207,7 +212,7 @@ $TRANSLATIONS = array( "Quota" => "クオータ", "Storage Location" => "ストレージの場所", "Last Login" => "最終ログイン", -"change full name" => "フルネームを変更", +"change full name" => "名前を変更", "set new password" => "新しいパスワードを設定", "Default" => "デフォルト" ); diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index 0268d6d00f0..64bb4eda964 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -26,7 +26,6 @@ $TRANSLATIONS = array( "Error" => "შეცდომა", "Update" => "განახლება", "Updated" => "განახლებულია", -"deleted" => "წაშლილი", "undo" => "დაბრუნება", "Groups" => "ჯგუფები", "Group Admin" => "ჯგუფის ადმინისტრატორი", @@ -49,14 +48,8 @@ $TRANSLATIONS = array( "Cron" => "Cron–ი", "Execute one task with each page loaded" => "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე", "Sharing" => "გაზიარება", -"Enable Share API" => "Share API–ის ჩართვა", "Allow apps to use the Share API" => "დაუშვი აპლიკაციების უფლება Share API –ზე", -"Allow links" => "ლინკების დაშვება", -"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" => "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის", "Security" => "უსაფრთხოება", "Enforce HTTPS" => "HTTPS–ის ჩართვა", "Server address" => "სერვერის მისამართი", diff --git a/settings/l10n/km.php b/settings/l10n/km.php index 5c57f6f36b6..8add6d5dee4 100644 --- a/settings/l10n/km.php +++ b/settings/l10n/km.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "So-so password" => "ពាក្យសម្ងាត់ធម្មតា", "Good password" => "ពាក្យសម្ងាត់ល្អ", "Strong password" => "ពាក្យសម្ងាត់ខ្លាំង", -"deleted" => "បានលុប", "undo" => "មិនធ្វើវិញ", "Groups" => "ក្រុ", "Group Admin" => "ក្រុមអ្នកគ្រប់គ្រង", @@ -62,13 +61,9 @@ $TRANSLATIONS = array( "Locale not working" => "Locale មិនដំណើរការ", "Internet connection not working" => "ការតភ្ជាប់អ៊ីនធឺណិតមិនមានដំណើរការ", "Sharing" => "ការចែករំលែក", -"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" => "ម៉ាស៊ីនបម្រើអ៊ីមែល", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 292e6d4e135..87a37207af3 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -46,7 +46,6 @@ $TRANSLATIONS = array( "Good password" => "좋은 암호", "Strong password" => "강력한 암호", "Decrypting files... Please wait, this can take some time." => "파일 복호화 중... 시간이 걸릴 수도 있으니 기다려 주십시오.", -"deleted" => "삭제됨", "undo" => "실행 취소", "Groups" => "그룹", "Group Admin" => "그룹 관리자", @@ -88,15 +87,9 @@ $TRANSLATIONS = array( "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 public uploads" => "공개 업로드 허용", -"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" => "사용자가 속해 있는 그룹의 사용자에게만 공유할 수 있도록 허용", "Security" => "보안", "Enforce HTTPS" => "HTTPS 강제 사용", "Forces the clients to connect to %s via an encrypted connection." => "클라이언트가 %s에 연결할 때 암호화 연결을 강제로 사용합니다.", diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index 91a9b62a692..ee771a400d5 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -17,7 +17,6 @@ $TRANSLATIONS = array( "Enable" => "Aschalten", "Error" => "Fehler", "Update" => "Update", -"deleted" => "geläscht", "undo" => "réckgängeg man", "Groups" => "Gruppen", "Group Admin" => "Gruppen Admin", @@ -27,12 +26,8 @@ $TRANSLATIONS = array( "Login" => "Login", "Security Warning" => "Sécherheets Warnung", "Cron" => "Cron", -"Enable Share API" => "Share API aschalten", "Allow apps to use the Share API" => "Erlab Apps d'Share API ze benotzen", -"Allow links" => "Links erlaben", "Allow resharing" => "Resharing erlaben", -"Allow users to share with anyone" => "Useren erlaben mat egal wiem ze sharen", -"Allow users to only share with users in their groups" => "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen", "Server address" => "Server Adress", "Log" => "Log", "More" => "Méi", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index d1c238ff1a4..42581e6e811 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -36,7 +36,6 @@ $TRANSLATIONS = array( "Updated" => "Atnaujinta", "Select a profile picture" => "Pažymėkite profilio paveikslėlį", "Decrypting files... Please wait, this can take some time." => "Iššifruojami failai... Prašome palaukti, tai gali užtrukti.", -"deleted" => "ištrinta", "undo" => "anuliuoti", "Groups" => "Grupės", "Group Admin" => "Grupės administratorius", @@ -66,15 +65,9 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php yra registruotas tinklapio suplanuotų užduočių paslaugose, kad iškviesti cron.php kas 15 minučių per http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Naudoti sistemos planuotų užduočių paslaugą, kad iškvieti cron.php kas 15 minučių.", "Sharing" => "Dalijimasis", -"Enable Share API" => "Įjungti Share API", "Allow apps to use the Share API" => "Leidžia programoms naudoti Share API", -"Allow links" => "Lesti nuorodas", "Allow public uploads" => "Leisti viešus įkėlimus", -"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", -"Allow users to only share with users in their groups" => "Leisti naudotojams dalintis tik su naudotojais savo grupėje", "Security" => "Saugumas", "Enforce HTTPS" => "Reikalauti HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Verčia klientus jungtis prie %s per šifruotą ryšį.", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index e6ea1695063..1aa8bd049cf 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -27,7 +27,6 @@ $TRANSLATIONS = array( "Update" => "Atjaunināt", "Updated" => "Atjaunināta", "Decrypting files... Please wait, this can take some time." => "Atšifrēju failus... Uzgaidiet tas var ilgt kādu laiku.", -"deleted" => "izdzests", "undo" => "atsaukt", "Groups" => "Grupas", "Group Admin" => "Grupas administrators", @@ -53,15 +52,9 @@ $TRANSLATIONS = array( "Cron" => "Cron", "Execute one task with each page loaded" => "Izpildīt vienu uzdevumu ar katru ielādēto lapu", "Sharing" => "Dalīšanās", -"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 public uploads" => "Atļaut publisko augšupielādi", -"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", -"Allow users to only share with users in their groups" => "Ļaut lietotājiem dalīties ar lietotājiem to grupās", "Security" => "Drošība", "Enforce HTTPS" => "Uzspiest HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Uzspiest klientiem pieslēgties pie %s caur šifrētu savienojumu.", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 85077348ceb..f5748bc6f2a 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -1,15 +1,25 @@ <?php $TRANSLATIONS = array( +"Invalid value supplied for %s" => "Неправилна вредност е доставена за %s", +"Saved" => "Снимено", +"test email settings" => "провери ги нагодувањата за електронска пошта", "Email sent" => "Е-порака пратена", +"Send mode" => "Мод на испраќање", "Encryption" => "Енкрипција", +"Authentication method" => "Метод на автентификација", "Unable to load list from App Store" => "Неможам да вчитам листа од 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" => "Датотектие се успешно декриптирани", +"Encryption keys deleted permanently" => "Енкрипциските клучеви се трајно избришани", "Email saved" => "Електронската пошта е снимена", "Invalid 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" => "Администраторите неможе да се избришат себеси од админ групата", @@ -19,7 +29,9 @@ $TRANSLATIONS = array( "Wrong password" => "Погрешна лозинка", "No user supplied" => "Нема корисничко име", "Unable to change password" => "Вашата лозинка неможе да се смени", +"Sending..." => "Испраќам...", "User Documentation" => "Корисничка документација", +"Admin Documentation" => "Админстраторска документација", "Update to {appversion}" => "Надгради на {appversion}", "Disable" => "Оневозможи", "Enable" => "Овозможи", @@ -32,7 +44,15 @@ $TRANSLATIONS = array( "Update" => "Ажурирај", "Updated" => "Надграден", "Select a profile picture" => "Одбери фотографија за профилот", -"deleted" => "избришан", +"Very weak password" => "Многу слаба лозинка", +"Weak password" => "Слаба лозинка", +"So-so password" => "Така така лозинка", +"Good password" => "Добра лозинка", +"Strong password" => "Јака лозинка", +"Delete encryption keys permanently." => "Трајно бришење на енкрипциските клучеви.", +"Restore encryption keys." => "Поврати ги енкрипцисиките клучеви.", +"Error creating group" => "Грешка при креирање на група", +"A valid group name must be provided" => "Мора да се обезбеди валидно име на група", "undo" => "врати", "Groups" => "Групи", "Group Admin" => "Администратор на група", @@ -43,23 +63,50 @@ $TRANSLATIONS = array( "Error creating user" => "Грешка при креирање на корисникот", "A valid password must be provided" => "Мора да се обезбеди валидна лозинка", "__language_name__" => "__language_name__", +"Info, warnings, errors and fatal issues" => "Информации, предупредувања, грешки и фатални работи", +"Warnings, errors and fatal issues" => "Предупредувања, грешки и фатални работи", +"Errors and fatal issues" => "Грешки и фатални работи", +"Fatal issues only" => "Само фатални работи", "None" => "Ништо", "Login" => "Најава", +"Plain" => "Чиста", +"NT LAN Manager" => "NT LAN Менаџер", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Безбедносно предупредување", "Setup Warning" => "Предупредување при подесување", +"Database Performance Info" => "Информација за перформансите на базата на податоци", +"Your PHP version is outdated" => "Вашаа верзија на PHP е застарена", "Locale not working" => "Локалето не функционира", +"Internet connection not working" => "Интернет врската не работи", +"Cron" => "Крон", +"Execute one task with each page loaded" => "Изврши по една задача со секоја вчитана страница", "Sharing" => "Споделување", -"Enable Share API" => "Овозможи го API-то за споделување", "Allow apps to use the Share API" => "Дозволете апликациите да го користат API-то за споделување", -"Allow links" => "Дозволи врски", +"Allow users to share via link" => "Допушти корисниците да споделуваат со линкови", +"Enforce password protection" => "Наметни заштита на лозинка", "Allow public uploads" => "Дозволи јавен аплоуд", +"Set default expiration date" => "Постави основен датум на истекување", +"Expire after " => "Истекува по", +"days" => "денови", +"Enforce expiration date" => "Наметни датум на траење", "Allow resharing" => "Овозможи повторно споделување", -"Allow users to share with anyone" => "Овозможи корисниците да споделуваат со секого", -"Allow users to only share with users in their groups" => "Овозможи корисниците да споделуваат со корисници од своите групи", +"Restrict users to only share with users in their groups" => "Ограничи корисниците да споделуваат со корисници во своите групи", +"Exclude groups from sharing" => "Исклучи групи од споделување", "Security" => "Безбедност", "Enforce HTTPS" => "Наметни HTTPS", +"Email Server" => "Сервер за електронска пошта", +"This is used for sending out notifications." => "Ова се користи за испраќање на известувања.", +"From address" => "Од адреса", +"mail" => "Електронска пошта", +"Authentication required" => "Потребна е автентификација", "Server address" => "Адреса на сервер", "Port" => "Порта", +"Credentials" => "Акредитиви", +"SMTP Username" => "SMTP корисничко име", +"SMTP Password" => "SMTP лозинка", +"Test email settings" => "Провери ги нагодувањаа за електронска пошта", +"Send email" => "Испрати пошта", "Log" => "Записник", "Log level" => "Ниво на логирање", "More" => "Повеќе", @@ -69,14 +116,19 @@ $TRANSLATIONS = array( "Add your App" => "Додадете ја Вашата апликација", "More Apps" => "Повеќе аппликации", "Select an App" => "Избери аппликација", +"Documentation:" => "Документација:", "See application page at apps.owncloud.com" => "Види ја страницата со апликации на apps.owncloud.com", +"See application website" => "Види го веб сајтот на апликацијата", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-лиценцирано од <span class=\"author\"></span>", +"Enable only for specific groups" => "Овозможи само на специфицирани групи", "All" => "Сите", "Administrator Documentation" => "Администраторска документација", "Online Documentation" => "Документација на интернет", "Forum" => "Форум", +"Bugtracker" => "Тракер на грешки", "Commercial Support" => "Комерцијална подршка", "Get the apps to sync your files" => "Преземете апликации за синхронизирање на вашите датотеки", +"Show First Run Wizard again" => "Прикажи го повторно волшебникот при првото стартување", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Имате искористено <strong>%s</strong> од достапните <strong>%s</strong>", "Password" => "Лозинка", "Your password was changed" => "Вашата лозинка беше променета.", @@ -84,6 +136,7 @@ $TRANSLATIONS = array( "Current password" => "Моментална лозинка", "New password" => "Нова лозинка", "Change password" => "Смени лозинка", +"Full Name" => "Цело име", "Email" => "Е-пошта", "Your email address" => "Вашата адреса за е-пошта", "Profile picture" => "Фотографија за профил", @@ -91,19 +144,32 @@ $TRANSLATIONS = array( "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" => "Помогни во преводот", "Log-in password" => "Лозинка за најавување", "Decrypt all Files" => "Дешифрирај ги сите датотеки", +"Restore Encryption Keys" => "Обнови ги енкрипциските клучеви", +"Delete Encryption Keys" => "Избриши ги енкрипцисиките клучеви", "Login Name" => "Име за најава", "Create" => "Создај", +"Admin Recovery Password" => "Обновување на Admin лозинката", +"Search Users and Groups" => "Барај корисници и групи", +"Add Group" => "Додади група", +"Group" => "Група", +"Everyone" => "Секој", +"Admins" => "Администратори", "Default Quota" => "Предефинирана квота", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Ве молам внесете квота за просторот (нпр: \"512 MB\" или \"12 GB\")", "Unlimited" => "Неограничено", "Other" => "Останато", "Username" => "Корисничко име", "Quota" => "Квота", +"Storage Location" => "Локација на сториџот", +"Last Login" => "Последна најава", +"change full name" => "промена на целото име", "set new password" => "постави нова лозинка", "Default" => "Предефиниран" ); diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index 304d4f789e7..131930bf1c8 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -9,7 +9,6 @@ $TRANSLATIONS = array( "Enable" => "Aktif", "Error" => "Ralat", "Update" => "Kemaskini", -"deleted" => "dihapus", "Groups" => "Kumpulan", "Delete" => "Padam", "never" => "jangan", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index bc1c48681b5..153f47256de 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -43,7 +43,7 @@ $TRANSLATIONS = array( "User Documentation" => "Brukerdokumentasjon", "Admin Documentation" => "Admin-dokumentasjon", "Update to {appversion}" => "Oppdater til {appversion}", -"Disable" => "Slå avBehandle ", +"Disable" => "Deaktiver ", "Enable" => "Aktiver", "Please wait...." => "Vennligst vent...", "Error while disabling app" => "Deaktivering av app feilet", @@ -62,7 +62,8 @@ $TRANSLATIONS = array( "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", +"Error creating group" => "Feil ved oppretting av gruppe", +"A valid group name must be provided" => "Et gyldig gruppenavn må oppgis", "undo" => "angre", "Groups" => "Grupper", "Group Admin" => "Gruppeadministrator", @@ -93,6 +94,8 @@ $TRANSLATIONS = array( "Please double check the <a href=\"%s\">installation guides</a>." => "Vennligst dobbeltsjekk <a href=\"%s\">installasjonsveilederne</a>.", "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "Det ser ut for at PHP er satt opp til å fjerne innebygde doc blocks. Dette gjør at flere av kjerneapplikasjonene blir utilgjengelige.", "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "Dette forårsakes sannsynligvis av en bufrer/akselerator, som f.eks. Zend OPcache eller eAccelerator.", +"Database Performance Info" => "Info om databaseytelse", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "SQLite brukes som database. For større installasjoner anbefaler vi å endre dette. For å migrere til en annen database, bruk kommandolinjeverktøyet: 'occ db:convert-type'", "Module 'fileinfo' missing" => "Modulen 'fileinfo' mangler", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modulen 'fileinfo' mangler. Vi anbefaler at du aktiverer denne modulen for å kunne detektere mime-typen korrekt.", "Your PHP version is outdated" => "Din PHP-versjon er udatert", @@ -111,20 +114,16 @@ $TRANSLATIONS = array( "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.", "Sharing" => "Deling", -"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 via link" => "Tillat brukere å dele via lenke", "Enforce password protection" => "Tving passordbeskyttelse", "Allow public uploads" => "Tillat offentlig opplasting", "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", +"Restrict users to only share with users in their groups" => "Begrens brukere til kun å dele med brukere i deres grupper", "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.", @@ -149,7 +148,7 @@ $TRANSLATIONS = array( "More" => "Mer", "Less" => "Mindre", "Version" => "Versjon", -"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>." => "Utviklet av<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud sammfunnet</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">kildekoden</a> er lisensiert under <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", +"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>." => "Utviklet av <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-fellesskapet</a>. <a href=\"https://github.com/owncloud\" target=\"_blank\">Kildekoden</a> er lisensiert under <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "Add your App" => "Legg til din App", "More Apps" => "Flere Apps", "Select an App" => "Velg en app", @@ -157,6 +156,7 @@ $TRANSLATIONS = array( "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>", +"Enable only for specific groups" => "Aktiver kun for visse grupper", "All" => "Alle", "Administrator Documentation" => "Administratordokumentasjon", "Online Documentation" => "Online dokumentasjon", @@ -164,7 +164,7 @@ $TRANSLATIONS = array( "Bugtracker" => "Feilsporing", "Commercial Support" => "Kommersiell støtte", "Get the apps to sync your files" => "Få dine apps til å synkronisere dine filer", -"Show First Run Wizard again" => "Vis \"Førstegangs veiveiseren\" på nytt", +"Show First Run Wizard again" => "Vis \"Førstegangs veiviser\" på nytt", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Du har brukt <strong>%s</strong> av tilgjengelig <strong>%s</strong>", "Password" => "Passord", "Your password was changed" => "Passord har blitt endret", @@ -192,17 +192,23 @@ $TRANSLATIONS = array( "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", +"Login Name" => "Brukernavn", "Create" => "Opprett", "Admin Recovery Password" => "Administrativt gjenopprettingspassord", "Enter the recovery password in order to recover the users files during password change" => "Legg inn gjenopprettingspassordet for å gjenopprette brukerfilene når passordet endres", +"Search Users and Groups" => "Søk i brukere og grupper", +"Add Group" => "Legg til gruppe", "Group" => "Gruppe", -"Default Quota" => "Standard Kvote", +"Everyone" => "Alle", +"Admins" => "Administratorer", +"Default Quota" => "Standard kvote", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Legg inn lagringskvote (f.eks. \"512 MB\" eller \"12 GB\")", "Unlimited" => "Ubegrenset", "Other" => "Annet", "Username" => "Brukernavn", "Quota" => "Kvote", +"Storage Location" => "Lagringsplassering", +"Last Login" => "Siste innlogging", "change full name" => "endre fullt navn", "set new password" => "sett nytt passord", "Default" => "Standard" diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index e8a12a290e9..506ddf4fac4 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -62,12 +62,16 @@ $TRANSLATIONS = array( "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", +"Unable to delete {objName}" => "Kan {objName} niet verwijderen", +"Error creating group" => "Fout bij aanmaken groep", +"A valid group name must be provided" => "Er moet een geldige groepsnaam worden opgegeven", +"deleted {groupName}" => "verwijderd {groupName}", "undo" => "ongedaan maken", "Groups" => "Groepen", "Group Admin" => "Groep beheerder", "Delete" => "Verwijder", "never" => "geen", +"deleted {userName}" => "verwijderd {userName}", "add group" => "toevoegen groep", "A valid username must be provided" => "Er moet een geldige gebruikersnaam worden opgegeven", "Error creating user" => "Fout bij aanmaken gebruiker", @@ -91,6 +95,10 @@ $TRANSLATIONS = array( "Setup Warning" => "Instellingswaarschuwing", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt.", "Please double check the <a href=\"%s\">installation guides</a>." => "Conntroleer de <a href='%s'>installatie handleiding</a> goed.", +"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "PHP is blijkbaar zo ingesteld dat inline doc blokken worden gestript. Hierdoor worden verschillende kernmodules onbruikbaar.", +"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "Dit wordt vermoedelijk veroorzaakt door een cache/accelerator, zoals Zend OPcache of eAccelerator.", +"Database Performance Info" => "Database Performance Info", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "SQLite wordt gebruikt als database. Voor grotere installaties adviseren we dit aan te passen. Om te migreren naar een andere database moet u deze commandoregel tool gebruiken: 'occ db:convert-type'", "Module 'fileinfo' missing" => "Module 'fileinfo' ontbreekt", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie.", "Your PHP version is outdated" => "Uw PHP versie is verouderd", @@ -109,20 +117,16 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php is geregisteerd bij een webcron service om elke 15 minuten cron.php over http aan te roepen.", "Use systems cron service to call the cron.php file every 15 minutes." => "Gebruik de systeem cron service om cron.php elke 15 minuten aan te roepen.", "Sharing" => "Delen", -"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 via link" => "Sta gebruikers toe om te delen via een link", "Enforce password protection" => "Dwing wachtwoordbeveiliging af", "Allow public uploads" => "Sta publieke uploads toe", "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", +"Restrict users to only share with users in their groups" => "Laat gebruikers alleen delen met andere gebruikers in hun groepen", "Allow users to send mail notification for shared files" => "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", "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.", @@ -155,6 +159,7 @@ $TRANSLATIONS = array( "See application page at apps.owncloud.com" => "Zie de applicatiepagina op apps.owncloud.com", "See application website" => "Zie website van de applicatie", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-Gelicenseerd door <span class=\"author\"></span>", +"Enable only for specific groups" => "Alleen voor bepaalde groepen activeren", "All" => "Alle", "Administrator Documentation" => "Beheerdersdocumentatie", "Online Documentation" => "Online documentatie", @@ -194,13 +199,19 @@ $TRANSLATIONS = array( "Create" => "Aanmaken", "Admin Recovery Password" => "Beheer herstel wachtwoord", "Enter the recovery password in order to recover the users files during password change" => "Voer het herstel wachtwoord in om de gebruikersbestanden terug te halen bij wachtwoordwijziging", +"Search Users and Groups" => "Zoeken naar gebruikers en groepen", +"Add Group" => "Toevoegen groep", "Group" => "Groep", +"Everyone" => "Iedereen", +"Admins" => "Beheerders", "Default Quota" => "Standaard limiet", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Geef de opslagquotering op (bijv. \"512 MB\" of \"12 GB\")", "Unlimited" => "Ongelimiteerd", "Other" => "Anders", "Username" => "Gebruikersnaam", "Quota" => "Limieten", +"Storage Location" => "Opslaglocatie", +"Last Login" => "Laatste inlog", "change full name" => "wijzigen volledige naam", "set new password" => "Instellen nieuw wachtwoord", "Default" => "Standaard" diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 9c4617ab3cf..025472aff99 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -36,7 +36,6 @@ $TRANSLATIONS = array( "Updated" => "Oppdatert", "Select a profile picture" => "Vel eit profilbilete", "Decrypting files... Please wait, this can take some time." => "Dekrypterer filer … Ver venleg og vent, dette kan ta ei stund.", -"deleted" => "sletta", "undo" => "angra", "Groups" => "Grupper", "Group Admin" => "Gruppestyrar", @@ -61,15 +60,9 @@ $TRANSLATIONS = array( "Cron" => "Cron", "Execute one task with each page loaded" => "Utfør éi oppgåve for kvar sidelasting", "Sharing" => "Deling", -"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 public uploads" => "Tillat offentlege opplastingar", -"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", -"Allow users to only share with users in their groups" => "La brukarar dela berre med brukarar i deira grupper", "Security" => "Tryggleik", "Enforce HTTPS" => "Krev HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tvingar klientar til å kopla til %s med ei kryptert tilkopling.", diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php index 153f3898592..5f503dc5c15 100644 --- a/settings/l10n/oc.php +++ b/settings/l10n/oc.php @@ -15,7 +15,6 @@ $TRANSLATIONS = array( "Disable" => "Desactiva", "Enable" => "Activa", "Error" => "Error", -"deleted" => "escafat", "undo" => "defar", "Groups" => "Grops", "Group Admin" => "Grop Admin", @@ -27,7 +26,6 @@ $TRANSLATIONS = array( "Cron" => "Cron", "Execute one task with each page loaded" => "Executa un prètfach amb cada pagina cargada", "Sharing" => "Al partejar", -"Enable Share API" => "Activa API partejada", "Log" => "Jornal", "More" => "Mai d'aquò", "Add your App" => "Ajusta ton App", diff --git a/settings/l10n/pa.php b/settings/l10n/pa.php index aa83e11266d..f746f1f4caf 100644 --- a/settings/l10n/pa.php +++ b/settings/l10n/pa.php @@ -7,7 +7,6 @@ $TRANSLATIONS = array( "Updating...." => "...ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ", "Error" => "ਗਲਤੀ", "Updated" => "ਅੱਪਡੇਟ ਕੀਤਾ", -"deleted" => "ਹਟਾਈ", "undo" => "ਵਾਪਸ", "Groups" => "ਗਰੁੱਪ", "Group Admin" => "ਗਰੁੱਪ ਐਡਮਿਨ", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index f8aa5306963..3d0dc63f854 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -62,12 +62,16 @@ $TRANSLATIONS = array( "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", +"Unable to delete {objName}" => "Nie można usunąć {objName}", +"Error creating group" => "Błąd podczas tworzenia grupy", +"A valid group name must be provided" => "Należy podać prawidłową nazwę grupy", +"deleted {groupName}" => "usunięto {groupName}", "undo" => "cofnij", "Groups" => "Grupy", "Group Admin" => "Administrator grupy", "Delete" => "Usuń", "never" => "nigdy", +"deleted {userName}" => "usunięto {userName}", "add group" => "dodaj grupę", "A valid username must be provided" => "Należy podać prawidłową nazwę użytkownika", "Error creating user" => "Błąd podczas tworzenia użytkownika", @@ -93,6 +97,8 @@ $TRANSLATIONS = array( "Please double check the <a href=\"%s\">installation guides</a>." => "Proszę sprawdź ponownie <a href=\"%s\">przewodnik instalacji</a>.", "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "Wygląda na to, że ustawienia PHP ucinają bloki wklejonych dokumentów. To sprawi, że niektóre wbudowane aplikacje będą niedostępne.", "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "Dzieje się tak prawdopodobnie przez cache lub akcelerator taki jak Zend OPcache lub eAccelerator.", +"Database Performance Info" => "Informacja o wydajności bazy danych", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "Jako baza danych został użyty SQLite. Dla większych instalacji doradzamy zmianę na inną. Aby zmigrować do innej bazy danych, użyj narzędzia linii poleceń: 'occ db:convert-type'", "Module 'fileinfo' missing" => "Brak modułu „fileinfo”", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME.", "Your PHP version is outdated" => "Twoja wersja PHP jest za stara", @@ -111,20 +117,16 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php jest zarejestrowany w serwisie webcron do uruchamiania cron.php raz na 15 minut przez http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Użyj systemowego cron-a do uruchamiania cron.php raz na 15 minut.", "Sharing" => "Udostępnianie", -"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 via link" => "Pozwól użytkownikom współdzielić przez link", "Enforce password protection" => "Wymuś zabezpieczenie hasłem", "Allow public uploads" => "Pozwól na publiczne wczytywanie", "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", +"Restrict users to only share with users in their groups" => "Ogranicz użytkowników do współdzielenia wyłącznie pomiędzy użytkownikami swoich grup", "Allow users to send mail notification for shared files" => "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików", "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.", @@ -157,6 +159,7 @@ $TRANSLATIONS = array( "See application page at apps.owncloud.com" => "Zobacz stronę aplikacji na apps.owncloud.com", "See application website" => "Zobacz na stronie aplikacji", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencjonowane przez <span class=\"author\"></span>", +"Enable only for specific groups" => "Włącz tylko dla określonych grup", "All" => "Wszystkie", "Administrator Documentation" => "Dokumentacja administratora", "Online Documentation" => "Dokumentacja online", @@ -196,13 +199,19 @@ $TRANSLATIONS = array( "Create" => "Utwórz", "Admin Recovery Password" => "Odzyskiwanie hasła administratora", "Enter the recovery password in order to recover the users files during password change" => "Wpisz hasło odzyskiwania, aby odzyskać pliki użytkowników podczas zmiany hasła", +"Search Users and Groups" => "Przeszukuj użytkowników i grupy", +"Add Group" => "Dodaj grupę", "Group" => "Grupa", +"Everyone" => "Wszyscy", +"Admins" => "Administratorzy", "Default Quota" => "Domyślny udział", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Proszę ustawić ograniczenie zasobów (np. \"512 MB\" albo \"12 GB)", "Unlimited" => "Bez limitu", "Other" => "Inne", "Username" => "Nazwa użytkownika", "Quota" => "Udział", +"Storage Location" => "Lokalizacja magazynu", +"Last Login" => "Ostatnio zalogowany", "change full name" => "Zmień pełna nazwę", "set new password" => "ustaw nowe hasło", "Default" => "Domyślny" diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 6e02937d093..f62a1c3ca28 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -62,12 +62,16 @@ $TRANSLATIONS = array( "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", +"Unable to delete {objName}" => "Não é possível excluir {objName}", +"Error creating group" => "Erro ao criar grupo", +"A valid group name must be provided" => "Um nome de grupo válido deve ser fornecido", +"deleted {groupName}" => "eliminado {groupName}", "undo" => "desfazer", "Groups" => "Grupos", "Group Admin" => "Grupo Administrativo", "Delete" => "Excluir", "never" => "nunca", +"deleted {userName}" => "eliminado {userName}", "add group" => "adicionar grupo", "A valid username must be provided" => "Forneça um nome de usuário válido", "Error creating user" => "Erro ao criar usuário", @@ -93,6 +97,8 @@ $TRANSLATIONS = array( "Please double check the <a href=\"%s\">installation guides</a>." => "Por favor, verifique os <a href='%s'>guias de instalação</a>.", "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "PHP é, aparentemente, a configuração para retirar blocos doc inline. Isso fará com que vários aplicativos do núcleo fiquem inacessíveis.", "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "Isso provavelmente é causado por uma cache/acelerador, como Zend OPcache ou eAccelerator.", +"Database Performance Info" => "Informações de Desempenho do Banco de Dados", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "SQLite é usada como base de dados. Para instalações grandes instalações recomendamos mudar isso. Para migrar para outro banco de dados usar a ferramenta de linha de comando: 'occ db: converter-type'", "Module 'fileinfo' missing" => "Módulo 'fileinfo' faltando", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este módulo para obter uma melhor detecção do tipo de mídia (mime-type).", "Your PHP version is outdated" => "Sua versão de PHP está desatualizada", @@ -111,20 +117,16 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php está registrado no serviço webcron para chamar cron.php a cada 15 minutos sobre http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Use o sistema de serviço cron para chamar o arquivo cron.php a cada 15 minutos.", "Sharing" => "Compartilhamento", -"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 via link" => "Permitir que os usuários compartilhem por link", "Enforce password protection" => "Reforce a proteção por senha", "Allow public uploads" => "Permitir envio público", "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", +"Restrict users to only share with users in their groups" => "Restringir os usuários a compartilhar somente com os usuários em seus grupos", "Allow users to send mail notification for shared files" => "Permitir aos usuários enviar notificação de email para arquivos compartilhados", "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.", @@ -157,6 +159,7 @@ $TRANSLATIONS = array( "See application page at apps.owncloud.com" => "Ver página do aplicativo em apps.owncloud.com", "See application website" => "Consulte o site aplicação", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licenciado por <span class=\"author\"></span>", +"Enable only for specific groups" => "Ativar apenas para grupos específicos", "All" => "Todos", "Administrator Documentation" => "Documentação de Administrador", "Online Documentation" => "Documentação Online", @@ -196,13 +199,19 @@ $TRANSLATIONS = array( "Create" => "Criar", "Admin Recovery Password" => "Recuperação da Senha do Administrador", "Enter the recovery password in order to recover the users files during password change" => "Digite a senha de recuperação para recuperar os arquivos dos usuários durante a mudança de senha.", +"Search Users and Groups" => "Pesquisar Usuários e Grupos", +"Add Group" => "Adicionar grupo", "Group" => "Grupo", +"Everyone" => "Para todos", +"Admins" => "Administradores", "Default Quota" => "Quota Padrão", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Por favor insira cota de armazenamento (ex: \"512\" ou \"12 GB\")", "Unlimited" => "Ilimitado", "Other" => "Outro", "Username" => "Nome de Usuário", "Quota" => "Cota", +"Storage Location" => "Local de Armazenamento", +"Last Login" => "Último Login", "change full name" => "alterar nome completo", "set new password" => "definir nova senha", "Default" => "Padrão" diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 9febec0171e..df7ea1d45b3 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -62,12 +62,15 @@ $TRANSLATIONS = array( "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", +"Error creating group" => "Erro ao criar grupo", +"A valid group name must be provided" => "Um nome válido do grupo tem de ser fornecido", +"deleted {groupName}" => "apagar {Nome do grupo}", "undo" => "desfazer", "Groups" => "Grupos", "Group Admin" => "Grupo Administrador", "Delete" => "Eliminar", "never" => "nunca", +"deleted {userName}" => "apagar{utilizador}", "add group" => "Adicionar grupo", "A valid username must be provided" => "Um nome de utilizador válido deve ser fornecido", "Error creating user" => "Erro a criar utilizador", @@ -91,6 +94,7 @@ $TRANSLATIONS = array( "Setup Warning" => "Aviso de setup", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas.", "Please double check the <a href=\"%s\">installation guides</a>." => "Por favor verifique o<a href='%s'>Guia de instalação</a>.", +"Database Performance Info" => "Informação sobre desempenho da Base de Dados", "Module 'fileinfo' missing" => "Falta o módulo 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime.", "Your PHP version is outdated" => "A sua versão do PHP está ultrapassada", @@ -109,20 +113,15 @@ $TRANSLATIONS = array( "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.", "Sharing" => "Partilha", -"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 via link" => "Permitir que os utilizadores partilhem através do link", "Enforce password protection" => "Forçar protecção da palavra passe", "Allow public uploads" => "Permitir Envios Públicos", "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 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.", @@ -194,7 +193,10 @@ $TRANSLATIONS = array( "Create" => "Criar", "Admin Recovery Password" => "Recuperar password de administrador", "Enter the recovery password in order to recover the users files during password change" => "Digite a senha de recuperação, a fim de recuperar os arquivos de usuários durante a mudança de senha", +"Add Group" => "Adicionar grupo", "Group" => "Grupo", +"Everyone" => "Para todos", +"Admins" => "Administrador", "Default Quota" => "Quota por padrão", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Insira a quota de armazenamento (ex: \"512 MB\" ou \"12 GB\")", "Unlimited" => "Ilimitado", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 631a1c45424..48c1bc1a024 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -46,7 +46,6 @@ $TRANSLATIONS = array( "Very weak password" => "Parolă foarte slabă", "Weak password" => "Parolă slabă", "Decrypting files... Please wait, this can take some time." => "Decriptare fișiere... Te rog așteaptă, poate dura ceva timp.", -"deleted" => "șters", "undo" => "Anulează ultima acțiune", "Groups" => "Grupuri", "Group Admin" => "Grupul Admin ", @@ -74,15 +73,9 @@ $TRANSLATIONS = array( "Cron" => "Cron", "Execute one task with each page loaded" => "Execută o sarcină la fiecare pagină încărcată", "Sharing" => "Partajare", -"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 public uploads" => "Permite încărcări publice", -"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", -"Allow users to only share with users in their groups" => "Permite utilizatorilor să partajeze doar cu utilizatori din același grup", "Allow users to send mail notification for shared files" => "Permite utilizatorilor sa expedieze notificări prin e-mail pentru dosarele comune", "Security" => "Securitate", "Forces the clients to connect to %s via an encrypted connection." => "Forțează clienții să se conecteze la %s folosind o conexiune sigură", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 5d7518b9c84..3be9462fd0b 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -57,7 +57,8 @@ $TRANSLATIONS = array( "Good password" => "Хороший пароль", "Strong password" => "Устойчивый к взлому пароль", "Decrypting files... Please wait, this can take some time." => "Расшифровка файлов... Пожалуйста, подождите, это может занять некоторое время.", -"deleted" => "удален", +"Unable to delete {objName}" => "Невозможно удалить {objName}", +"Error creating group" => "Ошибка создания группы", "undo" => "отмена", "Groups" => "Группы", "Group Admin" => "Администратор группы", @@ -99,15 +100,9 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php зарегестрирован в webcron и будет вызываться каждые 15 минут по http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Использовать системный cron для вызова cron.php каждые 15 минут.", "Sharing" => "Общий доступ", -"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 items shared with them again" => "Позволить пользователям открывать общий доступ к эллементам уже открытым в общий доступ", -"Allow users to share with anyone" => "Разрешить пользователя делать общий доступ любому", -"Allow users to only share with users in their groups" => "Разрешить пользователям делать общий доступ только для пользователей их групп", "Allow users to send mail notification for shared files" => "Разрешить пользователю оповещать почтой о расшаренных файлах", "Security" => "Безопасность", "Enforce HTTPS" => "Принудить к HTTPS", @@ -172,7 +167,10 @@ $TRANSLATIONS = array( "Create" => "Создать", "Admin Recovery Password" => "Восстановление пароля администратора", "Enter the recovery password in order to recover the users files during password change" => "Введите пароль для того, чтобы восстановить файлы пользователей при смене пароля", +"Add Group" => "Добавить группу", "Group" => "Группа", +"Everyone" => "Все", +"Admins" => "Администраторы", "Default Quota" => "Квота по умолчанию", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Пожалуйста, введите квоту на хранилище (например: \"512 MB\" или \"12 GB\")", "Unlimited" => "Неограниченно", diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php index fe36bd21ba8..898ff77f6af 100644 --- a/settings/l10n/si_LK.php +++ b/settings/l10n/si_LK.php @@ -25,11 +25,7 @@ $TRANSLATIONS = array( "Login" => "ප්රවිශ්ටය", "Security Warning" => "ආරක්ෂක නිවේදනයක්", "Sharing" => "හුවමාරු කිරීම", -"Allow 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" => "තම කණ්ඩායමේ අයෙකු හා පමණක් හුවමාරුවට අවසර දෙමි", "Server address" => "සේවාදායකයේ ලිපිනය", "Port" => "තොට", "Log" => "ලඝුව", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index 30742f30a87..f0e8ffcdea6 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -17,12 +17,16 @@ $TRANSLATIONS = array( "Group already exists" => "Skupina už existuje", "Unable to add group" => "Nie je možné pridať skupinu", "Files decrypted successfully" => "Súbory sú úspešne dešifrované", -"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Nemožno dešifrovať vaše súbory, skontrolujte svoj owncloud.log alebo požiadajte o pomoc správcu", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Nemožno dešifrovať vaše súbory, skontrolujte svoj owncloud.log alebo požiadajte o pomoc adminstrátora", "Couldn't decrypt your files, check your password and try again" => "Nemožno dešifrovať vaše súbory, skontrolujte svoje heslo a skúste to znova", +"Encryption keys deleted permanently" => "Šifrovacie kľúče sú trvale vymazané", +"Couldn't permanently delete your encryption keys, please check your owncloud.log or ask your administrator" => "Nebolo možné natrvalo vymazať vaše šifrovacie kľúče, skontrolujte si prosím owncloud.log alebo kontaktujte svojho správcu", "Email saved" => "Email uložený", "Invalid email" => "Neplatný email", "Unable to delete group" => "Nie je možné odstrániť skupinu", "Unable to delete user" => "Nie je možné odstrániť používateľa", +"Backups restored successfully" => "Zálohy boli úspešne obnovené", +"Couldn't restore your encryption keys, please check your owncloud.log or ask your administrator" => "Nebolo možné obnoviť vaše šifrovacie kľúče, skontrolujte si prosím owncloud.log alebo kontaktujte svojho správcu", "Language changed" => "Jazyk zmenený", "Invalid request" => "Neplatná požiadavka", "Admins can't remove themself from the admin group" => "Administrátori nesmú odstrániť sami seba zo skupiny admin", @@ -37,7 +41,7 @@ $TRANSLATIONS = array( "Unable to change password" => "Zmena hesla sa nepodarila", "Sending..." => "Odosielam...", "User Documentation" => "Príručka používateľa", -"Admin Documentation" => "Príručka správcu", +"Admin Documentation" => "Príručka administrátora", "Update to {appversion}" => "Aktualizovať na {appversion}", "Disable" => "Zakázať", "Enable" => "Zapnúť", @@ -56,12 +60,18 @@ $TRANSLATIONS = array( "Good password" => "Dobré heslo", "Strong password" => "Silné heslo", "Decrypting files... Please wait, this can take some time." => "Dešifrujem súbory ... Počkajte prosím, môže to chvíľu trvať.", -"deleted" => "zmazané", +"Delete encryption keys permanently." => "Natrvalo vymazať šifrovacie kľúče.", +"Restore encryption keys." => "Obnoviť šifrovacie kľúče.", +"Unable to delete {objName}" => "Nemožno vymazať {objName}", +"Error creating group" => "Chyba pri vytváraní skupiny", +"A valid group name must be provided" => "Musíte zadať platný názov skupiny", +"deleted {groupName}" => "vymazaná {groupName}", "undo" => "vrátiť", "Groups" => "Skupiny", "Group Admin" => "Správca skupiny", "Delete" => "Zmazať", "never" => "nikdy", +"deleted {userName}" => "vymazané {userName}", "add group" => "pridať skupinu", "A valid username must be provided" => "Musíte zadať platné používateľské meno", "Error creating user" => "Chyba pri vytváraní používateľa", @@ -82,9 +92,12 @@ $TRANSLATIONS = array( "Security Warning" => "Bezpečnostné upozornenie", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Do %s máte prístup cez HTTP. Dôrazne odporúčame nakonfigurovať server tak, aby namiesto toho vyžadoval použitie 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." => "Váš priečinok s dátami aj vaše súbory sú pravdepodobne prístupné z internetu. Súbor .htaccess nefunguje. Odporúčame nakonfigurovať webový server tak, aby priečinok s dátami nebol naďalej prístupný, alebo presunúť priečinok s dátami mimo priestor sprístupňovaný webovým serverom.", -"Setup Warning" => "Nastavenia oznámení", +"Setup Warning" => "Nastavenia oznámení a upozornení", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené.", "Please double check the <a href=\"%s\">installation guides</a>." => "Skontrolujte prosím znovu <a href=\"%s\">inštalačnú príručku</a>.", +"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "To je pravdepodobne spôsobené cache/akcelerátorom ako napr. Zend OPcache alebo eAccelerator.", +"Database Performance Info" => "Informácie o výkone databázy", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "Ako databáza je použitá SQLite. Pre väčšie inštalácie vám to odporúčame zmeniť. Na prenos do inej databázy použite nástroj príkazového riadka: \"occ db:convert-typ\"", "Module 'fileinfo' missing" => "Chýba modul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu.", "Your PHP version is outdated" => "Vaša PHP verzia je zastaraná", @@ -96,23 +109,26 @@ $TRANSLATIONS = array( "Internet connection not working" => "Pripojenie na internet nefunguje", "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." => "Server nemá funkčné pripojenie k internetu. Niektoré moduly ako napr. externé úložisko, oznámenie o dostupných aktualizáciách alebo inštalácia aplikácií tretích strán nebudú fungovať. Prístup k súborom z iných miest a odosielanie oznamovacích emailov tiež nemusí fungovať. Ak chcete využívať všetky vlastnosti ownCloudu, odporúčame povoliť pripojenie k internetu tomuto serveru.", "Cron" => "Cron", +"Last cron was executed at %s." => "Posledný cron bol spustený %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Posledný cron bol spustený %s. To je viac ako pred hodinou. Zdá sa, že niečo nie je vporiadku.", "Cron was not executed yet!" => "Cron sa ešte nespustil!", "Execute one task with each page loaded" => "Vykonať jednu úlohu s každým načítaní stránky", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php je zaregistrovaná v službe WebCron a zavolá cron.php každých 15 minút cez http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Použite systémovú službu cron, ktorá zavolá súbor cron.php každých 15 minút.", "Sharing" => "Zdieľanie", -"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 via link" => "Povoliť používateľom zdieľanie pomocou odkazov", +"Enforce password protection" => "Vynútiť ochranu heslom", "Allow public uploads" => "Povoliť verejné nahrávanie súborov", -"Expire after " => "Platnosť", +"Set default expiration date" => "Nastaviť predvolený dátum expirácie", +"Expire after " => "Platnosť do", "days" => "dni", -"Allow users to share items to the public with links" => "Povoliť používateľom zdieľať položky pre verejnosť cez odkazy", +"Enforce expiration date" => "Vynútiť dátum expirácie", "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", +"Restrict users to only share with users in their groups" => "Povoliť používateľom zdieľanie len medzi nimi v rámci skupiny", "Allow users to send mail notification for shared files" => "Povoliť používateľom zasielať emailom oznámenie o zdieľaní súborov", +"Exclude groups from sharing" => "Vybrať skupiny zo zdieľania", +"These groups will still be able to receive shares, but not to initiate them." => "Tieto skupiny budú môcť stále zdieľať, ale sami nemôžu zdieľať ostatným.", "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.", @@ -120,6 +136,7 @@ $TRANSLATIONS = array( "Email Server" => "Email server", "This is used for sending out notifications." => "Používa sa na odosielanie upozornení.", "From address" => "Z adresy", +"mail" => "email", "Authentication required" => "Vyžaduje sa overenie", "Server address" => "Adresa servera", "Port" => "Port", @@ -141,13 +158,14 @@ $TRANSLATIONS = array( "See application page at apps.owncloud.com" => "Pozrite si stránku aplikácií na apps.owncloud.com", "See application website" => "Pozrite si webstránku aplikácie", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licencované <span class=\"author\"></span>", +"Enable only for specific groups" => "Povoliť len pre vybrané skupiny", "All" => "Všetky", "Administrator Documentation" => "Príručka administrátora", "Online Documentation" => "Online príručka", "Forum" => "Fórum", "Bugtracker" => "Bugtracker", "Commercial Support" => "Komerčná podpora", -"Get the apps to sync your files" => "Získať aplikácie na synchronizáciu Vašich súborov", +"Get the apps to sync your files" => "Získať aplikácie na synchronizáciu vašich súborov", "Show First Run Wizard again" => "Znovu zobraziť sprievodcu prvým spustením", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Použili ste <strong>%s</strong> z <strong>%s</strong> dostupných ", "Password" => "Heslo", @@ -159,6 +177,7 @@ $TRANSLATIONS = array( "Full Name" => "Meno a priezvisko", "Email" => "Email", "Your email address" => "Vaša emailová adresa", +"Fill in an email address to enable password recovery and receive notifications" => "Zadajte emailovú adresu pre umožnenie obnovy zabudnutého hesla a pre prijímanie upozornení a oznámení", "Profile picture" => "Avatar", "Upload new" => "Nahrať nový", "Select new from Files" => "Vyberte nový zo súborov", @@ -172,17 +191,26 @@ $TRANSLATIONS = array( "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", +"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 šifrovacie kľúče boli zazálohované. Ak by sa niečo nepodarilo, dajú sa znovu obnoviť. Natrvalo ich vymažte len ak ste si istí, že sú všetky súbory bezchybne dešifrované.", +"Restore Encryption Keys" => "Obnoviť šifrovacie kľúče", +"Delete Encryption Keys" => "Vymazať šifrovacie kľúče", "Login Name" => "Prihlasovacie meno", "Create" => "Vytvoriť", "Admin Recovery Password" => "Obnovenie hesla administrátora", "Enter the recovery password in order to recover the users files during password change" => "Zadajte heslo pre obnovenie súborov používateľa pri zmene hesla", +"Search Users and Groups" => "Prehľadať používateľov a skupiny", +"Add Group" => "Pridať skupinu", "Group" => "Skupina", +"Everyone" => "Všetci", +"Admins" => "Administrátori", "Default Quota" => "Predvolená kvóta", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Prosím zadajte kvótu úložného priestoru (napr.: \"512 MB\" alebo \"12 GB\")", "Unlimited" => "Nelimitované", "Other" => "Iné", "Username" => "Používateľské meno", "Quota" => "Kvóta", +"Storage Location" => "Umiestnenie úložiska", +"Last Login" => "Posledné prihlásenie", "change full name" => "zmeniť meno a priezvisko", "set new password" => "nastaviť nové heslo", "Default" => "Predvolené" diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index d8748d4cbd7..f0ac6eea30b 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -55,7 +55,6 @@ $TRANSLATIONS = array( "Good password" => "Dobro geslo", "Strong password" => "Odlično geslo", "Decrypting files... Please wait, this can take some time." => "Poteka odšifriranje datotek ... Opravilo je lahko dolgotrajno.", -"deleted" => "izbrisano", "undo" => "razveljavi", "Groups" => "Skupine", "Group Admin" => "Skrbnik skupine", @@ -102,15 +101,9 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "Datoteka cron.php je vpisana v storitvi webcron za potrditev sklica vsakih 15 minut pri povezavi preko HTTP.", "Use systems cron service to call the cron.php file every 15 minutes." => "Uporabi storitev periodičnih opravil za klic datoteke cron.php vsakih 15 minut.", "Sharing" => "Souporaba", -"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 public uploads" => "Dovoli javno pošiljanje datotek v oblak", -"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", -"Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine", "Allow users to send mail notification for shared files" => "Dovoli uporabnikom pošiljati obvestila o souporabi datotek po elektronski pošti.", "Security" => "Varnost", "Enforce HTTPS" => "Zahtevaj uporabo HTTPS", diff --git a/settings/l10n/sq.php b/settings/l10n/sq.php index 752fb7df116..b8d36313abc 100644 --- a/settings/l10n/sq.php +++ b/settings/l10n/sq.php @@ -25,7 +25,6 @@ $TRANSLATIONS = array( "Error" => "Gabim", "Update" => "Përditësim", "Updated" => "I përditësuar", -"deleted" => "fshirë", "undo" => "anullo veprimin", "Groups" => "Grupet", "Group Admin" => "Grupi Admin", @@ -46,15 +45,9 @@ $TRANSLATIONS = array( "Cron" => "Cron", "Execute one task with each page loaded" => "Kryeni vetëm një veprim me secilën prej faqeve të ngarkuara", "Sharing" => "Ndarje", -"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 public uploads" => "Lejo ngarkimin publik", -"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", -"Allow users to only share with users in their groups" => "Lejoni përdoruesit të ndajnë vetëm me përdorues të të njëjtit grup", "Security" => "Siguria", "Enforce HTTPS" => "Detyro HTTPS", "Port" => "Porta", diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index ea9292b2427..9511926ec02 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -26,7 +26,6 @@ $TRANSLATIONS = array( "Error" => "Грешка", "Update" => "Ажурирај", "Updated" => "Ажурирано", -"deleted" => "обрисано", "undo" => "опозови", "Groups" => "Групе", "Group Admin" => "Управник групе", @@ -48,14 +47,8 @@ $TRANSLATIONS = array( "Internet connection not working" => "Веза с интернетом не ради", "Execute one task with each page loaded" => "Изврши један задатак са сваком учитаном страницом", "Sharing" => "Дељење", -"Enable Share API" => "Омогући API Share", "Allow apps to use the Share API" => "Дозвољава апликацијама да користе API Share", -"Allow links" => "Дозволи везе", -"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" => "Дозволи корисницима да деле само са корисницима у њиховим групама", "Security" => "Безбедност", "Enforce HTTPS" => "Наметни HTTPS", "Server address" => "Адреса сервера", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index d6f44986620..1b8c81d5d70 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -62,7 +62,8 @@ $TRANSLATIONS = array( "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", +"Error creating group" => "Fel vid skapande av grupp", +"A valid group name must be provided" => "Ett giltigt gruppnamn måste anges", "undo" => "ångra", "Groups" => "Grupper", "Group Admin" => "Gruppadministratör", @@ -109,20 +110,14 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "cron.php är registrerad som en webcron service att ropa på cron.php varje 15 minuter över http.", "Use systems cron service to call the cron.php file every 15 minutes." => "Använd systemets cron service att ropa på cron.php filen varje 15 minuter.", "Sharing" => "Dela", -"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", "Enforce password protection" => "Tillämpa lösenordskydd", "Allow public uploads" => "Tillåt offentlig uppladdning", "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 users to send mail notification for shared files" => "Tillåt användare att skicka mailnotifieringar för delade filer", "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.", @@ -155,6 +150,7 @@ $TRANSLATIONS = array( "See application page at apps.owncloud.com" => "Se programsida på apps.owncloud.com", "See application website" => "Se applikationens webbplats", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-licensierad av <span class=\"author\"></span>", +"Enable only for specific groups" => "Aktivera endast för specifika grupper", "All" => "Alla", "Administrator Documentation" => "Administratörsdokumentation", "Online Documentation" => "Onlinedokumentation", @@ -194,13 +190,18 @@ $TRANSLATIONS = array( "Create" => "Skapa", "Admin Recovery Password" => "Admin återställningslösenord", "Enter the recovery password in order to recover the users files during password change" => "Enter the recovery password in order to recover the users files during password change", +"Search Users and Groups" => "Sök Användare och Grupper", +"Add Group" => "Lägg till Grupp", "Group" => "Grupp", +"Everyone" => "Alla", +"Admins" => "Administratörer", "Default Quota" => "Förvald datakvot", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Var god skriv in lagringskvot (ex: \"512MB\" eller \"12 GB\")", "Unlimited" => "Obegränsad", "Other" => "Annat", "Username" => "Användarnamn", "Quota" => "Kvot", +"Last Login" => "Senaste inloggning", "change full name" => "ändra hela namnet", "set new password" => "ange nytt lösenord", "Default" => "Förvald" diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 527235919c9..dac008ae9ce 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -26,7 +26,6 @@ $TRANSLATIONS = array( "Error" => "ข้อผิดพลาด", "Update" => "อัพเดท", "Updated" => "อัพเดทแล้ว", -"deleted" => "ลบแล้ว", "undo" => "เลิกทำ", "Groups" => "กลุ่ม", "Group Admin" => "ผู้ดูแลกลุ่ม", @@ -39,14 +38,8 @@ $TRANSLATIONS = array( "Cron" => "Cron", "Execute one task with each page loaded" => "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ", "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 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" => "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น", "Server address" => "ที่อยู่เซิร์ฟเวอร์", "Port" => "พอร์ต", "Credentials" => "ข้อมูลส่วนตัวสำหรับเข้าระบบ", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 27b1f280d03..9d11bb4ae0c 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -62,15 +62,16 @@ $TRANSLATIONS = array( "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.", -"Unable to delete " => "Silinemeyen: ", +"Unable to delete {objName}" => "{objName} silinemiyor", "Error creating group" => "Grup oluşturulurken hata", "A valid group name must be provided" => "Geçerli bir grup adı mutlaka sağlanmalı", -"deleted" => "silinen:", +"deleted {groupName}" => "{groupName} silindi", "undo" => "geri al", "Groups" => "Gruplar", "Group Admin" => "Grup Yöneticisi", "Delete" => "Sil", -"never" => "asla", +"never" => "hiçbir zaman", +"deleted {userName}" => "{userName} silindi", "add group" => "grup ekle", "A valid username must be provided" => "Geçerli bir kullanıcı adı mutlaka sağlanmalı", "Error creating user" => "Kullanıcı oluşturulurken hata", @@ -97,7 +98,7 @@ $TRANSLATIONS = array( "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." => "PHP satırıçi doc bloklarını ayıklamak üzere yapılandırılmış gibi görünüyor. Bu, bazı çekirdek (core) uygulamalarını erişilemez yapacak.", "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." => "Bu, muhtemelen Zend OPcache veya eAccelerator gibi bir önbellek/hızlandırıcı nedeniyle gerçekleşir.", "Database Performance Info" => "Veritabanı Başarım Bilgisi", -"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "Veritabanı olarak SQLite kullanılacak. Daha büyük kurulumlar için bunu değiştirmenizi öneririz. Farklı bir veritabanına geçiş yapmak için komut satırı aracını kullanın: 'occ db:convert-type'", +"SQLite is used as database. For larger installations we recommend to change this. To migrate to another database use the command line tool: 'occ db:convert-type'" => "Veritabanı olarak SQLite kullanılıyor. Daha büyük kurulumlar için bunu değiştirmenizi öneririz. Farklı bir veritabanına geçiş yapmak için komut satırı aracını kullanın: 'occ db:convert-type'", "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 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", @@ -116,20 +117,16 @@ $TRANSLATIONS = array( "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.", "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 via link" => "Kullanıcıların bağlantı ile paylaşmasına izin ver", "Enforce password protection" => "Parola korumasını zorla", "Allow public uploads" => "Herkes tarafından yüklemeye 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 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", +"Restrict users to only share with users in their groups" => "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına sınırla", "Allow users to send mail notification for shared files" => "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver", "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.", @@ -207,7 +204,7 @@ $TRANSLATIONS = array( "Group" => "Grup", "Everyone" => "Herkes", "Admins" => "Yöneticiler", -"Default Quota" => "Varsayılan Kota", +"Default Quota" => "Öntanımlı Kota", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "Lütfen disk alanı kotasını girin (örnek: \"512MB\" veya \"12GB\")", "Unlimited" => "Sınırsız", "Other" => "Diğer", diff --git a/settings/l10n/ug.php b/settings/l10n/ug.php index 1e0169efa81..af1385f0fe0 100644 --- a/settings/l10n/ug.php +++ b/settings/l10n/ug.php @@ -25,7 +25,6 @@ $TRANSLATIONS = array( "Error" => "خاتالىق", "Update" => "يېڭىلا", "Updated" => "يېڭىلاندى", -"deleted" => "ئۆچۈرۈلگەن", "undo" => "يېنىۋال", "Groups" => "گۇرۇپپا", "Group Admin" => "گۇرۇپپا باشقۇرغۇچى", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 4997dadb4bb..1a4d48feb7d 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -30,7 +30,6 @@ $TRANSLATIONS = array( "Weak password" => "Слабкий пароль", "Good password" => "Добрий пароль", "Strong password" => "Надійний пароль", -"deleted" => "видалені", "undo" => "відмінити", "Groups" => "Групи", "Group Admin" => "Адміністратор групи", @@ -53,14 +52,8 @@ $TRANSLATIONS = array( "Cron" => "Cron", "Execute one task with each page loaded" => "Виконати одне завдання для кожної завантаженої сторінки ", "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 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" => "Дозволити користувачам відкривати спільний доступ лише для користувачів з їхньої групи", "Security" => "Безпека", "Enforce HTTPS" => "Примусове застосування HTTPS", "Server address" => "Адреса сервера", diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index c2fca2200ca..595d203b227 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -28,7 +28,6 @@ $TRANSLATIONS = array( "Error" => "Lỗi", "Update" => "Cập nhật", "Updated" => "Đã cập nhật", -"deleted" => "đã xóa", "undo" => "lùi lại", "Groups" => "Nhóm", "Group Admin" => "Nhóm quản trị", @@ -42,14 +41,8 @@ $TRANSLATIONS = array( "Cron" => "Cron", "Execute one task with each page loaded" => "Thực thi tác vụ mỗi khi trang được tải", "Sharing" => "Chia sẻ", -"Enable Share API" => "Bật chia sẻ API", "Allow apps to use the Share API" => "Cho phép các ứng dụng sử dụng chia sẻ API", -"Allow links" => "Cho phép liên kết", -"Allow users to share items to the public with links" => "Cho phép người dùng chia sẻ công khai các mục bằng các liên kết", "Allow resharing" => "Cho phép chia sẻ lại", -"Allow users to share items shared with them again" => "Cho phép người dùng chia sẻ lại những mục đã được chia sẻ", -"Allow users to share with anyone" => "Cho phép người dùng chia sẻ với bất cứ ai", -"Allow users to only share with users in their groups" => "Chỉ cho phép người dùng chia sẻ với những người dùng trong nhóm của họ", "Server address" => "Địa chỉ máy chủ", "Port" => "Cổng", "Credentials" => "Giấy chứng nhận", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 8bf9edf94a4..5a5336353ed 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -6,7 +6,7 @@ $TRANSLATIONS = array( "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." => "在发送测试邮件钱您需要设置您的用户电子邮件", +"You need to set your user email before being able to send test emails." => "在发送测试邮件前您需要设置您的用户电子邮件。", "Send mode" => "发送模式", "Encryption" => "加密", "Authentication method" => "认证方法", @@ -15,7 +15,7 @@ $TRANSLATIONS = array( "Your full name has been changed." => "您的全名已修改。", "Unable to change full name" => "无法修改全名", "Group already exists" => "已存在该组", -"Unable to add group" => "无法添加组", +"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" => "无法解密您的文件,请检查密码并重试。", @@ -26,7 +26,7 @@ $TRANSLATIONS = array( "Language changed" => "语言已修改", "Invalid request" => "无效请求", "Admins can't remove themself from the admin group" => "管理员不能将自己移出管理组。", -"Unable to add user to group %s" => "无法把用户添加到组 %s", +"Unable to add user to group %s" => "无法把用户增加到组 %s", "Unable to remove user from group %s" => "无法从组%s中移除用户", "Couldn't update app." => "无法更新 app。", "Wrong password" => "错误密码", @@ -56,13 +56,12 @@ $TRANSLATIONS = array( "Good password" => "较强的密码", "Strong password" => "强密码", "Decrypting files... Please wait, this can take some time." => "正在解密文件... 请稍等,可能需要一些时间。", -"deleted" => "已经删除", "undo" => "撤销", "Groups" => "组", "Group Admin" => "组管理员", "Delete" => "删除", "never" => "从不", -"add group" => "添加组", +"add group" => "增加组", "A valid username must be provided" => "必须提供合法的用户名", "Error creating user" => "创建用户出错", "A valid password must be provided" => "必须提供合法的密码", @@ -103,19 +102,13 @@ $TRANSLATIONS = array( "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 public uploads" => "允许公开上传", "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 users to send mail notification for shared files" => "允许用户发送共享文件的邮件通知", "Security" => "安全", "Enforce HTTPS" => "强制使用 HTTPS", @@ -138,7 +131,7 @@ $TRANSLATIONS = array( "Less" => "更少", "Version" => "版本", "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社区</a>开发, <a href=\"https://github.com/owncloud\" target=\"_blank\">源代码</a>在<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>许可证下发布。", -"Add your App" => "添加应用", +"Add your App" => "增加应用", "More Apps" => "更多应用", "Select an App" => "选择一个应用", "Documentation:" => "文档:", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index e68498e3d70..c55e2988ff8 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -56,7 +56,6 @@ $TRANSLATIONS = array( "Good password" => "好的密碼", "Strong password" => "很強的密碼", "Decrypting files... Please wait, this can take some time." => "檔案解密中,請稍候。", -"deleted" => "已刪除", "undo" => "復原", "Groups" => "群組", "Group Admin" => "群組管理員", @@ -103,15 +102,9 @@ $TRANSLATIONS = array( "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "已經與 webcron 服務註冊好,將會每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" => "允許 apps 使用分享 API", -"Allow links" => "允許連結", "Allow public uploads" => "允許任何人上傳", -"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 users to send mail notification for shared files" => "允許使用者寄送有關分享檔案的郵件通知", "Security" => "安全性", "Enforce HTTPS" => "強制啟用 HTTPS", @@ -177,6 +170,7 @@ $TRANSLATIONS = array( "Create" => "建立", "Admin Recovery Password" => "管理者復原密碼", "Enter the recovery password in order to recover the users files during password change" => "為了修改密碼時能夠取回使用者資料,請輸入另一組還原用密碼", +"Group" => "群組", "Default Quota" => "預設容量限制", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "請輸入空間配額(例如: \"512 MB\"或是 \"12 GB\")", "Unlimited" => "無限制", diff --git a/settings/personal.php b/settings/personal.php index 47b2dc1a46a..36e8ea016de 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -39,7 +39,7 @@ $enableDecryptAll = $filesStillEncrypted || $backupKeysExists; // array of common languages $commonlangcodes = array( - 'en', 'es', 'fr', 'de', 'de_DE', 'ja_JP', 'ar', 'ru', 'nl', 'it', 'pt_BR', 'pt_PT', 'da', 'fi_FI', 'nb_NO', 'sv', 'zh_CN', 'ko' + 'en', 'es', 'fr', 'de', 'de_DE', 'ja_JP', 'ar', 'ru', 'nl', 'it', 'pt_BR', 'pt_PT', 'da', 'fi_FI', 'nb_NO', 'sv', 'tr', 'zh_CN', 'ko' ); $languageNames=include 'languageCodes.php'; diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 8ed22e98b52..5a00320313b 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -237,15 +237,14 @@ if (!$_['internetconnectionworking']) { <td id="enable"> <input type="checkbox" name="shareapi_enabled" id="shareAPIEnabled" value="1" <?php if ($_['shareAPIEnabled'] === 'yes') print_unescaped('checked="checked"'); ?> /> - <label for="shareAPIEnabled"><?php p($l->t('Enable Share API'));?></label><br/> - <em><?php p($l->t('Allow apps to use the Share API')); ?></em> + <label for="shareAPIEnabled"><?php p($l->t('Allow apps to use the Share API'));?></label><br/> </td> </tr> <tr> <td <?php if ($_['shareAPIEnabled'] === 'no') print_unescaped('class="hidden"');?>> <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/> + <label for="allowLinks"><?php p($l->t('Allow users to share via link'));?></label><br/> <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"'); ?> /> @@ -268,7 +267,6 @@ if (!$_['internetconnectionworking']) { </div> </div> - <em><?php p($l->t('Allow users to share items to the public with links')); ?></em> </td> </tr> <tr> @@ -276,15 +274,13 @@ if (!$_['internetconnectionworking']) { <input type="checkbox" name="shareapi_allow_resharing" id="allowResharing" value="1" <?php if ($_['allowResharing'] === 'yes') print_unescaped('checked="checked"'); ?> /> <label for="allowResharing"><?php p($l->t('Allow resharing'));?></label><br/> - <em><?php p($l->t('Allow users to share items shared with them again')); ?></em> - <div id="resharingSettings" <?php ($_['allowResharing'] === 'yes') ? print_unescaped('class="indent"') : print_unescaped('class="hidden indent"');?>> - <input type="radio" name="shareapi_share_policy" id="sharePolicyGlobal" - value="global" <?php if ($_['sharePolicy'] === 'global') print_unescaped('checked="checked"'); ?> /> - <label for="sharePolicyGlobal"><?php p($l->t('Allow users to share with anyone')); ?></label><br/> - <input type="radio" name="shareapi_share_policy" id="sharePolicyGroupsOnly" - value="groups_only" <?php if ($_['sharePolicy'] === 'groups_only') print_unescaped('checked="checked"'); ?> /> - <label for="sharePolicyGroupsOnly"><?php p($l->t('Allow users to only share with users in their groups'));?></label><br/> - </div> + </td> + </tr> + <tr> + <td <?php if ($_['shareAPIEnabled'] === 'no') print_unescaped('class="hidden"');?>> + <input type="checkbox" name="shareapi_only_share_with_group_members" id="onlyShareWithGroupMembers" + value="1" <?php if ($_['onlyShareWithGroupMembers']) print_unescaped('checked="checked"'); ?> /> + <label for="onlyShareWithGroupMembers"><?php p($l->t('Restrict users to only share with users in their groups'));?></label><br/> </td> </tr> <tr> @@ -317,38 +313,34 @@ if (!$_['internetconnectionworking']) { <div class="section" id="security"> <h2><?php p($l->t('Security'));?></h2> - <table> - <tr> - <td id="enable"> - <input type="checkbox" name="forcessl" id="forcessl" - <?php if ($_['enforceHTTPSEnabled']) { - print_unescaped('checked="checked" '); - print_unescaped('value="false"'); - } else { - print_unescaped('value="true"'); - } - ?> - <?php if (!$_['isConnectedViaHTTPS']) p('disabled'); ?> /> - <label for="forcessl"><?php p($l->t('Enforce HTTPS'));?></label><br/> - <em><?php p($l->t( - 'Forces the clients to connect to %s via an encrypted connection.', - $theme->getName() - )); ?></em> - <?php if (!$_['isConnectedViaHTTPS']) { - print_unescaped("<br/><em>"); - p($l->t( - 'Please connect to your %s via HTTPS to enable or disable the SSL enforcement.', - $theme->getName() - )); - print_unescaped("</em>"); - } - ?> - </td> - </tr> - </table> + <p> + <input type="checkbox" name="forcessl" id="forcessl" + <?php if ($_['enforceHTTPSEnabled']) { + print_unescaped('checked="checked" '); + print_unescaped('value="false"'); + } else { + print_unescaped('value="true"'); + } + ?> + <?php if (!$_['isConnectedViaHTTPS']) p('disabled'); ?> /> + <label for="forcessl"><?php p($l->t('Enforce HTTPS'));?></label><br/> + <em><?php p($l->t( + 'Forces the clients to connect to %s via an encrypted connection.', + $theme->getName() + )); ?></em> + <?php if (!$_['isConnectedViaHTTPS']) { + print_unescaped("<br/><em>"); + p($l->t( + 'Please connect to your %s via HTTPS to enable or disable the SSL enforcement.', + $theme->getName() + )); + print_unescaped("</em>"); + } + ?> + </p> </div> -<div id="mail_settings" class="section"> +<div class="section"><form id="mail_settings"> <h2><?php p($l->t('Email Server'));?></h2> <p><?php p($l->t('This is used for sending out notifications.')); ?> <span id="mail_settings_msg" class="msg"></span></p> @@ -428,7 +420,7 @@ if (!$_['internetconnectionworking']) { <em><?php p($l->t( 'Test email settings' )); ?></em> <input type="submit" name="sendtestemail" id="sendtestemail" value="<?php p($l->t( 'Send email' )); ?>"/> <span id="sendtestmail_msg" class="msg"></span> -</div> +</form></div> <div class="section"> <h2><?php p($l->t('Log'));?></h2> diff --git a/settings/templates/users/part.createuser.php b/settings/templates/users/part.createuser.php index 4d573168fc1..3dfd27ee52d 100644 --- a/settings/templates/users/part.createuser.php +++ b/settings/templates/users/part.createuser.php @@ -1,4 +1,4 @@ -<div id="user-controls"> +<div id="controls"> <form id="newuser" autocomplete="off"> <input id="newusername" type="text" placeholder="<?php p($l->t('Login Name'))?>" |