diff options
Diffstat (limited to 'settings')
117 files changed, 1033 insertions, 543 deletions
diff --git a/settings/Application.php b/settings/Application.php index 52661c5bae2..0ca2d28dfe6 100644 --- a/settings/Application.php +++ b/settings/Application.php @@ -30,8 +30,6 @@ namespace OC\Settings; -use OC\App\AppStore\Fetcher\AppFetcher; -use OC\App\AppStore\Fetcher\CategoryFetcher; use OC\AppFramework\Utility\TimeFactory; use OC\Authentication\Token\IProvider; use OC\Server; @@ -110,26 +108,6 @@ class Application extends App { Util::getDefaultEmailAddress('no-reply') ); }); - $container->registerService(AppFetcher::class, function (IContainer $c) { - /** @var Server $server */ - $server = $c->query('ServerContainer'); - return new AppFetcher( - $server->getAppDataDir('appstore'), - $server->getHTTPClientService(), - $server->query(TimeFactory::class), - $server->getConfig() - ); - }); - $container->registerService(CategoryFetcher::class, function (IContainer $c) { - /** @var Server $server */ - $server = $c->query('ServerContainer'); - return new CategoryFetcher( - $server->getAppDataDir('appstore'), - $server->getHTTPClientService(), - $server->query(TimeFactory::class), - $server->getConfig() - ); - }); } public function register() { diff --git a/settings/ajax/installapp.php b/settings/ajax/installapp.php deleted file mode 100644 index 17e5eadf50e..00000000000 --- a/settings/ajax/installapp.php +++ /dev/null @@ -1,52 +0,0 @@ -<?php -/** - * @copyright Copyright (c) 2016, ownCloud, Inc. - * - * @author Georg Ehrke <georg@owncloud.com> - * @author Lukas Reschke <lukas@statuscode.ch> - * @author Robin Appelman <robin@icewind.nl> - * - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ -OCP\JSON::checkAdminUser(); -OCP\JSON::callCheck(); - -$lastConfirm = (int) \OC::$server->getSession()->get('last-password-confirm'); -if ($lastConfirm < (time() - 30 * 60 + 15)) { // allow 15 seconds delay - $l = \OC::$server->getL10N('core'); - OC_JSON::error(array( 'data' => array( 'message' => $l->t('Password confirmation is required')))); - exit(); -} - -if (!array_key_exists('appid', $_POST)) { - OC_JSON::error(); - exit; -} - -$app = new OC_App(); -$appId = (string)$_POST['appid']; -$appId = OC_App::cleanAppId($appId); -$result = $app->installApp( - $appId, - \OC::$server->getConfig(), - \OC::$server->getL10N('core') -); -if($result !== false) { - OC_JSON::success(array('data' => array('appid' => $appId))); -} else { - $l = \OC::$server->getL10N('settings'); - OC_JSON::error(array("data" => array( "message" => $l->t("Couldn't remove app.") ))); -} diff --git a/settings/css/settings.css b/settings/css/settings.css index 44a7f9879c9..f2eb6282f69 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -54,6 +54,10 @@ input#openid, input#webdav { width: 100%; } +#avatarform .jcrop-keymgr { + display:none !important; +} + #displayavatar { text-align: center; } @@ -1129,7 +1133,7 @@ table.grid td.date { } #shareAPI input#shareapiExpireAfterNDays { - width: 25px; + width: 40px; } #shareAPI .indent { diff --git a/settings/l10n/ar.js b/settings/l10n/ar.js index 1671737eaa2..dd4de545232 100644 --- a/settings/l10n/ar.js +++ b/settings/l10n/ar.js @@ -44,7 +44,6 @@ OC.L10N.register( "Test email settings" : "فحص إعدادات البريد الإلكتروني", "System locale can not be set to a one which supports UTF-8." : "لا يمكن تعيين لغة النظام الى احد اللغات التي تدعم UTF-8.", "This means that there might be problems with certain characters in file names." : "هذا يعني انه من الممكن ان يكون هناك مشكلة في بعض الاحرف في اسم الملف.", - "Cron" : "مجدول", "Execute one task with each page loaded" : "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "الملف cron.php تم تسجيله فى خدمه webcron لاستدعاء الملف cron.php كل 15 دقيقه", "Version" : "إصدار", @@ -95,6 +94,7 @@ OC.L10N.register( "Sending..." : "جاري الارسال ...", "Uninstalling ...." : "جاري إلغاء التثبيت ...", "Uninstall" : "ألغاء التثبيت", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق " + "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق ", + "Cron" : "مجدول" }, "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"); diff --git a/settings/l10n/ar.json b/settings/l10n/ar.json index 04e2dbd47a7..b95eb4ab64a 100644 --- a/settings/l10n/ar.json +++ b/settings/l10n/ar.json @@ -42,7 +42,6 @@ "Test email settings" : "فحص إعدادات البريد الإلكتروني", "System locale can not be set to a one which supports UTF-8." : "لا يمكن تعيين لغة النظام الى احد اللغات التي تدعم UTF-8.", "This means that there might be problems with certain characters in file names." : "هذا يعني انه من الممكن ان يكون هناك مشكلة في بعض الاحرف في اسم الملف.", - "Cron" : "مجدول", "Execute one task with each page loaded" : "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "الملف cron.php تم تسجيله فى خدمه webcron لاستدعاء الملف cron.php كل 15 دقيقه", "Version" : "إصدار", @@ -93,6 +92,7 @@ "Sending..." : "جاري الارسال ...", "Uninstalling ...." : "جاري إلغاء التثبيت ...", "Uninstall" : "ألغاء التثبيت", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق " + "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق ", + "Cron" : "مجدول" },"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;" }
\ No newline at end of file diff --git a/settings/l10n/ast.js b/settings/l10n/ast.js index 023953494d1..c1a662768e5 100644 --- a/settings/l10n/ast.js +++ b/settings/l10n/ast.js @@ -11,6 +11,7 @@ OC.L10N.register( "Your apps" : "Les tos aplicaciones", "Enabled apps" : "Aplicaciones habilitaes", "Disabled apps" : "Aplicaciones deshabilitaes", + "App bundles" : "Llotes d'aplicaciones", "Wrong password" : "Contraseña incorreuta", "Saved" : "Guardóse", "No user supplied" : "Nun s'apurrieron usuarios", @@ -29,25 +30,92 @@ OC.L10N.register( "Unable to delete group." : "Nun pue desaniciase'l grupu.", "Invalid SMTP password." : "Contraseña SMTP non válida", "Well done, %s!" : "¡Bien fecho, %s!", + "Email could not be sent. Check your mail server log" : "Nun pudo unviase'l corréu. Comprueba'l rexistru del to sirvidor de corréu", + "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Asocedió un problema entrín s'unviaba'l corréu. Revisa los tos axustes por favor. (Fallu: %s)", "You need to set your user email before being able to send test emails." : "Tienes de configurar la direición de corréu-e enantes de poder unviar mensaxes de prueba.", "Invalid request" : "Solicitú inválida", + "Invalid mail address" : "Direición non válida de corréu", + "No valid group selected" : "Nun s'esbilló dengún grupu válidu", + "A user with that name already exists." : "Yá esiste un nome d'usuariu con esi nome.", + "Unable to create user." : "Nun pue crease l'usuariu.", + "Unable to delete user." : "Nun pue desaniciase l'usuariu.", + "Error while enabling user." : "Fallu entrín s'habilitaba l'usuariu.", + "Error while disabling user." : "Fallu entrín se deshabilitaba l'usuariu.", + "In order to verify your Twitter account, post the following tweet on Twitter (please make sure to post it without any line breaks):" : "Pa verificar la to cuenta de Twitter, espubliza elllí'l tuit de darré (por favor asegúrate que lu espublices ensin saltos de llinia):", "Unable to change full name" : "Nun pue camudase'l nome completu", + "Unable to change email address" : "Nun pue camudase la direición de corréu", "Your full name has been changed." : "Camudóse'l nome completu.", + "Invalid user" : "Usuariu non válidu", + "Unable to change mail address" : "Nun pue camudase la direición de corréu", "Email saved" : "Corréu-e guardáu", + "If you did not request this, please contact an administrator." : "Si nun solicitesti esto, por favor contautu con un alministrador.", + "The new email address is %s" : "La nueva direición de corréu ye %s", + "Welcome aboard" : "Afáyate en barcu", + "Welcome aboard %s" : "Afáyate en barcu %s", + "You have now an %s account, you can add, protect, and share your data." : "Agora tienes una cuenta %s, pues amestar, protexer y compartir los tos datos.", + "Your username is: %s" : "El to nome d'usuariu ye: %s", + "Go to %s" : "Dir a %s", + "Password confirmation is required" : "Ríquese la contraseña de confirmación", "Couldn't remove app." : "Nun pudo desaniciase l'aplicación.", "Couldn't update app." : "Nun pudo anovase l'aplicación.", + "Are you really sure you want add {domain} as trusted domain?" : "¿De xuru que quies amestar {domain} como dominiu d'enfotu?", "Add trusted domain" : "Amestar dominiu de confianza", + "Migration in progress. Please wait until the migration is finished" : "Migración en cursu. Espera fasta que la migración fine, por favor.", + "Migration started …" : "Migración aniciada...", + "Not saved" : "Nun se guardó", + "Sending…" : "Unviando...", "Email sent" : "Corréu-e unviáu", + "Official" : "Oficial", "All" : "Toos", + "No apps found for your version" : "Nun s'alcontraron anovamientos pa la to versión", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les aplicaciones oficiales desendólquense dientro la comunidá. Ufren funcionalidá central y tán preparaes pal usu en producción.", + "Disabling app …" : "Deshabilitando aplicación...", "Error while disabling app" : "Fallu mientres se desactivaba l'aplicación", "Disable" : "Desactivar", "Enable" : "Activar", + "Enabling app …" : "Habilitando aplicación...", "Error while enabling app" : "Fallu mientres s'activaba l'aplicación", + "Error: this app cannot be enabled because it makes the server unstable" : "Fallu: esta aplicación nun pue habilitase porque fadrá inestable'l sirvidor", + "Error: could not disable broken app" : "Fallu: nun pudo deshabilitase l'aplicación rota", + "Error while disabling broken app" : "Fallu entrín se deshabilitaba l'aplicación rota", "Updating...." : "Anovando....", "Error while updating app" : "Fallu mientres s'anovaba l'aplicación", "Updated" : "Anováu", + "Removing …" : "Desaniciando...", + "Error while removing app" : "Fallu entrín se desaniciaba l'aplicación", + "Remove" : "Desaniciar", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Habilitóse l'aplicación pero precisa anovase. Redirixirásete a la páxina d'anovamientu en 5 segundos.", + "App update" : "Paquetes d'aplicaciones", + "Experimental" : "Esperimental", + "Enable all" : "Habilitar too", + "Revoke" : "Revocar", + "Internet Explorer" : "Internet Explorer", + "Edge" : "Edge", + "Firefox" : "Firefox", + "Google Chrome" : "Google Chrome", + "Safari" : "Safari", + "Google Chrome for Android" : "Google Chrome p'Android", + "iPhone iOS" : "iOS d'iPhone", + "iPad iOS" : "iOS d'iPad", + "iOS Client" : "Veceru d'iOS", + "Android Client" : "Veceru d'Android", + "This session" : "Esta sesión", + "Copy" : "Copiar", + "Copied!" : "¡Copióse!", + "Not supported!" : "¡Nun se sofita!", + "Press ⌘-C to copy." : "Primi ⌘-C pa copiar.", + "Press Ctrl-C to copy." : "Primi Ctrl-C pa copiar.", + "Error while loading browser sessions and device tokens" : "Fallu entrín se carganben les sesiones del restolador y pases de preseos", + "Error while creating device token" : "Fallu entrín se creaba'l pase'l preséu", + "Error while deleting the token" : "Fallu entrín se desaniciaba'l pase", + "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Asocedió un fallu. Xubi un certificáu PEM con codificación ASCII, por favor.", "Valid until {date}" : "Válidu fasta {date}", "Delete" : "Desaniciar", + "Local" : "Llocal", + "Only visible to local users" : "Namái visible pa usuarios llocales", + "Contacts" : "Contautos", + "Verify" : "Verificar", + "Verifying …" : "Verificando...", "Select a profile picture" : "Esbillar una imaxe de perfil", "Very weak password" : "Contraseña mui feble", "Weak password" : "Contraseña feble", @@ -56,19 +124,35 @@ OC.L10N.register( "Strong password" : "Contraseña mui bona", "Groups" : "Grupos", "Unable to delete {objName}" : "Nun pue desaniciase {objName}", + "Error creating group: {message}" : "Fallu crenado'l grupu: {message}", "A valid group name must be provided" : "Hai d'escribir un nome de grupu válidu", "deleted {groupName}" : "desaniciáu {groupName}", "undo" : "desfacer", "never" : "enxamás", "deleted {userName}" : "desaniciáu {userName}", + "Unable to add user to group {group}" : "Nun pue amestase l'usuariu al grupu {group}", + "Unable to remove user from group {group}" : "Nun pue desaniciase l'usuariu del grupu {group}", + "Add group" : "Amestar grupu", + "Could not change the users email" : "Nun pudo camudase'l corréu de los usuarios", + "Error while changing status of {user}" : "Fallu entrín se camudaba l'estáu de {usuariu}", "A valid username must be provided" : "Tien d'apurrise un nome d'usuariu válidu", + "Error creating user: {message}" : "Fallu creando l'usuariu: {message}", "A valid password must be provided" : "Tien d'apurrise una contraseña válida", + "A valid email must be provided" : "Ha apurrise un corréu válidu", "__language_name__" : "Asturianu", "Unlimited" : "Non llendáu", + "Verifying" : "Verificando", + "Personal info" : "Información personal", + "Sessions" : "Sesiones", "None" : "Dengún", "Login" : "Entamar sesión", "Plain" : "Planu", "NT LAN Manager" : "Xestor de NT LAN", + "SSL/TLS" : "SSL/TLS", + "STARTTLS" : "STARTTLS", + "Email server" : "Sirvidor de corréu", + "Open documentation" : "Abrir documentación", + "It is important to set up this server to be able to send emails, like for password reset and notifications." : "Nun ye importante configurar esti sirvidor pa que seya a unviar correos, como pa refitaminetos de contraseñes y avisos.", "Send mode" : "Mou d'unviu", "Encryption" : "Cifráu", "From address" : "Dende la direición", @@ -80,22 +164,26 @@ OC.L10N.register( "Credentials" : "Credenciales", "SMTP Username" : "Nome d'usuariu SMTP", "SMTP Password" : "Contraseña SMTP", + "Store credentials" : "Atroxar credenciales", "Test email settings" : "Probar configuración de corréu electrónicu", "Send email" : "Unviar mensaxe", + "Server-side encryption" : "Cifráu del llau del sirvidor", + "Enable encryption" : "Habilitar cifráu", + "Start migration" : "Aniciar migración", + "Security & setup warnings" : "Alvertancies de seguranza y configuración", "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.", "System locale can not be set to a one which supports UTF-8." : "Nun se pue escoyer una configuración rexonal que sofite UTF-8.", "This means that there might be problems with certain characters in file names." : "Esto significa que pue haber problemes con ciertos caráuteres nos nomes de los ficheros.", - "Cron" : "Cron", - "Cron was not executed yet!" : "¡Cron entá nun s'executó!", + "All checks passed." : "Pasáronse toles comprobaciones.", "Execute one task with each page loaded" : "Executar una xera con cada páxina cargada", "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 system's cron service to call the cron.php file every 15 minutes." : "Usar el serviciu cron del sistema pa llamar al ficheru cron.php cada 15 mins.", "Version" : "Versión", "Sharing" : "Compartiendo", "Allow apps to use the Share API" : "Permitir a les aplicaciones usar la API de Compartición", "Allow users to share via link" : "Permitir a los usuarios compartir vía enllaz", "Allow public uploads" : "Permitir xubes públiques", + "Always ask for a password" : "Pidir siempres la contraseña", "Enforce password protection" : "Ameyora la proteición por contraseña.", "Set default expiration date" : "Afitar la data d'espiración predeterminada", "Expire after " : "Caduca dempués de", @@ -105,15 +193,43 @@ OC.L10N.register( "Restrict users to only share with users in their groups" : "Restrinxir a los usuarios a compartir namái con otros usuarios nos sos grupos", "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", + "Tips & tricks" : "Conseyos y trucos", + "How to do backups" : "Cómo facer respaldos", + "Limit to groups" : "Llendar a grupos", + "This app has an update available." : "Esta apllicación tien un anovamientu disponible.", + "by %s" : "por %s", "Documentation:" : "Documentación:", + "User documentation" : "Documentación d'usuariu", + "Visit website" : "Visitar sitiu web", + "Report a bug" : "Informar un fallu", + "Show description …" : "Amosar descripción...", + "Hide description …" : "Anubrir descripción...", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Nun pue instalase esta aplicación porque nun se cumplen les dependencies de darréu:", "Enable only for specific groups" : "Habilitar namái pa grupos específicos", + "Common Name" : "Nome común", + "Administrator documentation" : "Documentación d'alministrador", + "Online documentation" : "Documentación en llinia", "Forum" : "Foru", + "Commercial support" : "Sofitu comercial", + "You are using <strong>%s</strong> of <strong>%s</strong>" : "Tas usando <strong>%s</strong> de <strong>%s</strong>", + "You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "Tas usando <strong>%s</strong> de <strong>%s</strong> (<strong>%s %%</strong>)", "Profile picture" : "Semeya de perfil", "Upload new" : "Xubir otra", "Remove image" : "Desaniciar imaxe", + "Picture provided by original account" : "Semeya fornida pola cuenta orixinal", "Cancel" : "Encaboxar", + "Full name" : "Nome completu", "Email" : "Corréu-e", "Your email address" : "Direición de corréu-e", + "No email address set" : "Nun s'afitó denguna direición de corréu", + "Phone number" : "Númberu de teléfonu", + "Your phone number" : "El to númberu de teléfonu", + "Address" : "Direición", + "Your postal address" : "La to direición postal", + "Website" : "Sitiu web", + "Link https://…" : "Enllaz https://…", + "Twitter" : "Twitter", + "You are member of the following groups:" : "Yes miembru de los grupos de darréu:", "Password" : "Contraseña", "Current password" : "Contraseña actual", "New password" : "Contraseña nueva", @@ -125,16 +241,28 @@ OC.L10N.register( "Android app" : "Aplicación d'Android", "iOS app" : "Aplicación d'iOS", "Show First Run Wizard again" : "Amosar nuevamente l'Encontu d'execución inicial", + "Device" : "Preséu", + "Here you can generate individual passwords for apps so you don’t have to give out your password. You can revoke them individually too." : "Equí pues xenerar contraseñes individuales p'aplicaciones pa qu'asina nun tengas de dar la to contraseña. Tamién pues revocales de mou individual.", "Name" : "Nome", + "App name" : "Nome d'aplicación", + "For security reasons this password will only be shown once." : "Por razones de seguranza, esta contraseña namái s'amosará una vegada.", "Username" : "Nome d'usuariu", + "Done" : "Fecho", + "Follow us on Google+!" : "¡Síguimos en Google+!", + "Follow us on Twitter!" : "¡Síguimos en Twitter!", + "Subscribe to our newsletter!" : "¡Soscríbite al nuesu boletín!", + "Settings" : "Axustes", + "E-Mail" : "Corréu", "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.", + "Group name" : "Nome del grupu", "Everyone" : "Toos", "Admins" : "Almins", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota d'almacenamientu (ex: \"512 MB\" o \"12 GB\")", "Other" : "Otru", "Quota" : "Cuota", + "Storage location" : "Allugamientu d'almacenamientu", "change full name" : "camudar el nome completu", "set new password" : "afitar nueva contraseña", "Default" : "Predetermináu", @@ -151,6 +279,13 @@ OC.L10N.register( "Uninstall" : "Desinstalar", "This is used for sending out notifications." : "Esto úsase pa unviar notificaciones.", "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.", - "Cheers!" : "¡Salú!" + "Cron" : "Cron", + "Cron was not executed yet!" : "¡Cron entá nun s'executó!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Usar el serviciu cron del sistema pa llamar al ficheru cron.php cada 15 mins.", + "Uninstall app" : "Desinstalar aplicación", + "Cheers!" : "¡Salú!", + "Your website" : "El to sitiu web", + "Follow us on Google Plus!" : "¡Síguimos en Google Plus!", + "Subscribe to our twitter channel!" : "¡Soscríbite a la nuesa canal de Twitter!" }, "nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/ast.json b/settings/l10n/ast.json index cee6687893f..e151e90108e 100644 --- a/settings/l10n/ast.json +++ b/settings/l10n/ast.json @@ -9,6 +9,7 @@ "Your apps" : "Les tos aplicaciones", "Enabled apps" : "Aplicaciones habilitaes", "Disabled apps" : "Aplicaciones deshabilitaes", + "App bundles" : "Llotes d'aplicaciones", "Wrong password" : "Contraseña incorreuta", "Saved" : "Guardóse", "No user supplied" : "Nun s'apurrieron usuarios", @@ -27,25 +28,92 @@ "Unable to delete group." : "Nun pue desaniciase'l grupu.", "Invalid SMTP password." : "Contraseña SMTP non válida", "Well done, %s!" : "¡Bien fecho, %s!", + "Email could not be sent. Check your mail server log" : "Nun pudo unviase'l corréu. Comprueba'l rexistru del to sirvidor de corréu", + "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Asocedió un problema entrín s'unviaba'l corréu. Revisa los tos axustes por favor. (Fallu: %s)", "You need to set your user email before being able to send test emails." : "Tienes de configurar la direición de corréu-e enantes de poder unviar mensaxes de prueba.", "Invalid request" : "Solicitú inválida", + "Invalid mail address" : "Direición non válida de corréu", + "No valid group selected" : "Nun s'esbilló dengún grupu válidu", + "A user with that name already exists." : "Yá esiste un nome d'usuariu con esi nome.", + "Unable to create user." : "Nun pue crease l'usuariu.", + "Unable to delete user." : "Nun pue desaniciase l'usuariu.", + "Error while enabling user." : "Fallu entrín s'habilitaba l'usuariu.", + "Error while disabling user." : "Fallu entrín se deshabilitaba l'usuariu.", + "In order to verify your Twitter account, post the following tweet on Twitter (please make sure to post it without any line breaks):" : "Pa verificar la to cuenta de Twitter, espubliza elllí'l tuit de darré (por favor asegúrate que lu espublices ensin saltos de llinia):", "Unable to change full name" : "Nun pue camudase'l nome completu", + "Unable to change email address" : "Nun pue camudase la direición de corréu", "Your full name has been changed." : "Camudóse'l nome completu.", + "Invalid user" : "Usuariu non válidu", + "Unable to change mail address" : "Nun pue camudase la direición de corréu", "Email saved" : "Corréu-e guardáu", + "If you did not request this, please contact an administrator." : "Si nun solicitesti esto, por favor contautu con un alministrador.", + "The new email address is %s" : "La nueva direición de corréu ye %s", + "Welcome aboard" : "Afáyate en barcu", + "Welcome aboard %s" : "Afáyate en barcu %s", + "You have now an %s account, you can add, protect, and share your data." : "Agora tienes una cuenta %s, pues amestar, protexer y compartir los tos datos.", + "Your username is: %s" : "El to nome d'usuariu ye: %s", + "Go to %s" : "Dir a %s", + "Password confirmation is required" : "Ríquese la contraseña de confirmación", "Couldn't remove app." : "Nun pudo desaniciase l'aplicación.", "Couldn't update app." : "Nun pudo anovase l'aplicación.", + "Are you really sure you want add {domain} as trusted domain?" : "¿De xuru que quies amestar {domain} como dominiu d'enfotu?", "Add trusted domain" : "Amestar dominiu de confianza", + "Migration in progress. Please wait until the migration is finished" : "Migración en cursu. Espera fasta que la migración fine, por favor.", + "Migration started …" : "Migración aniciada...", + "Not saved" : "Nun se guardó", + "Sending…" : "Unviando...", "Email sent" : "Corréu-e unviáu", + "Official" : "Oficial", "All" : "Toos", + "No apps found for your version" : "Nun s'alcontraron anovamientos pa la to versión", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les aplicaciones oficiales desendólquense dientro la comunidá. Ufren funcionalidá central y tán preparaes pal usu en producción.", + "Disabling app …" : "Deshabilitando aplicación...", "Error while disabling app" : "Fallu mientres se desactivaba l'aplicación", "Disable" : "Desactivar", "Enable" : "Activar", + "Enabling app …" : "Habilitando aplicación...", "Error while enabling app" : "Fallu mientres s'activaba l'aplicación", + "Error: this app cannot be enabled because it makes the server unstable" : "Fallu: esta aplicación nun pue habilitase porque fadrá inestable'l sirvidor", + "Error: could not disable broken app" : "Fallu: nun pudo deshabilitase l'aplicación rota", + "Error while disabling broken app" : "Fallu entrín se deshabilitaba l'aplicación rota", "Updating...." : "Anovando....", "Error while updating app" : "Fallu mientres s'anovaba l'aplicación", "Updated" : "Anováu", + "Removing …" : "Desaniciando...", + "Error while removing app" : "Fallu entrín se desaniciaba l'aplicación", + "Remove" : "Desaniciar", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Habilitóse l'aplicación pero precisa anovase. Redirixirásete a la páxina d'anovamientu en 5 segundos.", + "App update" : "Paquetes d'aplicaciones", + "Experimental" : "Esperimental", + "Enable all" : "Habilitar too", + "Revoke" : "Revocar", + "Internet Explorer" : "Internet Explorer", + "Edge" : "Edge", + "Firefox" : "Firefox", + "Google Chrome" : "Google Chrome", + "Safari" : "Safari", + "Google Chrome for Android" : "Google Chrome p'Android", + "iPhone iOS" : "iOS d'iPhone", + "iPad iOS" : "iOS d'iPad", + "iOS Client" : "Veceru d'iOS", + "Android Client" : "Veceru d'Android", + "This session" : "Esta sesión", + "Copy" : "Copiar", + "Copied!" : "¡Copióse!", + "Not supported!" : "¡Nun se sofita!", + "Press ⌘-C to copy." : "Primi ⌘-C pa copiar.", + "Press Ctrl-C to copy." : "Primi Ctrl-C pa copiar.", + "Error while loading browser sessions and device tokens" : "Fallu entrín se carganben les sesiones del restolador y pases de preseos", + "Error while creating device token" : "Fallu entrín se creaba'l pase'l preséu", + "Error while deleting the token" : "Fallu entrín se desaniciaba'l pase", + "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Asocedió un fallu. Xubi un certificáu PEM con codificación ASCII, por favor.", "Valid until {date}" : "Válidu fasta {date}", "Delete" : "Desaniciar", + "Local" : "Llocal", + "Only visible to local users" : "Namái visible pa usuarios llocales", + "Contacts" : "Contautos", + "Verify" : "Verificar", + "Verifying …" : "Verificando...", "Select a profile picture" : "Esbillar una imaxe de perfil", "Very weak password" : "Contraseña mui feble", "Weak password" : "Contraseña feble", @@ -54,19 +122,35 @@ "Strong password" : "Contraseña mui bona", "Groups" : "Grupos", "Unable to delete {objName}" : "Nun pue desaniciase {objName}", + "Error creating group: {message}" : "Fallu crenado'l grupu: {message}", "A valid group name must be provided" : "Hai d'escribir un nome de grupu válidu", "deleted {groupName}" : "desaniciáu {groupName}", "undo" : "desfacer", "never" : "enxamás", "deleted {userName}" : "desaniciáu {userName}", + "Unable to add user to group {group}" : "Nun pue amestase l'usuariu al grupu {group}", + "Unable to remove user from group {group}" : "Nun pue desaniciase l'usuariu del grupu {group}", + "Add group" : "Amestar grupu", + "Could not change the users email" : "Nun pudo camudase'l corréu de los usuarios", + "Error while changing status of {user}" : "Fallu entrín se camudaba l'estáu de {usuariu}", "A valid username must be provided" : "Tien d'apurrise un nome d'usuariu válidu", + "Error creating user: {message}" : "Fallu creando l'usuariu: {message}", "A valid password must be provided" : "Tien d'apurrise una contraseña válida", + "A valid email must be provided" : "Ha apurrise un corréu válidu", "__language_name__" : "Asturianu", "Unlimited" : "Non llendáu", + "Verifying" : "Verificando", + "Personal info" : "Información personal", + "Sessions" : "Sesiones", "None" : "Dengún", "Login" : "Entamar sesión", "Plain" : "Planu", "NT LAN Manager" : "Xestor de NT LAN", + "SSL/TLS" : "SSL/TLS", + "STARTTLS" : "STARTTLS", + "Email server" : "Sirvidor de corréu", + "Open documentation" : "Abrir documentación", + "It is important to set up this server to be able to send emails, like for password reset and notifications." : "Nun ye importante configurar esti sirvidor pa que seya a unviar correos, como pa refitaminetos de contraseñes y avisos.", "Send mode" : "Mou d'unviu", "Encryption" : "Cifráu", "From address" : "Dende la direición", @@ -78,22 +162,26 @@ "Credentials" : "Credenciales", "SMTP Username" : "Nome d'usuariu SMTP", "SMTP Password" : "Contraseña SMTP", + "Store credentials" : "Atroxar credenciales", "Test email settings" : "Probar configuración de corréu electrónicu", "Send email" : "Unviar mensaxe", + "Server-side encryption" : "Cifráu del llau del sirvidor", + "Enable encryption" : "Habilitar cifráu", + "Start migration" : "Aniciar migración", + "Security & setup warnings" : "Alvertancies de seguranza y configuración", "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.", "System locale can not be set to a one which supports UTF-8." : "Nun se pue escoyer una configuración rexonal que sofite UTF-8.", "This means that there might be problems with certain characters in file names." : "Esto significa que pue haber problemes con ciertos caráuteres nos nomes de los ficheros.", - "Cron" : "Cron", - "Cron was not executed yet!" : "¡Cron entá nun s'executó!", + "All checks passed." : "Pasáronse toles comprobaciones.", "Execute one task with each page loaded" : "Executar una xera con cada páxina cargada", "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 system's cron service to call the cron.php file every 15 minutes." : "Usar el serviciu cron del sistema pa llamar al ficheru cron.php cada 15 mins.", "Version" : "Versión", "Sharing" : "Compartiendo", "Allow apps to use the Share API" : "Permitir a les aplicaciones usar la API de Compartición", "Allow users to share via link" : "Permitir a los usuarios compartir vía enllaz", "Allow public uploads" : "Permitir xubes públiques", + "Always ask for a password" : "Pidir siempres la contraseña", "Enforce password protection" : "Ameyora la proteición por contraseña.", "Set default expiration date" : "Afitar la data d'espiración predeterminada", "Expire after " : "Caduca dempués de", @@ -103,15 +191,43 @@ "Restrict users to only share with users in their groups" : "Restrinxir a los usuarios a compartir namái con otros usuarios nos sos grupos", "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", + "Tips & tricks" : "Conseyos y trucos", + "How to do backups" : "Cómo facer respaldos", + "Limit to groups" : "Llendar a grupos", + "This app has an update available." : "Esta apllicación tien un anovamientu disponible.", + "by %s" : "por %s", "Documentation:" : "Documentación:", + "User documentation" : "Documentación d'usuariu", + "Visit website" : "Visitar sitiu web", + "Report a bug" : "Informar un fallu", + "Show description …" : "Amosar descripción...", + "Hide description …" : "Anubrir descripción...", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Nun pue instalase esta aplicación porque nun se cumplen les dependencies de darréu:", "Enable only for specific groups" : "Habilitar namái pa grupos específicos", + "Common Name" : "Nome común", + "Administrator documentation" : "Documentación d'alministrador", + "Online documentation" : "Documentación en llinia", "Forum" : "Foru", + "Commercial support" : "Sofitu comercial", + "You are using <strong>%s</strong> of <strong>%s</strong>" : "Tas usando <strong>%s</strong> de <strong>%s</strong>", + "You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "Tas usando <strong>%s</strong> de <strong>%s</strong> (<strong>%s %%</strong>)", "Profile picture" : "Semeya de perfil", "Upload new" : "Xubir otra", "Remove image" : "Desaniciar imaxe", + "Picture provided by original account" : "Semeya fornida pola cuenta orixinal", "Cancel" : "Encaboxar", + "Full name" : "Nome completu", "Email" : "Corréu-e", "Your email address" : "Direición de corréu-e", + "No email address set" : "Nun s'afitó denguna direición de corréu", + "Phone number" : "Númberu de teléfonu", + "Your phone number" : "El to númberu de teléfonu", + "Address" : "Direición", + "Your postal address" : "La to direición postal", + "Website" : "Sitiu web", + "Link https://…" : "Enllaz https://…", + "Twitter" : "Twitter", + "You are member of the following groups:" : "Yes miembru de los grupos de darréu:", "Password" : "Contraseña", "Current password" : "Contraseña actual", "New password" : "Contraseña nueva", @@ -123,16 +239,28 @@ "Android app" : "Aplicación d'Android", "iOS app" : "Aplicación d'iOS", "Show First Run Wizard again" : "Amosar nuevamente l'Encontu d'execución inicial", + "Device" : "Preséu", + "Here you can generate individual passwords for apps so you don’t have to give out your password. You can revoke them individually too." : "Equí pues xenerar contraseñes individuales p'aplicaciones pa qu'asina nun tengas de dar la to contraseña. Tamién pues revocales de mou individual.", "Name" : "Nome", + "App name" : "Nome d'aplicación", + "For security reasons this password will only be shown once." : "Por razones de seguranza, esta contraseña namái s'amosará una vegada.", "Username" : "Nome d'usuariu", + "Done" : "Fecho", + "Follow us on Google+!" : "¡Síguimos en Google+!", + "Follow us on Twitter!" : "¡Síguimos en Twitter!", + "Subscribe to our newsletter!" : "¡Soscríbite al nuesu boletín!", + "Settings" : "Axustes", + "E-Mail" : "Corréu", "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.", + "Group name" : "Nome del grupu", "Everyone" : "Toos", "Admins" : "Almins", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota d'almacenamientu (ex: \"512 MB\" o \"12 GB\")", "Other" : "Otru", "Quota" : "Cuota", + "Storage location" : "Allugamientu d'almacenamientu", "change full name" : "camudar el nome completu", "set new password" : "afitar nueva contraseña", "Default" : "Predetermináu", @@ -149,6 +277,13 @@ "Uninstall" : "Desinstalar", "This is used for sending out notifications." : "Esto úsase pa unviar notificaciones.", "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.", - "Cheers!" : "¡Salú!" + "Cron" : "Cron", + "Cron was not executed yet!" : "¡Cron entá nun s'executó!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Usar el serviciu cron del sistema pa llamar al ficheru cron.php cada 15 mins.", + "Uninstall app" : "Desinstalar aplicación", + "Cheers!" : "¡Salú!", + "Your website" : "El to sitiu web", + "Follow us on Google Plus!" : "¡Síguimos en Google Plus!", + "Subscribe to our twitter channel!" : "¡Soscríbite a la nuesa canal de Twitter!" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/settings/l10n/az.js b/settings/l10n/az.js index 8b1925f0d86..015dad7d696 100644 --- a/settings/l10n/az.js +++ b/settings/l10n/az.js @@ -90,13 +90,8 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Biz təkidlə təklif edirik ki, göstərilən dillər üçün tələb edilən paketləri sisteminizdə yükləyəsiniz: %s.", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Eger sizin yüklənməniz root domain-də yüklənməyibsə və sistem cron-u istifadə edirsə, orda URL generasiyası ilə bağlı problemləriniz ola bilər. Bu problemləri aşmaq üçün xahiş olunur yüklənmə vaxtı \"overwrite.cli.url\" opsiyasını config.php faylında webroot ünvanı olaraq təyin edəsiniz (Məsləhətdir: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "CRON işini CLİ-dan yerinə yetirmək mümkün olmadı. Görünən texniki səhv baş verdi.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Son cron yerinə yetirilməsi işi: %s.", - "Last cron job execution: %s. Something seems wrong." : "Son cron yerinə yetirilməsi: %s. Nə isə yalnış görünür.", - "Cron was not executed yet!" : "Cron hələ yerinə yetirilməyib!", "Execute one task with each page loaded" : "Hər səhifə yüklənməsində bir işi yerinə yetir", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php qeydə alınmış webcron servisdir hansi ki, http üzərindən hər 15 dəqiqədən bir cron.php çağırır.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Sistemin cron servisindən istifadə edin ki, cron.php faylını hər 15 dəqiqədən bir işə salasınız.", "Version" : "Versiya", "Sharing" : "Paylaşılır", "Allow apps to use the Share API" : "Proqramlara izin verin ki, Paylaşım API-sindən istifadə edə bilsinlər.", @@ -180,6 +175,11 @@ OC.L10N.register( "Uninstall" : "Sil", "This is used for sending out notifications." : "Kənara xəbərdarlıqları ötürmək üçün bu istifadə edilir.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-nin modulu 'fileinfo' mövcud deyil. Mime-type təyin edilməsi üçün, modulun aktivləşdirilməsini təkidlə məsləhət görürük.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Son cron yerinə yetirilməsi işi: %s.", + "Last cron job execution: %s. Something seems wrong." : "Son cron yerinə yetirilməsi: %s. Nə isə yalnış görünür.", + "Cron was not executed yet!" : "Cron hələ yerinə yetirilməyib!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Sistemin cron servisindən istifadə edin ki, cron.php faylını hər 15 dəqiqədən bir işə salasınız.", "Cheers!" : "Şərəfə!", "Show last log in" : "Son girişi göstər" }, diff --git a/settings/l10n/az.json b/settings/l10n/az.json index 2d7b80a42af..c2c2fd797db 100644 --- a/settings/l10n/az.json +++ b/settings/l10n/az.json @@ -88,13 +88,8 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Biz təkidlə təklif edirik ki, göstərilən dillər üçün tələb edilən paketləri sisteminizdə yükləyəsiniz: %s.", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Eger sizin yüklənməniz root domain-də yüklənməyibsə və sistem cron-u istifadə edirsə, orda URL generasiyası ilə bağlı problemləriniz ola bilər. Bu problemləri aşmaq üçün xahiş olunur yüklənmə vaxtı \"overwrite.cli.url\" opsiyasını config.php faylında webroot ünvanı olaraq təyin edəsiniz (Məsləhətdir: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "CRON işini CLİ-dan yerinə yetirmək mümkün olmadı. Görünən texniki səhv baş verdi.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Son cron yerinə yetirilməsi işi: %s.", - "Last cron job execution: %s. Something seems wrong." : "Son cron yerinə yetirilməsi: %s. Nə isə yalnış görünür.", - "Cron was not executed yet!" : "Cron hələ yerinə yetirilməyib!", "Execute one task with each page loaded" : "Hər səhifə yüklənməsində bir işi yerinə yetir", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php qeydə alınmış webcron servisdir hansi ki, http üzərindən hər 15 dəqiqədən bir cron.php çağırır.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Sistemin cron servisindən istifadə edin ki, cron.php faylını hər 15 dəqiqədən bir işə salasınız.", "Version" : "Versiya", "Sharing" : "Paylaşılır", "Allow apps to use the Share API" : "Proqramlara izin verin ki, Paylaşım API-sindən istifadə edə bilsinlər.", @@ -178,6 +173,11 @@ "Uninstall" : "Sil", "This is used for sending out notifications." : "Kənara xəbərdarlıqları ötürmək üçün bu istifadə edilir.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-nin modulu 'fileinfo' mövcud deyil. Mime-type təyin edilməsi üçün, modulun aktivləşdirilməsini təkidlə məsləhət görürük.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Son cron yerinə yetirilməsi işi: %s.", + "Last cron job execution: %s. Something seems wrong." : "Son cron yerinə yetirilməsi: %s. Nə isə yalnış görünür.", + "Cron was not executed yet!" : "Cron hələ yerinə yetirilməyib!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Sistemin cron servisindən istifadə edin ki, cron.php faylını hər 15 dəqiqədən bir işə salasınız.", "Cheers!" : "Şərəfə!", "Show last log in" : "Son girişi göstər" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/settings/l10n/bg.js b/settings/l10n/bg.js index c8a41184739..a77935c2152 100644 --- a/settings/l10n/bg.js +++ b/settings/l10n/bg.js @@ -119,13 +119,8 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Силно препоръчваме инсталиране на необходимите паките на системата, за поддръжка на следните местоположения: %s.", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ако инсталацията не е в основата на вашия домейн и използва системния cron, могат да възникнат проблеми с генерирането на URLи. За избягване на тези проблеми, моля настройте <code>overwrite.cli.url</code> опцията в config.php файла с мрежовия път към вашята инсталация (Вероятно : \\\"%s\\\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Изпълнението на cron задачата през командния интерфейс се провали. Появиха се следните грешки:", - "Cron" : "Cron", - "Last cron job execution: %s." : "Последно изпълнение на cron задача: %s.", - "Last cron job execution: %s. Something seems wrong." : "Последно изпълнение на cron задача: %s. Нещо не е както трябва", - "Cron was not executed yet!" : "Cron oще не е изпълнен!", "Execute one task with each page loaded" : "Изпълни по едно задание с всяка заредена страница.", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php е регистриран към webcron да се свързва с cron.php всеки 15 минути по http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Изполвай системната cron service, за връзка с cron.php файла всеки 15 минути.", "Version" : "Версия", "Sharing" : "Споделяне", "Allow apps to use the Share API" : "Разреши приложенията да използват Share API", @@ -236,6 +231,11 @@ OC.L10N.register( "Uninstall" : "Премахване", "This is used for sending out notifications." : "Това се използва за изпращане на уведомления.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP модулът 'fileinfo' липсва. Силно препоръчваме този модъл да бъде добавен, за да бъдат постигнати най-добри резултати при mime-type откриването.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Последно изпълнение на cron задача: %s.", + "Last cron job execution: %s. Something seems wrong." : "Последно изпълнение на cron задача: %s. Нещо не е както трябва", + "Cron was not executed yet!" : "Cron oще не е изпълнен!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Изполвай системната cron service, за връзка с cron.php файла всеки 15 минути.", "Uninstall app" : "Премахване на приложението", "Cheers!" : "Поздрави!", "Your website" : "Вашата уеб страница", diff --git a/settings/l10n/bg.json b/settings/l10n/bg.json index e438d8f8377..dc6e5c33305 100644 --- a/settings/l10n/bg.json +++ b/settings/l10n/bg.json @@ -117,13 +117,8 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Силно препоръчваме инсталиране на необходимите паките на системата, за поддръжка на следните местоположения: %s.", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ако инсталацията не е в основата на вашия домейн и използва системния cron, могат да възникнат проблеми с генерирането на URLи. За избягване на тези проблеми, моля настройте <code>overwrite.cli.url</code> опцията в config.php файла с мрежовия път към вашята инсталация (Вероятно : \\\"%s\\\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Изпълнението на cron задачата през командния интерфейс се провали. Появиха се следните грешки:", - "Cron" : "Cron", - "Last cron job execution: %s." : "Последно изпълнение на cron задача: %s.", - "Last cron job execution: %s. Something seems wrong." : "Последно изпълнение на cron задача: %s. Нещо не е както трябва", - "Cron was not executed yet!" : "Cron oще не е изпълнен!", "Execute one task with each page loaded" : "Изпълни по едно задание с всяка заредена страница.", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php е регистриран към webcron да се свързва с cron.php всеки 15 минути по http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Изполвай системната cron service, за връзка с cron.php файла всеки 15 минути.", "Version" : "Версия", "Sharing" : "Споделяне", "Allow apps to use the Share API" : "Разреши приложенията да използват Share API", @@ -234,6 +229,11 @@ "Uninstall" : "Премахване", "This is used for sending out notifications." : "Това се използва за изпращане на уведомления.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP модулът 'fileinfo' липсва. Силно препоръчваме този модъл да бъде добавен, за да бъдат постигнати най-добри резултати при mime-type откриването.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Последно изпълнение на cron задача: %s.", + "Last cron job execution: %s. Something seems wrong." : "Последно изпълнение на cron задача: %s. Нещо не е както трябва", + "Cron was not executed yet!" : "Cron oще не е изпълнен!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Изполвай системната cron service, за връзка с cron.php файла всеки 15 минути.", "Uninstall app" : "Премахване на приложението", "Cheers!" : "Поздрави!", "Your website" : "Вашата уеб страница", diff --git a/settings/l10n/bs.js b/settings/l10n/bs.js index e0682c0da48..0c79affb21f 100644 --- a/settings/l10n/bs.js +++ b/settings/l10n/bs.js @@ -79,11 +79,8 @@ OC.L10N.register( "System locale can not be set to a one which supports UTF-8." : "Regionalnu šemu sustava nemoguće je postaviti na neku koja podržava UTF-8.", "This means that there might be problems with certain characters in file names." : "To znači da se mogu javiti problemi s određenim znakovima u nazivu datoteke.", "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Strogo se preporučuje instaliranje zahtjevnih paketa na vašem sistemu koji podržavaju jednu od slijedećih regionalnih šemi: %s.", - "Cron" : "Cron", - "Cron was not executed yet!" : "Cron još nije izvršen!", "Execute one task with each page loaded" : "Izvrši jedan zadatak sa svakom učitanom stranicom", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php je registrovan na webcron usluzi da poziva cron.php svakih 15 minuta preko http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Koristite cron uslugu sustava za pozivanje cron.php datoteke svakih 15 minuta.", "Version" : "Verzija", "Sharing" : "Dijeljenje", "Allow apps to use the Share API" : "Dozvoli aplikacijama korištenje Share API", @@ -155,6 +152,9 @@ OC.L10N.register( "Uninstall" : "Deinstaliraj", "This is used for sending out notifications." : "Ovo se koristi za slanje notifikacija.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modul 'fileinfo' nedostaje. Strogo vam preporučjem da taj modul omogućite kako biste dobili najbolje rezultate u detekciji mime vrste.", + "Cron" : "Cron", + "Cron was not executed yet!" : "Cron još nije izvršen!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Koristite cron uslugu sustava za pozivanje cron.php datoteke svakih 15 minuta.", "Cheers!" : "Cheers!", "Show last log in" : "Prikaži zadnju prijavu" }, diff --git a/settings/l10n/bs.json b/settings/l10n/bs.json index 300ae2727f9..e1fbd9768fd 100644 --- a/settings/l10n/bs.json +++ b/settings/l10n/bs.json @@ -77,11 +77,8 @@ "System locale can not be set to a one which supports UTF-8." : "Regionalnu šemu sustava nemoguće je postaviti na neku koja podržava UTF-8.", "This means that there might be problems with certain characters in file names." : "To znači da se mogu javiti problemi s određenim znakovima u nazivu datoteke.", "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Strogo se preporučuje instaliranje zahtjevnih paketa na vašem sistemu koji podržavaju jednu od slijedećih regionalnih šemi: %s.", - "Cron" : "Cron", - "Cron was not executed yet!" : "Cron još nije izvršen!", "Execute one task with each page loaded" : "Izvrši jedan zadatak sa svakom učitanom stranicom", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php je registrovan na webcron usluzi da poziva cron.php svakih 15 minuta preko http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Koristite cron uslugu sustava za pozivanje cron.php datoteke svakih 15 minuta.", "Version" : "Verzija", "Sharing" : "Dijeljenje", "Allow apps to use the Share API" : "Dozvoli aplikacijama korištenje Share API", @@ -153,6 +150,9 @@ "Uninstall" : "Deinstaliraj", "This is used for sending out notifications." : "Ovo se koristi za slanje notifikacija.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modul 'fileinfo' nedostaje. Strogo vam preporučjem da taj modul omogućite kako biste dobili najbolje rezultate u detekciji mime vrste.", + "Cron" : "Cron", + "Cron was not executed yet!" : "Cron još nije izvršen!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Koristite cron uslugu sustava za pozivanje cron.php datoteke svakih 15 minuta.", "Cheers!" : "Cheers!", "Show last log in" : "Prikaži zadnju prijavu" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" diff --git a/settings/l10n/ca.js b/settings/l10n/ca.js index 4ff1676ec91..b236fb32e42 100644 --- a/settings/l10n/ca.js +++ b/settings/l10n/ca.js @@ -192,13 +192,8 @@ OC.L10N.register( "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si la seva instal·lació no està situada en l'arrel del domini i usa el sistema cron, pot haver-hi problemes en generar-se els URL. Per evitar-los, configuri l'opció \"overwrite.cli.url\" en el seu arxiu config.php perquè usi la ruta de l'arrel del lloc web de la seva instal·lació (suggeriment: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "No va ser possible executar cronjob via CLI. Han aparegut els següents errors tècnics:", "All checks passed." : "Totes les comprovacions correctes.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Última execució de la tasca cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última execució de la tasca cron: %s. Alguna cosa sembla malament.", - "Cron was not executed yet!" : "El cron encara no s'ha executat!", "Execute one task with each page loaded" : "Executa una tasca per cada paquet carregat", "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 system's cron service to call the cron.php file every 15 minutes." : "Fer servir el cron del sistema per cridar el cron.php cada 15 minuts.", "Version" : "Versió", "Sharing" : "Compartir", "Allow apps to use the Share API" : "Permet que les aplicacions utilitzin l'API de compartir", @@ -327,6 +322,11 @@ OC.L10N.register( "Uninstall" : "Desinstal·la", "This is used for sending out notifications." : "S'usa per enviar notificacions.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "El mòdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Última execució de la tasca cron: %s.", + "Last cron job execution: %s. Something seems wrong." : "Última execució de la tasca cron: %s. Alguna cosa sembla malament.", + "Cron was not executed yet!" : "El cron encara no s'ha executat!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Fer servir el cron del sistema per cridar el cron.php cada 15 minuts.", "Uninstall app" : "Desinstala la app", "Cheers!" : "Salut!", "Hey there,\n\njust letting you know that you now have a %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hola,\n\nsimplement que sàpigas que ja tens un compte %s.\n\nEl teu nom d'usuari: %s\nAccedir-hi: %s\n", diff --git a/settings/l10n/ca.json b/settings/l10n/ca.json index 2be02259108..bef98003bb4 100644 --- a/settings/l10n/ca.json +++ b/settings/l10n/ca.json @@ -190,13 +190,8 @@ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Si la seva instal·lació no està situada en l'arrel del domini i usa el sistema cron, pot haver-hi problemes en generar-se els URL. Per evitar-los, configuri l'opció \"overwrite.cli.url\" en el seu arxiu config.php perquè usi la ruta de l'arrel del lloc web de la seva instal·lació (suggeriment: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "No va ser possible executar cronjob via CLI. Han aparegut els següents errors tècnics:", "All checks passed." : "Totes les comprovacions correctes.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Última execució de la tasca cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última execució de la tasca cron: %s. Alguna cosa sembla malament.", - "Cron was not executed yet!" : "El cron encara no s'ha executat!", "Execute one task with each page loaded" : "Executa una tasca per cada paquet carregat", "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 system's cron service to call the cron.php file every 15 minutes." : "Fer servir el cron del sistema per cridar el cron.php cada 15 minuts.", "Version" : "Versió", "Sharing" : "Compartir", "Allow apps to use the Share API" : "Permet que les aplicacions utilitzin l'API de compartir", @@ -325,6 +320,11 @@ "Uninstall" : "Desinstal·la", "This is used for sending out notifications." : "S'usa per enviar notificacions.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "El mòdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Última execució de la tasca cron: %s.", + "Last cron job execution: %s. Something seems wrong." : "Última execució de la tasca cron: %s. Alguna cosa sembla malament.", + "Cron was not executed yet!" : "El cron encara no s'ha executat!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Fer servir el cron del sistema per cridar el cron.php cada 15 minuts.", "Uninstall app" : "Desinstala la app", "Cheers!" : "Salut!", "Hey there,\n\njust letting you know that you now have a %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hola,\n\nsimplement que sàpigas que ja tens un compte %s.\n\nEl teu nom d'usuari: %s\nAccedir-hi: %s\n", diff --git a/settings/l10n/cs.js b/settings/l10n/cs.js index f0b593a0eb9..c26e0de0d7e 100644 --- a/settings/l10n/cs.js +++ b/settings/l10n/cs.js @@ -237,13 +237,8 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Nebylo možné spustit službu cron v CLI. Došlo k následujícím technickým chybám:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Prosím překontrolujte <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">instalační pokyny ↗</a> a najděte jakékoliv chyby a varování v <a href=\"%s\">logu</a>.", "All checks passed." : "Všechny testy byly úspěšné.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Poslední cron proběhl: %s.", - "Last cron job execution: %s. Something seems wrong." : "Poslední cron proběhl: %s. Vypadá to, že něco není v pořádku.", - "Cron was not executed yet!" : "Cron ještě nebyl spuštěn!", "Execute one task with each page loaded" : "Spustit jednu úlohu s každým načtením stránky", "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 system's 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.", "The cron.php needs to be executed by the system user \"%s\"." : "cron.php musí být spuštěn s právy systémového uživatele \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Pro spuštění je potřeba PHP posix rozšíření. Více informací lze nalézt v {linkstart}PHP dokumentaci{linkend}.", "Version" : "Verze", @@ -402,6 +397,11 @@ OC.L10N.register( "Uninstall" : "Odinstalovat", "This is used for sending out notifications." : "Toto se používá pro odesílání upozornění.", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Poslední cron proběhl: %s.", + "Last cron job execution: %s. Something seems wrong." : "Poslední cron proběhl: %s. Vypadá to, že něco není v pořádku.", + "Cron was not executed yet!" : "Cron ještě nebyl spuštěn!", + "Use system's 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.", "Uninstall app" : "Odinstalovat aplikaci", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Vítej,<br><br>jen ti dáváme vědět, že nyní máš %s účet.<br><br>Tvé uživatelské jméno: <strong>%s</strong><br>Přístup: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Ať slouží!", diff --git a/settings/l10n/cs.json b/settings/l10n/cs.json index 6ac052c7e56..4f91b0e8751 100644 --- a/settings/l10n/cs.json +++ b/settings/l10n/cs.json @@ -235,13 +235,8 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Nebylo možné spustit službu cron v CLI. Došlo k následujícím technickým chybám:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Prosím překontrolujte <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">instalační pokyny ↗</a> a najděte jakékoliv chyby a varování v <a href=\"%s\">logu</a>.", "All checks passed." : "Všechny testy byly úspěšné.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Poslední cron proběhl: %s.", - "Last cron job execution: %s. Something seems wrong." : "Poslední cron proběhl: %s. Vypadá to, že něco není v pořádku.", - "Cron was not executed yet!" : "Cron ještě nebyl spuštěn!", "Execute one task with each page loaded" : "Spustit jednu úlohu s každým načtením stránky", "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 system's 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.", "The cron.php needs to be executed by the system user \"%s\"." : "cron.php musí být spuštěn s právy systémového uživatele \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Pro spuštění je potřeba PHP posix rozšíření. Více informací lze nalézt v {linkstart}PHP dokumentaci{linkend}.", "Version" : "Verze", @@ -400,6 +395,11 @@ "Uninstall" : "Odinstalovat", "This is used for sending out notifications." : "Toto se používá pro odesílání upozornění.", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Poslední cron proběhl: %s.", + "Last cron job execution: %s. Something seems wrong." : "Poslední cron proběhl: %s. Vypadá to, že něco není v pořádku.", + "Cron was not executed yet!" : "Cron ještě nebyl spuštěn!", + "Use system's 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.", "Uninstall app" : "Odinstalovat aplikaci", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Vítej,<br><br>jen ti dáváme vědět, že nyní máš %s účet.<br><br>Tvé uživatelské jméno: <strong>%s</strong><br>Přístup: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Ať slouží!", diff --git a/settings/l10n/da.js b/settings/l10n/da.js index 4667705ba61..54c7d2a585d 100644 --- a/settings/l10n/da.js +++ b/settings/l10n/da.js @@ -115,13 +115,8 @@ OC.L10N.register( "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Hvis din installation ikke er installeret i roden af domænet, og bruger systemets cron, så kan der være problemer med URL-oprettelsen. For at undgå disse problemer, så angiv tilvalget \"overwrite.cli.url\" i din fil config.php til webrodens sti for din installation (foreslået værdi: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Det var ikke muligt at udføre cronjobbet via kommandolinjefladen CLI. Følgende tekniske fejl fremkom:", "All checks passed." : "Alle tjek blev bestået.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Seneste udførsel af cronjob: %s.", - "Last cron job execution: %s. Something seems wrong." : "Seneste udførsel af cronjob: %s. Der er vist noget 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æsning", "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 system's cron service to call the cron.php file every 15 minutes." : "Brug systemets cron service til at kalde cron.php hver 15. minut", "Version" : "Version", "Sharing" : "Deling", "Allow apps to use the Share API" : "Tillad apps til at bruge Share API", @@ -219,6 +214,11 @@ OC.L10N.register( "Uninstall" : "Afinstallér", "This is used for sending out notifications." : "Dette anvendes til udsendelse af notifikationer.", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Seneste udførsel af cronjob: %s.", + "Last cron job execution: %s. Something seems wrong." : "Seneste udførsel af cronjob: %s. Der er vist noget galt.", + "Cron was not executed yet!" : "Cron har ikke kørt endnu!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Brug systemets cron service til at kalde cron.php hver 15. minut", "Cheers!" : "Hej!", "For password recovery and notifications" : "Angiv en e-mailadresse for at aktivere gendannelse af adgangskode og modtage notifikationer", "Show last log in" : "Vis seneste login" diff --git a/settings/l10n/da.json b/settings/l10n/da.json index c2d34a921b4..e3925b5d1e2 100644 --- a/settings/l10n/da.json +++ b/settings/l10n/da.json @@ -113,13 +113,8 @@ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Hvis din installation ikke er installeret i roden af domænet, og bruger systemets cron, så kan der være problemer med URL-oprettelsen. For at undgå disse problemer, så angiv tilvalget \"overwrite.cli.url\" i din fil config.php til webrodens sti for din installation (foreslået værdi: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Det var ikke muligt at udføre cronjobbet via kommandolinjefladen CLI. Følgende tekniske fejl fremkom:", "All checks passed." : "Alle tjek blev bestået.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Seneste udførsel af cronjob: %s.", - "Last cron job execution: %s. Something seems wrong." : "Seneste udførsel af cronjob: %s. Der er vist noget 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æsning", "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 system's cron service to call the cron.php file every 15 minutes." : "Brug systemets cron service til at kalde cron.php hver 15. minut", "Version" : "Version", "Sharing" : "Deling", "Allow apps to use the Share API" : "Tillad apps til at bruge Share API", @@ -217,6 +212,11 @@ "Uninstall" : "Afinstallér", "This is used for sending out notifications." : "Dette anvendes til udsendelse af notifikationer.", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Seneste udførsel af cronjob: %s.", + "Last cron job execution: %s. Something seems wrong." : "Seneste udførsel af cronjob: %s. Der er vist noget galt.", + "Cron was not executed yet!" : "Cron har ikke kørt endnu!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Brug systemets cron service til at kalde cron.php hver 15. minut", "Cheers!" : "Hej!", "For password recovery and notifications" : "Angiv en e-mailadresse for at aktivere gendannelse af adgangskode og modtage notifikationer", "Show last log in" : "Vis seneste login" diff --git a/settings/l10n/de.js b/settings/l10n/de.js index d9bfe6e16bb..cbb536a6721 100644 --- a/settings/l10n/de.js +++ b/settings/l10n/de.js @@ -241,14 +241,9 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Die Ausführung des Cron-Jobs über die Kommandozeile war nicht möglich. Die folgenden technischen Fehler sind dabei aufgetreten:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Bitte überprüfe noch einmal die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Installationsanleitungen ↗</a> und kontrolliere das <a href=\"%s\">Log</a> auf mögliche Fehler oder Warnungen.", "All checks passed." : "Alle Überprüfungen bestanden.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Letzte Cron-Job-Ausführung: %s.", - "Last cron job execution: %s. Something seems wrong." : "Letzte Cron-Job-Ausführung: %s. Möglicherweise liegt ein Fehler vor.", - "Cron was not executed yet!" : "Cron wurde bis jetzt noch nicht ausgeführt!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Um die optimale Geschwindigkeit zu erreichen ist es wichtig, dass die Hintergrund-Aktivitäten richtig konfiguriert sind. Für größere Installationen ist 'Cron' die empfohlene Einstellung. Weitere Informationen findest Du in der Dokumentation.", "Execute one task with each page loaded" : "Führe eine Aufgabe mit jeder geladenen Seite aus", "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 system's cron service to call the cron.php file every 15 minutes." : "Benutze den systemeigenen Cron-Dienst, um die cron.php alle 15 Minuten aufzurufen.", "The cron.php needs to be executed by the system user \"%s\"." : "Die cron.php muss durch den Systemnutzer \"%s\" ausgeführt werden.", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Um dies auszuführen, wird die PHP-Posix Erweiterung benötigt. Weitere Informationen in der {linkstart}PHP-Dokumentation{linkend}.", "Version" : "Version", @@ -407,6 +402,11 @@ OC.L10N.register( "Uninstall" : "Deinstallieren", "This is used for sending out notifications." : "Dies wird zum Senden von Benachrichtigungen verwendet.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Letzte Cron-Job-Ausführung: %s.", + "Last cron job execution: %s. Something seems wrong." : "Letzte Cron-Job-Ausführung: %s. Möglicherweise liegt ein Fehler vor.", + "Cron was not executed yet!" : "Cron wurde bis jetzt noch nicht ausgeführt!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Benutze den systemeigenen Cron-Dienst, um die cron.php alle 15 Minuten aufzurufen.", "Uninstall app" : "App deinstallieren", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hallo,<br><br>hier nur kurz die Mitteilung, dass du jetzt ein %s-Konto hast.<br><br>Dein Benutzername: <strong>%s</strong><br>Greife darauf zu: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Noch einen schönen Tag!", diff --git a/settings/l10n/de.json b/settings/l10n/de.json index dfbbfc0e5b5..2dbca06e5c7 100644 --- a/settings/l10n/de.json +++ b/settings/l10n/de.json @@ -239,14 +239,9 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Die Ausführung des Cron-Jobs über die Kommandozeile war nicht möglich. Die folgenden technischen Fehler sind dabei aufgetreten:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Bitte überprüfe noch einmal die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Installationsanleitungen ↗</a> und kontrolliere das <a href=\"%s\">Log</a> auf mögliche Fehler oder Warnungen.", "All checks passed." : "Alle Überprüfungen bestanden.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Letzte Cron-Job-Ausführung: %s.", - "Last cron job execution: %s. Something seems wrong." : "Letzte Cron-Job-Ausführung: %s. Möglicherweise liegt ein Fehler vor.", - "Cron was not executed yet!" : "Cron wurde bis jetzt noch nicht ausgeführt!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Um die optimale Geschwindigkeit zu erreichen ist es wichtig, dass die Hintergrund-Aktivitäten richtig konfiguriert sind. Für größere Installationen ist 'Cron' die empfohlene Einstellung. Weitere Informationen findest Du in der Dokumentation.", "Execute one task with each page loaded" : "Führe eine Aufgabe mit jeder geladenen Seite aus", "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 system's cron service to call the cron.php file every 15 minutes." : "Benutze den systemeigenen Cron-Dienst, um die cron.php alle 15 Minuten aufzurufen.", "The cron.php needs to be executed by the system user \"%s\"." : "Die cron.php muss durch den Systemnutzer \"%s\" ausgeführt werden.", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Um dies auszuführen, wird die PHP-Posix Erweiterung benötigt. Weitere Informationen in der {linkstart}PHP-Dokumentation{linkend}.", "Version" : "Version", @@ -405,6 +400,11 @@ "Uninstall" : "Deinstallieren", "This is used for sending out notifications." : "Dies wird zum Senden von Benachrichtigungen verwendet.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Letzte Cron-Job-Ausführung: %s.", + "Last cron job execution: %s. Something seems wrong." : "Letzte Cron-Job-Ausführung: %s. Möglicherweise liegt ein Fehler vor.", + "Cron was not executed yet!" : "Cron wurde bis jetzt noch nicht ausgeführt!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Benutze den systemeigenen Cron-Dienst, um die cron.php alle 15 Minuten aufzurufen.", "Uninstall app" : "App deinstallieren", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hallo,<br><br>hier nur kurz die Mitteilung, dass du jetzt ein %s-Konto hast.<br><br>Dein Benutzername: <strong>%s</strong><br>Greife darauf zu: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Noch einen schönen Tag!", diff --git a/settings/l10n/de_DE.js b/settings/l10n/de_DE.js index 170d3e959c9..e16b2752eed 100644 --- a/settings/l10n/de_DE.js +++ b/settings/l10n/de_DE.js @@ -241,14 +241,9 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Die Ausführung des Cron-Jobs über die Kommandozeile war nicht möglich. Die folgenden technischen Fehler sind dabei aufgetreten:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Bitte überprüfen Sie noch einmal die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Installationsanleitungen ↗</a> und kontrollieren Sie das <a href=\"%s\">Log</a> auf mögliche Fehler oder Warnungen.", "All checks passed." : "Alle Checks bestanden.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Letzte Cron-Job-Ausführung: %s.", - "Last cron job execution: %s. Something seems wrong." : "Letzte Cron-Job-Ausführung: %s. Möglicherweise liegt ein Fehler vor.", - "Cron was not executed yet!" : "Cron wurde bislang noch nicht ausgeführt!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Um die optimale Geschwindigkeit zu erreichen ist es wichtig, dass die Hintergrund-Aktivitäten richtig konfiguriert sind. Für größere Installationen ist 'Cron' die empfohlene Einstellung. Weitere Informationen finden Sie in der Dokumentation.", "Execute one task with each page loaded" : "Eine Aufgabe bei jedem Laden einer Seite ausführen", "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 system's cron service to call the cron.php file every 15 minutes." : "Benutzen Sie den systemeigenen Cron-Dienst, um die cron.php alle 15 Minuten aufzurufen.", "The cron.php needs to be executed by the system user \"%s\"." : "Die cron.php muss durch den Systemnutzer \"%s\" ausgeführt werden.", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Um dies auszuführen, benötigen Sie die PHP-Posix Erweiterung. Weitere Informationen in der {linkstart}PHP-Dokumentation{linkend}.", "Version" : "Version", @@ -407,6 +402,11 @@ OC.L10N.register( "Uninstall" : "Deinstallieren", "This is used for sending out notifications." : "Dies wird für das Senden von Benachrichtigungen verwendet.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Letzte Cron-Job-Ausführung: %s.", + "Last cron job execution: %s. Something seems wrong." : "Letzte Cron-Job-Ausführung: %s. Möglicherweise liegt ein Fehler vor.", + "Cron was not executed yet!" : "Cron wurde bislang noch nicht ausgeführt!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Benutzen Sie den systemeigenen Cron-Dienst, um die cron.php alle 15 Minuten aufzurufen.", "Uninstall app" : "App deinstallieren", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hallo,<br><br>hier nur kurz die Mitteilung, dass Sie jetzt ein %s-Konto haben.<br><br>Ihr Benutzername: <strong>%s</strong><br>Greifen Sie darauf zu: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Noch einen schönen Tag!", diff --git a/settings/l10n/de_DE.json b/settings/l10n/de_DE.json index d7a1d399052..a9fddbc5064 100644 --- a/settings/l10n/de_DE.json +++ b/settings/l10n/de_DE.json @@ -239,14 +239,9 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Die Ausführung des Cron-Jobs über die Kommandozeile war nicht möglich. Die folgenden technischen Fehler sind dabei aufgetreten:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Bitte überprüfen Sie noch einmal die <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">Installationsanleitungen ↗</a> und kontrollieren Sie das <a href=\"%s\">Log</a> auf mögliche Fehler oder Warnungen.", "All checks passed." : "Alle Checks bestanden.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Letzte Cron-Job-Ausführung: %s.", - "Last cron job execution: %s. Something seems wrong." : "Letzte Cron-Job-Ausführung: %s. Möglicherweise liegt ein Fehler vor.", - "Cron was not executed yet!" : "Cron wurde bislang noch nicht ausgeführt!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Um die optimale Geschwindigkeit zu erreichen ist es wichtig, dass die Hintergrund-Aktivitäten richtig konfiguriert sind. Für größere Installationen ist 'Cron' die empfohlene Einstellung. Weitere Informationen finden Sie in der Dokumentation.", "Execute one task with each page loaded" : "Eine Aufgabe bei jedem Laden einer Seite ausführen", "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 system's cron service to call the cron.php file every 15 minutes." : "Benutzen Sie den systemeigenen Cron-Dienst, um die cron.php alle 15 Minuten aufzurufen.", "The cron.php needs to be executed by the system user \"%s\"." : "Die cron.php muss durch den Systemnutzer \"%s\" ausgeführt werden.", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Um dies auszuführen, benötigen Sie die PHP-Posix Erweiterung. Weitere Informationen in der {linkstart}PHP-Dokumentation{linkend}.", "Version" : "Version", @@ -405,6 +400,11 @@ "Uninstall" : "Deinstallieren", "This is used for sending out notifications." : "Dies wird für das Senden von Benachrichtigungen verwendet.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Letzte Cron-Job-Ausführung: %s.", + "Last cron job execution: %s. Something seems wrong." : "Letzte Cron-Job-Ausführung: %s. Möglicherweise liegt ein Fehler vor.", + "Cron was not executed yet!" : "Cron wurde bislang noch nicht ausgeführt!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Benutzen Sie den systemeigenen Cron-Dienst, um die cron.php alle 15 Minuten aufzurufen.", "Uninstall app" : "App deinstallieren", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hallo,<br><br>hier nur kurz die Mitteilung, dass Sie jetzt ein %s-Konto haben.<br><br>Ihr Benutzername: <strong>%s</strong><br>Greifen Sie darauf zu: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Noch einen schönen Tag!", diff --git a/settings/l10n/el.js b/settings/l10n/el.js index 201f195076a..78dc45ea2e2 100644 --- a/settings/l10n/el.js +++ b/settings/l10n/el.js @@ -4,8 +4,10 @@ OC.L10N.register( "{actor} changed your password" : "{actor} το συθηματικό σας άλλαξε", "You changed your password" : "Αλλάξατε το συνθηματικό σας", "Your password was reset by an administrator" : "Έχει γίνει επαναφορά του συνθηματικού σας από τον διαχειριστή", + "{actor} changed your email address" : "{actor} άλλαξε τη διεύθυνσή του ηλεκτρονικού ταχυδρομείου σας", "You changed your email address" : "Έχετε αλλάξει τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας", "Your email address was changed by an administrator" : "Η διεύθυνση ηλεκτρονικής αλληλογραφίας άλλαξε από τον διαχειριστή", + "Your <strong>password</strong> or <strong>email</strong> was modified" : "Ο δικός σας <ισχυρός>κωδικός πρόσβασης</ισχυρός>ή<ισχυρός>αλληλογραφίας</ισχυρός>τροποποιήθηκε", "Your apps" : "Οι εφαρμογές σας", "Enabled apps" : "Ενεργοποιημένες εφαρμογές", "Disabled apps" : "Απενεργοποιημένες εφαρμογές", @@ -45,6 +47,7 @@ OC.L10N.register( "Unable to change mail address" : "Αδυναμία αλλαγής διεύθυνσης αλληλογραφίας", "Email saved" : "Το email αποθηκεύτηκε ", "Password changed for %s" : "Το συνθηματικό άλλαξε για τον %s", + "If you did not request this, please contact an administrator." : "Εάν δεν το αιτηθήκατε, παρακαλούμε επικοινωνήστε με τον διαχειριστή.", "The new email address is %s" : "Η νέα διεύθυνση ηλεκτρονικής αλληλογραφίας είναι %s", "Welcome aboard" : "Καλώς ήλθατε", "Welcome aboard %s" : "Καλώς ήλθατε %s", @@ -55,6 +58,7 @@ OC.L10N.register( "Password confirmation is required" : "Απαιτείται επιβεβαίωση συνθηματικού", "Couldn't remove app." : "Αδυναμία αφαίρεσης εφαρμογής.", "Couldn't update app." : "Αδυναμία ενημέρωσης εφαρμογής", + "Are you really sure you want add {domain} as trusted domain?" : "Θέλετε σίγουρα να προσθέσετε τον τομέα {domain} ως έμπιστο τομέα;", "Add trusted domain" : "Προσθέστε αξιόπιστη περιοχή", "Migration in progress. Please wait until the migration is finished" : "Μετάβαση σε εξέλιξη. Παρακαλούμε περιμένετε μέχρι να ολοκληρωθεί η μετάβαση", "Migration started …" : "Η μετάβαση ξεκίνησε ...", @@ -197,13 +201,9 @@ OC.L10N.register( "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Αν η εγκατάστασή σας δεν έχει γίνει στο root του τομέα και χρησιμοποιείται το cron του συστήματος, μπορεί να υπάρξουν ζητήματα με τη δημιουργία URL. Για να αποφύγετε αυτά τα προβλήματα, παρακαλώ ρυθμίστε την επιλογή \"overwrite.cli.url\" στο αρχείο config.php που βρίσκεται στη διαδρομή webroot της εγκατάστασής σας (Suggested: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Δεν ήταν δυνατή η εκτέλεση της cronjob μέσω τερματικού. Εμφανίστηκαν τα παρακάτω τεχνικά σφάλματα:", "All checks passed." : "Όλοι οι έλεγχοι επιτυχείς.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Τελευταία εκτέλεση cron job: %s.", - "Last cron job execution: %s. Something seems wrong." : "Τελευταία εκτέλεση cron job: %s. Κάτι πήγε στραβά.", - "Cron was not executed yet!" : "Η διεργασία cron δεν έχει εκτελεστεί ακόμα!", "Execute one task with each page loaded" : "Εκτελεί μια διεργασία κάθε φορά που φορτώνεται μια σελίδα", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "Το cron.php είναι καταχωρημένο σε μια υπηρεσία webcron ώστε να καλεί το cron.php κάθε 15 λεπτά μέσω http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Χρησιμοποιήστε την cron υπηρεσία του συτήματος για να καλέσετε το cron.php αρχείο κάθε 15 λεπτά.", + "The cron.php needs to be executed by the system user \"%s\"." : "Το cron.php πρέπει να εκτελεστεί από τον χρήστη του συστήματος \"%s\".", "Version" : "Έκδοση", "Sharing" : "Διαμοιρασμός", "Allow apps to use the Share API" : "Επιτρέπει την χρήση του API διαμοιρασμού σε εφαρμογές ", @@ -230,6 +230,7 @@ OC.L10N.register( "Check the security of your Nextcloud over our security scan" : "Ελέγξτε την ασφάλεια του Nextcloud σας μέσω της σάρωσης ασφαλείας", "Hardening and security guidance" : "Οδηγίες ασφάλειας και θωράκισης", "Developer documentation" : "Τεκμηρίωση προγραμματιστή", + "View in store" : "Προβολή στο κέντρο εφαρμογών", "Limit to groups" : "Όριο στις ομάδες", "This app has an update available." : "Αυτή η εφαρμογή έχει διαθέσιμη ενημέρωση.", "by %s" : "από %s", @@ -272,6 +273,7 @@ OC.L10N.register( "Address" : "Διεύθυνση", "Your postal address" : "Ο ταχυδρομικός σας κώδικας", "Website" : "Ιστοσελίδα", + "It can take up to 24 hours before the account is displayed as verified." : "Η επαλήθευση του λογαριασμού μπορεί να διαρκέσει έως και 24 ώρες.", "Link https://…" : "Σύνδεσμος https://…", "Twitter" : "Twitter", "You are member of the following groups:" : "Είστε μέλος των ακόλουθων ομάδων:", @@ -298,6 +300,7 @@ OC.L10N.register( "Like our facebook page!" : "Ακολουθήστε μας στην σελίδα μας στο facebook!", "Follow us on Twitter!" : "Ακολουθήστε μας στο Twitter!", "Check out our blog!" : "Επισκεφθείτε το ιστολόγιό μας!", + "Subscribe to our newsletter!" : "Εγγραφείτε στο ενημερωτικό δελτίο μας!", "Settings" : "Ρυθμίσεις", "Show storage location" : "Εμφάνιση τοποθεσίας αποθήκευσης", "Show user backend" : "Εμφάνιση χρήστη συστήματος υποστήριξης", @@ -338,6 +341,11 @@ OC.L10N.register( "Uninstall" : "Απεγκατάσταση", "This is used for sending out notifications." : "Χρησιμοποιείται για αποστολή ειδοποιήσεων.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. ", + "Cron" : "Cron", + "Last cron job execution: %s." : "Τελευταία εκτέλεση cron job: %s.", + "Last cron job execution: %s. Something seems wrong." : "Τελευταία εκτέλεση cron job: %s. Κάτι πήγε στραβά.", + "Cron was not executed yet!" : "Η διεργασία cron δεν έχει εκτελεστεί ακόμα!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Χρησιμοποιήστε την cron υπηρεσία του συτήματος για να καλέσετε το cron.php αρχείο κάθε 15 λεπτά.", "Uninstall app" : "Απεγκατάσταση εφαρμογης", "Cheers!" : "Χαιρετισμούς!", "For password recovery and notifications" : "Η ανάκτηση του συνθηματικού και οι ειδοποιήσεις", diff --git a/settings/l10n/el.json b/settings/l10n/el.json index 8a813613171..d1a020daaec 100644 --- a/settings/l10n/el.json +++ b/settings/l10n/el.json @@ -2,8 +2,10 @@ "{actor} changed your password" : "{actor} το συθηματικό σας άλλαξε", "You changed your password" : "Αλλάξατε το συνθηματικό σας", "Your password was reset by an administrator" : "Έχει γίνει επαναφορά του συνθηματικού σας από τον διαχειριστή", + "{actor} changed your email address" : "{actor} άλλαξε τη διεύθυνσή του ηλεκτρονικού ταχυδρομείου σας", "You changed your email address" : "Έχετε αλλάξει τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας", "Your email address was changed by an administrator" : "Η διεύθυνση ηλεκτρονικής αλληλογραφίας άλλαξε από τον διαχειριστή", + "Your <strong>password</strong> or <strong>email</strong> was modified" : "Ο δικός σας <ισχυρός>κωδικός πρόσβασης</ισχυρός>ή<ισχυρός>αλληλογραφίας</ισχυρός>τροποποιήθηκε", "Your apps" : "Οι εφαρμογές σας", "Enabled apps" : "Ενεργοποιημένες εφαρμογές", "Disabled apps" : "Απενεργοποιημένες εφαρμογές", @@ -43,6 +45,7 @@ "Unable to change mail address" : "Αδυναμία αλλαγής διεύθυνσης αλληλογραφίας", "Email saved" : "Το email αποθηκεύτηκε ", "Password changed for %s" : "Το συνθηματικό άλλαξε για τον %s", + "If you did not request this, please contact an administrator." : "Εάν δεν το αιτηθήκατε, παρακαλούμε επικοινωνήστε με τον διαχειριστή.", "The new email address is %s" : "Η νέα διεύθυνση ηλεκτρονικής αλληλογραφίας είναι %s", "Welcome aboard" : "Καλώς ήλθατε", "Welcome aboard %s" : "Καλώς ήλθατε %s", @@ -53,6 +56,7 @@ "Password confirmation is required" : "Απαιτείται επιβεβαίωση συνθηματικού", "Couldn't remove app." : "Αδυναμία αφαίρεσης εφαρμογής.", "Couldn't update app." : "Αδυναμία ενημέρωσης εφαρμογής", + "Are you really sure you want add {domain} as trusted domain?" : "Θέλετε σίγουρα να προσθέσετε τον τομέα {domain} ως έμπιστο τομέα;", "Add trusted domain" : "Προσθέστε αξιόπιστη περιοχή", "Migration in progress. Please wait until the migration is finished" : "Μετάβαση σε εξέλιξη. Παρακαλούμε περιμένετε μέχρι να ολοκληρωθεί η μετάβαση", "Migration started …" : "Η μετάβαση ξεκίνησε ...", @@ -195,13 +199,9 @@ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Αν η εγκατάστασή σας δεν έχει γίνει στο root του τομέα και χρησιμοποιείται το cron του συστήματος, μπορεί να υπάρξουν ζητήματα με τη δημιουργία URL. Για να αποφύγετε αυτά τα προβλήματα, παρακαλώ ρυθμίστε την επιλογή \"overwrite.cli.url\" στο αρχείο config.php που βρίσκεται στη διαδρομή webroot της εγκατάστασής σας (Suggested: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Δεν ήταν δυνατή η εκτέλεση της cronjob μέσω τερματικού. Εμφανίστηκαν τα παρακάτω τεχνικά σφάλματα:", "All checks passed." : "Όλοι οι έλεγχοι επιτυχείς.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Τελευταία εκτέλεση cron job: %s.", - "Last cron job execution: %s. Something seems wrong." : "Τελευταία εκτέλεση cron job: %s. Κάτι πήγε στραβά.", - "Cron was not executed yet!" : "Η διεργασία cron δεν έχει εκτελεστεί ακόμα!", "Execute one task with each page loaded" : "Εκτελεί μια διεργασία κάθε φορά που φορτώνεται μια σελίδα", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "Το cron.php είναι καταχωρημένο σε μια υπηρεσία webcron ώστε να καλεί το cron.php κάθε 15 λεπτά μέσω http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Χρησιμοποιήστε την cron υπηρεσία του συτήματος για να καλέσετε το cron.php αρχείο κάθε 15 λεπτά.", + "The cron.php needs to be executed by the system user \"%s\"." : "Το cron.php πρέπει να εκτελεστεί από τον χρήστη του συστήματος \"%s\".", "Version" : "Έκδοση", "Sharing" : "Διαμοιρασμός", "Allow apps to use the Share API" : "Επιτρέπει την χρήση του API διαμοιρασμού σε εφαρμογές ", @@ -228,6 +228,7 @@ "Check the security of your Nextcloud over our security scan" : "Ελέγξτε την ασφάλεια του Nextcloud σας μέσω της σάρωσης ασφαλείας", "Hardening and security guidance" : "Οδηγίες ασφάλειας και θωράκισης", "Developer documentation" : "Τεκμηρίωση προγραμματιστή", + "View in store" : "Προβολή στο κέντρο εφαρμογών", "Limit to groups" : "Όριο στις ομάδες", "This app has an update available." : "Αυτή η εφαρμογή έχει διαθέσιμη ενημέρωση.", "by %s" : "από %s", @@ -270,6 +271,7 @@ "Address" : "Διεύθυνση", "Your postal address" : "Ο ταχυδρομικός σας κώδικας", "Website" : "Ιστοσελίδα", + "It can take up to 24 hours before the account is displayed as verified." : "Η επαλήθευση του λογαριασμού μπορεί να διαρκέσει έως και 24 ώρες.", "Link https://…" : "Σύνδεσμος https://…", "Twitter" : "Twitter", "You are member of the following groups:" : "Είστε μέλος των ακόλουθων ομάδων:", @@ -296,6 +298,7 @@ "Like our facebook page!" : "Ακολουθήστε μας στην σελίδα μας στο facebook!", "Follow us on Twitter!" : "Ακολουθήστε μας στο Twitter!", "Check out our blog!" : "Επισκεφθείτε το ιστολόγιό μας!", + "Subscribe to our newsletter!" : "Εγγραφείτε στο ενημερωτικό δελτίο μας!", "Settings" : "Ρυθμίσεις", "Show storage location" : "Εμφάνιση τοποθεσίας αποθήκευσης", "Show user backend" : "Εμφάνιση χρήστη συστήματος υποστήριξης", @@ -336,6 +339,11 @@ "Uninstall" : "Απεγκατάσταση", "This is used for sending out notifications." : "Χρησιμοποιείται για αποστολή ειδοποιήσεων.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. ", + "Cron" : "Cron", + "Last cron job execution: %s." : "Τελευταία εκτέλεση cron job: %s.", + "Last cron job execution: %s. Something seems wrong." : "Τελευταία εκτέλεση cron job: %s. Κάτι πήγε στραβά.", + "Cron was not executed yet!" : "Η διεργασία cron δεν έχει εκτελεστεί ακόμα!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Χρησιμοποιήστε την cron υπηρεσία του συτήματος για να καλέσετε το cron.php αρχείο κάθε 15 λεπτά.", "Uninstall app" : "Απεγκατάσταση εφαρμογης", "Cheers!" : "Χαιρετισμούς!", "For password recovery and notifications" : "Η ανάκτηση του συνθηματικού και οι ειδοποιήσεις", diff --git a/settings/l10n/en_GB.js b/settings/l10n/en_GB.js index e24eece47cb..582d8a27986 100644 --- a/settings/l10n/en_GB.js +++ b/settings/l10n/en_GB.js @@ -140,13 +140,8 @@ OC.L10N.register( "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:", "All checks passed." : "All checks passed.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Last cron job execution: %s.", - "Last cron job execution: %s. Something seems wrong." : "Last cron job execution: %s. Something seems wrong.", - "Cron was not executed yet!" : "Cron was not executed yet!", "Execute one task with each page loaded" : "Execute one task with each page loaded", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php is registered at a webcron service to call cron.php every 15 minutes over http.", - "Use system's 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.", "Version" : "Version", "Sharing" : "Sharing", "Allow apps to use the Share API" : "Allow apps to use the Share API", @@ -259,6 +254,11 @@ OC.L10N.register( "Uninstall" : "Uninstall", "This is used for sending out notifications." : "This is used for sending out notifications.", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Last cron job execution: %s.", + "Last cron job execution: %s. Something seems wrong." : "Last cron job execution: %s. Something seems wrong.", + "Cron was not executed yet!" : "Cron was not executed yet!", + "Use system's 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.", "Cheers!" : "Cheers!", "For password recovery and notifications" : "For password recovery and notifications", "Show last log in" : "Show last log in" diff --git a/settings/l10n/en_GB.json b/settings/l10n/en_GB.json index 48bf9665c70..f1a9db32c00 100644 --- a/settings/l10n/en_GB.json +++ b/settings/l10n/en_GB.json @@ -138,13 +138,8 @@ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:", "All checks passed." : "All checks passed.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Last cron job execution: %s.", - "Last cron job execution: %s. Something seems wrong." : "Last cron job execution: %s. Something seems wrong.", - "Cron was not executed yet!" : "Cron was not executed yet!", "Execute one task with each page loaded" : "Execute one task with each page loaded", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php is registered at a webcron service to call cron.php every 15 minutes over http.", - "Use system's 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.", "Version" : "Version", "Sharing" : "Sharing", "Allow apps to use the Share API" : "Allow apps to use the Share API", @@ -257,6 +252,11 @@ "Uninstall" : "Uninstall", "This is used for sending out notifications." : "This is used for sending out notifications.", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Last cron job execution: %s.", + "Last cron job execution: %s. Something seems wrong." : "Last cron job execution: %s. Something seems wrong.", + "Cron was not executed yet!" : "Cron was not executed yet!", + "Use system's 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.", "Cheers!" : "Cheers!", "For password recovery and notifications" : "For password recovery and notifications", "Show last log in" : "Show last log in" diff --git a/settings/l10n/eo.js b/settings/l10n/eo.js index 539e11c48e3..65eaaf0a6a8 100644 --- a/settings/l10n/eo.js +++ b/settings/l10n/eo.js @@ -58,7 +58,6 @@ OC.L10N.register( "Send email" : "Sendi retpoŝton", "This is the final warning: Do you really want to enable encryption?" : "Jen la fina averto: ĉu vi certe volas kapabligi ĉifradon?", "Enable encryption" : "Kapabligi ĉifradon", - "Cron" : "Cron", "Version" : "Eldono", "Sharing" : "Kunhavigo", "Allow apps to use the Share API" : "Kapabligi aplikaĵojn uzi la API-on pri Kunhavigo", @@ -122,6 +121,7 @@ OC.L10N.register( "Uninstalling ...." : "Malinstalante...", "Error while uninstalling app" : "Eraris malinstalo de aplikaĵo", "Uninstall" : "Malinstali", + "Cron" : "Cron", "Show last log in" : "Montri lastan ensaluton" }, "nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/eo.json b/settings/l10n/eo.json index 45f50828852..e91ba66ad71 100644 --- a/settings/l10n/eo.json +++ b/settings/l10n/eo.json @@ -56,7 +56,6 @@ "Send email" : "Sendi retpoŝton", "This is the final warning: Do you really want to enable encryption?" : "Jen la fina averto: ĉu vi certe volas kapabligi ĉifradon?", "Enable encryption" : "Kapabligi ĉifradon", - "Cron" : "Cron", "Version" : "Eldono", "Sharing" : "Kunhavigo", "Allow apps to use the Share API" : "Kapabligi aplikaĵojn uzi la API-on pri Kunhavigo", @@ -120,6 +119,7 @@ "Uninstalling ...." : "Malinstalante...", "Error while uninstalling app" : "Eraris malinstalo de aplikaĵo", "Uninstall" : "Malinstali", + "Cron" : "Cron", "Show last log in" : "Montri lastan ensaluton" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/settings/l10n/es.js b/settings/l10n/es.js index 90d96ea6e1a..97236b41523 100644 --- a/settings/l10n/es.js +++ b/settings/l10n/es.js @@ -239,14 +239,9 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "No fue posible ejecutar cronjob vía CLI. Han aparecido los siguientes errores técnicos:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Por favor, compruebe las <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guías de instalación ↗</a>, y compruebe posibles errores o advertencias en el <a href=\"%s\">registro</a>.", "All checks passed." : "Ha pasado todos los controles", - "Cron" : "Cron", - "Last cron job execution: %s." : "Cron se ejecutó por última vez: %s", - "Last cron job execution: %s. Something seems wrong." : "Cron se ejecutó por última vez: %s. Algo va mal.", - "Cron was not executed yet!" : "¡Cron aún no ha sido ejecutado!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Para un desempeño óptimo es imoprtante configurar correctamente los trabajos en segundo plano. Para instancias más grandes, 'cron' es la configuración recomendada. Por favor, lee la documentación para más información.", "Execute one task with each page loaded" : "Ejecutar una tarea con cada página cargada", "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 system's 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.", "The cron.php needs to be executed by the system user \"%s\"." : "El archivo cron.php debe ser ejecutado por el usuario de sistema \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Para ejecutar esto se necesita la extensión posix de PHP. Ver la {linkstart}documentación de PHP{linkend} para más detellas.", "Version" : "Versión", @@ -405,6 +400,11 @@ OC.L10N.register( "Uninstall" : "Desinstalar", "This is used for sending out notifications." : "Esto se usa para enviar notificaciones.", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Cron se ejecutó por última vez: %s", + "Last cron job execution: %s. Something seems wrong." : "Cron se ejecutó por última vez: %s. Algo va mal.", + "Cron was not executed yet!" : "¡Cron aún no ha sido ejecutado!", + "Use system's 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.", "Uninstall app" : "Desinstalar aplicación", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hola:<br><br>Solo queremos hacerle saber que ahora dispone de una cuenta de %s.<br><br>Su usuario: <strong>%s</strong><br>Acceda: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "¡Saludos!", diff --git a/settings/l10n/es.json b/settings/l10n/es.json index c430bb995d4..4f98ac68d15 100644 --- a/settings/l10n/es.json +++ b/settings/l10n/es.json @@ -237,14 +237,9 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "No fue posible ejecutar cronjob vía CLI. Han aparecido los siguientes errores técnicos:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Por favor, compruebe las <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guías de instalación ↗</a>, y compruebe posibles errores o advertencias en el <a href=\"%s\">registro</a>.", "All checks passed." : "Ha pasado todos los controles", - "Cron" : "Cron", - "Last cron job execution: %s." : "Cron se ejecutó por última vez: %s", - "Last cron job execution: %s. Something seems wrong." : "Cron se ejecutó por última vez: %s. Algo va mal.", - "Cron was not executed yet!" : "¡Cron aún no ha sido ejecutado!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Para un desempeño óptimo es imoprtante configurar correctamente los trabajos en segundo plano. Para instancias más grandes, 'cron' es la configuración recomendada. Por favor, lee la documentación para más información.", "Execute one task with each page loaded" : "Ejecutar una tarea con cada página cargada", "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 system's 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.", "The cron.php needs to be executed by the system user \"%s\"." : "El archivo cron.php debe ser ejecutado por el usuario de sistema \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Para ejecutar esto se necesita la extensión posix de PHP. Ver la {linkstart}documentación de PHP{linkend} para más detellas.", "Version" : "Versión", @@ -403,6 +398,11 @@ "Uninstall" : "Desinstalar", "This is used for sending out notifications." : "Esto se usa para enviar notificaciones.", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Cron se ejecutó por última vez: %s", + "Last cron job execution: %s. Something seems wrong." : "Cron se ejecutó por última vez: %s. Algo va mal.", + "Cron was not executed yet!" : "¡Cron aún no ha sido ejecutado!", + "Use system's 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.", "Uninstall app" : "Desinstalar aplicación", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hola:<br><br>Solo queremos hacerle saber que ahora dispone de una cuenta de %s.<br><br>Su usuario: <strong>%s</strong><br>Acceda: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "¡Saludos!", diff --git a/settings/l10n/es_AR.js b/settings/l10n/es_AR.js index 08ce0dafa85..1e9eee70165 100644 --- a/settings/l10n/es_AR.js +++ b/settings/l10n/es_AR.js @@ -54,7 +54,6 @@ OC.L10N.register( "Send email" : "Enviar correo", "System locale can not be set to a one which supports UTF-8." : "La localización del sistema no puede cambiarse a una que soporta UTF-8", "This means that there might be problems with certain characters in file names." : "Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivos.", - "Cron" : "Cron", "Execute one task with each page loaded" : "Ejecutá una tarea con cada pagina cargada.", "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.", "Version" : "Versión", @@ -101,6 +100,7 @@ OC.L10N.register( "Sending..." : "Enviando...", "This is used for sending out notifications." : "Esto es usado para enviar notificaciones.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type", + "Cron" : "Cron", "Cheers!" : "¡Saludos!" }, "nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/es_AR.json b/settings/l10n/es_AR.json index 698b3f3c54c..c304dea46e6 100644 --- a/settings/l10n/es_AR.json +++ b/settings/l10n/es_AR.json @@ -52,7 +52,6 @@ "Send email" : "Enviar correo", "System locale can not be set to a one which supports UTF-8." : "La localización del sistema no puede cambiarse a una que soporta UTF-8", "This means that there might be problems with certain characters in file names." : "Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivos.", - "Cron" : "Cron", "Execute one task with each page loaded" : "Ejecutá una tarea con cada pagina cargada.", "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.", "Version" : "Versión", @@ -99,6 +98,7 @@ "Sending..." : "Enviando...", "This is used for sending out notifications." : "Esto es usado para enviar notificaciones.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type", + "Cron" : "Cron", "Cheers!" : "¡Saludos!" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/settings/l10n/es_MX.js b/settings/l10n/es_MX.js index 692593dda51..ec7717ca808 100644 --- a/settings/l10n/es_MX.js +++ b/settings/l10n/es_MX.js @@ -241,14 +241,9 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "No fue posible ejecutar la tarea de cron con CLI. Se presentaron los siguientes errores técnicos:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Favor de volver a verificar <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guías de instalación↗</a>, y compruebe que no haya errores o advertenicas en la <a href=\"%s\">bitácora</a>.", "All checks passed." : "Pasaron todas las verificaciones. ", - "Cron" : "Cron", - "Last cron job execution: %s." : "Última ejecución de tareas de cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última ejecución de tareas de cron: %s. Algo parece estar mal. ", - "Cron was not executed yet!" : "¡Aún no han sido ejecutas las tareas programadas!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Para un desempeño ideal, es importante configurar los trabajos de fondo correctametne. Para instancias más grandes 'Cron' es el ajuste recomendado. Favor de consultar la documentación para más información. ", "Execute one task with each page loaded" : "Ejecutar una tarea con cada página cargada", "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 llamar a cron.php cada 15 minutos a través de HTTP.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Usar el servicio de cron del sistema para llamar el archivo cron.php cada 15 minutos.", "The cron.php needs to be executed by the system user \"%s\"." : "El cron.php necesita ser ejecutado por el usuario del sistema \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Para correr esto usted necesita la extensión posix de PHP. Favor de consultar la {linkstart}documentación de PHP{linkend} para más detalles. ", "Version" : "Versión", @@ -407,6 +402,11 @@ OC.L10N.register( "Uninstall" : "Desinstalar", "This is used for sending out notifications." : "Esto se usa para enviar notificaciones", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "El modulo PHP 'fileinfo' no ha sido encontrado. Le recomendamos ámpliamente que habilite este módulo para obtener los mejores resultados en la detección de tipos MIME.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Última ejecución de tareas de cron: %s.", + "Last cron job execution: %s. Something seems wrong." : "Última ejecución de tareas de cron: %s. Algo parece estar mal. ", + "Cron was not executed yet!" : "¡Aún no han sido ejecutas las tareas programadas!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Usar el servicio de cron del sistema para llamar el archivo cron.php cada 15 minutos.", "Uninstall app" : "Desinstalar la aplicación", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hola,<br><br> sólo queremos informarle que ahora usted tiene una cuenta %s.<br><br> Su nombre de usuario es: <strong>%s</strong> <br>Ingrese a ella: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "¡Saludos!", diff --git a/settings/l10n/es_MX.json b/settings/l10n/es_MX.json index 37836b5ce6b..291b3a98c2d 100644 --- a/settings/l10n/es_MX.json +++ b/settings/l10n/es_MX.json @@ -239,14 +239,9 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "No fue posible ejecutar la tarea de cron con CLI. Se presentaron los siguientes errores técnicos:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Favor de volver a verificar <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guías de instalación↗</a>, y compruebe que no haya errores o advertenicas en la <a href=\"%s\">bitácora</a>.", "All checks passed." : "Pasaron todas las verificaciones. ", - "Cron" : "Cron", - "Last cron job execution: %s." : "Última ejecución de tareas de cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última ejecución de tareas de cron: %s. Algo parece estar mal. ", - "Cron was not executed yet!" : "¡Aún no han sido ejecutas las tareas programadas!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Para un desempeño ideal, es importante configurar los trabajos de fondo correctametne. Para instancias más grandes 'Cron' es el ajuste recomendado. Favor de consultar la documentación para más información. ", "Execute one task with each page loaded" : "Ejecutar una tarea con cada página cargada", "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 llamar a cron.php cada 15 minutos a través de HTTP.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Usar el servicio de cron del sistema para llamar el archivo cron.php cada 15 minutos.", "The cron.php needs to be executed by the system user \"%s\"." : "El cron.php necesita ser ejecutado por el usuario del sistema \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Para correr esto usted necesita la extensión posix de PHP. Favor de consultar la {linkstart}documentación de PHP{linkend} para más detalles. ", "Version" : "Versión", @@ -405,6 +400,11 @@ "Uninstall" : "Desinstalar", "This is used for sending out notifications." : "Esto se usa para enviar notificaciones", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "El modulo PHP 'fileinfo' no ha sido encontrado. Le recomendamos ámpliamente que habilite este módulo para obtener los mejores resultados en la detección de tipos MIME.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Última ejecución de tareas de cron: %s.", + "Last cron job execution: %s. Something seems wrong." : "Última ejecución de tareas de cron: %s. Algo parece estar mal. ", + "Cron was not executed yet!" : "¡Aún no han sido ejecutas las tareas programadas!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Usar el servicio de cron del sistema para llamar el archivo cron.php cada 15 minutos.", "Uninstall app" : "Desinstalar la aplicación", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hola,<br><br> sólo queremos informarle que ahora usted tiene una cuenta %s.<br><br> Su nombre de usuario es: <strong>%s</strong> <br>Ingrese a ella: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "¡Saludos!", diff --git a/settings/l10n/et_EE.js b/settings/l10n/et_EE.js index c047e958c69..58db34659e6 100644 --- a/settings/l10n/et_EE.js +++ b/settings/l10n/et_EE.js @@ -97,13 +97,8 @@ OC.L10N.register( "System locale can not be set to a one which supports UTF-8." : "Süsteemi lokaliseeringuks ei saa panna sellist, mis toetab UTF-8-t.", "This means that there might be problems with certain characters in file names." : "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega.", "All checks passed." : "Kõik kontrollid on läbitud.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Cron käivitati viimati %s.", - "Last cron job execution: %s. Something seems wrong." : "Cron käivitati viimati %s. Midagi tunduv valesti olevat.", - "Cron was not executed yet!" : "Cron pole kordagi käivitatud!", "Execute one task with each page loaded" : "Käivita toiming igal lehe laadimisel", "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 system's 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 järel.", "Version" : "Versioon", "Sharing" : "Jagamine", "Allow apps to use the Share API" : "Luba rakendustel kasutada Share API-t", @@ -194,6 +189,11 @@ OC.L10N.register( "Uninstall" : "Eemalda", "This is used for sending out notifications." : "Seda kasutatakse teadete välja saatmiseks.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Cron käivitati viimati %s.", + "Last cron job execution: %s. Something seems wrong." : "Cron käivitati viimati %s. Midagi tunduv valesti olevat.", + "Cron was not executed yet!" : "Cron pole kordagi käivitatud!", + "Use system's 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 järel.", "Cheers!" : "Terekest!", "Show last log in" : "Viimane sisselogimine" }, diff --git a/settings/l10n/et_EE.json b/settings/l10n/et_EE.json index 9e1a9d46594..7e93da063ed 100644 --- a/settings/l10n/et_EE.json +++ b/settings/l10n/et_EE.json @@ -95,13 +95,8 @@ "System locale can not be set to a one which supports UTF-8." : "Süsteemi lokaliseeringuks ei saa panna sellist, mis toetab UTF-8-t.", "This means that there might be problems with certain characters in file names." : "See tähendab, et võib esineda probleeme failide nimedes mõnede sümbolitega.", "All checks passed." : "Kõik kontrollid on läbitud.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Cron käivitati viimati %s.", - "Last cron job execution: %s. Something seems wrong." : "Cron käivitati viimati %s. Midagi tunduv valesti olevat.", - "Cron was not executed yet!" : "Cron pole kordagi käivitatud!", "Execute one task with each page loaded" : "Käivita toiming igal lehe laadimisel", "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 system's 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 järel.", "Version" : "Versioon", "Sharing" : "Jagamine", "Allow apps to use the Share API" : "Luba rakendustel kasutada Share API-t", @@ -192,6 +187,11 @@ "Uninstall" : "Eemalda", "This is used for sending out notifications." : "Seda kasutatakse teadete välja saatmiseks.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Cron käivitati viimati %s.", + "Last cron job execution: %s. Something seems wrong." : "Cron käivitati viimati %s. Midagi tunduv valesti olevat.", + "Cron was not executed yet!" : "Cron pole kordagi käivitatud!", + "Use system's 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 järel.", "Cheers!" : "Terekest!", "Show last log in" : "Viimane sisselogimine" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/settings/l10n/eu.js b/settings/l10n/eu.js index 4076f1b6311..168566c88c3 100644 --- a/settings/l10n/eu.js +++ b/settings/l10n/eu.js @@ -175,13 +175,8 @@ OC.L10N.register( "We strongly suggest installing 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.", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Zure instalazioa ez badago domeinuaren sustraian egina eta erabiltzen badu sistemaren cron-a, arazoak izan daitezke URL sorreran. Arazo horiek saihesteko ezarri \"overwrite.cli.url\" opzioa zure config.php fitxategian zure instalazioaren webroot bidera (Proposatua: \"%s\")", "All checks passed." : "Egiaztapen guztiak gaindituta.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Azken cron lan exekuzioa: %s.", - "Last cron job execution: %s. Something seems wrong." : "Azken cron lan exekuzioa: %s. Zerbait gaizki 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 system's cron service to call the cron.php file every 15 minutes." : "Erabili sistemaren cron zerbitzua deitzeko cron.php fitxategia 15 minutuan behin.", "The cron.php needs to be executed by the system user \"%s\"." : "Sistemako \"%s\" erabiltzaileak, cron.php exekutatu behar du.", "Version" : "Bertsioa", "Sharing" : "Partekatzea", @@ -312,6 +307,11 @@ OC.L10N.register( "Uninstall" : "Desinstalatu", "This is used for sending out notifications." : "Hau jakinarazpenak bidaltzeko erabiltzen 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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Azken cron lan exekuzioa: %s.", + "Last cron job execution: %s. Something seems wrong." : "Azken cron lan exekuzioa: %s. Zerbait gaizki dirudi.", + "Cron was not executed yet!" : "Cron-a oraindik ez da exekutatu!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Erabili sistemaren cron zerbitzua deitzeko cron.php fitxategia 15 minutuan behin.", "Uninstall app" : "Desinstalatu aplikazioa", "Cheers!" : "Ongi izan!", "Hey there,\n\njust letting you know that you now have a %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Kaixo,\n\nJakinarazi nahi dizugu, badaukazula %s kontua.\n\nZure erabiltzaile izena: %s \nSar zaitez: %s\n", diff --git a/settings/l10n/eu.json b/settings/l10n/eu.json index a7717f0e31c..c0bbbd78a04 100644 --- a/settings/l10n/eu.json +++ b/settings/l10n/eu.json @@ -173,13 +173,8 @@ "We strongly suggest installing 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.", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Zure instalazioa ez badago domeinuaren sustraian egina eta erabiltzen badu sistemaren cron-a, arazoak izan daitezke URL sorreran. Arazo horiek saihesteko ezarri \"overwrite.cli.url\" opzioa zure config.php fitxategian zure instalazioaren webroot bidera (Proposatua: \"%s\")", "All checks passed." : "Egiaztapen guztiak gaindituta.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Azken cron lan exekuzioa: %s.", - "Last cron job execution: %s. Something seems wrong." : "Azken cron lan exekuzioa: %s. Zerbait gaizki 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 system's cron service to call the cron.php file every 15 minutes." : "Erabili sistemaren cron zerbitzua deitzeko cron.php fitxategia 15 minutuan behin.", "The cron.php needs to be executed by the system user \"%s\"." : "Sistemako \"%s\" erabiltzaileak, cron.php exekutatu behar du.", "Version" : "Bertsioa", "Sharing" : "Partekatzea", @@ -310,6 +305,11 @@ "Uninstall" : "Desinstalatu", "This is used for sending out notifications." : "Hau jakinarazpenak bidaltzeko erabiltzen 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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Azken cron lan exekuzioa: %s.", + "Last cron job execution: %s. Something seems wrong." : "Azken cron lan exekuzioa: %s. Zerbait gaizki dirudi.", + "Cron was not executed yet!" : "Cron-a oraindik ez da exekutatu!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Erabili sistemaren cron zerbitzua deitzeko cron.php fitxategia 15 minutuan behin.", "Uninstall app" : "Desinstalatu aplikazioa", "Cheers!" : "Ongi izan!", "Hey there,\n\njust letting you know that you now have a %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Kaixo,\n\nJakinarazi nahi dizugu, badaukazula %s kontua.\n\nZure erabiltzaile izena: %s \nSar zaitez: %s\n", diff --git a/settings/l10n/fa.js b/settings/l10n/fa.js index e54a5d24f6d..84fcd1e60f0 100644 --- a/settings/l10n/fa.js +++ b/settings/l10n/fa.js @@ -94,8 +94,6 @@ OC.L10N.register( "Start migration" : "شروع مهاجرت", "Security & setup warnings" : "اخطارهای نصب و امنیتی", "All checks passed." : "تمامی موارد با موفقیت چک شدند.", - "Cron" : "زمانبند", - "Cron was not executed yet!" : "کران هنوز اجرا نشده است!", "Execute one task with each page loaded" : "اجرای یک وظیفه با هر بار بارگذاری صفحه", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php در یک سرویس webcron ثبت شده است که هر 15 دقیقه یک بار بر روی بستر http فراخوانی شود.", "Version" : "نسخه", @@ -186,6 +184,8 @@ OC.L10N.register( "Uninstall" : "حذف", "This is used for sending out notifications." : "این برای ارسال هشدار ها استفاده می شود", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید.", + "Cron" : "زمانبند", + "Cron was not executed yet!" : "کران هنوز اجرا نشده است!", "Cheers!" : "سلامتی!", "Show last log in" : "نمایش اخرین ورود" }, diff --git a/settings/l10n/fa.json b/settings/l10n/fa.json index 62c296f969f..218043e7c5b 100644 --- a/settings/l10n/fa.json +++ b/settings/l10n/fa.json @@ -92,8 +92,6 @@ "Start migration" : "شروع مهاجرت", "Security & setup warnings" : "اخطارهای نصب و امنیتی", "All checks passed." : "تمامی موارد با موفقیت چک شدند.", - "Cron" : "زمانبند", - "Cron was not executed yet!" : "کران هنوز اجرا نشده است!", "Execute one task with each page loaded" : "اجرای یک وظیفه با هر بار بارگذاری صفحه", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php در یک سرویس webcron ثبت شده است که هر 15 دقیقه یک بار بر روی بستر http فراخوانی شود.", "Version" : "نسخه", @@ -184,6 +182,8 @@ "Uninstall" : "حذف", "This is used for sending out notifications." : "این برای ارسال هشدار ها استفاده می شود", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید.", + "Cron" : "زمانبند", + "Cron was not executed yet!" : "کران هنوز اجرا نشده است!", "Cheers!" : "سلامتی!", "Show last log in" : "نمایش اخرین ورود" },"pluralForm" :"nplurals=1; plural=0;" diff --git a/settings/l10n/fi.js b/settings/l10n/fi.js index e6580ac5885..3ee1c027b73 100644 --- a/settings/l10n/fi.js +++ b/settings/l10n/fi.js @@ -206,13 +206,8 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Cron-työn suorittaminen komentorivin kautta ei onnistunut. Ilmeni seuraavia teknisiä virheitä:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Tutustu huolellisesti <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">asennusohjeisiin ↗</a> ja tarkista <a href=\"%s\">lokitiedostosta</a> mahdolliset virheet ja varoitukset.", "All checks passed." : "Läpäistiin kaikki tarkistukset.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Viimeisin cron-työn suoritus: %s.", - "Last cron job execution: %s. Something seems wrong." : "Viimeisin cron-työn suoritus: %s. Jokin vaikuttaa menneen pieleen.", - "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 system's cron service to call the cron.php file every 15 minutes." : "Käytä järjestelmän cron-palvelua cron.php-tiedoston kutsumista varten 15 minuutin välein.", "Version" : "Versio", "Sharing" : "Jakaminen", "Allow apps to use the Share API" : "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa", @@ -289,7 +284,9 @@ OC.L10N.register( "Address" : "Osoite", "Your postal address" : "Postiosoitteesi", "Website" : "Verkkosivusto", + "Link https://…" : "Linkki https://…", "Twitter" : "Twitter", + "Twitter handle @…" : "Twitter-tunnus @…", "You are member of the following groups:" : "Olet jäsenenä seuraavissa ryhmissä:", "Password" : "Salasana", "Current password" : "Nykyinen salasana", @@ -334,6 +331,7 @@ OC.L10N.register( "Group name" : "Ryhmän nimi", "Everyone" : "Kaikki", "Admins" : "Ylläpitäjät", + "Disabled" : "Poistettu käytöstä", "Default quota" : "Oletuskiintiö", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Määritä tallennustilan kiintiö (esim. \"512 MB\" tai \"12 GB\")", "Other" : "Muu", @@ -360,6 +358,11 @@ OC.L10N.register( "Uninstall" : "Poista asennus", "This is used for sending out notifications." : "Tätä käytetään ilmoitusten lähettämiseen.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-moduuli \"fileinfo\" puuttuu. Sen käyttö on erittäin suositeltavaa, jotta MIME-tyypin havaitseminen onnistuu parhaalla mahdollisella tavalla.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Viimeisin cron-työn suoritus: %s.", + "Last cron job execution: %s. Something seems wrong." : "Viimeisin cron-työn suoritus: %s. Jokin vaikuttaa menneen pieleen.", + "Cron was not executed yet!" : "Cronia ei suoritettu vielä!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Käytä järjestelmän cron-palvelua cron.php-tiedoston kutsumista varten 15 minuutin välein.", "Uninstall app" : "Poista sovelluksen asennus", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hei,<br><br>tässä sinulle tiedoksi, että sinulla on nyt %s-tili.<br><br>Käyttäjänimesi: <strong>%s</strong><br>Käytä sitä: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Kiitos!", diff --git a/settings/l10n/fi.json b/settings/l10n/fi.json index 1f955657f8a..5a0f7a069e4 100644 --- a/settings/l10n/fi.json +++ b/settings/l10n/fi.json @@ -204,13 +204,8 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Cron-työn suorittaminen komentorivin kautta ei onnistunut. Ilmeni seuraavia teknisiä virheitä:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Tutustu huolellisesti <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">asennusohjeisiin ↗</a> ja tarkista <a href=\"%s\">lokitiedostosta</a> mahdolliset virheet ja varoitukset.", "All checks passed." : "Läpäistiin kaikki tarkistukset.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Viimeisin cron-työn suoritus: %s.", - "Last cron job execution: %s. Something seems wrong." : "Viimeisin cron-työn suoritus: %s. Jokin vaikuttaa menneen pieleen.", - "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 system's cron service to call the cron.php file every 15 minutes." : "Käytä järjestelmän cron-palvelua cron.php-tiedoston kutsumista varten 15 minuutin välein.", "Version" : "Versio", "Sharing" : "Jakaminen", "Allow apps to use the Share API" : "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa", @@ -287,7 +282,9 @@ "Address" : "Osoite", "Your postal address" : "Postiosoitteesi", "Website" : "Verkkosivusto", + "Link https://…" : "Linkki https://…", "Twitter" : "Twitter", + "Twitter handle @…" : "Twitter-tunnus @…", "You are member of the following groups:" : "Olet jäsenenä seuraavissa ryhmissä:", "Password" : "Salasana", "Current password" : "Nykyinen salasana", @@ -332,6 +329,7 @@ "Group name" : "Ryhmän nimi", "Everyone" : "Kaikki", "Admins" : "Ylläpitäjät", + "Disabled" : "Poistettu käytöstä", "Default quota" : "Oletuskiintiö", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Määritä tallennustilan kiintiö (esim. \"512 MB\" tai \"12 GB\")", "Other" : "Muu", @@ -358,6 +356,11 @@ "Uninstall" : "Poista asennus", "This is used for sending out notifications." : "Tätä käytetään ilmoitusten lähettämiseen.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-moduuli \"fileinfo\" puuttuu. Sen käyttö on erittäin suositeltavaa, jotta MIME-tyypin havaitseminen onnistuu parhaalla mahdollisella tavalla.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Viimeisin cron-työn suoritus: %s.", + "Last cron job execution: %s. Something seems wrong." : "Viimeisin cron-työn suoritus: %s. Jokin vaikuttaa menneen pieleen.", + "Cron was not executed yet!" : "Cronia ei suoritettu vielä!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Käytä järjestelmän cron-palvelua cron.php-tiedoston kutsumista varten 15 minuutin välein.", "Uninstall app" : "Poista sovelluksen asennus", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hei,<br><br>tässä sinulle tiedoksi, että sinulla on nyt %s-tili.<br><br>Käyttäjänimesi: <strong>%s</strong><br>Käytä sitä: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Kiitos!", diff --git a/settings/l10n/fr.js b/settings/l10n/fr.js index ddb50b4e629..d485f2e3313 100644 --- a/settings/l10n/fr.js +++ b/settings/l10n/fr.js @@ -241,14 +241,9 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "La tâche cron n'a pu s'exécuter via CLI. Ces erreurs techniques sont apparues :", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Merci de consulter les <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guides d'installation ↗</a>, et vérifier les erreurs ou avertissements dans les <a href=\"%s\">logs</a>.", "All checks passed." : "Tous les tests ont réussi.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Dernière tâche cron exécutée : %s.", - "Last cron job execution: %s. Something seems wrong." : "Dernière tâche cron exécutée : %s. Quelque chose s'est mal passé.", - "Cron was not executed yet!" : "Le cron n'a pas encore été exécuté !", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Pour une performance optimale, il est important de configurer correctement lex travaux en arrière-plan. Pour les plus grosses instances, 'Cron' est le paramètre recommandé. Veuillez consulter la documentation pour plus d'informations.", "Execute one task with each page loaded" : "Exécute une tâche à chaque chargement de page", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "Utilisez un service webcron pour exécuter cron.php toutes les 15 minutes par HTTP", - "Use system's cron service to call the cron.php file every 15 minutes." : "Utilisez le service cron du système pour appeler le fichier cron.php toutes les 15 minutes.", "The cron.php needs to be executed by the system user \"%s\"." : "Le cron.php doit être exécuté par l'utilisateur système \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Pour l'exécuter, vous devez avoir l'extension PHP posix. Regarder la {linkstart}documentation PHP{linkend} pour plus de détails.", "Version" : "Version", @@ -407,6 +402,11 @@ OC.L10N.register( "Uninstall" : "Désinstaller", "This is used for sending out notifications." : "Ceci est utilisé pour l'envoi des notifications.", "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 de détection mime-type.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Dernière tâche cron exécutée : %s.", + "Last cron job execution: %s. Something seems wrong." : "Dernière tâche cron exécutée : %s. Quelque chose s'est mal passé.", + "Cron was not executed yet!" : "Le cron n'a pas encore été exécuté !", + "Use system's cron service to call the cron.php file every 15 minutes." : "Utilisez le service cron du système pour appeler le fichier cron.php toutes les 15 minutes.", "Uninstall app" : "Désinstaller l'application", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Bonjour,<br><br>Un compte %s a été créé pour vous.<br><br>Votre nom d'utilisateur est : <strong>%s</strong><br>Visitez votre compte : <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "À bientôt !", diff --git a/settings/l10n/fr.json b/settings/l10n/fr.json index d1f69e38461..854a7ef6cd1 100644 --- a/settings/l10n/fr.json +++ b/settings/l10n/fr.json @@ -239,14 +239,9 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "La tâche cron n'a pu s'exécuter via CLI. Ces erreurs techniques sont apparues :", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Merci de consulter les <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guides d'installation ↗</a>, et vérifier les erreurs ou avertissements dans les <a href=\"%s\">logs</a>.", "All checks passed." : "Tous les tests ont réussi.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Dernière tâche cron exécutée : %s.", - "Last cron job execution: %s. Something seems wrong." : "Dernière tâche cron exécutée : %s. Quelque chose s'est mal passé.", - "Cron was not executed yet!" : "Le cron n'a pas encore été exécuté !", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Pour une performance optimale, il est important de configurer correctement lex travaux en arrière-plan. Pour les plus grosses instances, 'Cron' est le paramètre recommandé. Veuillez consulter la documentation pour plus d'informations.", "Execute one task with each page loaded" : "Exécute une tâche à chaque chargement de page", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "Utilisez un service webcron pour exécuter cron.php toutes les 15 minutes par HTTP", - "Use system's cron service to call the cron.php file every 15 minutes." : "Utilisez le service cron du système pour appeler le fichier cron.php toutes les 15 minutes.", "The cron.php needs to be executed by the system user \"%s\"." : "Le cron.php doit être exécuté par l'utilisateur système \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Pour l'exécuter, vous devez avoir l'extension PHP posix. Regarder la {linkstart}documentation PHP{linkend} pour plus de détails.", "Version" : "Version", @@ -405,6 +400,11 @@ "Uninstall" : "Désinstaller", "This is used for sending out notifications." : "Ceci est utilisé pour l'envoi des notifications.", "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 de détection mime-type.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Dernière tâche cron exécutée : %s.", + "Last cron job execution: %s. Something seems wrong." : "Dernière tâche cron exécutée : %s. Quelque chose s'est mal passé.", + "Cron was not executed yet!" : "Le cron n'a pas encore été exécuté !", + "Use system's cron service to call the cron.php file every 15 minutes." : "Utilisez le service cron du système pour appeler le fichier cron.php toutes les 15 minutes.", "Uninstall app" : "Désinstaller l'application", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Bonjour,<br><br>Un compte %s a été créé pour vous.<br><br>Votre nom d'utilisateur est : <strong>%s</strong><br>Visitez votre compte : <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "À bientôt !", diff --git a/settings/l10n/gl.js b/settings/l10n/gl.js index d381e4df35c..d551ebf86dc 100644 --- a/settings/l10n/gl.js +++ b/settings/l10n/gl.js @@ -112,13 +112,8 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Recomendámoslle que instale no sistema os paquetes necesarios para admitir unha das seguintes configuracións rexionais: %s.", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a instalación no está feita na raíz do dominio e usa o sistema cron, pode haber incidencias coa xeración de URL. Para evitar estes problemas, axuste a opción «overwrite.cli.url» no seu ficheiro config.php á ruta webroot da instalación (suxestión: «%s»)", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Non foi posíbel executar a tarefa de cron programada desde a liña de ordes. Atopáronse os seguintes erros técnicos:", - "Cron" : "Cron", - "Last cron job execution: %s." : "Última execución da tarefa de cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última execución da tarefa de cron: %s. Semella que algo vai mal", - "Cron was not executed yet!" : "«Cron» aínda non foi executado!", "Execute one task with each page loaded" : "Executar unha tarefa con cada páxina cargada", "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 system's cron service to call the cron.php file every 15 minutes." : "Use o servizo «cron» do sistema para chamar ao ficheiro cron.php cada 15 minutos.", "Version" : "Versión", "Sharing" : "Compartindo", "Allow apps to use the Share API" : "Permitir que as aplicacións empreguen o API para compartir", @@ -212,6 +207,11 @@ OC.L10N.register( "Uninstall" : "Desinstalar", "This is used for sending out notifications." : "Isto utilizase para o envío de notificacións.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Última execución da tarefa de cron: %s.", + "Last cron job execution: %s. Something seems wrong." : "Última execución da tarefa de cron: %s. Semella que algo vai mal", + "Cron was not executed yet!" : "«Cron» aínda non foi executado!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Use o servizo «cron» do sistema para chamar ao ficheiro cron.php cada 15 minutos.", "Cheers!" : "Saúdos!", "Show last log in" : "Amosar a última conexión" }, diff --git a/settings/l10n/gl.json b/settings/l10n/gl.json index 77a709ac0c8..66a22938955 100644 --- a/settings/l10n/gl.json +++ b/settings/l10n/gl.json @@ -110,13 +110,8 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Recomendámoslle que instale no sistema os paquetes necesarios para admitir unha das seguintes configuracións rexionais: %s.", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a instalación no está feita na raíz do dominio e usa o sistema cron, pode haber incidencias coa xeración de URL. Para evitar estes problemas, axuste a opción «overwrite.cli.url» no seu ficheiro config.php á ruta webroot da instalación (suxestión: «%s»)", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Non foi posíbel executar a tarefa de cron programada desde a liña de ordes. Atopáronse os seguintes erros técnicos:", - "Cron" : "Cron", - "Last cron job execution: %s." : "Última execución da tarefa de cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última execución da tarefa de cron: %s. Semella que algo vai mal", - "Cron was not executed yet!" : "«Cron» aínda non foi executado!", "Execute one task with each page loaded" : "Executar unha tarefa con cada páxina cargada", "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 system's cron service to call the cron.php file every 15 minutes." : "Use o servizo «cron» do sistema para chamar ao ficheiro cron.php cada 15 minutos.", "Version" : "Versión", "Sharing" : "Compartindo", "Allow apps to use the Share API" : "Permitir que as aplicacións empreguen o API para compartir", @@ -210,6 +205,11 @@ "Uninstall" : "Desinstalar", "This is used for sending out notifications." : "Isto utilizase para o envío de notificacións.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Última execución da tarefa de cron: %s.", + "Last cron job execution: %s. Something seems wrong." : "Última execución da tarefa de cron: %s. Semella que algo vai mal", + "Cron was not executed yet!" : "«Cron» aínda non foi executado!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Use o servizo «cron» do sistema para chamar ao ficheiro cron.php cada 15 minutos.", "Cheers!" : "Saúdos!", "Show last log in" : "Amosar a última conexión" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/settings/l10n/he.js b/settings/l10n/he.js index 471d3e691bb..9a143349a7f 100644 --- a/settings/l10n/he.js +++ b/settings/l10n/he.js @@ -137,13 +137,8 @@ OC.L10N.register( "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "אם המערכת שלך לא מותקנת על נתיב הבסיס של שם התחום ומשתמשת במערכת cron, עלולות להיות בעיות עם יצירת כתובות האינטרנט. למניעת בעיות אלו, יש לקבוע את האופציה \"overwrite.cli.url\" בקובץ ה- config.php לנתיב הבסיסי של ההתקנה שלך (הציעו: \"%s \")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "לא ניתן היה להפעיל את cronjob דרך CLI. השגיאות הבאות נצפתו:", "All checks passed." : "כל הבדיקות עברו", - "Cron" : "Cron", - "Last cron job execution: %s." : "פעילות cron job אחרונה: %s.", - "Last cron job execution: %s. Something seems wrong." : "פעילות cron job אחרונה: %s. משהו נראה שגוי.", - "Cron was not executed yet!" : "Cron עדיין לא בוצע!", "Execute one task with each page loaded" : "יש להפעיל משימה אחת עם כל עמוד שנטען", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php רשום בשירות webcron לקרוא ל- cron.php בכל 15 דקות באמצעות http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "ניתן להשתמש בשירות cron לקרוא לקובץ cron.php בכל 15 דקות.", "Version" : "גרסה", "Sharing" : "שיתוף", "Allow apps to use the Share API" : "לאפשר ליישום להשתמש ב־API השיתוף", @@ -253,6 +248,11 @@ OC.L10N.register( "Uninstall" : "הסרת התקנה", "This is used for sending out notifications." : "משתמשים בזה כדי לשלוח הודעות.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "מודול ה- PHP מסוג 'fileinfo' חסר. אנו ממליצים בחום לאפשר מודול זה כדי לקבל תוצאות מיטביות עם גילוי mime-type.", + "Cron" : "Cron", + "Last cron job execution: %s." : "פעילות cron job אחרונה: %s.", + "Last cron job execution: %s. Something seems wrong." : "פעילות cron job אחרונה: %s. משהו נראה שגוי.", + "Cron was not executed yet!" : "Cron עדיין לא בוצע!", + "Use system's cron service to call the cron.php file every 15 minutes." : "ניתן להשתמש בשירות cron לקרוא לקובץ cron.php בכל 15 דקות.", "Cheers!" : "לחיים!", "For password recovery and notifications" : "לשחזור סיסמא והודעות", "Show last log in" : "הצגת כניסה אחרונה" diff --git a/settings/l10n/he.json b/settings/l10n/he.json index 78624f922c9..75d87e9c6c9 100644 --- a/settings/l10n/he.json +++ b/settings/l10n/he.json @@ -135,13 +135,8 @@ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "אם המערכת שלך לא מותקנת על נתיב הבסיס של שם התחום ומשתמשת במערכת cron, עלולות להיות בעיות עם יצירת כתובות האינטרנט. למניעת בעיות אלו, יש לקבוע את האופציה \"overwrite.cli.url\" בקובץ ה- config.php לנתיב הבסיסי של ההתקנה שלך (הציעו: \"%s \")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "לא ניתן היה להפעיל את cronjob דרך CLI. השגיאות הבאות נצפתו:", "All checks passed." : "כל הבדיקות עברו", - "Cron" : "Cron", - "Last cron job execution: %s." : "פעילות cron job אחרונה: %s.", - "Last cron job execution: %s. Something seems wrong." : "פעילות cron job אחרונה: %s. משהו נראה שגוי.", - "Cron was not executed yet!" : "Cron עדיין לא בוצע!", "Execute one task with each page loaded" : "יש להפעיל משימה אחת עם כל עמוד שנטען", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php רשום בשירות webcron לקרוא ל- cron.php בכל 15 דקות באמצעות http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "ניתן להשתמש בשירות cron לקרוא לקובץ cron.php בכל 15 דקות.", "Version" : "גרסה", "Sharing" : "שיתוף", "Allow apps to use the Share API" : "לאפשר ליישום להשתמש ב־API השיתוף", @@ -251,6 +246,11 @@ "Uninstall" : "הסרת התקנה", "This is used for sending out notifications." : "משתמשים בזה כדי לשלוח הודעות.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "מודול ה- PHP מסוג 'fileinfo' חסר. אנו ממליצים בחום לאפשר מודול זה כדי לקבל תוצאות מיטביות עם גילוי mime-type.", + "Cron" : "Cron", + "Last cron job execution: %s." : "פעילות cron job אחרונה: %s.", + "Last cron job execution: %s. Something seems wrong." : "פעילות cron job אחרונה: %s. משהו נראה שגוי.", + "Cron was not executed yet!" : "Cron עדיין לא בוצע!", + "Use system's cron service to call the cron.php file every 15 minutes." : "ניתן להשתמש בשירות cron לקרוא לקובץ cron.php בכל 15 דקות.", "Cheers!" : "לחיים!", "For password recovery and notifications" : "לשחזור סיסמא והודעות", "Show last log in" : "הצגת כניסה אחרונה" diff --git a/settings/l10n/hr.js b/settings/l10n/hr.js index 345d4e346e7..1adeccc7e87 100644 --- a/settings/l10n/hr.js +++ b/settings/l10n/hr.js @@ -64,11 +64,8 @@ OC.L10N.register( "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Uzrok tome je vjerojatno neki ubrzivač predmemoriranja kao što je Zend OPcache ilieAccelerator.", "System locale can not be set to a one which supports UTF-8." : "Regionalnu shemu sustava nemoguće je postaviti na neku koja podržava UTF-8.", "This means that there might be problems with certain characters in file names." : "To znači da se mogu javiti problemi s određenim znakovima u datoteci.", - "Cron" : "Cron", - "Cron was not executed yet!" : "Cron još nije izvršen!", "Execute one task with each page loaded" : "Izvršite jedan zadatak sa svakom učitanom stranicom", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php je registriran na webcron usluzi da poziva cron.php svakih 15 minuta preko http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Koristite cron uslugu sustava za pozivanje cron.php datoteke svakih 15 minuta.", "Version" : "Verzija", "Sharing" : "Dijeljenje zajedničkih resursa", "Allow apps to use the Share API" : "Dopustite apps korištenje Share API", @@ -130,6 +127,9 @@ OC.L10N.register( "Uninstall" : "Deinstalirajte", "This is used for sending out notifications." : "Ovo se koristi za slanje notifikacija.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modul 'fileinfo' nedostaje. Tolo vam preporučjemo da taj modul omogućitekako biste dobili najbolje rezultate u detekciji mime vrste.", + "Cron" : "Cron", + "Cron was not executed yet!" : "Cron još nije izvršen!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Koristite cron uslugu sustava za pozivanje cron.php datoteke svakih 15 minuta.", "Cheers!" : "Cheers!", "Show last log in" : "Prikaži zadnje spajanje" }, diff --git a/settings/l10n/hr.json b/settings/l10n/hr.json index 9c53f2b1b1c..3011887d065 100644 --- a/settings/l10n/hr.json +++ b/settings/l10n/hr.json @@ -62,11 +62,8 @@ "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Uzrok tome je vjerojatno neki ubrzivač predmemoriranja kao što je Zend OPcache ilieAccelerator.", "System locale can not be set to a one which supports UTF-8." : "Regionalnu shemu sustava nemoguće je postaviti na neku koja podržava UTF-8.", "This means that there might be problems with certain characters in file names." : "To znači da se mogu javiti problemi s određenim znakovima u datoteci.", - "Cron" : "Cron", - "Cron was not executed yet!" : "Cron još nije izvršen!", "Execute one task with each page loaded" : "Izvršite jedan zadatak sa svakom učitanom stranicom", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php je registriran na webcron usluzi da poziva cron.php svakih 15 minuta preko http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Koristite cron uslugu sustava za pozivanje cron.php datoteke svakih 15 minuta.", "Version" : "Verzija", "Sharing" : "Dijeljenje zajedničkih resursa", "Allow apps to use the Share API" : "Dopustite apps korištenje Share API", @@ -128,6 +125,9 @@ "Uninstall" : "Deinstalirajte", "This is used for sending out notifications." : "Ovo se koristi za slanje notifikacija.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modul 'fileinfo' nedostaje. Tolo vam preporučjemo da taj modul omogućitekako biste dobili najbolje rezultate u detekciji mime vrste.", + "Cron" : "Cron", + "Cron was not executed yet!" : "Cron još nije izvršen!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Koristite cron uslugu sustava za pozivanje cron.php datoteke svakih 15 minuta.", "Cheers!" : "Cheers!", "Show last log in" : "Prikaži zadnje spajanje" },"pluralForm" :"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;" diff --git a/settings/l10n/hu.js b/settings/l10n/hu.js index bec9ff22d3e..a28998bf0e2 100644 --- a/settings/l10n/hu.js +++ b/settings/l10n/hu.js @@ -198,13 +198,8 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Az ütemezett feladat (cronjob) nem futott le parancssorból. A következő hibák tűntek fel:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Kérjük, ellenőrizd a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">telepítési dokumentációt ↗</a> és a <a href=\"%s\">naplót</a>, hogy tartalmaz-e bármilyen hibát vagy figyelmeztetést.", "All checks passed." : "Minden ellenőrzés sikeres.", - "Cron" : "Ütemezett feladatok", - "Last cron job execution: %s." : "Az utolsó cron feladat ekkor futott le: %s.", - "Last cron job execution: %s. Something seems wrong." : "Az utolsó cron feladat ekkor futott le: %s. Valami nincs rendben.", - "Cron was not executed yet!" : "A cron feladat még nem futott le!", "Execute one task with each page loaded" : "Egy-egy feladat végrehajtása minden alkalommal, amikor egy weboldalt letöltenek", "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 system's cron service to call the cron.php file every 15 minutes." : "A rendszer cron szolgáltatását használjuk, mely a cron.php fájlt futtatja le 15 percenként.", "The cron.php needs to be executed by the system user \"%s\"." : "A cron.php-t ennek a rendszer felhasználónak kell végrehajtania: \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Ennek a futtatásához szükség van a PHP posix kiterjesztésre. További információkért nézd meg a {linkstart}PHP dokumentációt{linkend}.", "Version" : "Verzió", @@ -351,6 +346,11 @@ OC.L10N.register( "Uninstall" : "Eltávolítás", "This is used for sending out notifications." : "Ezt használjuk a jelentések kiküldésére.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése, mert ezzel lényegesen jobb a MIME-típusok felismerése.", + "Cron" : "Ütemezett feladatok", + "Last cron job execution: %s." : "Az utolsó cron feladat ekkor futott le: %s.", + "Last cron job execution: %s. Something seems wrong." : "Az utolsó cron feladat ekkor futott le: %s. Valami nincs rendben.", + "Cron was not executed yet!" : "A cron feladat még nem futott le!", + "Use system's cron service to call the cron.php file every 15 minutes." : "A rendszer cron szolgáltatását használjuk, mely a cron.php fájlt futtatja le 15 percenként.", "Uninstall app" : "Alkalmazás eltávolítása", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Szia!<br><br>Szeretnénk tudatni, hogy elkészült a fiókod: %s.<br><br>A felhasználóneved: <strong>%s</strong><br>Hozzáférés itt: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Üdv.", diff --git a/settings/l10n/hu.json b/settings/l10n/hu.json index 3f13764ce43..97ccb0ce4fe 100644 --- a/settings/l10n/hu.json +++ b/settings/l10n/hu.json @@ -196,13 +196,8 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Az ütemezett feladat (cronjob) nem futott le parancssorból. A következő hibák tűntek fel:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Kérjük, ellenőrizd a <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">telepítési dokumentációt ↗</a> és a <a href=\"%s\">naplót</a>, hogy tartalmaz-e bármilyen hibát vagy figyelmeztetést.", "All checks passed." : "Minden ellenőrzés sikeres.", - "Cron" : "Ütemezett feladatok", - "Last cron job execution: %s." : "Az utolsó cron feladat ekkor futott le: %s.", - "Last cron job execution: %s. Something seems wrong." : "Az utolsó cron feladat ekkor futott le: %s. Valami nincs rendben.", - "Cron was not executed yet!" : "A cron feladat még nem futott le!", "Execute one task with each page loaded" : "Egy-egy feladat végrehajtása minden alkalommal, amikor egy weboldalt letöltenek", "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 system's cron service to call the cron.php file every 15 minutes." : "A rendszer cron szolgáltatását használjuk, mely a cron.php fájlt futtatja le 15 percenként.", "The cron.php needs to be executed by the system user \"%s\"." : "A cron.php-t ennek a rendszer felhasználónak kell végrehajtania: \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Ennek a futtatásához szükség van a PHP posix kiterjesztésre. További információkért nézd meg a {linkstart}PHP dokumentációt{linkend}.", "Version" : "Verzió", @@ -349,6 +344,11 @@ "Uninstall" : "Eltávolítás", "This is used for sending out notifications." : "Ezt használjuk a jelentések kiküldésére.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése, mert ezzel lényegesen jobb a MIME-típusok felismerése.", + "Cron" : "Ütemezett feladatok", + "Last cron job execution: %s." : "Az utolsó cron feladat ekkor futott le: %s.", + "Last cron job execution: %s. Something seems wrong." : "Az utolsó cron feladat ekkor futott le: %s. Valami nincs rendben.", + "Cron was not executed yet!" : "A cron feladat még nem futott le!", + "Use system's cron service to call the cron.php file every 15 minutes." : "A rendszer cron szolgáltatását használjuk, mely a cron.php fájlt futtatja le 15 percenként.", "Uninstall app" : "Alkalmazás eltávolítása", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Szia!<br><br>Szeretnénk tudatni, hogy elkészült a fiókod: %s.<br><br>A felhasználóneved: <strong>%s</strong><br>Hozzáférés itt: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Üdv.", diff --git a/settings/l10n/ia.js b/settings/l10n/ia.js index dc9176b83ea..0da7508bf7d 100644 --- a/settings/l10n/ia.js +++ b/settings/l10n/ia.js @@ -143,7 +143,6 @@ OC.L10N.register( "Select default encryption module:" : "Selectionar modulo de cryptographia standard", "Start migration" : "Initiar migration", "Security & setup warnings" : "Securitate e advertimentos de configuration", - "Cron" : "Cron", "Version" : "Version", "Allow users to share via link" : "Permitter usatores compartir via ligamine", "Allow public uploads" : "Permitter incargas public", @@ -241,6 +240,7 @@ OC.L10N.register( "Error while uninstalling app" : "Error durante de-installation del application", "Uninstall" : "De-installar", "This is used for sending out notifications." : "Isto es usate pro inviar notificationes.", + "Cron" : "Cron", "Uninstall app" : "De-installar application", "Cheers!" : "Congratulationes!", "Your website" : "Tu sito web", diff --git a/settings/l10n/ia.json b/settings/l10n/ia.json index 81e21ffd6cf..7ec74d187ad 100644 --- a/settings/l10n/ia.json +++ b/settings/l10n/ia.json @@ -141,7 +141,6 @@ "Select default encryption module:" : "Selectionar modulo de cryptographia standard", "Start migration" : "Initiar migration", "Security & setup warnings" : "Securitate e advertimentos de configuration", - "Cron" : "Cron", "Version" : "Version", "Allow users to share via link" : "Permitter usatores compartir via ligamine", "Allow public uploads" : "Permitter incargas public", @@ -239,6 +238,7 @@ "Error while uninstalling app" : "Error durante de-installation del application", "Uninstall" : "De-installar", "This is used for sending out notifications." : "Isto es usate pro inviar notificationes.", + "Cron" : "Cron", "Uninstall app" : "De-installar application", "Cheers!" : "Congratulationes!", "Your website" : "Tu sito web", diff --git a/settings/l10n/id.js b/settings/l10n/id.js index 31cf04f21dc..4ebcc1b3e47 100644 --- a/settings/l10n/id.js +++ b/settings/l10n/id.js @@ -174,13 +174,8 @@ OC.L10N.register( "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Jika instalasi Anda tidak di root domain dan menggunakan sistem cron, hal tersebut dapat menyebabkan masalah dengan pembuatan URL. Untuk mencegah masalah tersebut, mohon atur opsi \"overwrite.cli.url\" pada berkas config.php Anda ke jalur lokasi webroot instalasi Anda (Disarankan: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Tidak mungkin untuk mengeksekusi cronjob via CLI. Kesalahan teknis berikut muncul:", "All checks passed." : "Semua pemeriksaan lulus.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Eksekusi penjadwalan cron terakhir: %s.", - "Last cron job execution: %s. Something seems wrong." : "Eksekusi penjadwalan cron terakhir: %s. Kelihatannya ada yang salah.", - "Cron was not executed yet!" : "Cron masih belum dieksekusi!", "Execute one task with each page loaded" : "Jalankan tugas setiap kali halaman dimuat", "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 system's cron service to call the cron.php file every 15 minutes." : "Gunakan layanan cron sistem untuk memanggil berkas cron.php setiap 15 menit.", "Version" : "Versi", "Sharing" : "Berbagi", "Allow apps to use the Share API" : "Izinkan aplikasi untuk menggunakan API Pembagian", @@ -303,6 +298,11 @@ OC.L10N.register( "Uninstall" : "Copot", "This is used for sending out notifications." : "Ini digunakan untuk mengirim notifikasi keluar.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Eksekusi penjadwalan cron terakhir: %s.", + "Last cron job execution: %s. Something seems wrong." : "Eksekusi penjadwalan cron terakhir: %s. Kelihatannya ada yang salah.", + "Cron was not executed yet!" : "Cron masih belum dieksekusi!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Gunakan layanan cron sistem untuk memanggil berkas cron.php setiap 15 menit.", "Cheers!" : "Horee!", "For password recovery and notifications" : "Untuk pemulihan sandi dan pemberitahuan", "Passcodes that give an app or device permissions to access your account." : "Kode kunci yang memberikan aplikasi atau perangkat izin untuk mengakses akun Anda.", diff --git a/settings/l10n/id.json b/settings/l10n/id.json index fe93e61d42a..af4fd6d38da 100644 --- a/settings/l10n/id.json +++ b/settings/l10n/id.json @@ -172,13 +172,8 @@ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Jika instalasi Anda tidak di root domain dan menggunakan sistem cron, hal tersebut dapat menyebabkan masalah dengan pembuatan URL. Untuk mencegah masalah tersebut, mohon atur opsi \"overwrite.cli.url\" pada berkas config.php Anda ke jalur lokasi webroot instalasi Anda (Disarankan: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Tidak mungkin untuk mengeksekusi cronjob via CLI. Kesalahan teknis berikut muncul:", "All checks passed." : "Semua pemeriksaan lulus.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Eksekusi penjadwalan cron terakhir: %s.", - "Last cron job execution: %s. Something seems wrong." : "Eksekusi penjadwalan cron terakhir: %s. Kelihatannya ada yang salah.", - "Cron was not executed yet!" : "Cron masih belum dieksekusi!", "Execute one task with each page loaded" : "Jalankan tugas setiap kali halaman dimuat", "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 system's cron service to call the cron.php file every 15 minutes." : "Gunakan layanan cron sistem untuk memanggil berkas cron.php setiap 15 menit.", "Version" : "Versi", "Sharing" : "Berbagi", "Allow apps to use the Share API" : "Izinkan aplikasi untuk menggunakan API Pembagian", @@ -301,6 +296,11 @@ "Uninstall" : "Copot", "This is used for sending out notifications." : "Ini digunakan untuk mengirim notifikasi keluar.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Eksekusi penjadwalan cron terakhir: %s.", + "Last cron job execution: %s. Something seems wrong." : "Eksekusi penjadwalan cron terakhir: %s. Kelihatannya ada yang salah.", + "Cron was not executed yet!" : "Cron masih belum dieksekusi!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Gunakan layanan cron sistem untuk memanggil berkas cron.php setiap 15 menit.", "Cheers!" : "Horee!", "For password recovery and notifications" : "Untuk pemulihan sandi dan pemberitahuan", "Passcodes that give an app or device permissions to access your account." : "Kode kunci yang memberikan aplikasi atau perangkat izin untuk mengakses akun Anda.", diff --git a/settings/l10n/is.js b/settings/l10n/is.js index 6627d202af0..adb69b15ce2 100644 --- a/settings/l10n/is.js +++ b/settings/l10n/is.js @@ -19,6 +19,7 @@ OC.L10N.register( "Authentication error" : "Villa við auðkenningu", "Please provide an admin recovery password; otherwise, all user data will be lost." : "Settu inn endurheimtulykilorð kerfisstjóra, annars munu öll notandagögn tapast.", "Wrong admin recovery password. Please check the password and try again." : "Rangt endurheimtulykilorð kerfisstjóra, athugaðu lykilorðið og reyndu aftur.", + "Backend doesn't support password change, but the user's encryption key was updated." : "Bakendi styður ekki breytingu á lykilorði, en það tókst að uppfæra dulritunarlykil notandans.", "installing and updating apps via the app store or Federated Cloud Sharing" : "uppsetning eða uppfærsla forrita úr forritabúð eða með skýjasambandi", "Federated Cloud Sharing" : "Deiling með skýjasambandi", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL er að nota úrelda útgáfu af %s (%s). Uppfærðu stýrikerfið þitt, annars er hætt við að eiginleikar á borð við %s virki ekki sem skyldi.", @@ -29,6 +30,9 @@ OC.L10N.register( "Unable to delete group." : "Get ekki eytt hópi.", "Invalid SMTP password." : "Ógilt SMTP-lykilorð", "Well done, %s!" : "Vel gert, %s!", + "If you received this email, the email configuration seems to be correct." : "Fyrst að þú fékkst þennan tölvupóst, þá lítur út fyrir að tölvupóstuppsetningin sé í lagi.", + "Email setting test" : "Prófa tölvupóststillingar", + "Email could not be sent. Check your mail server log" : "Ekki var hægt að senda póst. Skoðaðu annál póstþjónsins", "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Vandamál kom upp við að senda tölvupóst. Farðu yfir stillingarnar þínar. (Villa: %s)", "You need to set your user email before being able to send test emails." : "Þú verður að gefa upp netfangið þitt svo að þú getir sent prófunarpósta.", "Invalid request" : "Ógild fyrirspurn", @@ -38,6 +42,10 @@ OC.L10N.register( "To send a password link to the user an email address is required." : "Til að fá sendan tengil á staðfestingu lykilorðs verður notandinn að hafa gefið upp tölvupóstfangið sitt.", "Unable to create user." : "Gat ekki búið til notanda.", "Unable to delete user." : "Get ekki eytt notanda.", + "Error while enabling user." : "Villa við að virkja notanda.", + "Error while disabling user." : "Villa við að gera notanda óvirkann.", + "In order to verify your Twitter account, post the following tweet on Twitter (please make sure to post it without any line breaks):" : "Til að sannprófa Twitter-aðganginn þinn, sendu þá eftirfarandi tíst á Twitter (gakktu úr skugga um að skeytinu sé ekki skipt í línur):", + "In order to verify your Website, store the following content in your web-root at '.well-known/CloudIdVerificationCode.txt' (please make sure that the complete text is in one line):" : "Til að sannprófa vefsvæðið þitt, vistaðu eftirfarandi efni á vefrótinni þinni (web-root) á '.well-known/CloudIdVerificationCode.txt' (gakktu úr skugga um að allur textinn sé í einni línu):", "Settings saved" : "Stillingar vistaðar", "Unable to change full name" : "Get ekki breytt fullu nafni", "Unable to change email address" : "Get ekki breytt tölvupóstfangi", @@ -46,11 +54,25 @@ OC.L10N.register( "Invalid user" : "Ógildur notandi", "Unable to change mail address" : "Get ekki breytt tölvupóstfangi", "Email saved" : "Tölvupóstfang vistað", + "%1$s changed your password on %2$s." : "%1$s breytti lykilorðinu þínu á %2$s.", + "Your password on %s was changed." : "Lykilorðinu þínu á %s hefur verið breytt.", + "Your password on %s was reset by an administrator." : "Kerfisstjóri breytti lykilorðinu þínu á %s.", + "Password changed for %s" : "Lykilorð breyttist fyrir %s", + "If you did not request this, please contact an administrator." : "Ef þú baðst ekki um þetta, hafðu þá samband við kerfisstjóra.", + "Password for %1$s changed on %2$s" : "Lykilorð fyrir %1$s breyttist %2$s", + "%1$s changed your email address on %2$s." : "%1$s breytti tölvupóstfanginu þínu þann %2$s.", + "Your email address on %s was changed." : "Tölvupóstfanginu þínu á %s var breytt.", + "Your email address on %s was changed by an administrator." : "Kerfisstjóri breytti tölvupóstfanginu þínu á %s.", + "Email address changed for %s" : "Tölvupóstfang breyttist fyrir %s", + "The new email address is %s" : "Nýja tölvupóstfangið er %s", + "Email address for %1$s changed on %2$s" : "Lykilorð fyrir %1$s breyttist þann %2$s", "Welcome aboard" : "Velkomin um borð", "Welcome aboard %s" : "Velkomin um borð %s", + "You have now an %s account, you can add, protect, and share your data." : "Þú ert núna með %s aðgang, þú getur bætt við, varið og deilt gögnunum þínum.", "Your username is: %s" : "Notandanafnið þitt er: %s", "Set your password" : "Stilltu lykilorðið þitt", "Go to %s" : "Farðu í %s", + "Install Client" : "Setja upp biðlaraforrit", "Your %s account was created" : "%s notandaaðgangurinn þinn var búinn til", "Password confirmation is required" : "Þörf á staðfestingu lykilorðs", "Couldn't remove app." : "Gat ekki fjarlægt forrit.", @@ -126,6 +148,8 @@ OC.L10N.register( "Visible to local users and to trusted servers" : "Sýnilegt staðværum notendum og á treystum þjónum", "Public" : "Opinbert", "Will be synced to a global and public address book" : "Verður samstillt víðværri og opinberri vistfangaskrá", + "Verify" : "Sannreyna", + "Verifying …" : "Sannreyni …", "Select a profile picture" : "Veldu einkennismynd", "Very weak password" : "Mjög veikt lykilorð", "Weak password" : "Veikt lykilorð", @@ -149,12 +173,14 @@ OC.L10N.register( "Password successfully changed" : "Lykilorðinu hefur verið breytt", "Changing the password will result in data loss, because data recovery is not available for this user" : "Breyting á þessu lykilorði mun valda gagnatapi, þar sem gagnaendurheimt er ekki tiltæk fyrir þennan notanda", "Could not change the users email" : "Tókst ekki að breyta tölvupóstfangi notandans", + "Error while changing status of {user}" : "Villa við að breyta stöðu {user}", "A valid username must be provided" : "Skráðu inn gilt notandanafn", "Error creating user: {message}" : "Villa við að búa til notanda: {message}", "A valid password must be provided" : "Skráðu inn gilt lykilorð", "A valid email must be provided" : "Skráðu inn gilt tölvupóstfang", "__language_name__" : "Íslenska", "Unlimited" : "ótakmörkuðu", + "Verifying" : "Sannreyni", "Personal info" : "Persónulegar upplýsingar", "Sessions" : "Setur", "App passwords" : "Lykilorð forrita", @@ -203,6 +229,7 @@ OC.L10N.register( "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Þessu veldur væntanlega biðminni/hraðall á borð við Zend OPcache eða eAccelerator.", "Your database does not run with \"READ COMMITTED\" transaction isolation level. This can cause problems when multiple actions are executed in parallel." : "Gagnagrunnurinn keyrir ekki með \"READ COMMITTED\" færsluaðgreiningarstiginu. Þetta getur valdið vandamálum þegar margar aðgerðir eru keyrðar í einu.", "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s eldra en útgáfa %2$s er uppsett, en vegna stöðugleika og afkasta mælum við með að útgáfa %1$s verði sett upp.", + "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with MIME type detection." : "PHP-eininguna 'fileinfo' vantar. Við mælum eindregið með notkun þessarar einingar til að fá bestu útkomu við greiningu á MIME-skráagerðum.", "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Færslulæsing skráa (transactional file locking) er óvirk, þetta gæti leitt til vandamála út frá forgangsskilyrðum (race conditions). Virkjaðu 'filelocking.enabled' í config.php til að forðast slík vandamál. Skoðaðu <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">hjálparskjölin ↗</a> til að sjá nánari upplýsingar.", "System locale can not be set to a one which supports UTF-8." : "Ekki var hægt að setja staðfærslu kerfisins á neina sem styður UTF-8.", "This means that there might be problems with certain characters in file names." : "Þetta þýðir að það geta komið upp vandamál við að birta ákveðna stafi í skráaheitum.", @@ -211,17 +238,13 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Ekki var hægt að keyra cron-verkið á skipanalínu. Eftirfarandi tæknilegar villur komu upp:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Yfirfarðu vandlega <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">uppsetningarleiðbeiningarnar ↗</a>, og athugaðu hvort nokkrar villumeldingar eða aðvaranir séu í <a href=\"%s\">annálnum</a>.", "All checks passed." : "Stóðst allar prófanir.", - "Cron" : "CRON", - "Last cron job execution: %s." : "Síðasta keyrsla cron-verks: %s.", - "Last cron job execution: %s. Something seems wrong." : "Síðasta keyrsla cron-verks: %s. Eitthvað er ekki eins og það á að sér að vera.", - "Cron was not executed yet!" : "Cron hefur ekki ennþá verið keyrt!", "Execute one task with each page loaded" : "Framkvæma eitt verk með hverri innhlaðinni síðu", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php er skráð á webcron-þjónustu til að kalla á cron.php á 15 mínútna fresti yfir http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Nota cron-þjónustu kerfisins til að kalla á cron.php skrána á 15 mínútna fresti.", "The cron.php needs to be executed by the system user \"%s\"." : "cron.php verður að vera keyrt af kerfisnotandanum \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Til að keyra þetta þarftu að hafa PHP posix viðvótina (extension). Skoðaðu {linkstart}PHP hjálparskjölin{linkend} fyrir nánari útlistun.", "Version" : "Útgáfa", "Sharing" : "Deiling", + "As admin you can fine-tune the sharing behavior. Please see the documentation for more information." : "Sem stjórnandi geturðu fínstillt hegðun við deilingu. Endilega kíktu á hjálparskjölin til að sjá ítarlegri upplýsingar.", "Allow apps to use the Share API" : "Leyfa forritum að nota Share API", "Allow users to share via link" : "Leyfa notendum að deila með tengli", "Allow public uploads" : "Leyfa opinberar innsendingar", @@ -251,6 +274,7 @@ OC.L10N.register( "Check the security of your Nextcloud over our security scan" : "Athugaðu öryggi Nextcloud-skýsins með öryggisskönnun okkar", "Hardening and security guidance" : "Brynjun og öryggisleiðbeiningar", "Developer documentation" : "Skjölun fyrir þróunaraðila", + "View in store" : "Skoða í hugbúnaðarsafni", "Limit to groups" : "Takmarka við hópa", "This app has an update available." : "Uppfærsla er tiltæk fyrir þetta forrit.", "by %s" : "frá %s", @@ -298,7 +322,10 @@ OC.L10N.register( "Address" : "Heimilisfang", "Your postal address" : "Heimilisfangið þitt", "Website" : "Vefsvæði", + "It can take up to 24 hours before the account is displayed as verified." : "Það getur tekið allt að 24 klukkustundum áður en notandaaðgangurinn er birtur sem sannvottaður.", + "Link https://…" : "Tengill https://…", "Twitter" : "Twitter", + "Twitter handle @…" : "Twitter notandanafn @…", "You are member of the following groups:" : "Þú ert meðlimur eftirfarandi hópa:", "Password" : "Lykilorð", "Current password" : "Núverandi lykilorð", @@ -342,6 +369,7 @@ OC.L10N.register( "Group name" : "Heiti hóps", "Everyone" : "Allir", "Admins" : "Kerfisstjórar", + "Disabled" : "Óvirkt", "Default quota" : "Sjálfgefinn kvóti", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Settu inn geymslukvóta (t.d.: \"512 MB\" eða \"12 GB\")", "Other" : "Annað", @@ -368,6 +396,11 @@ OC.L10N.register( "Uninstall" : "Henda út", "This is used for sending out notifications." : "Þetta er notað til að senda út tilkynningar.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-eininguna 'fileinfo' vantar. Við mælum eindregið með notkun þessarar einingar til að fá bestu útkomu við greiningu á MIME-skráagerðum.", + "Cron" : "CRON", + "Last cron job execution: %s." : "Síðasta keyrsla cron-verks: %s.", + "Last cron job execution: %s. Something seems wrong." : "Síðasta keyrsla cron-verks: %s. Eitthvað er ekki eins og það á að sér að vera.", + "Cron was not executed yet!" : "Cron hefur ekki ennþá verið keyrt!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Nota cron-þjónustu kerfisins til að kalla á cron.php skrána á 15 mínútna fresti.", "Uninstall app" : "Henda út forriti", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hæ þú,<br><br>bara að láta þig vita að þú átt núna s aðgang.<br><br>Notandanafnið þitt: <strong>%s</strong><br>Tengstu honum: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Til hamingju!", diff --git a/settings/l10n/is.json b/settings/l10n/is.json index f1215f2e091..c313c1e945c 100644 --- a/settings/l10n/is.json +++ b/settings/l10n/is.json @@ -17,6 +17,7 @@ "Authentication error" : "Villa við auðkenningu", "Please provide an admin recovery password; otherwise, all user data will be lost." : "Settu inn endurheimtulykilorð kerfisstjóra, annars munu öll notandagögn tapast.", "Wrong admin recovery password. Please check the password and try again." : "Rangt endurheimtulykilorð kerfisstjóra, athugaðu lykilorðið og reyndu aftur.", + "Backend doesn't support password change, but the user's encryption key was updated." : "Bakendi styður ekki breytingu á lykilorði, en það tókst að uppfæra dulritunarlykil notandans.", "installing and updating apps via the app store or Federated Cloud Sharing" : "uppsetning eða uppfærsla forrita úr forritabúð eða með skýjasambandi", "Federated Cloud Sharing" : "Deiling með skýjasambandi", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL er að nota úrelda útgáfu af %s (%s). Uppfærðu stýrikerfið þitt, annars er hætt við að eiginleikar á borð við %s virki ekki sem skyldi.", @@ -27,6 +28,9 @@ "Unable to delete group." : "Get ekki eytt hópi.", "Invalid SMTP password." : "Ógilt SMTP-lykilorð", "Well done, %s!" : "Vel gert, %s!", + "If you received this email, the email configuration seems to be correct." : "Fyrst að þú fékkst þennan tölvupóst, þá lítur út fyrir að tölvupóstuppsetningin sé í lagi.", + "Email setting test" : "Prófa tölvupóststillingar", + "Email could not be sent. Check your mail server log" : "Ekki var hægt að senda póst. Skoðaðu annál póstþjónsins", "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Vandamál kom upp við að senda tölvupóst. Farðu yfir stillingarnar þínar. (Villa: %s)", "You need to set your user email before being able to send test emails." : "Þú verður að gefa upp netfangið þitt svo að þú getir sent prófunarpósta.", "Invalid request" : "Ógild fyrirspurn", @@ -36,6 +40,10 @@ "To send a password link to the user an email address is required." : "Til að fá sendan tengil á staðfestingu lykilorðs verður notandinn að hafa gefið upp tölvupóstfangið sitt.", "Unable to create user." : "Gat ekki búið til notanda.", "Unable to delete user." : "Get ekki eytt notanda.", + "Error while enabling user." : "Villa við að virkja notanda.", + "Error while disabling user." : "Villa við að gera notanda óvirkann.", + "In order to verify your Twitter account, post the following tweet on Twitter (please make sure to post it without any line breaks):" : "Til að sannprófa Twitter-aðganginn þinn, sendu þá eftirfarandi tíst á Twitter (gakktu úr skugga um að skeytinu sé ekki skipt í línur):", + "In order to verify your Website, store the following content in your web-root at '.well-known/CloudIdVerificationCode.txt' (please make sure that the complete text is in one line):" : "Til að sannprófa vefsvæðið þitt, vistaðu eftirfarandi efni á vefrótinni þinni (web-root) á '.well-known/CloudIdVerificationCode.txt' (gakktu úr skugga um að allur textinn sé í einni línu):", "Settings saved" : "Stillingar vistaðar", "Unable to change full name" : "Get ekki breytt fullu nafni", "Unable to change email address" : "Get ekki breytt tölvupóstfangi", @@ -44,11 +52,25 @@ "Invalid user" : "Ógildur notandi", "Unable to change mail address" : "Get ekki breytt tölvupóstfangi", "Email saved" : "Tölvupóstfang vistað", + "%1$s changed your password on %2$s." : "%1$s breytti lykilorðinu þínu á %2$s.", + "Your password on %s was changed." : "Lykilorðinu þínu á %s hefur verið breytt.", + "Your password on %s was reset by an administrator." : "Kerfisstjóri breytti lykilorðinu þínu á %s.", + "Password changed for %s" : "Lykilorð breyttist fyrir %s", + "If you did not request this, please contact an administrator." : "Ef þú baðst ekki um þetta, hafðu þá samband við kerfisstjóra.", + "Password for %1$s changed on %2$s" : "Lykilorð fyrir %1$s breyttist %2$s", + "%1$s changed your email address on %2$s." : "%1$s breytti tölvupóstfanginu þínu þann %2$s.", + "Your email address on %s was changed." : "Tölvupóstfanginu þínu á %s var breytt.", + "Your email address on %s was changed by an administrator." : "Kerfisstjóri breytti tölvupóstfanginu þínu á %s.", + "Email address changed for %s" : "Tölvupóstfang breyttist fyrir %s", + "The new email address is %s" : "Nýja tölvupóstfangið er %s", + "Email address for %1$s changed on %2$s" : "Lykilorð fyrir %1$s breyttist þann %2$s", "Welcome aboard" : "Velkomin um borð", "Welcome aboard %s" : "Velkomin um borð %s", + "You have now an %s account, you can add, protect, and share your data." : "Þú ert núna með %s aðgang, þú getur bætt við, varið og deilt gögnunum þínum.", "Your username is: %s" : "Notandanafnið þitt er: %s", "Set your password" : "Stilltu lykilorðið þitt", "Go to %s" : "Farðu í %s", + "Install Client" : "Setja upp biðlaraforrit", "Your %s account was created" : "%s notandaaðgangurinn þinn var búinn til", "Password confirmation is required" : "Þörf á staðfestingu lykilorðs", "Couldn't remove app." : "Gat ekki fjarlægt forrit.", @@ -124,6 +146,8 @@ "Visible to local users and to trusted servers" : "Sýnilegt staðværum notendum og á treystum þjónum", "Public" : "Opinbert", "Will be synced to a global and public address book" : "Verður samstillt víðværri og opinberri vistfangaskrá", + "Verify" : "Sannreyna", + "Verifying …" : "Sannreyni …", "Select a profile picture" : "Veldu einkennismynd", "Very weak password" : "Mjög veikt lykilorð", "Weak password" : "Veikt lykilorð", @@ -147,12 +171,14 @@ "Password successfully changed" : "Lykilorðinu hefur verið breytt", "Changing the password will result in data loss, because data recovery is not available for this user" : "Breyting á þessu lykilorði mun valda gagnatapi, þar sem gagnaendurheimt er ekki tiltæk fyrir þennan notanda", "Could not change the users email" : "Tókst ekki að breyta tölvupóstfangi notandans", + "Error while changing status of {user}" : "Villa við að breyta stöðu {user}", "A valid username must be provided" : "Skráðu inn gilt notandanafn", "Error creating user: {message}" : "Villa við að búa til notanda: {message}", "A valid password must be provided" : "Skráðu inn gilt lykilorð", "A valid email must be provided" : "Skráðu inn gilt tölvupóstfang", "__language_name__" : "Íslenska", "Unlimited" : "ótakmörkuðu", + "Verifying" : "Sannreyni", "Personal info" : "Persónulegar upplýsingar", "Sessions" : "Setur", "App passwords" : "Lykilorð forrita", @@ -201,6 +227,7 @@ "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Þessu veldur væntanlega biðminni/hraðall á borð við Zend OPcache eða eAccelerator.", "Your database does not run with \"READ COMMITTED\" transaction isolation level. This can cause problems when multiple actions are executed in parallel." : "Gagnagrunnurinn keyrir ekki með \"READ COMMITTED\" færsluaðgreiningarstiginu. Þetta getur valdið vandamálum þegar margar aðgerðir eru keyrðar í einu.", "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s eldra en útgáfa %2$s er uppsett, en vegna stöðugleika og afkasta mælum við með að útgáfa %1$s verði sett upp.", + "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with MIME type detection." : "PHP-eininguna 'fileinfo' vantar. Við mælum eindregið með notkun þessarar einingar til að fá bestu útkomu við greiningu á MIME-skráagerðum.", "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "Færslulæsing skráa (transactional file locking) er óvirk, þetta gæti leitt til vandamála út frá forgangsskilyrðum (race conditions). Virkjaðu 'filelocking.enabled' í config.php til að forðast slík vandamál. Skoðaðu <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">hjálparskjölin ↗</a> til að sjá nánari upplýsingar.", "System locale can not be set to a one which supports UTF-8." : "Ekki var hægt að setja staðfærslu kerfisins á neina sem styður UTF-8.", "This means that there might be problems with certain characters in file names." : "Þetta þýðir að það geta komið upp vandamál við að birta ákveðna stafi í skráaheitum.", @@ -209,17 +236,13 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Ekki var hægt að keyra cron-verkið á skipanalínu. Eftirfarandi tæknilegar villur komu upp:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Yfirfarðu vandlega <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">uppsetningarleiðbeiningarnar ↗</a>, og athugaðu hvort nokkrar villumeldingar eða aðvaranir séu í <a href=\"%s\">annálnum</a>.", "All checks passed." : "Stóðst allar prófanir.", - "Cron" : "CRON", - "Last cron job execution: %s." : "Síðasta keyrsla cron-verks: %s.", - "Last cron job execution: %s. Something seems wrong." : "Síðasta keyrsla cron-verks: %s. Eitthvað er ekki eins og það á að sér að vera.", - "Cron was not executed yet!" : "Cron hefur ekki ennþá verið keyrt!", "Execute one task with each page loaded" : "Framkvæma eitt verk með hverri innhlaðinni síðu", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php er skráð á webcron-þjónustu til að kalla á cron.php á 15 mínútna fresti yfir http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Nota cron-þjónustu kerfisins til að kalla á cron.php skrána á 15 mínútna fresti.", "The cron.php needs to be executed by the system user \"%s\"." : "cron.php verður að vera keyrt af kerfisnotandanum \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Til að keyra þetta þarftu að hafa PHP posix viðvótina (extension). Skoðaðu {linkstart}PHP hjálparskjölin{linkend} fyrir nánari útlistun.", "Version" : "Útgáfa", "Sharing" : "Deiling", + "As admin you can fine-tune the sharing behavior. Please see the documentation for more information." : "Sem stjórnandi geturðu fínstillt hegðun við deilingu. Endilega kíktu á hjálparskjölin til að sjá ítarlegri upplýsingar.", "Allow apps to use the Share API" : "Leyfa forritum að nota Share API", "Allow users to share via link" : "Leyfa notendum að deila með tengli", "Allow public uploads" : "Leyfa opinberar innsendingar", @@ -249,6 +272,7 @@ "Check the security of your Nextcloud over our security scan" : "Athugaðu öryggi Nextcloud-skýsins með öryggisskönnun okkar", "Hardening and security guidance" : "Brynjun og öryggisleiðbeiningar", "Developer documentation" : "Skjölun fyrir þróunaraðila", + "View in store" : "Skoða í hugbúnaðarsafni", "Limit to groups" : "Takmarka við hópa", "This app has an update available." : "Uppfærsla er tiltæk fyrir þetta forrit.", "by %s" : "frá %s", @@ -296,7 +320,10 @@ "Address" : "Heimilisfang", "Your postal address" : "Heimilisfangið þitt", "Website" : "Vefsvæði", + "It can take up to 24 hours before the account is displayed as verified." : "Það getur tekið allt að 24 klukkustundum áður en notandaaðgangurinn er birtur sem sannvottaður.", + "Link https://…" : "Tengill https://…", "Twitter" : "Twitter", + "Twitter handle @…" : "Twitter notandanafn @…", "You are member of the following groups:" : "Þú ert meðlimur eftirfarandi hópa:", "Password" : "Lykilorð", "Current password" : "Núverandi lykilorð", @@ -340,6 +367,7 @@ "Group name" : "Heiti hóps", "Everyone" : "Allir", "Admins" : "Kerfisstjórar", + "Disabled" : "Óvirkt", "Default quota" : "Sjálfgefinn kvóti", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Settu inn geymslukvóta (t.d.: \"512 MB\" eða \"12 GB\")", "Other" : "Annað", @@ -366,6 +394,11 @@ "Uninstall" : "Henda út", "This is used for sending out notifications." : "Þetta er notað til að senda út tilkynningar.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-eininguna 'fileinfo' vantar. Við mælum eindregið með notkun þessarar einingar til að fá bestu útkomu við greiningu á MIME-skráagerðum.", + "Cron" : "CRON", + "Last cron job execution: %s." : "Síðasta keyrsla cron-verks: %s.", + "Last cron job execution: %s. Something seems wrong." : "Síðasta keyrsla cron-verks: %s. Eitthvað er ekki eins og það á að sér að vera.", + "Cron was not executed yet!" : "Cron hefur ekki ennþá verið keyrt!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Nota cron-þjónustu kerfisins til að kalla á cron.php skrána á 15 mínútna fresti.", "Uninstall app" : "Henda út forriti", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hæ þú,<br><br>bara að láta þig vita að þú átt núna s aðgang.<br><br>Notandanafnið þitt: <strong>%s</strong><br>Tengstu honum: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Til hamingju!", diff --git a/settings/l10n/it.js b/settings/l10n/it.js index 051761aa137..8b50b383bb9 100644 --- a/settings/l10n/it.js +++ b/settings/l10n/it.js @@ -205,13 +205,8 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Non è stato possibile eseguire il job di cron tramite CLI. Sono apparsi i seguenti errori tecnici:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Leggi attentamente le <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guide d'installazione ↗</a>, e controlla gli errori o gli avvisi nel <a href=\"%s\">log</a>.", "All checks passed." : "Tutti i controlli passati.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Ultima esecuzione di cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Ultima esecuzione di cron: %s. Potrebbe esserci un problema.", - "Cron was not executed yet!" : "Cron non è stato ancora eseguito!", "Execute one task with each page loaded" : "Esegui un'operazione con ogni pagina caricata", "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 system's 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.", "The cron.php needs to be executed by the system user \"%s\"." : "Il cron.php deve essere eseguito dall'utente di sistema \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Per eseguirlo, hai bisogno dell'estensione posix di PHP. Vedi la {linkstart}documentazione di PHP{linkend} per ulteriori dettagli.", "Version" : "Versione", @@ -355,6 +350,11 @@ OC.L10N.register( "Uninstall" : "Disinstalla", "This is used for sending out notifications." : "Viene utilizzato per inviare le notifiche.", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Ultima esecuzione di cron: %s.", + "Last cron job execution: %s. Something seems wrong." : "Ultima esecuzione di cron: %s. Potrebbe esserci un problema.", + "Cron was not executed yet!" : "Cron non è stato ancora eseguito!", + "Use system's 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.", "Uninstall app" : "Disinstalla applicazione", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Ciao,<br><br>volevamo informarti che ora hai un account %s.<br><br>Il tuo nome utente: <strong>%s</strong><br>Accedi: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Saluti!", diff --git a/settings/l10n/it.json b/settings/l10n/it.json index 69535c308c4..b63170aad96 100644 --- a/settings/l10n/it.json +++ b/settings/l10n/it.json @@ -203,13 +203,8 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Non è stato possibile eseguire il job di cron tramite CLI. Sono apparsi i seguenti errori tecnici:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Leggi attentamente le <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guide d'installazione ↗</a>, e controlla gli errori o gli avvisi nel <a href=\"%s\">log</a>.", "All checks passed." : "Tutti i controlli passati.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Ultima esecuzione di cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Ultima esecuzione di cron: %s. Potrebbe esserci un problema.", - "Cron was not executed yet!" : "Cron non è stato ancora eseguito!", "Execute one task with each page loaded" : "Esegui un'operazione con ogni pagina caricata", "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 system's 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.", "The cron.php needs to be executed by the system user \"%s\"." : "Il cron.php deve essere eseguito dall'utente di sistema \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Per eseguirlo, hai bisogno dell'estensione posix di PHP. Vedi la {linkstart}documentazione di PHP{linkend} per ulteriori dettagli.", "Version" : "Versione", @@ -353,6 +348,11 @@ "Uninstall" : "Disinstalla", "This is used for sending out notifications." : "Viene utilizzato per inviare le notifiche.", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Ultima esecuzione di cron: %s.", + "Last cron job execution: %s. Something seems wrong." : "Ultima esecuzione di cron: %s. Potrebbe esserci un problema.", + "Cron was not executed yet!" : "Cron non è stato ancora eseguito!", + "Use system's 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.", "Uninstall app" : "Disinstalla applicazione", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Ciao,<br><br>volevamo informarti che ora hai un account %s.<br><br>Il tuo nome utente: <strong>%s</strong><br>Accedi: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Saluti!", diff --git a/settings/l10n/ja.js b/settings/l10n/ja.js index 600ca96b104..d05b561464e 100644 --- a/settings/l10n/ja.js +++ b/settings/l10n/ja.js @@ -188,13 +188,8 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "CLI から cronジョブを実行することができませんでした。次の技術的なエラーが発生しています:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "<a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">インストールガイド ↗</a>をもう一度チェックして、<a href=\"%s\">ログ</a> にあるエラーまたは警告について確認してください。", "All checks passed." : "すべてのチェックに合格しました。", - "Cron" : "Cron", - "Last cron job execution: %s." : "最終cronジョブ実行: %s", - "Last cron job execution: %s. Something seems wrong." : "最終cronジョブ実行: %s 何らかの問題があります。", - "Cron was not executed yet!" : "cronはまだ実行されていません!", "Execute one task with each page loaded" : "各ページの読み込み時にタスクを実行します。", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.phpは、HTTP経由で15分ごとにcron.phpを実行するようwebcronサービスに登録されます。", - "Use system's cron service to call the cron.php file every 15 minutes." : "システムのcronサービスを利用して、15分間隔でcron.phpファイルを実行します。", "The cron.php needs to be executed by the system user \"%s\"." : "cron.php はシステムユーザ \"%s\" で実行しなければなりません。", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "これを実行するにはPHPのposix拡張が必要です。詳細については、{linkstart} PHPドキュメント{linkend}を参照してください。", "Version" : "バージョン", @@ -339,6 +334,11 @@ OC.L10N.register( "Uninstall" : "アンインストール", "This is used for sending out notifications." : "通知を送信する際に使用します。", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。", + "Cron" : "Cron", + "Last cron job execution: %s." : "最終cronジョブ実行: %s", + "Last cron job execution: %s. Something seems wrong." : "最終cronジョブ実行: %s 何らかの問題があります。", + "Cron was not executed yet!" : "cronはまだ実行されていません!", + "Use system's cron service to call the cron.php file every 15 minutes." : "システムのcronサービスを利用して、15分間隔でcron.phpファイルを実行します。", "Uninstall app" : "アプリをアンインストール", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "こんにちは、<br><br>あなたのアカウント %s が利用できるようになりました。<br><br>ユーザー名: %s<br>接続URL: <a href=\"%s\">%s</a><br><br>", "Cheers!" : "それでは!", diff --git a/settings/l10n/ja.json b/settings/l10n/ja.json index d5665b07278..2464950828a 100644 --- a/settings/l10n/ja.json +++ b/settings/l10n/ja.json @@ -186,13 +186,8 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "CLI から cronジョブを実行することができませんでした。次の技術的なエラーが発生しています:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "<a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">インストールガイド ↗</a>をもう一度チェックして、<a href=\"%s\">ログ</a> にあるエラーまたは警告について確認してください。", "All checks passed." : "すべてのチェックに合格しました。", - "Cron" : "Cron", - "Last cron job execution: %s." : "最終cronジョブ実行: %s", - "Last cron job execution: %s. Something seems wrong." : "最終cronジョブ実行: %s 何らかの問題があります。", - "Cron was not executed yet!" : "cronはまだ実行されていません!", "Execute one task with each page loaded" : "各ページの読み込み時にタスクを実行します。", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.phpは、HTTP経由で15分ごとにcron.phpを実行するようwebcronサービスに登録されます。", - "Use system's cron service to call the cron.php file every 15 minutes." : "システムのcronサービスを利用して、15分間隔でcron.phpファイルを実行します。", "The cron.php needs to be executed by the system user \"%s\"." : "cron.php はシステムユーザ \"%s\" で実行しなければなりません。", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "これを実行するにはPHPのposix拡張が必要です。詳細については、{linkstart} PHPドキュメント{linkend}を参照してください。", "Version" : "バージョン", @@ -337,6 +332,11 @@ "Uninstall" : "アンインストール", "This is used for sending out notifications." : "通知を送信する際に使用します。", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。", + "Cron" : "Cron", + "Last cron job execution: %s." : "最終cronジョブ実行: %s", + "Last cron job execution: %s. Something seems wrong." : "最終cronジョブ実行: %s 何らかの問題があります。", + "Cron was not executed yet!" : "cronはまだ実行されていません!", + "Use system's cron service to call the cron.php file every 15 minutes." : "システムのcronサービスを利用して、15分間隔でcron.phpファイルを実行します。", "Uninstall app" : "アプリをアンインストール", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "こんにちは、<br><br>あなたのアカウント %s が利用できるようになりました。<br><br>ユーザー名: %s<br>接続URL: <a href=\"%s\">%s</a><br><br>", "Cheers!" : "それでは!", diff --git a/settings/l10n/ka_GE.js b/settings/l10n/ka_GE.js index ebb248e9c03..19b92d8dac8 100644 --- a/settings/l10n/ka_GE.js +++ b/settings/l10n/ka_GE.js @@ -26,7 +26,6 @@ OC.L10N.register( "Server address" : "სერვერის მისამართი", "Port" : "პორტი", "Credentials" : "იუზერ/პაროლი", - "Cron" : "Cron–ი", "Execute one task with each page loaded" : "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე", "Version" : "ვერსია", "Sharing" : "გაზიარება", @@ -54,6 +53,7 @@ OC.L10N.register( "Admins can't remove themself from the admin group" : "ადმინისტრატორებს არ შეუძლიათ საკუთარი თავის წაშლა ადმინ ჯგუფიდან", "Unable to add user to group %s" : "მომხმარებლის დამატება ვერ მოხეხდა ჯგუფში %s", "Unable to remove user from group %s" : "მომხმარებლის წაშლა ვერ მოხეხდა ჯგუფიდან %s", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP მოდული 'fileinfo' არ არსებობს. ჩვენ გირჩევთ რომ აუცილებლად ჩართოთ ეს მოდული, რომ მიიღოთ კარგი შედეგები mime-type–ს აღმოჩენისას." + "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP მოდული 'fileinfo' არ არსებობს. ჩვენ გირჩევთ რომ აუცილებლად ჩართოთ ეს მოდული, რომ მიიღოთ კარგი შედეგები mime-type–ს აღმოჩენისას.", + "Cron" : "Cron–ი" }, "nplurals=1; plural=0;"); diff --git a/settings/l10n/ka_GE.json b/settings/l10n/ka_GE.json index 50e19a1498c..fa89c16be96 100644 --- a/settings/l10n/ka_GE.json +++ b/settings/l10n/ka_GE.json @@ -24,7 +24,6 @@ "Server address" : "სერვერის მისამართი", "Port" : "პორტი", "Credentials" : "იუზერ/პაროლი", - "Cron" : "Cron–ი", "Execute one task with each page loaded" : "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე", "Version" : "ვერსია", "Sharing" : "გაზიარება", @@ -52,6 +51,7 @@ "Admins can't remove themself from the admin group" : "ადმინისტრატორებს არ შეუძლიათ საკუთარი თავის წაშლა ადმინ ჯგუფიდან", "Unable to add user to group %s" : "მომხმარებლის დამატება ვერ მოხეხდა ჯგუფში %s", "Unable to remove user from group %s" : "მომხმარებლის წაშლა ვერ მოხეხდა ჯგუფიდან %s", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP მოდული 'fileinfo' არ არსებობს. ჩვენ გირჩევთ რომ აუცილებლად ჩართოთ ეს მოდული, რომ მიიღოთ კარგი შედეგები mime-type–ს აღმოჩენისას." + "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP მოდული 'fileinfo' არ არსებობს. ჩვენ გირჩევთ რომ აუცილებლად ჩართოთ ეს მოდული, რომ მიიღოთ კარგი შედეგები mime-type–ს აღმოჩენისას.", + "Cron" : "Cron–ი" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/settings/l10n/km.js b/settings/l10n/km.js index 626826f74ca..21bef4c0371 100644 --- a/settings/l10n/km.js +++ b/settings/l10n/km.js @@ -37,7 +37,6 @@ OC.L10N.register( "Server address" : "អាសយដ្ឋានម៉ាស៊ីនបម្រើ", "Port" : "ច្រក", "Send email" : "ផ្ញើអ៊ីមែល", - "Cron" : "Cron", "Version" : "កំណែ", "Sharing" : "ការចែករំលែក", "Allow apps to use the Share API" : "អនុញ្ញាតឲ្យកម្មវិធីប្រើ API ចែករំលែក", @@ -71,6 +70,7 @@ OC.L10N.register( "Unable to add user to group %s" : "មិនអាចបន្ថែមអ្នកប្រើទៅក្រុម %s", "Unable to remove user from group %s" : "មិនអាចដកអ្នកប្រើចេញពីក្រុម %s", "Sending..." : "កំពុងផ្ញើ...", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "ខ្វះម៉ូឌុល 'fileinfo' ។ យើងសូមណែនាំឲ្យបើកម៉ូឌុលនេះ ដើម្បីទទួលបានលទ្ធផលល្អនៃការសម្គាល់ប្រភេទ mime ។" + "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "ខ្វះម៉ូឌុល 'fileinfo' ។ យើងសូមណែនាំឲ្យបើកម៉ូឌុលនេះ ដើម្បីទទួលបានលទ្ធផលល្អនៃការសម្គាល់ប្រភេទ mime ។", + "Cron" : "Cron" }, "nplurals=1; plural=0;"); diff --git a/settings/l10n/km.json b/settings/l10n/km.json index 7ad6d7f94a5..3351337c56e 100644 --- a/settings/l10n/km.json +++ b/settings/l10n/km.json @@ -35,7 +35,6 @@ "Server address" : "អាសយដ្ឋានម៉ាស៊ីនបម្រើ", "Port" : "ច្រក", "Send email" : "ផ្ញើអ៊ីមែល", - "Cron" : "Cron", "Version" : "កំណែ", "Sharing" : "ការចែករំលែក", "Allow apps to use the Share API" : "អនុញ្ញាតឲ្យកម្មវិធីប្រើ API ចែករំលែក", @@ -69,6 +68,7 @@ "Unable to add user to group %s" : "មិនអាចបន្ថែមអ្នកប្រើទៅក្រុម %s", "Unable to remove user from group %s" : "មិនអាចដកអ្នកប្រើចេញពីក្រុម %s", "Sending..." : "កំពុងផ្ញើ...", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "ខ្វះម៉ូឌុល 'fileinfo' ។ យើងសូមណែនាំឲ្យបើកម៉ូឌុលនេះ ដើម្បីទទួលបានលទ្ធផលល្អនៃការសម្គាល់ប្រភេទ mime ។" + "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "ខ្វះម៉ូឌុល 'fileinfo' ។ យើងសូមណែនាំឲ្យបើកម៉ូឌុលនេះ ដើម្បីទទួលបានលទ្ធផលល្អនៃការសម្គាល់ប្រភេទ mime ។", + "Cron" : "Cron" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/settings/l10n/ko.js b/settings/l10n/ko.js index 05a54328644..ea543b9c3f8 100644 --- a/settings/l10n/ko.js +++ b/settings/l10n/ko.js @@ -239,14 +239,9 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "CLI로 cronjob을 실행할 수 없었습니다. 다음 기술적 오류가 발생했습니다:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "<a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">설치 가이드 ↗</a>를 확인하고 <a href=\"%s\">로그</a>의 오류 또는 경고를 확인하십시오.", "All checks passed." : "모든 검사를 통과했습니다.", - "Cron" : "Cron", - "Last cron job execution: %s." : "마지막 cron 작업 실행: %s.", - "Last cron job execution: %s. Something seems wrong." : "마지막 cron 작업 실행: %s. 문제가 발생한 것 같습니다.", - "Cron was not executed yet!" : "Cron이 실행되지 않았습니다!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "최적 성능을 위해서 백그라운드 작업을 올바르게 설정하는 것을 추천합니다. 큰 인스턴스에서는 'Cron'을 사용하는 것을 추천합니다. 더 많은 정보를 보려면 문서를 참조하십시오.", "Execute one task with each page loaded" : "개별 페이지를 불러올 때마다 실행", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php는 webcron 서비스에 등록되어 HTTP로 15분마다 cron.php에 접근합니다.", - "Use system's cron service to call the cron.php file every 15 minutes." : "시스템의 cron 서비스를 통하여 15분마다 cron.php 파일을 실행합니다.", "The cron.php needs to be executed by the system user \"%s\"." : "시스템 사용자 \"%s\"(으)로 cron.php를 실행해야 합니다.", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "실행하려면 PHP POSIX 확장이 필요합니다. 자세한 내용은 {linkstart}PHP 사용 설명서{linkend}를 참고하십시오.", "Version" : "버전", @@ -405,6 +400,11 @@ OC.L10N.register( "Uninstall" : "제거", "This is used for sending out notifications." : "알림을 보낼 때 사용합니다.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP의 'fileinfo' 모듈이 없습니다. 올바른 MIME 형식 감지를 위해서 이 모듈을 활성화하는 것을 추천합니다.", + "Cron" : "Cron", + "Last cron job execution: %s." : "마지막 cron 작업 실행: %s.", + "Last cron job execution: %s. Something seems wrong." : "마지막 cron 작업 실행: %s. 문제가 발생한 것 같습니다.", + "Cron was not executed yet!" : "Cron이 실행되지 않았습니다!", + "Use system's cron service to call the cron.php file every 15 minutes." : "시스템의 cron 서비스를 통하여 15분마다 cron.php 파일을 실행합니다.", "Uninstall app" : "앱 삭제", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "안녕하세요.<br><br>%s 계정을 사용할 수 있음을 알려 드립니다.<br><br>사용자 이름: <strong>%s</strong><br>접근 링크: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "감사합니다!", diff --git a/settings/l10n/ko.json b/settings/l10n/ko.json index a35ef996cf5..b3e5ed60f42 100644 --- a/settings/l10n/ko.json +++ b/settings/l10n/ko.json @@ -237,14 +237,9 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "CLI로 cronjob을 실행할 수 없었습니다. 다음 기술적 오류가 발생했습니다:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "<a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">설치 가이드 ↗</a>를 확인하고 <a href=\"%s\">로그</a>의 오류 또는 경고를 확인하십시오.", "All checks passed." : "모든 검사를 통과했습니다.", - "Cron" : "Cron", - "Last cron job execution: %s." : "마지막 cron 작업 실행: %s.", - "Last cron job execution: %s. Something seems wrong." : "마지막 cron 작업 실행: %s. 문제가 발생한 것 같습니다.", - "Cron was not executed yet!" : "Cron이 실행되지 않았습니다!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "최적 성능을 위해서 백그라운드 작업을 올바르게 설정하는 것을 추천합니다. 큰 인스턴스에서는 'Cron'을 사용하는 것을 추천합니다. 더 많은 정보를 보려면 문서를 참조하십시오.", "Execute one task with each page loaded" : "개별 페이지를 불러올 때마다 실행", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php는 webcron 서비스에 등록되어 HTTP로 15분마다 cron.php에 접근합니다.", - "Use system's cron service to call the cron.php file every 15 minutes." : "시스템의 cron 서비스를 통하여 15분마다 cron.php 파일을 실행합니다.", "The cron.php needs to be executed by the system user \"%s\"." : "시스템 사용자 \"%s\"(으)로 cron.php를 실행해야 합니다.", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "실행하려면 PHP POSIX 확장이 필요합니다. 자세한 내용은 {linkstart}PHP 사용 설명서{linkend}를 참고하십시오.", "Version" : "버전", @@ -403,6 +398,11 @@ "Uninstall" : "제거", "This is used for sending out notifications." : "알림을 보낼 때 사용합니다.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP의 'fileinfo' 모듈이 없습니다. 올바른 MIME 형식 감지를 위해서 이 모듈을 활성화하는 것을 추천합니다.", + "Cron" : "Cron", + "Last cron job execution: %s." : "마지막 cron 작업 실행: %s.", + "Last cron job execution: %s. Something seems wrong." : "마지막 cron 작업 실행: %s. 문제가 발생한 것 같습니다.", + "Cron was not executed yet!" : "Cron이 실행되지 않았습니다!", + "Use system's cron service to call the cron.php file every 15 minutes." : "시스템의 cron 서비스를 통하여 15분마다 cron.php 파일을 실행합니다.", "Uninstall app" : "앱 삭제", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "안녕하세요.<br><br>%s 계정을 사용할 수 있음을 알려 드립니다.<br><br>사용자 이름: <strong>%s</strong><br>접근 링크: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "감사합니다!", diff --git a/settings/l10n/lb.js b/settings/l10n/lb.js index a951f11b381..8006d9a24b4 100644 --- a/settings/l10n/lb.js +++ b/settings/l10n/lb.js @@ -24,7 +24,6 @@ OC.L10N.register( "Authentication required" : "Authentifizéierung néideg", "Server address" : "Server Adress", "Port" : "Port", - "Cron" : "Cron", "Sharing" : "Gedeelt", "Allow apps to use the Share API" : "Erlab Apps d'Share API ze benotzen", "days" : "Deeg", @@ -51,6 +50,7 @@ OC.L10N.register( "Admins can't remove themself from the admin group" : "Admins kennen sech selwer net aus enger Admin Group läschen.", "Unable to add user to group %s" : "Onmeiglech User an Grupp ze sätzen %s", "Error while uninstalling app" : "Fehler beim Deinstalléieren vun der App", + "Cron" : "Cron", "Cheers!" : "Prost!" }, "nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/lb.json b/settings/l10n/lb.json index b707926dc77..526077d4728 100644 --- a/settings/l10n/lb.json +++ b/settings/l10n/lb.json @@ -22,7 +22,6 @@ "Authentication required" : "Authentifizéierung néideg", "Server address" : "Server Adress", "Port" : "Port", - "Cron" : "Cron", "Sharing" : "Gedeelt", "Allow apps to use the Share API" : "Erlab Apps d'Share API ze benotzen", "days" : "Deeg", @@ -49,6 +48,7 @@ "Admins can't remove themself from the admin group" : "Admins kennen sech selwer net aus enger Admin Group läschen.", "Unable to add user to group %s" : "Onmeiglech User an Grupp ze sätzen %s", "Error while uninstalling app" : "Fehler beim Deinstalléieren vun der App", + "Cron" : "Cron", "Cheers!" : "Prost!" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/settings/l10n/lt_LT.js b/settings/l10n/lt_LT.js index 156a21ecbb3..0a9503fce0e 100644 --- a/settings/l10n/lt_LT.js +++ b/settings/l10n/lt_LT.js @@ -1,6 +1,11 @@ OC.L10N.register( "settings", { + "You changed your password" : "Jūs pakeitėte savo slaptažodį", + "Your password was reset by an administrator" : "Administratorius atstatė jūsų slaptažodį", + "{actor} changed your email address" : "{actor} pakeitė jūsų el. pašto adresą", + "Your <strong>password</strong> or <strong>email</strong> was modified" : "Jūsų <strong>slaptažodis</strong> ar <strong>el. paštas</strong> buvo pakeisti", + "Your apps" : "Jūsų programėlės", "Wrong password" : "Neteisingas slaptažodis", "Saved" : "Įrašyta", "No user supplied" : "Nepateiktas naudotojas", @@ -10,27 +15,34 @@ OC.L10N.register( "Group already exists." : "Grupė jau yra.", "Unable to add group." : "Nepavyko pridėti grupės.", "Unable to delete group." : "Nepavyko ištrinti grupės.", + "Invalid SMTP password." : "Neteisingas SMTP slaptažodis.", "Invalid request" : "Neteisinga užklausa", "Invalid mail address" : "Neteisingas pašto adresas", "A user with that name already exists." : "Toks naudotojas jau yra.", "Unable to create user." : "Nepavyko sukurti naudotojo.", "Unable to delete user." : "Nepavyko ištrinti naudotojo.", + "Error while enabling user." : "Klaida įjungiant naudotoją.", + "Error while disabling user." : "Klaida išjungiant naudotoją.", "Settings saved" : "Nustatymai įrašyti", "Unable to change full name" : "Nepavyko pakeisti pilno vardo", "Your full name has been changed." : "Pilnas vardas pakeistas.", "Invalid user" : "Neteisingas naudotojas", "Unable to change mail address" : "Nepavyko pakeisti el. pašto adresą", "Email saved" : "El. paštas įrašytas", + "The new email address is %s" : "Naujasis el. pašto adresas yra %s", + "Your username is: %s" : "Jūsų naudotojo vardas yra: %s", "Your %s account was created" : "Jūsų paskyra %s sukurta", "Password confirmation is required" : "Reikalingas slaptažodžio patvirtinimas", "Couldn't remove app." : "Nepavyko pašalinti programėlės.", "Couldn't update app." : "Nepavyko atnaujinti programėlės.", "Add trusted domain" : "Pridėti patikimą domeną", "Not saved" : "Neįrašyta", + "Sending…" : "Siunčiama…", "Email sent" : "El. paštas išsiųstas", "Official" : "Oficiali", "All" : "Viskas", "Update to %s" : "Atnaujinti į %s", + "Disabling app …" : "Išjungiama programėlė …", "Error while disabling app" : "Klaida, išjungiant programėlę", "Disable" : "Išjungti", "Enable" : "Įjungti", @@ -39,6 +51,8 @@ OC.L10N.register( "Updating...." : "Atnaujinama...", "Error while updating app" : "Įvyko klaida atnaujinant programą", "Updated" : "Atnaujinta", + "Removing …" : "Šalinama …", + "Remove" : "Šalinti", "Approved" : "Patvirtinta", "Experimental" : "Eksperimentinė", "Disconnect" : "Atjungti", @@ -56,6 +70,7 @@ OC.L10N.register( "Copy" : "Kopijuoti", "Copied!" : "Nukopijuota!", "Not supported!" : "Nepalaikoma!", + "Press ⌘-C to copy." : "Norėdami nukopijuoti, paspauskite ⌘-C.", "Error while loading browser sessions and device tokens" : "Klaida, įkeliant naršyklės seansus ir įrenginio prieigos raktus", "Error while creating device token" : "Klaida, kuriant įrenginio prieigos raktą", "Error while deleting the token" : "Klaida, ištrinant prieigos raktą", @@ -72,6 +87,7 @@ OC.L10N.register( "Good password" : "Geras slaptažodis", "Strong password" : "Stiprus slaptažodis", "Groups" : "Grupės", + "Error creating group: {message}" : "Klaida kuriant grupę: {message}", "undo" : "anuliuoti", "never" : "niekada", "Add group" : "Pridėti grupę", @@ -104,7 +120,6 @@ OC.L10N.register( "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Jūs turite perkelti savo šifravimo raktus iš senojo šifravimo (ownCloud <= 8.0) į naująjį. Prašome įjungti \"Numatytąjį šifravimo modulį\" ir vykdyti \"occ encryption:migrate\"", "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Jūs turite perkelti savo šifravimo raktus iš senojo šifravimo (ownCloud <= 8.0) į naująjį.", "Security & setup warnings" : "Saugos ir diegimo perspėjimai", - "Cron" : "Cron", "Execute one task with each page loaded" : "Įvykdyti vieną užduotį su kiekvieno puslapio įkėlimu", "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.", "Version" : "Versija", @@ -116,6 +131,8 @@ OC.L10N.register( "Tips & tricks" : "Patarimai ir gudrybės", "This app has an update available." : "Šiai programėlei yra prieinamas atnaujinimas.", "Documentation:" : "Dokumentacija:", + "User documentation" : "Naudotojo dokumentacija", + "Admin documentation" : "Administratoriaus dokumentacija", "Report a bug" : "Pranešti apie klaidą", "Show description …" : "Rodyti aprašą …", "Hide description …" : "Slėpti aprašą …", @@ -129,6 +146,7 @@ OC.L10N.register( "Cancel" : "Atsisakyti", "Email" : "El. Paštas", "Your email address" : "Jūsų el. pašto adresas", + "No email address set" : "Nenustatytas joks el. pašto adresas", "Phone number" : "Telefono numeris", "Your phone number" : "Jūsų telefono numeris", "Address" : "Adresas", @@ -153,8 +171,12 @@ OC.L10N.register( "Name" : "Pavadinimas", "App name" : "Programėlės pavadinimas", "Create new app password" : "Sukurti naują programėlės slaptažodį", + "For security reasons this password will only be shown once." : "Saugumo sumetimais šis slaptažodis bus parodytas tik vieną kartą.", "Username" : "Naudotojo vardas", "Done" : "Atlikta", + "Follow us on Google+!" : "Sekite mus Google+!", + "Follow us on Twitter!" : "Sekite mus Twitter!", + "Settings" : "Nustatymai", "Create" : "Sukurti", "Admin Recovery Password" : "Administracinis atkūrimo slaptažodis", "Enter the recovery password in order to recover the users files during password change" : "Įveskite atkūrimo slaptažodį, kad atkurtumėte naudotojo failus keičiant slaptažodį", @@ -175,6 +197,7 @@ OC.L10N.register( "Error while uninstalling app" : "Klaida, šalinant programėlę", "Uninstall" : "Šalinti", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Trūksta PHP modulio „fileinfo“. Labai rekomenduojame įjungti šį modulį, kad gauti geriausius rezultatus nustatant mime-tipą.", + "Cron" : "Cron", "Cheers!" : "Sveikinimai!", "For password recovery and notifications" : "Skirtas slaptažodžio atkūrimui ir pranešimams", "Your website" : "Jūsų svetainė" diff --git a/settings/l10n/lt_LT.json b/settings/l10n/lt_LT.json index a86c37ba8ad..95cff7c1e94 100644 --- a/settings/l10n/lt_LT.json +++ b/settings/l10n/lt_LT.json @@ -1,4 +1,9 @@ { "translations": { + "You changed your password" : "Jūs pakeitėte savo slaptažodį", + "Your password was reset by an administrator" : "Administratorius atstatė jūsų slaptažodį", + "{actor} changed your email address" : "{actor} pakeitė jūsų el. pašto adresą", + "Your <strong>password</strong> or <strong>email</strong> was modified" : "Jūsų <strong>slaptažodis</strong> ar <strong>el. paštas</strong> buvo pakeisti", + "Your apps" : "Jūsų programėlės", "Wrong password" : "Neteisingas slaptažodis", "Saved" : "Įrašyta", "No user supplied" : "Nepateiktas naudotojas", @@ -8,27 +13,34 @@ "Group already exists." : "Grupė jau yra.", "Unable to add group." : "Nepavyko pridėti grupės.", "Unable to delete group." : "Nepavyko ištrinti grupės.", + "Invalid SMTP password." : "Neteisingas SMTP slaptažodis.", "Invalid request" : "Neteisinga užklausa", "Invalid mail address" : "Neteisingas pašto adresas", "A user with that name already exists." : "Toks naudotojas jau yra.", "Unable to create user." : "Nepavyko sukurti naudotojo.", "Unable to delete user." : "Nepavyko ištrinti naudotojo.", + "Error while enabling user." : "Klaida įjungiant naudotoją.", + "Error while disabling user." : "Klaida išjungiant naudotoją.", "Settings saved" : "Nustatymai įrašyti", "Unable to change full name" : "Nepavyko pakeisti pilno vardo", "Your full name has been changed." : "Pilnas vardas pakeistas.", "Invalid user" : "Neteisingas naudotojas", "Unable to change mail address" : "Nepavyko pakeisti el. pašto adresą", "Email saved" : "El. paštas įrašytas", + "The new email address is %s" : "Naujasis el. pašto adresas yra %s", + "Your username is: %s" : "Jūsų naudotojo vardas yra: %s", "Your %s account was created" : "Jūsų paskyra %s sukurta", "Password confirmation is required" : "Reikalingas slaptažodžio patvirtinimas", "Couldn't remove app." : "Nepavyko pašalinti programėlės.", "Couldn't update app." : "Nepavyko atnaujinti programėlės.", "Add trusted domain" : "Pridėti patikimą domeną", "Not saved" : "Neįrašyta", + "Sending…" : "Siunčiama…", "Email sent" : "El. paštas išsiųstas", "Official" : "Oficiali", "All" : "Viskas", "Update to %s" : "Atnaujinti į %s", + "Disabling app …" : "Išjungiama programėlė …", "Error while disabling app" : "Klaida, išjungiant programėlę", "Disable" : "Išjungti", "Enable" : "Įjungti", @@ -37,6 +49,8 @@ "Updating...." : "Atnaujinama...", "Error while updating app" : "Įvyko klaida atnaujinant programą", "Updated" : "Atnaujinta", + "Removing …" : "Šalinama …", + "Remove" : "Šalinti", "Approved" : "Patvirtinta", "Experimental" : "Eksperimentinė", "Disconnect" : "Atjungti", @@ -54,6 +68,7 @@ "Copy" : "Kopijuoti", "Copied!" : "Nukopijuota!", "Not supported!" : "Nepalaikoma!", + "Press ⌘-C to copy." : "Norėdami nukopijuoti, paspauskite ⌘-C.", "Error while loading browser sessions and device tokens" : "Klaida, įkeliant naršyklės seansus ir įrenginio prieigos raktus", "Error while creating device token" : "Klaida, kuriant įrenginio prieigos raktą", "Error while deleting the token" : "Klaida, ištrinant prieigos raktą", @@ -70,6 +85,7 @@ "Good password" : "Geras slaptažodis", "Strong password" : "Stiprus slaptažodis", "Groups" : "Grupės", + "Error creating group: {message}" : "Klaida kuriant grupę: {message}", "undo" : "anuliuoti", "never" : "niekada", "Add group" : "Pridėti grupę", @@ -102,7 +118,6 @@ "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Jūs turite perkelti savo šifravimo raktus iš senojo šifravimo (ownCloud <= 8.0) į naująjį. Prašome įjungti \"Numatytąjį šifravimo modulį\" ir vykdyti \"occ encryption:migrate\"", "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Jūs turite perkelti savo šifravimo raktus iš senojo šifravimo (ownCloud <= 8.0) į naująjį.", "Security & setup warnings" : "Saugos ir diegimo perspėjimai", - "Cron" : "Cron", "Execute one task with each page loaded" : "Įvykdyti vieną užduotį su kiekvieno puslapio įkėlimu", "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.", "Version" : "Versija", @@ -114,6 +129,8 @@ "Tips & tricks" : "Patarimai ir gudrybės", "This app has an update available." : "Šiai programėlei yra prieinamas atnaujinimas.", "Documentation:" : "Dokumentacija:", + "User documentation" : "Naudotojo dokumentacija", + "Admin documentation" : "Administratoriaus dokumentacija", "Report a bug" : "Pranešti apie klaidą", "Show description …" : "Rodyti aprašą …", "Hide description …" : "Slėpti aprašą …", @@ -127,6 +144,7 @@ "Cancel" : "Atsisakyti", "Email" : "El. Paštas", "Your email address" : "Jūsų el. pašto adresas", + "No email address set" : "Nenustatytas joks el. pašto adresas", "Phone number" : "Telefono numeris", "Your phone number" : "Jūsų telefono numeris", "Address" : "Adresas", @@ -151,8 +169,12 @@ "Name" : "Pavadinimas", "App name" : "Programėlės pavadinimas", "Create new app password" : "Sukurti naują programėlės slaptažodį", + "For security reasons this password will only be shown once." : "Saugumo sumetimais šis slaptažodis bus parodytas tik vieną kartą.", "Username" : "Naudotojo vardas", "Done" : "Atlikta", + "Follow us on Google+!" : "Sekite mus Google+!", + "Follow us on Twitter!" : "Sekite mus Twitter!", + "Settings" : "Nustatymai", "Create" : "Sukurti", "Admin Recovery Password" : "Administracinis atkūrimo slaptažodis", "Enter the recovery password in order to recover the users files during password change" : "Įveskite atkūrimo slaptažodį, kad atkurtumėte naudotojo failus keičiant slaptažodį", @@ -173,6 +195,7 @@ "Error while uninstalling app" : "Klaida, šalinant programėlę", "Uninstall" : "Šalinti", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Trūksta PHP modulio „fileinfo“. Labai rekomenduojame įjungti šį modulį, kad gauti geriausius rezultatus nustatant mime-tipą.", + "Cron" : "Cron", "Cheers!" : "Sveikinimai!", "For password recovery and notifications" : "Skirtas slaptažodžio atkūrimui ir pranešimams", "Your website" : "Jūsų svetainė" diff --git a/settings/l10n/lv.js b/settings/l10n/lv.js index 0cf7ed8cb07..bd54d84052c 100644 --- a/settings/l10n/lv.js +++ b/settings/l10n/lv.js @@ -151,7 +151,6 @@ OC.L10N.register( "Start migration" : "Sākt migrāciju", "Security & setup warnings" : "Drošības un iestatījumu brīdinājumi", "All checks passed." : "Visas pārbaudes veiksmīgas.", - "Cron" : "Cron", "Execute one task with each page loaded" : "Izpildīt vienu uzdevumu ar katru ielādēto lapu", "Version" : "Versija", "Sharing" : "Koplietošana", @@ -273,6 +272,7 @@ OC.L10N.register( "Uninstall" : "Atinstalēt", "This is used for sending out notifications." : "Tas tiek izmantots, izsūtot paziņojumus.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Trūkst PHP modulis “fileinfo”. Mēs iesakām to aktivēt, lai pēc iespējas labāk noteiktu mime tipus.", + "Cron" : "Cron", "Uninstall app" : "Atinstalēt programmu", "Cheers!" : "Priekā!", "Hey there,\n\njust letting you know that you now have a %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hei,\n\nvienkārši Jūsu zināšanai, ka Jums tagad ir %s konts.\n\nJūsu lietotājvārds: %s\nPiekļuve: %s\n\n", diff --git a/settings/l10n/lv.json b/settings/l10n/lv.json index 2178cc86829..755fdefc390 100644 --- a/settings/l10n/lv.json +++ b/settings/l10n/lv.json @@ -149,7 +149,6 @@ "Start migration" : "Sākt migrāciju", "Security & setup warnings" : "Drošības un iestatījumu brīdinājumi", "All checks passed." : "Visas pārbaudes veiksmīgas.", - "Cron" : "Cron", "Execute one task with each page loaded" : "Izpildīt vienu uzdevumu ar katru ielādēto lapu", "Version" : "Versija", "Sharing" : "Koplietošana", @@ -271,6 +270,7 @@ "Uninstall" : "Atinstalēt", "This is used for sending out notifications." : "Tas tiek izmantots, izsūtot paziņojumus.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Trūkst PHP modulis “fileinfo”. Mēs iesakām to aktivēt, lai pēc iespējas labāk noteiktu mime tipus.", + "Cron" : "Cron", "Uninstall app" : "Atinstalēt programmu", "Cheers!" : "Priekā!", "Hey there,\n\njust letting you know that you now have a %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Hei,\n\nvienkārši Jūsu zināšanai, ka Jums tagad ir %s konts.\n\nJūsu lietotājvārds: %s\nPiekļuve: %s\n\n", diff --git a/settings/l10n/mk.js b/settings/l10n/mk.js index a037e51f5c9..d829f1025c9 100644 --- a/settings/l10n/mk.js +++ b/settings/l10n/mk.js @@ -94,7 +94,6 @@ OC.L10N.register( "Start migration" : "Започни ја миграцијата", "Security & setup warnings" : "Предупредувања за сигурност и подесувања", "All checks passed." : "Сите проверки се поминати.", - "Cron" : "Крон", "Execute one task with each page loaded" : "Изврши по една задача со секоја вчитана страница", "Version" : "Верзија", "Sharing" : "Споделување", @@ -160,6 +159,7 @@ OC.L10N.register( "Error while uninstalling app" : "Грешка при деинсталација на апликацијата", "Uninstall" : "Деинсталирај", "This is used for sending out notifications." : "Ова се користи за испраќање на известувања.", + "Cron" : "Крон", "Cheers!" : "Поздрав!" }, "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"); diff --git a/settings/l10n/mk.json b/settings/l10n/mk.json index 90290797230..8630e0ae310 100644 --- a/settings/l10n/mk.json +++ b/settings/l10n/mk.json @@ -92,7 +92,6 @@ "Start migration" : "Започни ја миграцијата", "Security & setup warnings" : "Предупредувања за сигурност и подесувања", "All checks passed." : "Сите проверки се поминати.", - "Cron" : "Крон", "Execute one task with each page loaded" : "Изврши по една задача со секоја вчитана страница", "Version" : "Верзија", "Sharing" : "Споделување", @@ -158,6 +157,7 @@ "Error while uninstalling app" : "Грешка при деинсталација на апликацијата", "Uninstall" : "Деинсталирај", "This is used for sending out notifications." : "Ова се користи за испраќање на известувања.", + "Cron" : "Крон", "Cheers!" : "Поздрав!" },"pluralForm" :"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;" }
\ No newline at end of file diff --git a/settings/l10n/nb.js b/settings/l10n/nb.js index d129e0a7b94..2844d1114b6 100644 --- a/settings/l10n/nb.js +++ b/settings/l10n/nb.js @@ -46,7 +46,7 @@ OC.L10N.register( "Error while disabling user." : "Feil ved avslag av brukerkonto.", "Settings saved" : "Innstillinger lagret", "Unable to change full name" : "Klarte ikke å endre fullt navn", - "Unable to change email address" : "Klarer ikke å endre epostadresse", + "Unable to change email address" : "Klarer ikke å endre e-postadresse", "Your full name has been changed." : "Ditt fulle navn er blitt endret.", "Forbidden" : "Forbudt", "Invalid user" : "Ugyldig bruker", @@ -95,7 +95,7 @@ OC.L10N.register( "Error while disabling app" : "Deaktivering av program mislyktes", "Disable" : "Deaktiver ", "Enable" : "Aktiver", - "Enabling app …" : "Aktiverer app ...", + "Enabling app …" : "Aktiverer program…", "Error while enabling app" : "Aktivering av program feilet", "Error: this app cannot be enabled because it makes the server unstable" : "Feil: Denne appen kan ikke aktiveres fordi den gjør tjeneren ustabil", "Error: could not disable broken app" : "Feil: Kunne ikke deaktivere ustabil app", @@ -170,7 +170,7 @@ OC.L10N.register( "no group" : "ingen gruppe", "Password successfully changed" : "Passordet ble endret.", "Changing the password will result in data loss, because data recovery is not available for this user" : "Forandring av passordet vil føre til tap av data, fordi datagjennoppretting er utilgjengelig for denne brukeren", - "Could not change the users email" : "Kunne ikke endre brukerens epostadresse", + "Could not change the users email" : "Kunne ikke endre brukerens e-postadresse", "Error while changing status of {user}" : "Feil ved endring av status for {user}", "A valid username must be provided" : "Oppgi et gyldig brukernavn", "Error creating user: {message}" : "Feil ved oppretting av bruker: {message}", @@ -239,14 +239,9 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Det var ikke mulig å kjøre cron-jobben vi CLI. Følgende tekniske feil oppstod:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Vennligst dobbeltsjekk <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installasjonsguiden ↗</a>, og se etter feil eller advarsler i <a href=\"%s\">loggen</a>.", "All checks passed." : "Alle sjekker bestått.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Siste kjøring av Cron-jobb: %s.", - "Last cron job execution: %s. Something seems wrong." : "Siste kjøring av Cron-jobb: %s. Noe ser ut til å være galt.", - "Cron was not executed yet!" : "Cron har ikke blitt kjørt enda!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "For optimal ytelse er det viktig å sette opp bakgrunnsjobber rett. For kjøring på større installasjoner er 'Cron' anbefalt innstilling. Se dokumentasjonen for mer informasjon.", "Execute one task with each page loaded" : "Utfør en oppgave med hver side som blir lastet", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php er registrert i en webcron-tjeneste for å kalle cron.php hvert 15. minutt over http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Bruk systemets cron-tjeneste til å kalle cron.php hvert kvarter.", "The cron.php needs to be executed by the system user \"%s\"." : "Filen cron.php må kjøres systemet som følgende bruker \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "For å kjøre denne trenger du «PHP posix extension». Se {linkstart}PHP dokumentasjonen{linkend} for flere detaljer.", "Version" : "Versjon", @@ -405,6 +400,11 @@ OC.L10N.register( "Uninstall" : "Avinstaller", "This is used for sending out notifications." : "Dette brukes for utsending av varsler.", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Siste kjøring av Cron-jobb: %s.", + "Last cron job execution: %s. Something seems wrong." : "Siste kjøring av Cron-jobb: %s. Noe ser ut til å være galt.", + "Cron was not executed yet!" : "Cron har ikke blitt kjørt enda!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Bruk systemets cron-tjeneste til å kalle cron.php hvert kvarter.", "Uninstall app" : "Avinstaller app", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hei,<br><br>vil bare opplyse deg om at du har en %s konto.<br><br>Ditt brukernavn: <strong>%s</strong><br>Gå dit: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Hadet!", diff --git a/settings/l10n/nb.json b/settings/l10n/nb.json index 52c3ecb0f9a..198ac6229e1 100644 --- a/settings/l10n/nb.json +++ b/settings/l10n/nb.json @@ -44,7 +44,7 @@ "Error while disabling user." : "Feil ved avslag av brukerkonto.", "Settings saved" : "Innstillinger lagret", "Unable to change full name" : "Klarte ikke å endre fullt navn", - "Unable to change email address" : "Klarer ikke å endre epostadresse", + "Unable to change email address" : "Klarer ikke å endre e-postadresse", "Your full name has been changed." : "Ditt fulle navn er blitt endret.", "Forbidden" : "Forbudt", "Invalid user" : "Ugyldig bruker", @@ -93,7 +93,7 @@ "Error while disabling app" : "Deaktivering av program mislyktes", "Disable" : "Deaktiver ", "Enable" : "Aktiver", - "Enabling app …" : "Aktiverer app ...", + "Enabling app …" : "Aktiverer program…", "Error while enabling app" : "Aktivering av program feilet", "Error: this app cannot be enabled because it makes the server unstable" : "Feil: Denne appen kan ikke aktiveres fordi den gjør tjeneren ustabil", "Error: could not disable broken app" : "Feil: Kunne ikke deaktivere ustabil app", @@ -168,7 +168,7 @@ "no group" : "ingen gruppe", "Password successfully changed" : "Passordet ble endret.", "Changing the password will result in data loss, because data recovery is not available for this user" : "Forandring av passordet vil føre til tap av data, fordi datagjennoppretting er utilgjengelig for denne brukeren", - "Could not change the users email" : "Kunne ikke endre brukerens epostadresse", + "Could not change the users email" : "Kunne ikke endre brukerens e-postadresse", "Error while changing status of {user}" : "Feil ved endring av status for {user}", "A valid username must be provided" : "Oppgi et gyldig brukernavn", "Error creating user: {message}" : "Feil ved oppretting av bruker: {message}", @@ -237,14 +237,9 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Det var ikke mulig å kjøre cron-jobben vi CLI. Følgende tekniske feil oppstod:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Vennligst dobbeltsjekk <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installasjonsguiden ↗</a>, og se etter feil eller advarsler i <a href=\"%s\">loggen</a>.", "All checks passed." : "Alle sjekker bestått.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Siste kjøring av Cron-jobb: %s.", - "Last cron job execution: %s. Something seems wrong." : "Siste kjøring av Cron-jobb: %s. Noe ser ut til å være galt.", - "Cron was not executed yet!" : "Cron har ikke blitt kjørt enda!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "For optimal ytelse er det viktig å sette opp bakgrunnsjobber rett. For kjøring på større installasjoner er 'Cron' anbefalt innstilling. Se dokumentasjonen for mer informasjon.", "Execute one task with each page loaded" : "Utfør en oppgave med hver side som blir lastet", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php er registrert i en webcron-tjeneste for å kalle cron.php hvert 15. minutt over http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Bruk systemets cron-tjeneste til å kalle cron.php hvert kvarter.", "The cron.php needs to be executed by the system user \"%s\"." : "Filen cron.php må kjøres systemet som følgende bruker \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "For å kjøre denne trenger du «PHP posix extension». Se {linkstart}PHP dokumentasjonen{linkend} for flere detaljer.", "Version" : "Versjon", @@ -403,6 +398,11 @@ "Uninstall" : "Avinstaller", "This is used for sending out notifications." : "Dette brukes for utsending av varsler.", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Siste kjøring av Cron-jobb: %s.", + "Last cron job execution: %s. Something seems wrong." : "Siste kjøring av Cron-jobb: %s. Noe ser ut til å være galt.", + "Cron was not executed yet!" : "Cron har ikke blitt kjørt enda!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Bruk systemets cron-tjeneste til å kalle cron.php hvert kvarter.", "Uninstall app" : "Avinstaller app", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hei,<br><br>vil bare opplyse deg om at du har en %s konto.<br><br>Ditt brukernavn: <strong>%s</strong><br>Gå dit: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Hadet!", diff --git a/settings/l10n/nl.js b/settings/l10n/nl.js index 9ea41e6d244..ee46dc2f974 100644 --- a/settings/l10n/nl.js +++ b/settings/l10n/nl.js @@ -44,6 +44,8 @@ OC.L10N.register( "Unable to delete user." : "Kan de gebruiker niet verwijderen.", "Error while enabling user." : "Fout bij inschakelen gebruiker.", "Error while disabling user." : "Fout bij uitschakelen gebruiker.", + "In order to verify your Twitter account, post the following tweet on Twitter (please make sure to post it without any line breaks):" : "Om je Twitter-account te verifiëren moet je de volgende tweet op Twitter plaatsen (let erop dat het plaatst zonder regelafbreking):", + "In order to verify your Website, store the following content in your web-root at '.well-known/CloudIdVerificationCode.txt' (please make sure that the complete text is in one line):" : "Om je website te verifiëren voeg de inhoud toe binnen de web-root van je server '.well-known/CloudIdVerificationCode.txt' (plaats de tekst op één regel staat):", "Settings saved" : "Instellingen opgeslagen", "Unable to change full name" : "Kan de volledige naam niet wijzigen", "Unable to change email address" : "Kan e-mailadres niet wijzigen", @@ -239,14 +241,9 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "het was niet mogelijk om de cronjob via CLI uit te voeren. De volgende technische problemen traden op:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Lees de <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installatie handleiding</a> goed door en controleer op fouten en waarschuwingen in de <a href=\"%s\">logging</a>.", "All checks passed." : "Alle checks geslaagd", - "Cron" : "Cron", - "Last cron job execution: %s." : "Laatst uitgevoerde cronjob: %s.", - "Last cron job execution: %s. Something seems wrong." : "Laatst uitgevoerde cronjob: %s. Er lijkt iets fout gegaan.", - "Cron was not executed yet!" : "Cron is nog niet uitgevoerd!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Voor optimale prestaties is het belangrijk om de achtergrondtaken goed te configureren. Voor grotere installaties is \"Cron' de aanbevolen instelling. Bekijk de documentatie voor meer informatie.", "Execute one task with each page loaded" : "Bij laden van elke pagina één taak uitvoeren", "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 system's 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.", "The cron.php needs to be executed by the system user \"%s\"." : "cron.php moet worden uitgevoerd door systeemgebruiker \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Om dit te draaien, is de PHP posix extensie vereist. Bekijk {linkstart}PHP documentatie{linkend} voor meer informatie.", "Version" : "Versie", @@ -405,6 +402,11 @@ OC.L10N.register( "Uninstall" : "De-installeren", "This is used for sending out notifications." : "Dit wordt gebruikt voor het verzenden van meldingen.", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Laatst uitgevoerde cronjob: %s.", + "Last cron job execution: %s. Something seems wrong." : "Laatst uitgevoerde cronjob: %s. Er lijkt iets fout gegaan.", + "Cron was not executed yet!" : "Cron is nog niet uitgevoerd!", + "Use system's 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.", "Uninstall app" : "De-installeren app", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hallo daar,<br><br>we willen je laten weten dat je nu een %s account hebt.<br><br>Je gebruikersnaam: <strong>%s</strong><br>Ga naar: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Proficiat!", diff --git a/settings/l10n/nl.json b/settings/l10n/nl.json index d8a8e630e35..5780e57222b 100644 --- a/settings/l10n/nl.json +++ b/settings/l10n/nl.json @@ -42,6 +42,8 @@ "Unable to delete user." : "Kan de gebruiker niet verwijderen.", "Error while enabling user." : "Fout bij inschakelen gebruiker.", "Error while disabling user." : "Fout bij uitschakelen gebruiker.", + "In order to verify your Twitter account, post the following tweet on Twitter (please make sure to post it without any line breaks):" : "Om je Twitter-account te verifiëren moet je de volgende tweet op Twitter plaatsen (let erop dat het plaatst zonder regelafbreking):", + "In order to verify your Website, store the following content in your web-root at '.well-known/CloudIdVerificationCode.txt' (please make sure that the complete text is in one line):" : "Om je website te verifiëren voeg de inhoud toe binnen de web-root van je server '.well-known/CloudIdVerificationCode.txt' (plaats de tekst op één regel staat):", "Settings saved" : "Instellingen opgeslagen", "Unable to change full name" : "Kan de volledige naam niet wijzigen", "Unable to change email address" : "Kan e-mailadres niet wijzigen", @@ -237,14 +239,9 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "het was niet mogelijk om de cronjob via CLI uit te voeren. De volgende technische problemen traden op:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Lees de <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installatie handleiding</a> goed door en controleer op fouten en waarschuwingen in de <a href=\"%s\">logging</a>.", "All checks passed." : "Alle checks geslaagd", - "Cron" : "Cron", - "Last cron job execution: %s." : "Laatst uitgevoerde cronjob: %s.", - "Last cron job execution: %s. Something seems wrong." : "Laatst uitgevoerde cronjob: %s. Er lijkt iets fout gegaan.", - "Cron was not executed yet!" : "Cron is nog niet uitgevoerd!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Voor optimale prestaties is het belangrijk om de achtergrondtaken goed te configureren. Voor grotere installaties is \"Cron' de aanbevolen instelling. Bekijk de documentatie voor meer informatie.", "Execute one task with each page loaded" : "Bij laden van elke pagina één taak uitvoeren", "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 system's 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.", "The cron.php needs to be executed by the system user \"%s\"." : "cron.php moet worden uitgevoerd door systeemgebruiker \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Om dit te draaien, is de PHP posix extensie vereist. Bekijk {linkstart}PHP documentatie{linkend} voor meer informatie.", "Version" : "Versie", @@ -403,6 +400,11 @@ "Uninstall" : "De-installeren", "This is used for sending out notifications." : "Dit wordt gebruikt voor het verzenden van meldingen.", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Laatst uitgevoerde cronjob: %s.", + "Last cron job execution: %s. Something seems wrong." : "Laatst uitgevoerde cronjob: %s. Er lijkt iets fout gegaan.", + "Cron was not executed yet!" : "Cron is nog niet uitgevoerd!", + "Use system's 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.", "Uninstall app" : "De-installeren app", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hallo daar,<br><br>we willen je laten weten dat je nu een %s account hebt.<br><br>Je gebruikersnaam: <strong>%s</strong><br>Ga naar: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Proficiat!", diff --git a/settings/l10n/nn_NO.js b/settings/l10n/nn_NO.js index 740c09c3965..44d3c8eaff4 100644 --- a/settings/l10n/nn_NO.js +++ b/settings/l10n/nn_NO.js @@ -35,7 +35,6 @@ OC.L10N.register( "Login" : "Logg inn", "Encryption" : "Kryptering", "Server address" : "Tenaradresse", - "Cron" : "Cron", "Execute one task with each page loaded" : "Utfør éi oppgåve for kvar sidelasting", "Version" : "Utgåve", "Sharing" : "Deling", @@ -70,6 +69,7 @@ OC.L10N.register( "Admins can't remove themself from the admin group" : "Administratorar kan ikkje fjerna seg sjølve frå admin-gruppa", "Unable to add user to group %s" : "Klarte ikkje leggja til brukaren til gruppa %s", "Unable to remove user from group %s" : "Klarte ikkje fjerna brukaren frå gruppa %s", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-modulen «fileinfo» manglar. Me rår sterkt til å slå på denne modulen for å best mogleg oppdaga MIME-typar." + "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-modulen «fileinfo» manglar. Me rår sterkt til å slå på denne modulen for å best mogleg oppdaga MIME-typar.", + "Cron" : "Cron" }, "nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/nn_NO.json b/settings/l10n/nn_NO.json index c050f02ddf9..5a3479a4497 100644 --- a/settings/l10n/nn_NO.json +++ b/settings/l10n/nn_NO.json @@ -33,7 +33,6 @@ "Login" : "Logg inn", "Encryption" : "Kryptering", "Server address" : "Tenaradresse", - "Cron" : "Cron", "Execute one task with each page loaded" : "Utfør éi oppgåve for kvar sidelasting", "Version" : "Utgåve", "Sharing" : "Deling", @@ -68,6 +67,7 @@ "Admins can't remove themself from the admin group" : "Administratorar kan ikkje fjerna seg sjølve frå admin-gruppa", "Unable to add user to group %s" : "Klarte ikkje leggja til brukaren til gruppa %s", "Unable to remove user from group %s" : "Klarte ikkje fjerna brukaren frå gruppa %s", - "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-modulen «fileinfo» manglar. Me rår sterkt til å slå på denne modulen for å best mogleg oppdaga MIME-typar." + "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-modulen «fileinfo» manglar. Me rår sterkt til å slå på denne modulen for å best mogleg oppdaga MIME-typar.", + "Cron" : "Cron" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/settings/l10n/pl.js b/settings/l10n/pl.js index ab82999c6d6..70fd2f015a4 100644 --- a/settings/l10n/pl.js +++ b/settings/l10n/pl.js @@ -11,6 +11,7 @@ OC.L10N.register( "Your apps" : "Twoje aplikacje", "Enabled apps" : "Włączone aplikacje", "Disabled apps" : "Wyłączone aplikacje", + "App bundles" : "Zestawy aplikacji", "Wrong password" : "Złe hasło", "Saved" : "Zapisano", "No user supplied" : "Niedostarczony użytkownik", @@ -43,6 +44,8 @@ OC.L10N.register( "Unable to delete user." : "Nie można usunąć użytkownika.", "Error while enabling user." : "Błąd podczas włączania użytkownika", "Error while disabling user." : "Błąd podczas wyłączania użytkownika", + "In order to verify your Twitter account, post the following tweet on Twitter (please make sure to post it without any line breaks):" : "Aby zweryfikować swoje konto Twittera, wyślij poniższego tweet'a (upewnij się, że cały tekst zawiera się w jednej linii):", + "In order to verify your Website, store the following content in your web-root at '.well-known/CloudIdVerificationCode.txt' (please make sure that the complete text is in one line):" : "Aby zweryfikować swoją stronę umieść poniższą zawartość w katalogu głównym serwera pod adresem '.well-known/CloudIdVerificationCode.txt' (upewnij się, że cały tekst zawiera się w jednej linii):", "Settings saved" : "Ustawienia zachowane", "Unable to change full name" : "Nie można zmienić pełnej nazwy", "Unable to change email address" : "Nie można zmienić adresu e-mail", @@ -238,14 +241,9 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Nie było możliwe do wykonania przez cron CLI. Pojawiły się następujące błędy techniczne:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Proszę sprawdzić dokładnie <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">przewodniki instalacji ↗</a> oraz błędy i ostrzeżenia w <a href=\"%s\">logu</a>.", "All checks passed." : "Wszystkie testy konfiguracji zakończyły się pomyślnie.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Ostatnie wykonanie zadania przez cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Ostatnie wykonanie zadania przez cron: %s. Wydaje się, że coś jest błędne.", - "Cron was not executed yet!" : "Cron nie został jeszcze uruchomiony!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Dla optymalnej wydajności należy poprawnie skonfigurować zadania w tle. Dla większych instancji zalecane jest użycie usługi 'Cron'. Więcej informacji można znaleźć w dokumentacji.", "Execute one task with each page loaded" : "Wykonuj jedno zadanie wraz z każdą wczytaną stroną.", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "Cron.php jest zarejestrowany w usłudze webcron do uruchamiania cron.php raz na 15 minut przez http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Użyj systemowej usługi cron do wywoływania cron.php co 15 minut.", "The cron.php needs to be executed by the system user \"%s\"." : "Cron.php musi być wykonywany przez użytkownika systemu \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Aby to uruchomić potrzebujesz rozszerzenia posix do PHP. Po więcej informacji sprawdź {linkstart}dokumentację PHP{linkend}.", "Version" : "Wersja", @@ -404,6 +402,11 @@ OC.L10N.register( "Uninstall" : "Odinstaluj", "This is used for sending out notifications." : "To jest używane do wysyłania powiadomień", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Ostatnie wykonanie zadania przez cron: %s.", + "Last cron job execution: %s. Something seems wrong." : "Ostatnie wykonanie zadania przez cron: %s. Wydaje się, że coś jest błędne.", + "Cron was not executed yet!" : "Cron nie został jeszcze uruchomiony!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Użyj systemowej usługi cron do wywoływania cron.php co 15 minut.", "Uninstall app" : "Odinstaluj aplikację", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hej,<br><br>informujemy cię, że posiadasz od teraz konto %s.<br><br>Twoja nazwa użytkownika: <strong>%s</strong><br>Zaloguj się: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Pozdrawiam!", diff --git a/settings/l10n/pl.json b/settings/l10n/pl.json index 1aa3cc9fbe8..570ddef3148 100644 --- a/settings/l10n/pl.json +++ b/settings/l10n/pl.json @@ -9,6 +9,7 @@ "Your apps" : "Twoje aplikacje", "Enabled apps" : "Włączone aplikacje", "Disabled apps" : "Wyłączone aplikacje", + "App bundles" : "Zestawy aplikacji", "Wrong password" : "Złe hasło", "Saved" : "Zapisano", "No user supplied" : "Niedostarczony użytkownik", @@ -41,6 +42,8 @@ "Unable to delete user." : "Nie można usunąć użytkownika.", "Error while enabling user." : "Błąd podczas włączania użytkownika", "Error while disabling user." : "Błąd podczas wyłączania użytkownika", + "In order to verify your Twitter account, post the following tweet on Twitter (please make sure to post it without any line breaks):" : "Aby zweryfikować swoje konto Twittera, wyślij poniższego tweet'a (upewnij się, że cały tekst zawiera się w jednej linii):", + "In order to verify your Website, store the following content in your web-root at '.well-known/CloudIdVerificationCode.txt' (please make sure that the complete text is in one line):" : "Aby zweryfikować swoją stronę umieść poniższą zawartość w katalogu głównym serwera pod adresem '.well-known/CloudIdVerificationCode.txt' (upewnij się, że cały tekst zawiera się w jednej linii):", "Settings saved" : "Ustawienia zachowane", "Unable to change full name" : "Nie można zmienić pełnej nazwy", "Unable to change email address" : "Nie można zmienić adresu e-mail", @@ -236,14 +239,9 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Nie było możliwe do wykonania przez cron CLI. Pojawiły się następujące błędy techniczne:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Proszę sprawdzić dokładnie <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">przewodniki instalacji ↗</a> oraz błędy i ostrzeżenia w <a href=\"%s\">logu</a>.", "All checks passed." : "Wszystkie testy konfiguracji zakończyły się pomyślnie.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Ostatnie wykonanie zadania przez cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Ostatnie wykonanie zadania przez cron: %s. Wydaje się, że coś jest błędne.", - "Cron was not executed yet!" : "Cron nie został jeszcze uruchomiony!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Dla optymalnej wydajności należy poprawnie skonfigurować zadania w tle. Dla większych instancji zalecane jest użycie usługi 'Cron'. Więcej informacji można znaleźć w dokumentacji.", "Execute one task with each page loaded" : "Wykonuj jedno zadanie wraz z każdą wczytaną stroną.", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "Cron.php jest zarejestrowany w usłudze webcron do uruchamiania cron.php raz na 15 minut przez http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Użyj systemowej usługi cron do wywoływania cron.php co 15 minut.", "The cron.php needs to be executed by the system user \"%s\"." : "Cron.php musi być wykonywany przez użytkownika systemu \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Aby to uruchomić potrzebujesz rozszerzenia posix do PHP. Po więcej informacji sprawdź {linkstart}dokumentację PHP{linkend}.", "Version" : "Wersja", @@ -402,6 +400,11 @@ "Uninstall" : "Odinstaluj", "This is used for sending out notifications." : "To jest używane do wysyłania powiadomień", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Ostatnie wykonanie zadania przez cron: %s.", + "Last cron job execution: %s. Something seems wrong." : "Ostatnie wykonanie zadania przez cron: %s. Wydaje się, że coś jest błędne.", + "Cron was not executed yet!" : "Cron nie został jeszcze uruchomiony!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Użyj systemowej usługi cron do wywoływania cron.php co 15 minut.", "Uninstall app" : "Odinstaluj aplikację", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hej,<br><br>informujemy cię, że posiadasz od teraz konto %s.<br><br>Twoja nazwa użytkownika: <strong>%s</strong><br>Zaloguj się: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Pozdrawiam!", diff --git a/settings/l10n/pt_BR.js b/settings/l10n/pt_BR.js index 2e522702c03..dec2755a7ed 100644 --- a/settings/l10n/pt_BR.js +++ b/settings/l10n/pt_BR.js @@ -241,14 +241,9 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Não foi possível executar o cron via CLI. Os seguintes erros ocorreram:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Por favor verifique os <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guias de instalação ↗</a> e verifique qualquer erro ou advertência no <a href=\"%s\">log</a>.", "All checks passed." : "Todas as verificações passaram.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Última execução do trabalho Cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última execução do trabalho Cron: %s. Algo parece errado.", - "Cron was not executed yet!" : "Cron não foi executado ainda!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Para um desempenho ideal, é importante configurar corretamente os trabalhos em segundo plano. Para instâncias maiores 'Cron' é a configuração recomendada. Consulte a documentação para obter mais informações.", "Execute one task with each page loaded" : "Execute uma tarefa com cada página carregada", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php está registrado no serviço webcron para chamar cron.php a cada 15 minutos sob http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Usar o serviço cron do sistema para chamar o arquivo cron.php a cada 15 minutos.", "The cron.php needs to be executed by the system user \"%s\"." : "O cron.php precisa ser executado por um usuário de sistema \"%s\"", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Para rodar isso você precisa da extensão posix PHP. Veja a {linkstart}documentação PHP{linkend} para mais detalhes.", "Version" : "Versão", @@ -407,6 +402,11 @@ OC.L10N.register( "Uninstall" : "Desinstalar", "This is used for sending out notifications." : "Usado para o envio de notificações.", "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 melhores resultados com a detecção de mime-type.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Última execução do trabalho Cron: %s.", + "Last cron job execution: %s. Something seems wrong." : "Última execução do trabalho Cron: %s. Algo parece errado.", + "Cron was not executed yet!" : "Cron não foi executado ainda!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Usar o serviço cron do sistema para chamar o arquivo cron.php a cada 15 minutos.", "Uninstall app" : "Desinstalar aplicativo", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Olá,<br><br>só para lhe informar que agora você tem uma %s conta.<br><br>Nome de usuário: <strong>%s</strong><br>Acesse: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Saudações!", diff --git a/settings/l10n/pt_BR.json b/settings/l10n/pt_BR.json index dae1aa4a70f..51cf1a5e393 100644 --- a/settings/l10n/pt_BR.json +++ b/settings/l10n/pt_BR.json @@ -239,14 +239,9 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Não foi possível executar o cron via CLI. Os seguintes erros ocorreram:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Por favor verifique os <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">guias de instalação ↗</a> e verifique qualquer erro ou advertência no <a href=\"%s\">log</a>.", "All checks passed." : "Todas as verificações passaram.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Última execução do trabalho Cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última execução do trabalho Cron: %s. Algo parece errado.", - "Cron was not executed yet!" : "Cron não foi executado ainda!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Para um desempenho ideal, é importante configurar corretamente os trabalhos em segundo plano. Para instâncias maiores 'Cron' é a configuração recomendada. Consulte a documentação para obter mais informações.", "Execute one task with each page loaded" : "Execute uma tarefa com cada página carregada", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php está registrado no serviço webcron para chamar cron.php a cada 15 minutos sob http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Usar o serviço cron do sistema para chamar o arquivo cron.php a cada 15 minutos.", "The cron.php needs to be executed by the system user \"%s\"." : "O cron.php precisa ser executado por um usuário de sistema \"%s\"", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Para rodar isso você precisa da extensão posix PHP. Veja a {linkstart}documentação PHP{linkend} para mais detalhes.", "Version" : "Versão", @@ -405,6 +400,11 @@ "Uninstall" : "Desinstalar", "This is used for sending out notifications." : "Usado para o envio de notificações.", "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 melhores resultados com a detecção de mime-type.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Última execução do trabalho Cron: %s.", + "Last cron job execution: %s. Something seems wrong." : "Última execução do trabalho Cron: %s. Algo parece errado.", + "Cron was not executed yet!" : "Cron não foi executado ainda!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Usar o serviço cron do sistema para chamar o arquivo cron.php a cada 15 minutos.", "Uninstall app" : "Desinstalar aplicativo", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Olá,<br><br>só para lhe informar que agora você tem uma %s conta.<br><br>Nome de usuário: <strong>%s</strong><br>Acesse: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Saudações!", diff --git a/settings/l10n/pt_PT.js b/settings/l10n/pt_PT.js index 9305bc3bc5a..1f428edb7fc 100644 --- a/settings/l10n/pt_PT.js +++ b/settings/l10n/pt_PT.js @@ -136,13 +136,8 @@ OC.L10N.register( "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a sua instalação não está instalada na raiz do domínio e usa o sistema cron, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwrite.cli.url\" no ficheiro config.php para o caminho webroot da sua instalação (Sugestão: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Não foi possível executar o cronjob via CLI. Os seguintes erros técnicos apareceram:", "All checks passed." : "Todas as verificações passaram.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Última execução de cron job: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última execução de cron job: %s. Algo está errado.", - "Cron was not executed yet!" : "Cron ainda não foi executado!", "Execute one task with each page loaded" : "Executar uma tarefa com cada página carregada", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php está registado num serviço webcron para chamar a página cron.php por http a cada 15 minutos.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Usar o serviço sistema cron para ligar o ficheiro cron.php a cada 15 minutos.", "Version" : "Versão", "Sharing" : "Partilha", "Allow apps to use the Share API" : "Permitir que os utilizadores usem a API de partilha", @@ -249,6 +244,11 @@ OC.L10N.register( "Uninstall" : "Desinstalar", "This is used for sending out notifications." : "Isto é utilizado para enviar notificações", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Última execução de cron job: %s.", + "Last cron job execution: %s. Something seems wrong." : "Última execução de cron job: %s. Algo está errado.", + "Cron was not executed yet!" : "Cron ainda não foi executado!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Usar o serviço sistema cron para ligar o ficheiro cron.php a cada 15 minutos.", "Cheers!" : "Parabéns!", "For password recovery and notifications" : "Para recuperação da palavra-passe e notificações", "Show last log in" : "Mostrar ultimo acesso de entrada" diff --git a/settings/l10n/pt_PT.json b/settings/l10n/pt_PT.json index 3a8edc901e7..69ce995b036 100644 --- a/settings/l10n/pt_PT.json +++ b/settings/l10n/pt_PT.json @@ -134,13 +134,8 @@ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se a sua instalação não está instalada na raiz do domínio e usa o sistema cron, pode haver problemas com a geração de URL. Para evitar esses problemas, por favor, defina a opção \"overwrite.cli.url\" no ficheiro config.php para o caminho webroot da sua instalação (Sugestão: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Não foi possível executar o cronjob via CLI. Os seguintes erros técnicos apareceram:", "All checks passed." : "Todas as verificações passaram.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Última execução de cron job: %s.", - "Last cron job execution: %s. Something seems wrong." : "Última execução de cron job: %s. Algo está errado.", - "Cron was not executed yet!" : "Cron ainda não foi executado!", "Execute one task with each page loaded" : "Executar uma tarefa com cada página carregada", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php está registado num serviço webcron para chamar a página cron.php por http a cada 15 minutos.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Usar o serviço sistema cron para ligar o ficheiro cron.php a cada 15 minutos.", "Version" : "Versão", "Sharing" : "Partilha", "Allow apps to use the Share API" : "Permitir que os utilizadores usem a API de partilha", @@ -247,6 +242,11 @@ "Uninstall" : "Desinstalar", "This is used for sending out notifications." : "Isto é utilizado para enviar notificações", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Última execução de cron job: %s.", + "Last cron job execution: %s. Something seems wrong." : "Última execução de cron job: %s. Algo está errado.", + "Cron was not executed yet!" : "Cron ainda não foi executado!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Usar o serviço sistema cron para ligar o ficheiro cron.php a cada 15 minutos.", "Cheers!" : "Parabéns!", "For password recovery and notifications" : "Para recuperação da palavra-passe e notificações", "Show last log in" : "Mostrar ultimo acesso de entrada" diff --git a/settings/l10n/ro.js b/settings/l10n/ro.js index b7a1e4fa20e..5d9150396c2 100644 --- a/settings/l10n/ro.js +++ b/settings/l10n/ro.js @@ -103,7 +103,6 @@ OC.L10N.register( "Start migration" : "Pornește migrarea", "Security & setup warnings" : "Alerte de securitate & configurare", "All checks passed." : "Toate verificările s-au terminat fără erori.", - "Cron" : "Cron", "Execute one task with each page loaded" : "Execută o sarcină la fiecare pagină încărcată", "Version" : "Versiunea", "Sharing" : "Partajare", @@ -185,6 +184,7 @@ OC.L10N.register( "Error while uninstalling app" : "Eroare la dezinstalarea aplicației", "Uninstall" : "Dezinstalați", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest modul pentru a obține cele mai bune rezultate cu detectarea mime-type.", + "Cron" : "Cron", "Cheers!" : "Noroc!" }, "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"); diff --git a/settings/l10n/ro.json b/settings/l10n/ro.json index 4d48f15bd95..eb4e9433b99 100644 --- a/settings/l10n/ro.json +++ b/settings/l10n/ro.json @@ -101,7 +101,6 @@ "Start migration" : "Pornește migrarea", "Security & setup warnings" : "Alerte de securitate & configurare", "All checks passed." : "Toate verificările s-au terminat fără erori.", - "Cron" : "Cron", "Execute one task with each page loaded" : "Execută o sarcină la fiecare pagină încărcată", "Version" : "Versiunea", "Sharing" : "Partajare", @@ -183,6 +182,7 @@ "Error while uninstalling app" : "Eroare la dezinstalarea aplicației", "Uninstall" : "Dezinstalați", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest modul pentru a obține cele mai bune rezultate cu detectarea mime-type.", + "Cron" : "Cron", "Cheers!" : "Noroc!" },"pluralForm" :"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));" }
\ No newline at end of file diff --git a/settings/l10n/ru.js b/settings/l10n/ru.js index ff8596f8347..a21789c4d86 100644 --- a/settings/l10n/ru.js +++ b/settings/l10n/ru.js @@ -241,14 +241,9 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Не удается запустить задачу планировщика через CLI. Произошли следующие технические ошибки:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Пожалуйста, еще раз внимательно прочитайте <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">руководство по установке ↗</a> и проверьте <a href=\"%s\">журнал</a> на наличие ошибок.", "All checks passed." : "Все проверки пройдены.", - "Cron" : "Cron (планировщик задач)", - "Last cron job execution: %s." : "Последнее выполненное задание планировщика: %s.", - "Last cron job execution: %s. Something seems wrong." : "Последнее выполненное задание планировщика: %s. Похоже, что-то не в порядке.", - "Cron was not executed yet!" : "Задачи cron ещё не запускались!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Для оптимальной производительности важно правильно настроить выполнение задач в фоновом режиме. Для больших экземпляров рекомендуется использовать параметр «Cron». Дополнительную информацию см. в документации.", "Execute one task with each page loaded" : "Выполнять одно задание с каждой загруженной страницей", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php зарегистрирован в webcron и будет вызываться каждые 15 минут по http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Использовать системный cron для вызова cron.php каждые 15 минут.", "The cron.php needs to be executed by the system user \"%s\"." : "cron.php должен исполняться из под пользователя \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Для запуска вам необходимо расширение PHP posix. Для более подробной информации смотрите {linkstart}PHP документацию{linkend}", "Version" : "Версия", @@ -407,6 +402,11 @@ OC.L10N.register( "Uninstall" : "Удалить", "This is used for sending out notifications." : "Используется для отправки уведомлений.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов.", + "Cron" : "Cron (планировщик задач)", + "Last cron job execution: %s." : "Последнее выполненное задание планировщика: %s.", + "Last cron job execution: %s. Something seems wrong." : "Последнее выполненное задание планировщика: %s. Похоже, что-то не в порядке.", + "Cron was not executed yet!" : "Задачи cron ещё не запускались!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Использовать системный cron для вызова cron.php каждые 15 минут.", "Uninstall app" : "Удалить приложение", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Здравствуйте,<br><br>просто хотим сообщить, что теперь у вас есть учетная запись на %s.<br><br>Ваше имя пользователя: <strong>%s</strong><br>Зайти: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Удачи!", diff --git a/settings/l10n/ru.json b/settings/l10n/ru.json index 605830ca016..f473f4e98af 100644 --- a/settings/l10n/ru.json +++ b/settings/l10n/ru.json @@ -239,14 +239,9 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Не удается запустить задачу планировщика через CLI. Произошли следующие технические ошибки:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Пожалуйста, еще раз внимательно прочитайте <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">руководство по установке ↗</a> и проверьте <a href=\"%s\">журнал</a> на наличие ошибок.", "All checks passed." : "Все проверки пройдены.", - "Cron" : "Cron (планировщик задач)", - "Last cron job execution: %s." : "Последнее выполненное задание планировщика: %s.", - "Last cron job execution: %s. Something seems wrong." : "Последнее выполненное задание планировщика: %s. Похоже, что-то не в порядке.", - "Cron was not executed yet!" : "Задачи cron ещё не запускались!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "Для оптимальной производительности важно правильно настроить выполнение задач в фоновом режиме. Для больших экземпляров рекомендуется использовать параметр «Cron». Дополнительную информацию см. в документации.", "Execute one task with each page loaded" : "Выполнять одно задание с каждой загруженной страницей", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php зарегистрирован в webcron и будет вызываться каждые 15 минут по http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Использовать системный cron для вызова cron.php каждые 15 минут.", "The cron.php needs to be executed by the system user \"%s\"." : "cron.php должен исполняться из под пользователя \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Для запуска вам необходимо расширение PHP posix. Для более подробной информации смотрите {linkstart}PHP документацию{linkend}", "Version" : "Версия", @@ -405,6 +400,11 @@ "Uninstall" : "Удалить", "This is used for sending out notifications." : "Используется для отправки уведомлений.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов.", + "Cron" : "Cron (планировщик задач)", + "Last cron job execution: %s." : "Последнее выполненное задание планировщика: %s.", + "Last cron job execution: %s. Something seems wrong." : "Последнее выполненное задание планировщика: %s. Похоже, что-то не в порядке.", + "Cron was not executed yet!" : "Задачи cron ещё не запускались!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Использовать системный cron для вызова cron.php каждые 15 минут.", "Uninstall app" : "Удалить приложение", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Здравствуйте,<br><br>просто хотим сообщить, что теперь у вас есть учетная запись на %s.<br><br>Ваше имя пользователя: <strong>%s</strong><br>Зайти: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Удачи!", diff --git a/settings/l10n/sk.js b/settings/l10n/sk.js index d4075f51f92..065b031b94a 100644 --- a/settings/l10n/sk.js +++ b/settings/l10n/sk.js @@ -167,13 +167,8 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Dôrazne doporučujeme nainštalovať na váš systém požadované balíčky podporujúce jednu z nasledovných znakových sád: %s.", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Inštalácia mimo koreňový priečinok domény a používanie systémového príkazu cron môže spôsobiť problém s generovaním správnej URL. Pre zabránenie týmto chybám nastavte prosím správnu cestu v svojom config.php súbore pre hodnotu \"overwrite.cli.url\" (Doporučujeme: \"%s\")", "All checks passed." : "Všetky kontroly prešli úspešne.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Posledný cron prebehol: %s.", - "Last cron job execution: %s. Something seems wrong." : "Posledný cron prebehol: %s. 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 system's cron service to call the cron.php file every 15 minutes." : "Použiť systémovú službu cron na spúšťanie súboru cron.php každých 15 minút.", "The cron.php needs to be executed by the system user \"%s\"." : "Je potrebné, aby cron.php bol spustený systémovým používateľom \"%s\".", "Version" : "Verzia", "Sharing" : "Sprístupňovanie", @@ -307,6 +302,11 @@ OC.L10N.register( "Uninstall" : "Odinštalácia", "This is used for sending out notifications." : "Používa sa na odosielanie upozornení.", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Posledný cron prebehol: %s.", + "Last cron job execution: %s. Something seems wrong." : "Posledný cron prebehol: %s. Zdá sa, že niečo nie je vporiadku.", + "Cron was not executed yet!" : "Cron sa ešte nespustil!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Použiť systémovú službu cron na spúšťanie súboru cron.php každých 15 minút.", "Uninstall app" : "Odinštalovať aplikáciu", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Dobrý deň,<br><br>toto je oznámenie o novo vytvorenom účte %s.<br><br>Vaše používateľské meno: <strong>%s</strong><br>Prihlásiť sa môžete tu: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Pekný deň!", diff --git a/settings/l10n/sk.json b/settings/l10n/sk.json index c782bef0b1a..c88f8717e7d 100644 --- a/settings/l10n/sk.json +++ b/settings/l10n/sk.json @@ -165,13 +165,8 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Dôrazne doporučujeme nainštalovať na váš systém požadované balíčky podporujúce jednu z nasledovných znakových sád: %s.", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Inštalácia mimo koreňový priečinok domény a používanie systémového príkazu cron môže spôsobiť problém s generovaním správnej URL. Pre zabránenie týmto chybám nastavte prosím správnu cestu v svojom config.php súbore pre hodnotu \"overwrite.cli.url\" (Doporučujeme: \"%s\")", "All checks passed." : "Všetky kontroly prešli úspešne.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Posledný cron prebehol: %s.", - "Last cron job execution: %s. Something seems wrong." : "Posledný cron prebehol: %s. 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 system's cron service to call the cron.php file every 15 minutes." : "Použiť systémovú službu cron na spúšťanie súboru cron.php každých 15 minút.", "The cron.php needs to be executed by the system user \"%s\"." : "Je potrebné, aby cron.php bol spustený systémovým používateľom \"%s\".", "Version" : "Verzia", "Sharing" : "Sprístupňovanie", @@ -305,6 +300,11 @@ "Uninstall" : "Odinštalácia", "This is used for sending out notifications." : "Používa sa na odosielanie upozornení.", "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.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Posledný cron prebehol: %s.", + "Last cron job execution: %s. Something seems wrong." : "Posledný cron prebehol: %s. Zdá sa, že niečo nie je vporiadku.", + "Cron was not executed yet!" : "Cron sa ešte nespustil!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Použiť systémovú službu cron na spúšťanie súboru cron.php každých 15 minút.", "Uninstall app" : "Odinštalovať aplikáciu", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Dobrý deň,<br><br>toto je oznámenie o novo vytvorenom účte %s.<br><br>Vaše používateľské meno: <strong>%s</strong><br>Prihlásiť sa môžete tu: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Pekný deň!", diff --git a/settings/l10n/sl.js b/settings/l10n/sl.js index 3990696158e..3a6e5ae2c7f 100644 --- a/settings/l10n/sl.js +++ b/settings/l10n/sl.js @@ -122,13 +122,8 @@ OC.L10N.register( "System locale can not be set to a one which supports UTF-8." : "Sistemskih jezikovnih nastavitev ni mogoče nastaviti na možnost, ki podpira nabor UTF-8.", "This means that there might be problems with certain characters in file names." : "To pomeni, da se lahko pojavijo napake pri nekaterih znakih v imenih datotek.", "All checks passed." : "Vsa preverjanja so uspešno zaključena.", - "Cron" : "Periodično opravilo", - "Last cron job execution: %s." : " Zadnje periodično opravilo: %s.", - "Last cron job execution: %s. Something seems wrong." : " Zadnje periodično opravilo: %s. Nekaj izgleda narobe.", - "Cron was not executed yet!" : "Periodično opravilo cron še ni zagnano!", "Execute one task with each page loaded" : "Izvedi eno nalogo z vsako naloženo stranjo.", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "Datoteka cron.php je vpisana za periodično opravilo webcron za potrditev sklica vsakih 15 minut pri povezavi preko HTTP.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Uporabi storitev periodičnih opravil za klic datoteke cron.php vsakih 15 minut.", "Version" : "Različica", "Sharing" : "Souporaba", "Allow apps to use the Share API" : "Dovoli programom uporabo vmesnika API souporabe", @@ -237,6 +232,11 @@ OC.L10N.register( "Uninstall" : "Odstrani namestitev", "This is used for sending out notifications." : "Možnost je uporabljena za omogočanje pošiljanja obvestil.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Manjka modul PHP 'fileinfo'. Priporočljivo je omogočiti ta modul za popolno zaznavanje vrst MIME.", + "Cron" : "Periodično opravilo", + "Last cron job execution: %s." : " Zadnje periodično opravilo: %s.", + "Last cron job execution: %s. Something seems wrong." : " Zadnje periodično opravilo: %s. Nekaj izgleda narobe.", + "Cron was not executed yet!" : "Periodično opravilo cron še ni zagnano!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Uporabi storitev periodičnih opravil za klic datoteke cron.php vsakih 15 minut.", "Cheers!" : "Lep pozdrav!", "For password recovery and notifications" : "Za obnovo gesla in obveščanje", "Show last log in" : "Pokaži podatke zadnje prijave" diff --git a/settings/l10n/sl.json b/settings/l10n/sl.json index 139abde42f7..5bc8b7b2cce 100644 --- a/settings/l10n/sl.json +++ b/settings/l10n/sl.json @@ -120,13 +120,8 @@ "System locale can not be set to a one which supports UTF-8." : "Sistemskih jezikovnih nastavitev ni mogoče nastaviti na možnost, ki podpira nabor UTF-8.", "This means that there might be problems with certain characters in file names." : "To pomeni, da se lahko pojavijo napake pri nekaterih znakih v imenih datotek.", "All checks passed." : "Vsa preverjanja so uspešno zaključena.", - "Cron" : "Periodično opravilo", - "Last cron job execution: %s." : " Zadnje periodično opravilo: %s.", - "Last cron job execution: %s. Something seems wrong." : " Zadnje periodično opravilo: %s. Nekaj izgleda narobe.", - "Cron was not executed yet!" : "Periodično opravilo cron še ni zagnano!", "Execute one task with each page loaded" : "Izvedi eno nalogo z vsako naloženo stranjo.", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "Datoteka cron.php je vpisana za periodično opravilo webcron za potrditev sklica vsakih 15 minut pri povezavi preko HTTP.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Uporabi storitev periodičnih opravil za klic datoteke cron.php vsakih 15 minut.", "Version" : "Različica", "Sharing" : "Souporaba", "Allow apps to use the Share API" : "Dovoli programom uporabo vmesnika API souporabe", @@ -235,6 +230,11 @@ "Uninstall" : "Odstrani namestitev", "This is used for sending out notifications." : "Možnost je uporabljena za omogočanje pošiljanja obvestil.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Manjka modul PHP 'fileinfo'. Priporočljivo je omogočiti ta modul za popolno zaznavanje vrst MIME.", + "Cron" : "Periodično opravilo", + "Last cron job execution: %s." : " Zadnje periodično opravilo: %s.", + "Last cron job execution: %s. Something seems wrong." : " Zadnje periodično opravilo: %s. Nekaj izgleda narobe.", + "Cron was not executed yet!" : "Periodično opravilo cron še ni zagnano!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Uporabi storitev periodičnih opravil za klic datoteke cron.php vsakih 15 minut.", "Cheers!" : "Lep pozdrav!", "For password recovery and notifications" : "Za obnovo gesla in obveščanje", "Show last log in" : "Pokaži podatke zadnje prijave" diff --git a/settings/l10n/sq.js b/settings/l10n/sq.js index 579a4f460e6..fe7eb6a8647 100644 --- a/settings/l10n/sq.js +++ b/settings/l10n/sq.js @@ -1,6 +1,9 @@ OC.L10N.register( "settings", { + "You changed your password" : "Ju ndëruat fjalëkalimin", + "You changed your email address" : "Ju ndryshuat adresën e emailit tuaj", + "Your email address was changed by an administrator" : "Adresa juaj e email-it është ndryshuar nga një administrator", "Wrong password" : "Fjalëkalim i gabuar", "Saved" : "U ruajt", "No user supplied" : "S’u dha përdorues", @@ -181,13 +184,8 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "S’qe e mundur të përmbushej akti cron përmes CLI-së. U shfaqën gabimet teknike vijuese:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Ju lutem riverifikoni <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\"> udhëzuesin e instalimit </a>,, dhe kontrolloni për ndonjë gabim apo njoftim paraprak në <a href=\"%s\">log</a>.", "All checks passed." : "I kaloi krejt kontrollet.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Përmbushja e fundit e aktit cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Përmbushja e fundit e aktit cron: %s. Duket se nuk shkon diçka.", - "Cron was not executed yet!" : "Cron-i s’qe ekzekutuar ende!", "Execute one task with each page loaded" : "Kryeni vetëm një veprim me secilën prej faqeve të ngarkuara", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php është regjistruar te një shërbim webcron që ta aktivizojë cron.php-në çdo 15 minuta përmes http-je.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Përdorni shërbimin cron të sistemit që ta aktivizojë cron.php-në çdo 15 minuta.", "The cron.php needs to be executed by the system user \"%s\"." : "con.php duhet të ekzekutohet bga përdoruesi i sistemit \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Për të bërë këtë ekzekutim ju duhet shtesa PHP posix. Shikoni {linkstart} dokumentacionin e PHP {linkend} pë më shumë detaje.", "Version" : "Version", @@ -327,6 +325,11 @@ OC.L10N.register( "Uninstall" : "Çinstaloje", "This is used for sending out notifications." : "Ky përdoret për të dërguar njoftime.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Moduli PHP 'fileinfo' mungon. Ju këshillojmë me forcë ta aktivizoni këtë modul, për të patur përfundimet më të mira në zbulim llojesh MIME.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Përmbushja e fundit e aktit cron: %s.", + "Last cron job execution: %s. Something seems wrong." : "Përmbushja e fundit e aktit cron: %s. Duket se nuk shkon diçka.", + "Cron was not executed yet!" : "Cron-i s’qe ekzekutuar ende!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Përdorni shërbimin cron të sistemit që ta aktivizojë cron.php-në çdo 15 minuta.", "Uninstall app" : "Çinstaloje Aplikacionin", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Njatjeta,<br><br>thjesht po ju bëjmë të ditur që tani keni një llogari %s.<br><br>Emri juaj i përdoruesit: <strong>%s</strong><br> Hyni në të te: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Gëzuar!", diff --git a/settings/l10n/sq.json b/settings/l10n/sq.json index 193fca52de6..003d8e6e43e 100644 --- a/settings/l10n/sq.json +++ b/settings/l10n/sq.json @@ -1,4 +1,7 @@ { "translations": { + "You changed your password" : "Ju ndëruat fjalëkalimin", + "You changed your email address" : "Ju ndryshuat adresën e emailit tuaj", + "Your email address was changed by an administrator" : "Adresa juaj e email-it është ndryshuar nga një administrator", "Wrong password" : "Fjalëkalim i gabuar", "Saved" : "U ruajt", "No user supplied" : "S’u dha përdorues", @@ -179,13 +182,8 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "S’qe e mundur të përmbushej akti cron përmes CLI-së. U shfaqën gabimet teknike vijuese:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Ju lutem riverifikoni <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\"> udhëzuesin e instalimit </a>,, dhe kontrolloni për ndonjë gabim apo njoftim paraprak në <a href=\"%s\">log</a>.", "All checks passed." : "I kaloi krejt kontrollet.", - "Cron" : "Cron", - "Last cron job execution: %s." : "Përmbushja e fundit e aktit cron: %s.", - "Last cron job execution: %s. Something seems wrong." : "Përmbushja e fundit e aktit cron: %s. Duket se nuk shkon diçka.", - "Cron was not executed yet!" : "Cron-i s’qe ekzekutuar ende!", "Execute one task with each page loaded" : "Kryeni vetëm një veprim me secilën prej faqeve të ngarkuara", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php është regjistruar te një shërbim webcron që ta aktivizojë cron.php-në çdo 15 minuta përmes http-je.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Përdorni shërbimin cron të sistemit që ta aktivizojë cron.php-në çdo 15 minuta.", "The cron.php needs to be executed by the system user \"%s\"." : "con.php duhet të ekzekutohet bga përdoruesi i sistemit \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Për të bërë këtë ekzekutim ju duhet shtesa PHP posix. Shikoni {linkstart} dokumentacionin e PHP {linkend} pë më shumë detaje.", "Version" : "Version", @@ -325,6 +323,11 @@ "Uninstall" : "Çinstaloje", "This is used for sending out notifications." : "Ky përdoret për të dërguar njoftime.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Moduli PHP 'fileinfo' mungon. Ju këshillojmë me forcë ta aktivizoni këtë modul, për të patur përfundimet më të mira në zbulim llojesh MIME.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Përmbushja e fundit e aktit cron: %s.", + "Last cron job execution: %s. Something seems wrong." : "Përmbushja e fundit e aktit cron: %s. Duket se nuk shkon diçka.", + "Cron was not executed yet!" : "Cron-i s’qe ekzekutuar ende!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Përdorni shërbimin cron të sistemit që ta aktivizojë cron.php-në çdo 15 minuta.", "Uninstall app" : "Çinstaloje Aplikacionin", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Njatjeta,<br><br>thjesht po ju bëjmë të ditur që tani keni një llogari %s.<br><br>Emri juaj i përdoruesit: <strong>%s</strong><br> Hyni në të te: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Gëzuar!", diff --git a/settings/l10n/sr.js b/settings/l10n/sr.js index 63c3ecf0229..a4e917e3f7a 100644 --- a/settings/l10n/sr.js +++ b/settings/l10n/sr.js @@ -110,13 +110,8 @@ OC.L10N.register( "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Препоручујемо да инсталирате потребне пакете да бисте подржали следеће локалитете: %s", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ако инсталација није инсталирана у основи домена и користи системски крон, може бити проблема са генерисањем веб адреса. Да бисте избегли ове проблеме, молимо вас да подесите \"overwrite.cli.url\" опцију у вашем config.php фајлу у путању веб-основе ваше инсталације (Предложено: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Није било могуће да се изврши крон задатак путем интерфејса командне линије. Појавила су се следеће техничке грешке:", - "Cron" : "Крон", - "Last cron job execution: %s." : "Последњи извршени крон задатак: %s.", - "Last cron job execution: %s. Something seems wrong." : "Последњи извршени крон задатак: %s. Нешто изгледа није у реду.", - "Cron was not executed yet!" : "Крон задатак још увек није извршен!", "Execute one task with each page loaded" : "Изврши један задатак са сваком учитаном страницом", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php је регистрован код вебкрон сервиса за позивање cron.php сваких 15 минута преко протокола http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Користите системски крон сервис за позивање cron.php фајла сваких 15 минута.", "Version" : "Верзија", "Sharing" : "Дељење", "Allow apps to use the Share API" : "Дозвољава апликацијама да користе АПИ дељења", @@ -210,6 +205,11 @@ OC.L10N.register( "Uninstall" : "Деинсталирај", "This is used for sending out notifications." : "Ово се користи за слање обавештења.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Недостаје ПХП модул „fileinfo“. Препоручујемо вам да га укључите да бисте добили најбоље резултате с откривањем МИМЕ врста.", + "Cron" : "Крон", + "Last cron job execution: %s." : "Последњи извршени крон задатак: %s.", + "Last cron job execution: %s. Something seems wrong." : "Последњи извршени крон задатак: %s. Нешто изгледа није у реду.", + "Cron was not executed yet!" : "Крон задатак још увек није извршен!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Користите системски крон сервис за позивање cron.php фајла сваких 15 минута.", "Cheers!" : "Здраво!", "Show last log in" : "Прикажи последњу пријаву" }, diff --git a/settings/l10n/sr.json b/settings/l10n/sr.json index ac4732e7e69..db7847e84d5 100644 --- a/settings/l10n/sr.json +++ b/settings/l10n/sr.json @@ -108,13 +108,8 @@ "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Препоручујемо да инсталирате потребне пакете да бисте подржали следеће локалитете: %s", "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Ако инсталација није инсталирана у основи домена и користи системски крон, може бити проблема са генерисањем веб адреса. Да бисте избегли ове проблеме, молимо вас да подесите \"overwrite.cli.url\" опцију у вашем config.php фајлу у путању веб-основе ваше инсталације (Предложено: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Није било могуће да се изврши крон задатак путем интерфејса командне линије. Појавила су се следеће техничке грешке:", - "Cron" : "Крон", - "Last cron job execution: %s." : "Последњи извршени крон задатак: %s.", - "Last cron job execution: %s. Something seems wrong." : "Последњи извршени крон задатак: %s. Нешто изгледа није у реду.", - "Cron was not executed yet!" : "Крон задатак још увек није извршен!", "Execute one task with each page loaded" : "Изврши један задатак са сваком учитаном страницом", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php је регистрован код вебкрон сервиса за позивање cron.php сваких 15 минута преко протокола http.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Користите системски крон сервис за позивање cron.php фајла сваких 15 минута.", "Version" : "Верзија", "Sharing" : "Дељење", "Allow apps to use the Share API" : "Дозвољава апликацијама да користе АПИ дељења", @@ -208,6 +203,11 @@ "Uninstall" : "Деинсталирај", "This is used for sending out notifications." : "Ово се користи за слање обавештења.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Недостаје ПХП модул „fileinfo“. Препоручујемо вам да га укључите да бисте добили најбоље резултате с откривањем МИМЕ врста.", + "Cron" : "Крон", + "Last cron job execution: %s." : "Последњи извршени крон задатак: %s.", + "Last cron job execution: %s. Something seems wrong." : "Последњи извршени крон задатак: %s. Нешто изгледа није у реду.", + "Cron was not executed yet!" : "Крон задатак још увек није извршен!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Користите системски крон сервис за позивање cron.php фајла сваких 15 минута.", "Cheers!" : "Здраво!", "Show last log in" : "Прикажи последњу пријаву" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" diff --git a/settings/l10n/sv.js b/settings/l10n/sv.js index a01eaf70563..54628910aea 100644 --- a/settings/l10n/sv.js +++ b/settings/l10n/sv.js @@ -233,13 +233,8 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Det var ej möjligt att exekvera cronjob via CLI. Följande tekniska fel har uppstått:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Var god att dubbelkolla <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installationsguiden ↗</a>, och kolla efter några ändringar eller varningar i <a href=\"%s\">loggfilen</a>.", "All checks passed." : "Alla kontroller lyckades!", - "Cron" : "Cron", - "Last cron job execution: %s." : "Sista cron kördes för %s", - "Last cron job execution: %s. Something seems wrong." : "Sista cron kördes för %s. Något verkar vara fel.", - "Cron was not executed yet!" : "Cron har inte körts ännu!", "Execute one task with each page loaded" : "Exekvera en uppgift vid varje sidladdning", "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 system's cron service to call the cron.php file every 15 minutes." : "Använd systemets cron-tjänst för att anropa cron.php var 15:e minut.", "The cron.php needs to be executed by the system user \"%s\"." : "Cron.php behöver exekveras av systemanvändaren \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "För att köra detta behöver du PHP posix tillägget. Se {linkstart}PHP dokumentationen{linkend} för ytterligare detaljer.", "Version" : "Version", @@ -394,6 +389,11 @@ OC.L10N.register( "Uninstall" : "Avinstallera", "This is used for sending out notifications." : "Detta används för att skicka ut notifieringar.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Sista cron kördes för %s", + "Last cron job execution: %s. Something seems wrong." : "Sista cron kördes för %s. Något verkar vara fel.", + "Cron was not executed yet!" : "Cron har inte körts ännu!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Använd systemets cron-tjänst för att anropa cron.php var 15:e minut.", "Uninstall app" : "Avinstallera app", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hej där,<br><br>Tänkte bara informera om att du du nu har ett %s konto.<br><br>Ditt användarnamn: <strong>%s</strong><br>Logga in: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Ha de fint!", diff --git a/settings/l10n/sv.json b/settings/l10n/sv.json index 51aaa93e426..a329fff9c89 100644 --- a/settings/l10n/sv.json +++ b/settings/l10n/sv.json @@ -231,13 +231,8 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Det var ej möjligt att exekvera cronjob via CLI. Följande tekniska fel har uppstått:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Var god att dubbelkolla <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installationsguiden ↗</a>, och kolla efter några ändringar eller varningar i <a href=\"%s\">loggfilen</a>.", "All checks passed." : "Alla kontroller lyckades!", - "Cron" : "Cron", - "Last cron job execution: %s." : "Sista cron kördes för %s", - "Last cron job execution: %s. Something seems wrong." : "Sista cron kördes för %s. Något verkar vara fel.", - "Cron was not executed yet!" : "Cron har inte körts ännu!", "Execute one task with each page loaded" : "Exekvera en uppgift vid varje sidladdning", "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 system's cron service to call the cron.php file every 15 minutes." : "Använd systemets cron-tjänst för att anropa cron.php var 15:e minut.", "The cron.php needs to be executed by the system user \"%s\"." : "Cron.php behöver exekveras av systemanvändaren \"%s\".", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "För att köra detta behöver du PHP posix tillägget. Se {linkstart}PHP dokumentationen{linkend} för ytterligare detaljer.", "Version" : "Version", @@ -392,6 +387,11 @@ "Uninstall" : "Avinstallera", "This is used for sending out notifications." : "Detta används för att skicka ut notifieringar.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ.", + "Cron" : "Cron", + "Last cron job execution: %s." : "Sista cron kördes för %s", + "Last cron job execution: %s. Something seems wrong." : "Sista cron kördes för %s. Något verkar vara fel.", + "Cron was not executed yet!" : "Cron har inte körts ännu!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Använd systemets cron-tjänst för att anropa cron.php var 15:e minut.", "Uninstall app" : "Avinstallera app", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Hej där,<br><br>Tänkte bara informera om att du du nu har ett %s konto.<br><br>Ditt användarnamn: <strong>%s</strong><br>Logga in: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "Ha de fint!", diff --git a/settings/l10n/th.js b/settings/l10n/th.js index 956a026cd77..48cc861bc25 100644 --- a/settings/l10n/th.js +++ b/settings/l10n/th.js @@ -129,13 +129,8 @@ OC.L10N.register( "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "หากการติดตั้งของคุณไม่ได้ติดตั้งในรากของโดเมนและใช้ระบบ cron อาจมีปัญหาเกี่ยวกับการสร้าง URL เพื่อหลีกเลี่ยงปัญหาเหล่านี้โปรดไปตั้งค่า \"overwrite.cli.url\" ในไฟล์ config.php ของคุณไปยังเส้นทาง webroot ของการติดตั้งของคุณ (แนะนำ: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "มันเป็นไปไม่ได้ที่จะดำเนินการ cronjob ผ่านทาง CLI ข้อผิดพลาดทางเทคนิคต่อไปนี้จะปรากฏ:", "All checks passed." : "ผ่านการตรวจสอบทั้งหมด", - "Cron" : "Cron", - "Last cron job execution: %s." : "การดำเนินการ cron job ล่าสุด: %s", - "Last cron job execution: %s. Something seems wrong." : "การดำเนินการ cron job ล่าสุด: %s ดูเหมือนมีบางสิ่งไม่ถูกต้อง", - "Cron was not executed yet!" : "Cron ไม่ได้ถูกดำเนินการ!", "Execute one task with each page loaded" : "ประมวลผลหนึ่งงาน ในแต่ละครั้งที่มีการโหลดหน้าเว็บ", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php ได้ถูกลงทะเบียนที่บริการ Webcron เพื่อเรียก cron.php ทุกๆ 15 นาที บน Http", - "Use system's cron service to call the cron.php file every 15 minutes." : "ใช้ระบบบริการ cron เพื่อเรียกไฟล์ cron.php ทุก 15 นาที", "Version" : "รุ่น", "Sharing" : "แชร์ข้อมูล", "Allow apps to use the Share API" : "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", @@ -239,6 +234,11 @@ OC.L10N.register( "Uninstall" : "ถอนการติดตั้ง", "This is used for sending out notifications." : "นี้จะใช้สำหรับการส่งออกการแจ้งเตือน", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "โมดูล PHP 'fileinfo' หายไป เราขอแนะนำให้เปิดใช้งานโมดูลนี้เพื่อให้ได้ผลลัพธ์ที่ดีที่สุดกับการตรวจสอบชนิด mime", + "Cron" : "Cron", + "Last cron job execution: %s." : "การดำเนินการ cron job ล่าสุด: %s", + "Last cron job execution: %s. Something seems wrong." : "การดำเนินการ cron job ล่าสุด: %s ดูเหมือนมีบางสิ่งไม่ถูกต้อง", + "Cron was not executed yet!" : "Cron ไม่ได้ถูกดำเนินการ!", + "Use system's cron service to call the cron.php file every 15 minutes." : "ใช้ระบบบริการ cron เพื่อเรียกไฟล์ cron.php ทุก 15 นาที", "Cheers!" : "ไชโย!", "For password recovery and notifications" : "สำหรับการกู้คืนรหัสผ่านและการแจ้งเตือน", "Show last log in" : "แสดงการเข้าสู่ระบบล่าสุด" diff --git a/settings/l10n/th.json b/settings/l10n/th.json index 9ed7658ad53..c79e99142ac 100644 --- a/settings/l10n/th.json +++ b/settings/l10n/th.json @@ -127,13 +127,8 @@ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "หากการติดตั้งของคุณไม่ได้ติดตั้งในรากของโดเมนและใช้ระบบ cron อาจมีปัญหาเกี่ยวกับการสร้าง URL เพื่อหลีกเลี่ยงปัญหาเหล่านี้โปรดไปตั้งค่า \"overwrite.cli.url\" ในไฟล์ config.php ของคุณไปยังเส้นทาง webroot ของการติดตั้งของคุณ (แนะนำ: \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "มันเป็นไปไม่ได้ที่จะดำเนินการ cronjob ผ่านทาง CLI ข้อผิดพลาดทางเทคนิคต่อไปนี้จะปรากฏ:", "All checks passed." : "ผ่านการตรวจสอบทั้งหมด", - "Cron" : "Cron", - "Last cron job execution: %s." : "การดำเนินการ cron job ล่าสุด: %s", - "Last cron job execution: %s. Something seems wrong." : "การดำเนินการ cron job ล่าสุด: %s ดูเหมือนมีบางสิ่งไม่ถูกต้อง", - "Cron was not executed yet!" : "Cron ไม่ได้ถูกดำเนินการ!", "Execute one task with each page loaded" : "ประมวลผลหนึ่งงาน ในแต่ละครั้งที่มีการโหลดหน้าเว็บ", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php ได้ถูกลงทะเบียนที่บริการ Webcron เพื่อเรียก cron.php ทุกๆ 15 นาที บน Http", - "Use system's cron service to call the cron.php file every 15 minutes." : "ใช้ระบบบริการ cron เพื่อเรียกไฟล์ cron.php ทุก 15 นาที", "Version" : "รุ่น", "Sharing" : "แชร์ข้อมูล", "Allow apps to use the Share API" : "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", @@ -237,6 +232,11 @@ "Uninstall" : "ถอนการติดตั้ง", "This is used for sending out notifications." : "นี้จะใช้สำหรับการส่งออกการแจ้งเตือน", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "โมดูล PHP 'fileinfo' หายไป เราขอแนะนำให้เปิดใช้งานโมดูลนี้เพื่อให้ได้ผลลัพธ์ที่ดีที่สุดกับการตรวจสอบชนิด mime", + "Cron" : "Cron", + "Last cron job execution: %s." : "การดำเนินการ cron job ล่าสุด: %s", + "Last cron job execution: %s. Something seems wrong." : "การดำเนินการ cron job ล่าสุด: %s ดูเหมือนมีบางสิ่งไม่ถูกต้อง", + "Cron was not executed yet!" : "Cron ไม่ได้ถูกดำเนินการ!", + "Use system's cron service to call the cron.php file every 15 minutes." : "ใช้ระบบบริการ cron เพื่อเรียกไฟล์ cron.php ทุก 15 นาที", "Cheers!" : "ไชโย!", "For password recovery and notifications" : "สำหรับการกู้คืนรหัสผ่านและการแจ้งเตือน", "Show last log in" : "แสดงการเข้าสู่ระบบล่าสุด" diff --git a/settings/l10n/tr.js b/settings/l10n/tr.js index 5f5b77e3d7f..7a66e6a1747 100644 --- a/settings/l10n/tr.js +++ b/settings/l10n/tr.js @@ -12,13 +12,13 @@ OC.L10N.register( "Enabled apps" : "Etkinleştirilmiş Uygulamalar", "Disabled apps" : "Devre Dışı Uygulamalar", "App bundles" : "Uygulama Paketleri", - "Wrong password" : "Parola hatalı", + "Wrong password" : "Parola yanlış", "Saved" : "Kaydedildi", "No user supplied" : "Kullanıcı belirtilmemiş", "Unable to change password" : "Parola değiştirilemedi", - "Authentication error" : "Kimlik doğrulama hatası", + "Authentication error" : "Kimlik doğrulama sorunu", "Please provide an admin recovery password; otherwise, all user data will be lost." : "Lütfen bir yönetici kurtarma parolası yazın, yoksa tüm kullanıcı verileri kaybolur", - "Wrong admin recovery password. Please check the password and try again." : "Yönetici kurtarma parolası hatalı. Lütfen parolayı denetleyip yeniden deneyin.", + "Wrong admin recovery password. Please check the password and try again." : "Yönetici kurtarma parolası yanlış. Lütfen parolayı denetleyip yeniden deneyin.", "Backend doesn't support password change, but the user's encryption key was updated." : "Yönetim bölümünden parola değişikliği yapılamaz, ancak kullanıcının şifreleme anahtarı güncellendi.", "installing and updating apps via the app store or Federated Cloud Sharing" : "Uygulama mağazası ve Birleşmiş Bulut Paylaşımından uygulama kurma ve güncelleme", "Federated Cloud Sharing" : "Birleşmiş Bulut Paylaşımı", @@ -225,7 +225,7 @@ OC.L10N.register( "Start migration" : "Aktarmayı başlat", "Security & setup warnings" : "Güvenlik ve kurulum uyarıları", "It's important for the security and performance of your instance that everything is configured correctly. To help you with that we are doing some automatic checks. Please see the Tips & Ticks section and the documentation for more information." : "Kopyanızın güvenli ve yüksek başarımla çalışması için ayarların doğru yapılmış olması önemlidir. Bunu sağlamak için bazı otomatik denetimler yapılır. Ayrıntılı bilgi almak için İpuçları bölümüne ve belgelere bakın.", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP sistem ortam değişkenlerini okuyamayacak şekilde hatalı olarak kurulmuş gibi görünüyor. getenv(\"PATH\") komutu ile yapılan sınama sonucunda boş bir cevap alındı.", + "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP yanlış kurulmuş ve sistem ortam değişkenlerini okuyamıyor gibi görünüyor. getenv(\"PATH\") komutu ile yapılan sınama sonucunda boş bir yanıt alındı.", "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Lütfen PHP yapılandırma notları ve özellikle php-fpm kullanırken sunucunuzdaki PHP yapılandırması için <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">kurulum belgelerine ↗</a> bakın.", "The Read-Only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "Salt Okunur yapılandırma etkinleştirilmiş. Bu yapılandırma, bazı ayarların web arayüzünden yapılmasını önler. Ayrıca, bu dosyanın her güncelleme öncesinde el ile yazılabilir yapılması gerekir.", "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP girintili doc bloklarını ayıklamak üzere yapılandırılmış gibi görünüyor. Bu durum bazı çekirdek uygulamalarına erişilmesini engelleyecek.", @@ -241,14 +241,9 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Zamanlanmış görev CLI üzerinden çalıştırılamadı. Şu teknik sorunlar çıktı:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Lütfen <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">kurulum rehberlerini↗</a> yeniden gözden geçirin ve <a href=\"%s\">günlük</a> kayıtlarındaki hata ve uyarılara bakın.", "All checks passed." : "Tüm denetimlerden geçti.", - "Cron" : "Zamanlanmış Görev", - "Last cron job execution: %s." : "Zamanlanmış görevin son yürütülmesi: %s.", - "Last cron job execution: %s. Something seems wrong." : "Zamanlanmış görevin son yürütülmesi: %s. Bir şeyler yanlış görünüyor.", - "Cron was not executed yet!" : "Zamanlanmış görev henüz yürütülmemiş!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "En iyi başarım için art alan görevlerinin doğru şekilde ayarlanması önemlidir. Büyük kurulumlar için 'Cron' ayarı önerilir. Ayrıntılı bilgi almak için belgelere bakın.", "Execute one task with each page loaded" : "Her sayfa yüklemesinde bir görev yürütülsün", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php, http üzerinden 15 dakikada bir yürütülmesi için webcron hizmetine kaydedildi.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Cron.php dosyasını 15 dakikada bir çağırmak için sistem cron hizmeti kullanılır.", "The cron.php needs to be executed by the system user \"%s\"." : "cron.php dosyası \"%s\" sistem kullanıcısı tarafından yürütülmelidir.", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Bunu çalıştıraiblmek için PHP posix eklentisi gereklidir. Ayrıntılı bilgi almak için {linkstart}PHP belgelerine{linkend} bakın.", "Version" : "Sürüm", @@ -407,6 +402,11 @@ OC.L10N.register( "Uninstall" : "Kaldır", "This is used for sending out notifications." : "Bu özellik bildirimler gönderilirken kullanılır.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP 'fileinfo' modülü bulunamadı. MIME türü algılamasında en iyi sonuçları elde etmek için bu modülü etkinleştirmeniz önerilir.", + "Cron" : "Zamanlanmış Görev", + "Last cron job execution: %s." : "Zamanlanmış görevin son yürütülmesi: %s.", + "Last cron job execution: %s. Something seems wrong." : "Zamanlanmış görevin son yürütülmesi: %s. Bir şeyler yanlış görünüyor.", + "Cron was not executed yet!" : "Zamanlanmış görev henüz yürütülmemiş!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Cron.php dosyasını 15 dakikada bir çağırmak için sistem cron hizmeti kullanılır.", "Uninstall app" : "Uygulamayı Kaldır", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Merhaba,<br><br>Artık bir %s hesabınızın olduğunu bildirmek istedik.<br><br>Kullanıcı adınız: %s<br>Şuradan erişebilirsiniz: <a href=\"%s\">%s</a><br><br>", "Cheers!" : "Hoşçakalın!", diff --git a/settings/l10n/tr.json b/settings/l10n/tr.json index 7f685492663..3cd64b0ea03 100644 --- a/settings/l10n/tr.json +++ b/settings/l10n/tr.json @@ -10,13 +10,13 @@ "Enabled apps" : "Etkinleştirilmiş Uygulamalar", "Disabled apps" : "Devre Dışı Uygulamalar", "App bundles" : "Uygulama Paketleri", - "Wrong password" : "Parola hatalı", + "Wrong password" : "Parola yanlış", "Saved" : "Kaydedildi", "No user supplied" : "Kullanıcı belirtilmemiş", "Unable to change password" : "Parola değiştirilemedi", - "Authentication error" : "Kimlik doğrulama hatası", + "Authentication error" : "Kimlik doğrulama sorunu", "Please provide an admin recovery password; otherwise, all user data will be lost." : "Lütfen bir yönetici kurtarma parolası yazın, yoksa tüm kullanıcı verileri kaybolur", - "Wrong admin recovery password. Please check the password and try again." : "Yönetici kurtarma parolası hatalı. Lütfen parolayı denetleyip yeniden deneyin.", + "Wrong admin recovery password. Please check the password and try again." : "Yönetici kurtarma parolası yanlış. Lütfen parolayı denetleyip yeniden deneyin.", "Backend doesn't support password change, but the user's encryption key was updated." : "Yönetim bölümünden parola değişikliği yapılamaz, ancak kullanıcının şifreleme anahtarı güncellendi.", "installing and updating apps via the app store or Federated Cloud Sharing" : "Uygulama mağazası ve Birleşmiş Bulut Paylaşımından uygulama kurma ve güncelleme", "Federated Cloud Sharing" : "Birleşmiş Bulut Paylaşımı", @@ -223,7 +223,7 @@ "Start migration" : "Aktarmayı başlat", "Security & setup warnings" : "Güvenlik ve kurulum uyarıları", "It's important for the security and performance of your instance that everything is configured correctly. To help you with that we are doing some automatic checks. Please see the Tips & Ticks section and the documentation for more information." : "Kopyanızın güvenli ve yüksek başarımla çalışması için ayarların doğru yapılmış olması önemlidir. Bunu sağlamak için bazı otomatik denetimler yapılır. Ayrıntılı bilgi almak için İpuçları bölümüne ve belgelere bakın.", - "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP sistem ortam değişkenlerini okuyamayacak şekilde hatalı olarak kurulmuş gibi görünüyor. getenv(\"PATH\") komutu ile yapılan sınama sonucunda boş bir cevap alındı.", + "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP yanlış kurulmuş ve sistem ortam değişkenlerini okuyamıyor gibi görünüyor. getenv(\"PATH\") komutu ile yapılan sınama sonucunda boş bir yanıt alındı.", "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Lütfen PHP yapılandırma notları ve özellikle php-fpm kullanırken sunucunuzdaki PHP yapılandırması için <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">kurulum belgelerine ↗</a> bakın.", "The Read-Only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "Salt Okunur yapılandırma etkinleştirilmiş. Bu yapılandırma, bazı ayarların web arayüzünden yapılmasını önler. Ayrıca, bu dosyanın her güncelleme öncesinde el ile yazılabilir yapılması gerekir.", "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP girintili doc bloklarını ayıklamak üzere yapılandırılmış gibi görünüyor. Bu durum bazı çekirdek uygulamalarına erişilmesini engelleyecek.", @@ -239,14 +239,9 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Zamanlanmış görev CLI üzerinden çalıştırılamadı. Şu teknik sorunlar çıktı:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "Lütfen <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">kurulum rehberlerini↗</a> yeniden gözden geçirin ve <a href=\"%s\">günlük</a> kayıtlarındaki hata ve uyarılara bakın.", "All checks passed." : "Tüm denetimlerden geçti.", - "Cron" : "Zamanlanmış Görev", - "Last cron job execution: %s." : "Zamanlanmış görevin son yürütülmesi: %s.", - "Last cron job execution: %s. Something seems wrong." : "Zamanlanmış görevin son yürütülmesi: %s. Bir şeyler yanlış görünüyor.", - "Cron was not executed yet!" : "Zamanlanmış görev henüz yürütülmemiş!", "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "En iyi başarım için art alan görevlerinin doğru şekilde ayarlanması önemlidir. Büyük kurulumlar için 'Cron' ayarı önerilir. Ayrıntılı bilgi almak için belgelere bakın.", "Execute one task with each page loaded" : "Her sayfa yüklemesinde bir görev yürütülsün", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php, http üzerinden 15 dakikada bir yürütülmesi için webcron hizmetine kaydedildi.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Cron.php dosyasını 15 dakikada bir çağırmak için sistem cron hizmeti kullanılır.", "The cron.php needs to be executed by the system user \"%s\"." : "cron.php dosyası \"%s\" sistem kullanıcısı tarafından yürütülmelidir.", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "Bunu çalıştıraiblmek için PHP posix eklentisi gereklidir. Ayrıntılı bilgi almak için {linkstart}PHP belgelerine{linkend} bakın.", "Version" : "Sürüm", @@ -405,6 +400,11 @@ "Uninstall" : "Kaldır", "This is used for sending out notifications." : "Bu özellik bildirimler gönderilirken kullanılır.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP 'fileinfo' modülü bulunamadı. MIME türü algılamasında en iyi sonuçları elde etmek için bu modülü etkinleştirmeniz önerilir.", + "Cron" : "Zamanlanmış Görev", + "Last cron job execution: %s." : "Zamanlanmış görevin son yürütülmesi: %s.", + "Last cron job execution: %s. Something seems wrong." : "Zamanlanmış görevin son yürütülmesi: %s. Bir şeyler yanlış görünüyor.", + "Cron was not executed yet!" : "Zamanlanmış görev henüz yürütülmemiş!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Cron.php dosyasını 15 dakikada bir çağırmak için sistem cron hizmeti kullanılır.", "Uninstall app" : "Uygulamayı Kaldır", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "Merhaba,<br><br>Artık bir %s hesabınızın olduğunu bildirmek istedik.<br><br>Kullanıcı adınız: %s<br>Şuradan erişebilirsiniz: <a href=\"%s\">%s</a><br><br>", "Cheers!" : "Hoşçakalın!", diff --git a/settings/l10n/uk.js b/settings/l10n/uk.js index 5dd9cd466e9..6b17a90b4c7 100644 --- a/settings/l10n/uk.js +++ b/settings/l10n/uk.js @@ -111,13 +111,8 @@ OC.L10N.register( "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Якщо ваша копія ownCloud встановлена не в корені домену та використовує систему планування CRON, можливі проблеми з генерацією правильних URL. Щоб уникнути цього, встановіть опцію \"overwrite.cli.url\" файлу config.php відповідно до теки розташування установки (Ймовірніше за все, це \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Не вдалося запустити завдання планувальника через CLI. Відбулися наступні технічні помилки:", "All checks passed." : "Всі перевірки пройдено.", - "Cron" : "Планувальник Cron", - "Last cron job execution: %s." : "Останнє виконане Cron завдання: %s.", - "Last cron job execution: %s. Something seems wrong." : "Останнє виконане Cron завдання: %s. Щось здається неправильним.", - "Cron was not executed yet!" : "Cron-задачі ще не запускалися!", "Execute one task with each page loaded" : "Виконати одне завдання для кожної завантаженої сторінки ", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php зареєстрований в службі webcron та буде викликатися кожні 15 хвилин через HTTP.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Використовувати системний cron для виклику cron.php кожні 15 хвилин.", "Version" : "Версія", "Sharing" : "Спільний доступ", "Allow apps to use the Share API" : "Дозволити програмам використовувати API спільного доступу", @@ -214,6 +209,11 @@ OC.L10N.register( "Uninstall" : "Видалити", "This is used for sending out notifications." : "Використовується для відсилання повідомлень.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP модуль 'fileinfo' відсутній. Ми наполегливо рекомендуємо увімкнути цей модуль, щоб отримати кращі результати при виявленні MIME-типів.", + "Cron" : "Планувальник Cron", + "Last cron job execution: %s." : "Останнє виконане Cron завдання: %s.", + "Last cron job execution: %s. Something seems wrong." : "Останнє виконане Cron завдання: %s. Щось здається неправильним.", + "Cron was not executed yet!" : "Cron-задачі ще не запускалися!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Використовувати системний cron для виклику cron.php кожні 15 хвилин.", "Cheers!" : "Будьмо!", "Show last log in" : "Показати останній вхід в систему" }, diff --git a/settings/l10n/uk.json b/settings/l10n/uk.json index 06b280c2aa2..3457ccfd493 100644 --- a/settings/l10n/uk.json +++ b/settings/l10n/uk.json @@ -109,13 +109,8 @@ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Якщо ваша копія ownCloud встановлена не в корені домену та використовує систему планування CRON, можливі проблеми з генерацією правильних URL. Щоб уникнути цього, встановіть опцію \"overwrite.cli.url\" файлу config.php відповідно до теки розташування установки (Ймовірніше за все, це \"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Не вдалося запустити завдання планувальника через CLI. Відбулися наступні технічні помилки:", "All checks passed." : "Всі перевірки пройдено.", - "Cron" : "Планувальник Cron", - "Last cron job execution: %s." : "Останнє виконане Cron завдання: %s.", - "Last cron job execution: %s. Something seems wrong." : "Останнє виконане Cron завдання: %s. Щось здається неправильним.", - "Cron was not executed yet!" : "Cron-задачі ще не запускалися!", "Execute one task with each page loaded" : "Виконати одне завдання для кожної завантаженої сторінки ", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php зареєстрований в службі webcron та буде викликатися кожні 15 хвилин через HTTP.", - "Use system's cron service to call the cron.php file every 15 minutes." : "Використовувати системний cron для виклику cron.php кожні 15 хвилин.", "Version" : "Версія", "Sharing" : "Спільний доступ", "Allow apps to use the Share API" : "Дозволити програмам використовувати API спільного доступу", @@ -212,6 +207,11 @@ "Uninstall" : "Видалити", "This is used for sending out notifications." : "Використовується для відсилання повідомлень.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP модуль 'fileinfo' відсутній. Ми наполегливо рекомендуємо увімкнути цей модуль, щоб отримати кращі результати при виявленні MIME-типів.", + "Cron" : "Планувальник Cron", + "Last cron job execution: %s." : "Останнє виконане Cron завдання: %s.", + "Last cron job execution: %s. Something seems wrong." : "Останнє виконане Cron завдання: %s. Щось здається неправильним.", + "Cron was not executed yet!" : "Cron-задачі ще не запускалися!", + "Use system's cron service to call the cron.php file every 15 minutes." : "Використовувати системний cron для виклику cron.php кожні 15 хвилин.", "Cheers!" : "Будьмо!", "Show last log in" : "Показати останній вхід в систему" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" diff --git a/settings/l10n/vi.js b/settings/l10n/vi.js index e81fc5a11c6..4316e42cd03 100644 --- a/settings/l10n/vi.js +++ b/settings/l10n/vi.js @@ -28,7 +28,6 @@ OC.L10N.register( "Port" : "Cổng", "Credentials" : "Giấy chứng nhận", "Security & setup warnings" : "Bảo mật và thiết lập cảnh báo", - "Cron" : "Cron", "Execute one task with each page loaded" : "Thực thi tác vụ mỗi khi trang được tải", "Version" : "Phiên bản", "Sharing" : "Chia sẻ", @@ -60,6 +59,7 @@ OC.L10N.register( "Admins can't remove themself from the admin group" : "Quản trị viên không thể loại bỏ chính họ khỏi nhóm quản lý", "Unable to add user to group %s" : "Không thể thêm người dùng vào nhóm %s", "Unable to remove user from group %s" : "Không thể xóa người dùng từ nhóm %s", + "Cron" : "Cron", "Cheers!" : "Chúc mừng!" }, "nplurals=1; plural=0;"); diff --git a/settings/l10n/vi.json b/settings/l10n/vi.json index 2d327500350..292164b2bb6 100644 --- a/settings/l10n/vi.json +++ b/settings/l10n/vi.json @@ -26,7 +26,6 @@ "Port" : "Cổng", "Credentials" : "Giấy chứng nhận", "Security & setup warnings" : "Bảo mật và thiết lập cảnh báo", - "Cron" : "Cron", "Execute one task with each page loaded" : "Thực thi tác vụ mỗi khi trang được tải", "Version" : "Phiên bản", "Sharing" : "Chia sẻ", @@ -58,6 +57,7 @@ "Admins can't remove themself from the admin group" : "Quản trị viên không thể loại bỏ chính họ khỏi nhóm quản lý", "Unable to add user to group %s" : "Không thể thêm người dùng vào nhóm %s", "Unable to remove user from group %s" : "Không thể xóa người dùng từ nhóm %s", + "Cron" : "Cron", "Cheers!" : "Chúc mừng!" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/settings/l10n/zh_CN.js b/settings/l10n/zh_CN.js index fea05297a24..5e6639d6d52 100644 --- a/settings/l10n/zh_CN.js +++ b/settings/l10n/zh_CN.js @@ -1,6 +1,17 @@ OC.L10N.register( "settings", { + "{actor} changed your password" : "{actor} 已更改你的密码", + "You changed your password" : "你已更改你的密码", + "Your password was reset by an administrator" : "你的密码已被管理员重置", + "{actor} changed your email address" : "{actor} 已更改你的电子邮件地址", + "You changed your email address" : "你已更改你的电子邮件地址", + "Your email address was changed by an administrator" : "你的电子邮件地址已被管理员更改", + "Your <strong>password</strong> or <strong>email</strong> was modified" : "你的 <strong>密码</strong> 或 <strong>密码</strong> 已被更改", + "Your apps" : "你的应用", + "Enabled apps" : "启用应用", + "Disabled apps" : "禁用应用", + "App bundles" : "应用软件包", "Wrong password" : "密码错误", "Saved" : "已保存", "No user supplied" : "没有满足的用户", @@ -8,6 +19,7 @@ OC.L10N.register( "Authentication error" : "认证错误", "Please provide an admin recovery password; otherwise, all user data will be lost." : "请提供管理员恢复密码, 否则所有用户的数据都将丢失.", "Wrong admin recovery password. Please check the password and try again." : "错误的管理员恢复密码. 请检查密码并重试.", + "Backend doesn't support password change, but the user's encryption key was updated." : "后端不支持密码更改,但用户的加密密钥已更新。", "installing and updating apps via the app store or Federated Cloud Sharing" : "通过应用程序商店或联合云共享安装和更新应用程序", "Federated Cloud Sharing" : "联合云共享", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL 当前使用的过时 %s 的版本 (%s). 请更新你的操作系统或组件, 例如 %s 将无法可靠地工作.", @@ -16,6 +28,11 @@ OC.L10N.register( "Group already exists." : "分组已经存在.", "Unable to add group." : "无法添加分组.", "Unable to delete group." : "无法删除分组.", + "Invalid SMTP password." : "无效的SMTP密码", + "Well done, %s!" : "已完成, %s!", + "If you received this email, the email configuration seems to be correct." : "如果你收到了这封邮件,电子邮件配置应该就是正确的。", + "Email setting test" : "电子邮件设置测试", + "Email could not be sent. Check your mail server log" : "邮件无法发送. 检查你的邮件服务器日志", "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "在发送电子邮件时出现问题. 请修正您的设置. (错误: %s)", "You need to set your user email before being able to send test emails." : "在发送测试邮件前您需要设置您的电子邮件地址.", "Invalid request" : "无效请求", @@ -25,6 +42,10 @@ OC.L10N.register( "To send a password link to the user an email address is required." : "发送密码链接给用户需要一个电子邮箱地址.", "Unable to create user." : "无法创建用户.", "Unable to delete user." : "无法删除用户", + "Error while enabling user." : "启用用户是出错", + "Error while disabling user." : "禁用用户时出错", + "In order to verify your Twitter account, post the following tweet on Twitter (please make sure to post it without any line breaks):" : "为了验证您的Twitter帐户,请在Twitter上发布以下推文(请确保发布没有任何换行符):", + "In order to verify your Website, store the following content in your web-root at '.well-known/CloudIdVerificationCode.txt' (please make sure that the complete text is in one line):" : "为了验证您的网站,请将以下内容存储在“.well-known / CloudIdVerificationCode.txt”的网络根目录中(请确保完整的文本在一行中):", "Settings saved" : "设置已保存", "Unable to change full name" : "无法修改全名", "Unable to change email address" : "无法修改电子邮箱地址", @@ -33,6 +54,25 @@ OC.L10N.register( "Invalid user" : "无效用户", "Unable to change mail address" : "无法修改电子邮箱地址", "Email saved" : "电子邮件已保存", + "%1$s changed your password on %2$s." : "%1$s 在 %2$s.上已更改你的密码", + "Your password on %s was changed." : "你的密码在 %s 已被更改.", + "Your password on %s was reset by an administrator." : "你的密码在 %s 已被管理员重置", + "Password changed for %s" : "密码更改为%s", + "If you did not request this, please contact an administrator." : "如果您发出此项请求,请联系管理员。", + "Password for %1$s changed on %2$s" : "%1$s的密码更改为%2$s", + "%1$s changed your email address on %2$s." : "%1$s把你的邮箱地址更改成%2$s", + "Your email address on %s was changed." : "你在%s上的电子邮件地址已更改", + "Your email address on %s was changed by an administrator." : "你在%s上的电子邮件地址已被管理员修改", + "Email address changed for %s" : "邮箱地址更改为%s", + "The new email address is %s" : "新的电子邮件地址是%s", + "Email address for %1$s changed on %2$s" : "%1$s的邮箱地址更改为%2$s", + "Welcome aboard" : "欢迎登陆", + "Welcome aboard %s" : "欢迎登陆 %s", + "You have now an %s account, you can add, protect, and share your data." : "你现在有%s个账户,你可以添加,保护和分享你的数据。", + "Your username is: %s" : "你的用户名是: %s", + "Set your password" : "设置你的密码", + "Go to %s" : "到 %s", + "Install Client" : "安装客户端", "Your %s account was created" : "你的帐户 %s 已创建", "Password confirmation is required" : "需要密码确认", "Couldn't remove app." : "无法删除应用.", @@ -42,6 +82,7 @@ OC.L10N.register( "Migration in progress. Please wait until the migration is finished" : "正在进行迁移. 请稍等, 直到迁移完成", "Migration started …" : "迁移开始...", "Not saved" : "未保存", + "Sending…" : "正在发送…", "Email sent" : "邮件已发送", "Official" : "官方", "All" : "全部", @@ -64,11 +105,15 @@ OC.L10N.register( "Updating...." : "正在更新....", "Error while updating app" : "更新应用时出错", "Updated" : "已更新", + "Removing …" : "正在移除...", + "Error while removing app" : "移除应用时出错", + "Remove" : "移除", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "该应用已启用, 但是需要更新. 5秒后将跳转到更新页面.", "App update" : "更新应用", "Approved" : "已认证", "Experimental" : "实验", "No apps found for {query}" : "找不到符合 {query} 的应用", + "Enable all" : "启用所有", "Allow filesystem access" : "允许访问文件系统", "Disconnect" : "断开连接", "Revoke" : "撤销", @@ -103,6 +148,8 @@ OC.L10N.register( "Visible to local users and to trusted servers" : "仅对本地用户和信任的服务器可见", "Public" : "公开", "Will be synced to a global and public address book" : "将同步到全局和公开地址簿中", + "Verify" : "验证", + "Verifying …" : "正在验证...", "Select a profile picture" : "选择头像", "Very weak password" : "非常弱的密码", "Weak password" : "弱密码", @@ -126,12 +173,14 @@ OC.L10N.register( "Password successfully changed" : "密码修改成功", "Changing the password will result in data loss, because data recovery is not available for this user" : "修改密码会导致数据丢失, 因为数据恢复不适用于此用户", "Could not change the users email" : "无法修改用户电子邮箱地址", + "Error while changing status of {user}" : "修改 {user} 状态时发生错误", "A valid username must be provided" : "必须提供合法的用户名", "Error creating user: {message}" : "创建用户出错: {message}", "A valid password must be provided" : "必须提供合法的密码", "A valid email must be provided" : "必须提供合法的用户名", "__language_name__" : "简体中文", "Unlimited" : "无限", + "Verifying" : "正在验证", "Personal info" : "个人信息", "Sessions" : "会话", "App passwords" : "应用密码", @@ -144,6 +193,7 @@ OC.L10N.register( "STARTTLS" : "STARTTLS", "Email server" : "电子邮件服务器", "Open documentation" : "打开文档", + "It is important to set up this server to be able to send emails, like for password reset and notifications." : "设置此服务器以能够发送电子邮件(例如密码重置和通知)非常重要。", "Send mode" : "发送模式", "Encryption" : "加密", "From address" : "来自地址", @@ -159,6 +209,7 @@ OC.L10N.register( "Test email settings" : "测试电子邮件设置", "Send email" : "发送邮件", "Server-side encryption" : "服务器端加密", + "Server-side encryption makes it possible to encrypt files which are uploaded to this server. This comes with limitations like a performance penalty, so enable this only if needed." : "服务器端加密可以加密上传到此服务器的文件。 这带来了诸如性能损失的限制,因此仅在需要时启用此功能。", "Enable server-side encryption" : "启用服务器端加密", "Please read carefully before activating server-side encryption: " : "在激活服务器端加密之前, 请仔细阅读:", "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "一旦加密被启用, 之后上传到服务器的所有文件都将服务器上加密. 只有当启用状态的加密模块支持解密并且所有前提都满足时 (例如: 设定恢复密钥) 才能解除加密.", @@ -173,6 +224,7 @@ OC.L10N.register( "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "您需要从旧版本 (ownCloud<=8.0) 迁移您的加密密钥.", "Start migration" : "开始迁移", "Security & setup warnings" : "安全及设置警告", + "It's important for the security and performance of your instance that everything is configured correctly. To help you with that we are doing some automatic checks. Please see the Tips & Ticks section and the documentation for more information." : "对您的服务器的安全性和性能来说,一切都配置正确很重要。 为了帮助您,我们正在做一些自动检查。 有关详细信息,请参阅提示和窍门部分和文档。", "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP 的设置似乎有问题, 无法获取系统环境变量. 使用 getenv(\\\"PATH\\\") 测试时仅返回空结果.", "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "请检查 <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">安装文档 ↗</a> 中关于 PHP 配置的说明并在您的服务器中进行配置, 尤其是使用 php-fpm 时.", "The Read-Only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "已启用只读配置. 这将阻止在 Web 界面中进行设置. 此外, 每次更新后该文件需要手动设置为可写入.", @@ -180,6 +232,7 @@ OC.L10N.register( "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "这可能是由缓存/加速器造成的, 例如 Zend OPcache 或 eAccelerator.", "Your database does not run with \"READ COMMITTED\" transaction isolation level. This can cause problems when multiple actions are executed in parallel." : "您的数据库不能在 \"READ COMMITTED\" 事务隔离级别运行. 这样可能导致在多个并行操作时出现问题.", "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "已安装 %1$s 的低版本 %2$s. 出于稳定性和性能的原因, 我们建议您升级到更新的 %1$s 版本.", + "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with MIME type detection." : "PHP 模块 'fileinfo' 缺失. 我们强烈建议启用此模块以便在 MIME 类型检测时获得最准确的结果.", "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "事务文件锁被禁用, 这可能导致竞争条件的问题. 在 config.php 中启用 'filelocking.enabled' 选项来避免这些问题. 请参考 <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">文档↗</a> 获取更多信息.", "System locale can not be set to a one which supports UTF-8." : "系统区域无法设置为支持 UTF-8 的区域.", "This means that there might be problems with certain characters in file names." : "这意味着当文件名中包含特定字符时可能出现问题.", @@ -188,20 +241,18 @@ OC.L10N.register( "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "由于下列的技术错误, 无法通过 CLI 执行计划任务:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "请再次检查 <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">安装指南 ↗</a>, 并检查 <a href=\"%s\">日志</a> 中的任何错误或警告.", "All checks passed." : "所有检查已通过.", - "Cron" : "计划任务", - "Last cron job execution: %s." : "上次定时任务执行于: %s.", - "Last cron job execution: %s. Something seems wrong." : "上次定时任务执行于: %s. 但存在一些问题.", - "Cron was not executed yet!" : "定时任务还未被执行!", + "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "为了获得最佳性能,正确配置后台工作非常重要。 对于较大的服务器,“Cron”是推荐的设置。 有关详细信息,请参阅文档。", "Execute one task with each page loaded" : "每个页面加载后执行一个任务", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php 注册到 webcron 服务上, 通过 http 每 15 分钟执行 cron.php.", - "Use system's cron service to call the cron.php file every 15 minutes." : "使用系统 cron 服务每 15 分钟执行一次 cron.php 文件.", "The cron.php needs to be executed by the system user \"%s\"." : "cron.php 需要被系统用户 \"%s\" 执行.", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "为了运行该功能, 您需要 PHP posix 扩展. 请参考 {linkstart}PHP 文档{linkend} 获取更多信息.", "Version" : "版本", "Sharing" : "共享", + "As admin you can fine-tune the sharing behavior. Please see the documentation for more information." : "作为管理员,您可以调整共享行为。 有关详细信息,请参阅文档。", "Allow apps to use the Share API" : "允许应用使用共享 API", "Allow users to share via link" : "允许用户通过链接分享文件", "Allow public uploads" : "允许公开上传", + "Always ask for a password" : "一直要求输入密码", "Enforce password protection" : "强制密码保护", "Set default expiration date" : "设置默认过期日期", "Expire after " : "过期于", @@ -216,6 +267,7 @@ OC.L10N.register( "Show disclaimer text on the public link upload page. (Only shown when the file list is hidden.)" : "在公开链接上传页中显示免责声明. (仅当文件列表隐藏时显示)", "This text will be shown on the public link upload page when the file list is hidden." : "这些内容将在公开链接上传页中当文件列表隐藏时显示.", "Tips & tricks" : "小提示", + "There are a lot of features and config switches available to optimally customize and use this instance. Here are some pointers for more information." : "有很多功能和配置可用于更好地自定义和使用此实例。以下是更多相关信息的指南。", "SQLite is currently being used as the backend database. For larger installations we recommend that you switch to a different database backend." : "SQLite 当前被用作数据库. 对于较大数据量的安装和使用, 我们建议您切换到不同的数据库后端.", "This is particularly recommended when using the desktop client for file synchronisation." : "当时用桌面客户端同步文件时特别推荐.", "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "合并其他数据库可以使用命令行工具: 'occ db:convert-type', 或查看 <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">文档 ↗</a>.", @@ -227,6 +279,8 @@ OC.L10N.register( "Check the security of your Nextcloud over our security scan" : "通过我们的安全扫描来检查Nextcloud的安全性", "Hardening and security guidance" : "强化和安全指南", "Developer documentation" : "开发者文档", + "View in store" : "在商店中查看", + "Limit to groups" : "限制于组", "This app has an update available." : "此应用有可用的更新.", "by %s" : "由 %s", "%s-licensed" : "%s-许可协议", @@ -273,7 +327,10 @@ OC.L10N.register( "Address" : "地址", "Your postal address" : "您的邮寄地址", "Website" : "网站", + "It can take up to 24 hours before the account is displayed as verified." : "在帐户显示为验证之前最多可能需要24小时。", + "Link https://…" : "链接 https://…", "Twitter" : "Twitter", + "Twitter handle @…" : "@…", "You are member of the following groups:" : "您是以下组的成员:", "Password" : "密码", "Current password" : "当前密码", @@ -290,6 +347,7 @@ OC.L10N.register( "Web, desktop and mobile clients currently logged in to your account." : "您账号当前登录的 Web 页面, 桌面和客户端客户端.", "Device" : "设备", "Last activity" : "最后活跃", + "Here you can generate individual passwords for apps so you don’t have to give out your password. You can revoke them individually too." : "您可以为应用程序生成独立密码,因此您不必输入您的密码。 您也可以单独撤销这些独立密码。", "Name" : "名称", "App name" : "应用名", "Create new app password" : "创建新应用密码", @@ -298,12 +356,18 @@ OC.L10N.register( "Username" : "用户名", "Done" : "完成", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "由 {communityopen}Nextcloud community{linkclose} 开发, {githubopen}源代码{linkclose} 基于 {licenseopen}AGPL{linkclose} 许可协议.", + "Follow us on Google+!" : "在 Google+ 上关注我们!", "Like our facebook page!" : "点赞我们 facebook 页面!", + "Follow us on Twitter!" : "在 Twitter 上关注我们!", + "Check out our blog!" : "浏览我们的博客!", "Subscribe to our newsletter!" : "订阅我们的最新消息!", + "Settings" : "设置", "Show storage location" : "显示存储位置", "Show user backend" : "显示用户来源", + "Show last login" : "显示最后登录", "Show email address" : "显示邮件地址", "Send email to new user" : "发送电子邮件给新用户", + "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "当新用户密码为空时, 一个需要设置密码的激活邮件将会发送给用户.", "E-Mail" : "E-Mail", "Create" : "创建", "Admin Recovery Password" : "管理恢复密码", @@ -311,6 +375,7 @@ OC.L10N.register( "Group name" : "分组名", "Everyone" : "所有人", "Admins" : "管理员", + "Disabled" : "禁用", "Default quota" : "默认配额", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "请输入存储配额 (例如: \"512 MB\" 或 \"12 GB\")", "Other" : "其它", @@ -337,6 +402,11 @@ OC.L10N.register( "Uninstall" : "卸载", "This is used for sending out notifications." : "这被用于发送通知.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP 模块 'fileinfo' 缺失. 我们强烈建议启用此模块以便在 MIME 类型检测时获得最准确的结果.", + "Cron" : "计划任务", + "Last cron job execution: %s." : "上次定时任务执行于: %s.", + "Last cron job execution: %s. Something seems wrong." : "上次定时任务执行于: %s. 但存在一些问题.", + "Cron was not executed yet!" : "定时任务还未被执行!", + "Use system's cron service to call the cron.php file every 15 minutes." : "使用系统 cron 服务每 15 分钟执行一次 cron.php 文件.", "Uninstall app" : "卸载应用", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "您好,<br><br>您刚刚创建了 %s 账户<br><br>您的用户名: <strong>%s</strong><br>现在访问: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "干杯!", diff --git a/settings/l10n/zh_CN.json b/settings/l10n/zh_CN.json index 2f800e744b4..41624566af8 100644 --- a/settings/l10n/zh_CN.json +++ b/settings/l10n/zh_CN.json @@ -1,4 +1,15 @@ { "translations": { + "{actor} changed your password" : "{actor} 已更改你的密码", + "You changed your password" : "你已更改你的密码", + "Your password was reset by an administrator" : "你的密码已被管理员重置", + "{actor} changed your email address" : "{actor} 已更改你的电子邮件地址", + "You changed your email address" : "你已更改你的电子邮件地址", + "Your email address was changed by an administrator" : "你的电子邮件地址已被管理员更改", + "Your <strong>password</strong> or <strong>email</strong> was modified" : "你的 <strong>密码</strong> 或 <strong>密码</strong> 已被更改", + "Your apps" : "你的应用", + "Enabled apps" : "启用应用", + "Disabled apps" : "禁用应用", + "App bundles" : "应用软件包", "Wrong password" : "密码错误", "Saved" : "已保存", "No user supplied" : "没有满足的用户", @@ -6,6 +17,7 @@ "Authentication error" : "认证错误", "Please provide an admin recovery password; otherwise, all user data will be lost." : "请提供管理员恢复密码, 否则所有用户的数据都将丢失.", "Wrong admin recovery password. Please check the password and try again." : "错误的管理员恢复密码. 请检查密码并重试.", + "Backend doesn't support password change, but the user's encryption key was updated." : "后端不支持密码更改,但用户的加密密钥已更新。", "installing and updating apps via the app store or Federated Cloud Sharing" : "通过应用程序商店或联合云共享安装和更新应用程序", "Federated Cloud Sharing" : "联合云共享", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL 当前使用的过时 %s 的版本 (%s). 请更新你的操作系统或组件, 例如 %s 将无法可靠地工作.", @@ -14,6 +26,11 @@ "Group already exists." : "分组已经存在.", "Unable to add group." : "无法添加分组.", "Unable to delete group." : "无法删除分组.", + "Invalid SMTP password." : "无效的SMTP密码", + "Well done, %s!" : "已完成, %s!", + "If you received this email, the email configuration seems to be correct." : "如果你收到了这封邮件,电子邮件配置应该就是正确的。", + "Email setting test" : "电子邮件设置测试", + "Email could not be sent. Check your mail server log" : "邮件无法发送. 检查你的邮件服务器日志", "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "在发送电子邮件时出现问题. 请修正您的设置. (错误: %s)", "You need to set your user email before being able to send test emails." : "在发送测试邮件前您需要设置您的电子邮件地址.", "Invalid request" : "无效请求", @@ -23,6 +40,10 @@ "To send a password link to the user an email address is required." : "发送密码链接给用户需要一个电子邮箱地址.", "Unable to create user." : "无法创建用户.", "Unable to delete user." : "无法删除用户", + "Error while enabling user." : "启用用户是出错", + "Error while disabling user." : "禁用用户时出错", + "In order to verify your Twitter account, post the following tweet on Twitter (please make sure to post it without any line breaks):" : "为了验证您的Twitter帐户,请在Twitter上发布以下推文(请确保发布没有任何换行符):", + "In order to verify your Website, store the following content in your web-root at '.well-known/CloudIdVerificationCode.txt' (please make sure that the complete text is in one line):" : "为了验证您的网站,请将以下内容存储在“.well-known / CloudIdVerificationCode.txt”的网络根目录中(请确保完整的文本在一行中):", "Settings saved" : "设置已保存", "Unable to change full name" : "无法修改全名", "Unable to change email address" : "无法修改电子邮箱地址", @@ -31,6 +52,25 @@ "Invalid user" : "无效用户", "Unable to change mail address" : "无法修改电子邮箱地址", "Email saved" : "电子邮件已保存", + "%1$s changed your password on %2$s." : "%1$s 在 %2$s.上已更改你的密码", + "Your password on %s was changed." : "你的密码在 %s 已被更改.", + "Your password on %s was reset by an administrator." : "你的密码在 %s 已被管理员重置", + "Password changed for %s" : "密码更改为%s", + "If you did not request this, please contact an administrator." : "如果您发出此项请求,请联系管理员。", + "Password for %1$s changed on %2$s" : "%1$s的密码更改为%2$s", + "%1$s changed your email address on %2$s." : "%1$s把你的邮箱地址更改成%2$s", + "Your email address on %s was changed." : "你在%s上的电子邮件地址已更改", + "Your email address on %s was changed by an administrator." : "你在%s上的电子邮件地址已被管理员修改", + "Email address changed for %s" : "邮箱地址更改为%s", + "The new email address is %s" : "新的电子邮件地址是%s", + "Email address for %1$s changed on %2$s" : "%1$s的邮箱地址更改为%2$s", + "Welcome aboard" : "欢迎登陆", + "Welcome aboard %s" : "欢迎登陆 %s", + "You have now an %s account, you can add, protect, and share your data." : "你现在有%s个账户,你可以添加,保护和分享你的数据。", + "Your username is: %s" : "你的用户名是: %s", + "Set your password" : "设置你的密码", + "Go to %s" : "到 %s", + "Install Client" : "安装客户端", "Your %s account was created" : "你的帐户 %s 已创建", "Password confirmation is required" : "需要密码确认", "Couldn't remove app." : "无法删除应用.", @@ -40,6 +80,7 @@ "Migration in progress. Please wait until the migration is finished" : "正在进行迁移. 请稍等, 直到迁移完成", "Migration started …" : "迁移开始...", "Not saved" : "未保存", + "Sending…" : "正在发送…", "Email sent" : "邮件已发送", "Official" : "官方", "All" : "全部", @@ -62,11 +103,15 @@ "Updating...." : "正在更新....", "Error while updating app" : "更新应用时出错", "Updated" : "已更新", + "Removing …" : "正在移除...", + "Error while removing app" : "移除应用时出错", + "Remove" : "移除", "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "该应用已启用, 但是需要更新. 5秒后将跳转到更新页面.", "App update" : "更新应用", "Approved" : "已认证", "Experimental" : "实验", "No apps found for {query}" : "找不到符合 {query} 的应用", + "Enable all" : "启用所有", "Allow filesystem access" : "允许访问文件系统", "Disconnect" : "断开连接", "Revoke" : "撤销", @@ -101,6 +146,8 @@ "Visible to local users and to trusted servers" : "仅对本地用户和信任的服务器可见", "Public" : "公开", "Will be synced to a global and public address book" : "将同步到全局和公开地址簿中", + "Verify" : "验证", + "Verifying …" : "正在验证...", "Select a profile picture" : "选择头像", "Very weak password" : "非常弱的密码", "Weak password" : "弱密码", @@ -124,12 +171,14 @@ "Password successfully changed" : "密码修改成功", "Changing the password will result in data loss, because data recovery is not available for this user" : "修改密码会导致数据丢失, 因为数据恢复不适用于此用户", "Could not change the users email" : "无法修改用户电子邮箱地址", + "Error while changing status of {user}" : "修改 {user} 状态时发生错误", "A valid username must be provided" : "必须提供合法的用户名", "Error creating user: {message}" : "创建用户出错: {message}", "A valid password must be provided" : "必须提供合法的密码", "A valid email must be provided" : "必须提供合法的用户名", "__language_name__" : "简体中文", "Unlimited" : "无限", + "Verifying" : "正在验证", "Personal info" : "个人信息", "Sessions" : "会话", "App passwords" : "应用密码", @@ -142,6 +191,7 @@ "STARTTLS" : "STARTTLS", "Email server" : "电子邮件服务器", "Open documentation" : "打开文档", + "It is important to set up this server to be able to send emails, like for password reset and notifications." : "设置此服务器以能够发送电子邮件(例如密码重置和通知)非常重要。", "Send mode" : "发送模式", "Encryption" : "加密", "From address" : "来自地址", @@ -157,6 +207,7 @@ "Test email settings" : "测试电子邮件设置", "Send email" : "发送邮件", "Server-side encryption" : "服务器端加密", + "Server-side encryption makes it possible to encrypt files which are uploaded to this server. This comes with limitations like a performance penalty, so enable this only if needed." : "服务器端加密可以加密上传到此服务器的文件。 这带来了诸如性能损失的限制,因此仅在需要时启用此功能。", "Enable server-side encryption" : "启用服务器端加密", "Please read carefully before activating server-side encryption: " : "在激活服务器端加密之前, 请仔细阅读:", "Once encryption is enabled, all files uploaded to the server from that point forward will be encrypted at rest on the server. It will only be possible to disable encryption at a later date if the active encryption module supports that function, and all pre-conditions (e.g. setting a recover key) are met." : "一旦加密被启用, 之后上传到服务器的所有文件都将服务器上加密. 只有当启用状态的加密模块支持解密并且所有前提都满足时 (例如: 设定恢复密钥) 才能解除加密.", @@ -171,6 +222,7 @@ "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "您需要从旧版本 (ownCloud<=8.0) 迁移您的加密密钥.", "Start migration" : "开始迁移", "Security & setup warnings" : "安全及设置警告", + "It's important for the security and performance of your instance that everything is configured correctly. To help you with that we are doing some automatic checks. Please see the Tips & Ticks section and the documentation for more information." : "对您的服务器的安全性和性能来说,一切都配置正确很重要。 为了帮助您,我们正在做一些自动检查。 有关详细信息,请参阅提示和窍门部分和文档。", "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "PHP 的设置似乎有问题, 无法获取系统环境变量. 使用 getenv(\\\"PATH\\\") 测试时仅返回空结果.", "Please check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation documentation ↗</a> for php configuration notes and the php configuration of your server, especially when using php-fpm." : "请检查 <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">安装文档 ↗</a> 中关于 PHP 配置的说明并在您的服务器中进行配置, 尤其是使用 php-fpm 时.", "The Read-Only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "已启用只读配置. 这将阻止在 Web 界面中进行设置. 此外, 每次更新后该文件需要手动设置为可写入.", @@ -178,6 +230,7 @@ "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "这可能是由缓存/加速器造成的, 例如 Zend OPcache 或 eAccelerator.", "Your database does not run with \"READ COMMITTED\" transaction isolation level. This can cause problems when multiple actions are executed in parallel." : "您的数据库不能在 \"READ COMMITTED\" 事务隔离级别运行. 这样可能导致在多个并行操作时出现问题.", "%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "已安装 %1$s 的低版本 %2$s. 出于稳定性和性能的原因, 我们建议您升级到更新的 %1$s 版本.", + "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with MIME type detection." : "PHP 模块 'fileinfo' 缺失. 我们强烈建议启用此模块以便在 MIME 类型检测时获得最准确的结果.", "Transactional file locking is disabled, this might lead to issues with race conditions. Enable 'filelocking.enabled' in config.php to avoid these problems. See the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a> for more information." : "事务文件锁被禁用, 这可能导致竞争条件的问题. 在 config.php 中启用 'filelocking.enabled' 选项来避免这些问题. 请参考 <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">文档↗</a> 获取更多信息.", "System locale can not be set to a one which supports UTF-8." : "系统区域无法设置为支持 UTF-8 的区域.", "This means that there might be problems with certain characters in file names." : "这意味着当文件名中包含特定字符时可能出现问题.", @@ -186,20 +239,18 @@ "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "由于下列的技术错误, 无法通过 CLI 执行计划任务:", "Please double check the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"%s\">log</a>." : "请再次检查 <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">安装指南 ↗</a>, 并检查 <a href=\"%s\">日志</a> 中的任何错误或警告.", "All checks passed." : "所有检查已通过.", - "Cron" : "计划任务", - "Last cron job execution: %s." : "上次定时任务执行于: %s.", - "Last cron job execution: %s. Something seems wrong." : "上次定时任务执行于: %s. 但存在一些问题.", - "Cron was not executed yet!" : "定时任务还未被执行!", + "For optimal performance it's important to configure background jobs correctly. For bigger instances 'Cron' is the recommended setting. Please see the documentation for more information." : "为了获得最佳性能,正确配置后台工作非常重要。 对于较大的服务器,“Cron”是推荐的设置。 有关详细信息,请参阅文档。", "Execute one task with each page loaded" : "每个页面加载后执行一个任务", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php 注册到 webcron 服务上, 通过 http 每 15 分钟执行 cron.php.", - "Use system's cron service to call the cron.php file every 15 minutes." : "使用系统 cron 服务每 15 分钟执行一次 cron.php 文件.", "The cron.php needs to be executed by the system user \"%s\"." : "cron.php 需要被系统用户 \"%s\" 执行.", "To run this you need the PHP posix extension. See {linkstart}PHP documentation{linkend} for more details." : "为了运行该功能, 您需要 PHP posix 扩展. 请参考 {linkstart}PHP 文档{linkend} 获取更多信息.", "Version" : "版本", "Sharing" : "共享", + "As admin you can fine-tune the sharing behavior. Please see the documentation for more information." : "作为管理员,您可以调整共享行为。 有关详细信息,请参阅文档。", "Allow apps to use the Share API" : "允许应用使用共享 API", "Allow users to share via link" : "允许用户通过链接分享文件", "Allow public uploads" : "允许公开上传", + "Always ask for a password" : "一直要求输入密码", "Enforce password protection" : "强制密码保护", "Set default expiration date" : "设置默认过期日期", "Expire after " : "过期于", @@ -214,6 +265,7 @@ "Show disclaimer text on the public link upload page. (Only shown when the file list is hidden.)" : "在公开链接上传页中显示免责声明. (仅当文件列表隐藏时显示)", "This text will be shown on the public link upload page when the file list is hidden." : "这些内容将在公开链接上传页中当文件列表隐藏时显示.", "Tips & tricks" : "小提示", + "There are a lot of features and config switches available to optimally customize and use this instance. Here are some pointers for more information." : "有很多功能和配置可用于更好地自定义和使用此实例。以下是更多相关信息的指南。", "SQLite is currently being used as the backend database. For larger installations we recommend that you switch to a different database backend." : "SQLite 当前被用作数据库. 对于较大数据量的安装和使用, 我们建议您切换到不同的数据库后端.", "This is particularly recommended when using the desktop client for file synchronisation." : "当时用桌面客户端同步文件时特别推荐.", "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">documentation ↗</a>." : "合并其他数据库可以使用命令行工具: 'occ db:convert-type', 或查看 <a target=\"_blank\" rel=\"noreferrer\" href=\"%s\">文档 ↗</a>.", @@ -225,6 +277,8 @@ "Check the security of your Nextcloud over our security scan" : "通过我们的安全扫描来检查Nextcloud的安全性", "Hardening and security guidance" : "强化和安全指南", "Developer documentation" : "开发者文档", + "View in store" : "在商店中查看", + "Limit to groups" : "限制于组", "This app has an update available." : "此应用有可用的更新.", "by %s" : "由 %s", "%s-licensed" : "%s-许可协议", @@ -271,7 +325,10 @@ "Address" : "地址", "Your postal address" : "您的邮寄地址", "Website" : "网站", + "It can take up to 24 hours before the account is displayed as verified." : "在帐户显示为验证之前最多可能需要24小时。", + "Link https://…" : "链接 https://…", "Twitter" : "Twitter", + "Twitter handle @…" : "@…", "You are member of the following groups:" : "您是以下组的成员:", "Password" : "密码", "Current password" : "当前密码", @@ -288,6 +345,7 @@ "Web, desktop and mobile clients currently logged in to your account." : "您账号当前登录的 Web 页面, 桌面和客户端客户端.", "Device" : "设备", "Last activity" : "最后活跃", + "Here you can generate individual passwords for apps so you don’t have to give out your password. You can revoke them individually too." : "您可以为应用程序生成独立密码,因此您不必输入您的密码。 您也可以单独撤销这些独立密码。", "Name" : "名称", "App name" : "应用名", "Create new app password" : "创建新应用密码", @@ -296,12 +354,18 @@ "Username" : "用户名", "Done" : "完成", "Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}." : "由 {communityopen}Nextcloud community{linkclose} 开发, {githubopen}源代码{linkclose} 基于 {licenseopen}AGPL{linkclose} 许可协议.", + "Follow us on Google+!" : "在 Google+ 上关注我们!", "Like our facebook page!" : "点赞我们 facebook 页面!", + "Follow us on Twitter!" : "在 Twitter 上关注我们!", + "Check out our blog!" : "浏览我们的博客!", "Subscribe to our newsletter!" : "订阅我们的最新消息!", + "Settings" : "设置", "Show storage location" : "显示存储位置", "Show user backend" : "显示用户来源", + "Show last login" : "显示最后登录", "Show email address" : "显示邮件地址", "Send email to new user" : "发送电子邮件给新用户", + "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "当新用户密码为空时, 一个需要设置密码的激活邮件将会发送给用户.", "E-Mail" : "E-Mail", "Create" : "创建", "Admin Recovery Password" : "管理恢复密码", @@ -309,6 +373,7 @@ "Group name" : "分组名", "Everyone" : "所有人", "Admins" : "管理员", + "Disabled" : "禁用", "Default quota" : "默认配额", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "请输入存储配额 (例如: \"512 MB\" 或 \"12 GB\")", "Other" : "其它", @@ -335,6 +400,11 @@ "Uninstall" : "卸载", "This is used for sending out notifications." : "这被用于发送通知.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP 模块 'fileinfo' 缺失. 我们强烈建议启用此模块以便在 MIME 类型检测时获得最准确的结果.", + "Cron" : "计划任务", + "Last cron job execution: %s." : "上次定时任务执行于: %s.", + "Last cron job execution: %s. Something seems wrong." : "上次定时任务执行于: %s. 但存在一些问题.", + "Cron was not executed yet!" : "定时任务还未被执行!", + "Use system's cron service to call the cron.php file every 15 minutes." : "使用系统 cron 服务每 15 分钟执行一次 cron.php 文件.", "Uninstall app" : "卸载应用", "Hey there,<br><br>just letting you know that you now have a %s account.<br><br>Your username: <strong>%s</strong><br>Access it: <strong><a href=\"%s\">%s</a></strong><br><br>" : "您好,<br><br>您刚刚创建了 %s 账户<br><br>您的用户名: <strong>%s</strong><br>现在访问: <strong><a href=\"%s\">%s</a></strong><br><br>", "Cheers!" : "干杯!", diff --git a/settings/l10n/zh_TW.js b/settings/l10n/zh_TW.js index ab1c29019ff..64814318be9 100644 --- a/settings/l10n/zh_TW.js +++ b/settings/l10n/zh_TW.js @@ -139,13 +139,8 @@ OC.L10N.register( "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "如果您的安裝不在網域的最上層,並且使用 cron 作為排程器,URL 的生成可能會有問題,為了避免這樣的狀況,請您在 config.php 檔案裡設定 overwrite.cli.url 為您安裝的 webroot 路徑(建議值:\"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : " 無法透過 CLI 來執行排程工作,發生以下技術性錯誤:", "All checks passed." : "所有檢查正常", - "Cron" : "工作排程", - "Last cron job execution: %s." : "最近一次執行的排程工作:%s", - "Last cron job execution: %s. Something seems wrong." : "最近一次執行的排程工作:%s ,看起來發生了一些錯誤", - "Cron was not executed yet!" : "Cron 沒有執行!", "Execute one task with each page loaded" : "每個頁面載入時執行", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "已經與 webcron 服務註冊好,將會每 15 分鐘透過 HTTP 呼叫 cron.php", - "Use system's cron service to call the cron.php file every 15 minutes." : "使用系統的 cron 服務每 15 分鐘呼叫 cron.php 一次", "Version" : "版本", "Sharing" : "分享", "Allow apps to use the Share API" : "允許 apps 使用分享 API", @@ -248,6 +243,11 @@ OC.L10N.register( "Uninstall" : "解除安裝", "This is used for sending out notifications." : "用於寄送通知", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。", + "Cron" : "工作排程", + "Last cron job execution: %s." : "最近一次執行的排程工作:%s", + "Last cron job execution: %s. Something seems wrong." : "最近一次執行的排程工作:%s ,看起來發生了一些錯誤", + "Cron was not executed yet!" : "Cron 沒有執行!", + "Use system's cron service to call the cron.php file every 15 minutes." : "使用系統的 cron 服務每 15 分鐘呼叫 cron.php 一次", "Cheers!" : "太棒了!", "For password recovery and notifications" : "用於密碼重設和通知", "Show last log in" : "顯示最近登入" diff --git a/settings/l10n/zh_TW.json b/settings/l10n/zh_TW.json index 9eeeb4eb326..101a36ea069 100644 --- a/settings/l10n/zh_TW.json +++ b/settings/l10n/zh_TW.json @@ -137,13 +137,8 @@ "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "如果您的安裝不在網域的最上層,並且使用 cron 作為排程器,URL 的生成可能會有問題,為了避免這樣的狀況,請您在 config.php 檔案裡設定 overwrite.cli.url 為您安裝的 webroot 路徑(建議值:\"%s\")", "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : " 無法透過 CLI 來執行排程工作,發生以下技術性錯誤:", "All checks passed." : "所有檢查正常", - "Cron" : "工作排程", - "Last cron job execution: %s." : "最近一次執行的排程工作:%s", - "Last cron job execution: %s. Something seems wrong." : "最近一次執行的排程工作:%s ,看起來發生了一些錯誤", - "Cron was not executed yet!" : "Cron 沒有執行!", "Execute one task with each page loaded" : "每個頁面載入時執行", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "已經與 webcron 服務註冊好,將會每 15 分鐘透過 HTTP 呼叫 cron.php", - "Use system's cron service to call the cron.php file every 15 minutes." : "使用系統的 cron 服務每 15 分鐘呼叫 cron.php 一次", "Version" : "版本", "Sharing" : "分享", "Allow apps to use the Share API" : "允許 apps 使用分享 API", @@ -246,6 +241,11 @@ "Uninstall" : "解除安裝", "This is used for sending out notifications." : "用於寄送通知", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。", + "Cron" : "工作排程", + "Last cron job execution: %s." : "最近一次執行的排程工作:%s", + "Last cron job execution: %s. Something seems wrong." : "最近一次執行的排程工作:%s ,看起來發生了一些錯誤", + "Cron was not executed yet!" : "Cron 沒有執行!", + "Use system's cron service to call the cron.php file every 15 minutes." : "使用系統的 cron 服務每 15 分鐘呼叫 cron.php 一次", "Cheers!" : "太棒了!", "For password recovery and notifications" : "用於密碼重設和通知", "Show last log in" : "顯示最近登入" diff --git a/settings/personal.php b/settings/personal.php index 86ac4f753f4..7f99dc3259b 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -49,7 +49,7 @@ $config = \OC::$server->getConfig(); $urlGenerator = \OC::$server->getURLGenerator(); // Highlight navigation entry -OC_Util::addScript('settings', 'authtoken'); +OC_Util::addScript('settings', 'AuthToken'); OC_Util::addScript('settings', 'authtoken_collection'); OC_Util::addScript('settings', 'authtoken_view'); OC_Util::addScript('settings', 'usersettings'); diff --git a/settings/templates/admin/server.php b/settings/templates/admin/server.php index 391d100dcf7..8d00d37fe80 100644 --- a/settings/templates/admin/server.php +++ b/settings/templates/admin/server.php @@ -155,7 +155,7 @@ </div> <div class="section" id="backgroundjobs"> - <h2 class="inlineblock"><?php p($l->t('Cron'));?></h2> + <h2 class="inlineblock"><?php p($l->t('Background jobs'));?></h2> <?php if ($_['cron_log']): ?> <p class="cronlog inlineblock"> <?php if ($_['lastcron'] !== false): @@ -164,17 +164,17 @@ if (time() - $_['lastcron'] <= 3600): ?> <span class="status success"></span> <span class="crondate" title="<?php p($absolute_time);?>"> - <?php p($l->t("Last cron job execution: %s.", [$relative_time]));?> + <?php p($l->t("Last job ran %s.", [$relative_time]));?> </span> <?php else: ?> <span class="status error"></span> <span class="crondate" title="<?php p($absolute_time);?>"> - <?php p($l->t("Last cron job execution: %s. Something seems wrong.", [$relative_time]));?> + <?php p($l->t("Last job execution ran %s. Something seems wrong.", [$relative_time]));?> </span> <?php endif; else: ?> <span class="status error"></span> - <?php p($l->t("Cron was not executed yet!")); + <?php p($l->t("Background job didn’t run yet!")); endif; ?> </p> <?php endif; ?> @@ -208,7 +208,7 @@ print_unescaped('disabled'); }?>> <label for="backgroundjobs_cron">Cron</label><br/> - <em><?php p($l->t("Use system's cron service to call the cron.php file every 15 minutes.")); ?> + <em><?php p($l->t("Use system cron service to call the cron.php file every 15 minutes.")); ?> <?php if($_['cli_based_cron_possible']) { p($l->t('The cron.php needs to be executed by the system user "%s".', [$_['cli_based_cron_user']])); } else { |