diff --git a/.drone.yml b/.drone.yml index 986c03e20d3e3..d05e2bcbe285a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -46,10 +46,10 @@ pipeline: matrix: TESTS: syntax-php7.1 phan: - image: nextcloudci/php7.1:php7.1-15 + image: nextcloudci/php7.2:php7.2-11 commands: - composer install - - composer require --dev "phan/phan:dev-master" + - composer require --dev "phan/phan:0.11.1" - ./lib/composer/phan/phan/phan -k build/.phan/config.php - php ./build/.phan/plugin-checker.php when: @@ -615,6 +615,13 @@ pipeline: when: matrix: TESTS-ACCEPTANCE: access-levels + acceptance-app-comments: + image: nextcloudci/integration-php7.0:integration-php7.0-6 + commands: + - tests/acceptance/run-local.sh --timeout-multiplier 10 --nextcloud-server-domain acceptance-app-comments --selenium-server selenium:4444 allow-git-repository-modifications features/app-comments.feature + when: + matrix: + TESTS-ACCEPTANCE: app-comments acceptance-app-files: image: nextcloudci/integration-php7.0:integration-php7.0-6 commands: @@ -813,6 +820,8 @@ matrix: - TESTS: integration-remote-api - TESTS: acceptance TESTS-ACCEPTANCE: access-levels + - TESTS: acceptance + TESTS-ACCEPTANCE: app-comments - TESTS: acceptance TESTS-ACCEPTANCE: app-files - TESTS: acceptance diff --git a/.gitignore b/.gitignore index 8e0794a7999fa..48fc68ec24049 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,8 @@ /apps/inc.php /assets /.htaccess +/translationfiles +/translationtool.phar # ignore all apps except core ones /apps*/* diff --git a/.htaccess b/.htaccess index 7bf8759e38397..005f23b64d5fb 100644 --- a/.htaccess +++ b/.htaccess @@ -63,7 +63,7 @@ RewriteRule ^\.well-known/caldav /remote.php/dav/ [R=301,L] RewriteRule ^remote/(.*) remote.php [QSA,L] RewriteRule ^(?:build|tests|config|lib|3rdparty|templates)/.* - [R=404,L] - RewriteCond %{REQUEST_URI} !^/.well-known/acme-challenge/.* + RewriteCond %{REQUEST_URI} !^/.well-known/(acme-challenge|pki-validation)/.* RewriteRule ^(?:\.|autotest|occ|issue|indie|db_|console).* - [R=404,L] diff --git a/.tx/config b/.tx/config new file mode 100644 index 0000000000000..b24acaeb386a9 --- /dev/null +++ b/.tx/config @@ -0,0 +1,129 @@ +[main] +host = https://www.transifex.com +lang_map = bg_BG: bg, cs_CZ: cs, fi_FI: fi, hu_HU: hu, nb_NO: nb, sk_SK: sk, th_TH: th, ja_JP: ja + +[nextcloud.core] +file_filter = translationfiles//core.po +source_file = translationfiles/templates/core.pot +source_lang = en +type = PO + +[nextcloud.files] +file_filter = translationfiles//files.po +source_file = translationfiles/templates/files.pot +source_lang = en +type = PO + +[nextcloud.settings-1] +file_filter = translationfiles//settings.po +source_file = translationfiles/templates/settings.pot +source_lang = en +type = PO + +[nextcloud.lib] +file_filter = translationfiles//lib.po +source_file = translationfiles/templates/lib.pot +source_lang = en +type = PO + +[nextcloud.dav] +file_filter = translationfiles//dav.po +source_file = translationfiles/templates/dav.pot +source_lang = en +type = PO + +[nextcloud.files_encryption] +file_filter = translationfiles//encryption.po +source_file = translationfiles/templates/encryption.pot +source_lang = en +type = PO + +[nextcloud.files_external] +file_filter = translationfiles//files_external.po +source_file = translationfiles/templates/files_external.pot +source_lang = en +type = PO + +[nextcloud.files_sharing] +file_filter = translationfiles//files_sharing.po +source_file = translationfiles/templates/files_sharing.pot +source_lang = en +type = PO + +[nextcloud.files_trashbin] +file_filter = translationfiles//files_trashbin.po +source_file = translationfiles/templates/files_trashbin.pot +source_lang = en +type = PO + +[nextcloud.files_versions] +file_filter = translationfiles//files_versions.po +source_file = translationfiles/templates/files_versions.pot +source_lang = en +type = PO + +[nextcloud.user_ldap] +file_filter = translationfiles//user_ldap.po +source_file = translationfiles/templates/user_ldap.pot +source_lang = en +type = PO + +[nextcloud.comments] +file_filter = translationfiles//comments.po +source_file = translationfiles/templates/comments.pot +source_lang = en +type = PO + +[nextcloud.federatedfilesharing] +file_filter = translationfiles//federatedfilesharing.po +source_file = translationfiles/templates/federatedfilesharing.pot +source_lang = en +type = PO + +[nextcloud.federation] +file_filter = translationfiles//federation.po +source_file = translationfiles/templates/federation.pot +source_lang = en +type = PO + +[nextcloud.oauth2] +file_filter = translationfiles//oauth2.po +source_file = translationfiles/templates/oauth2.pot +source_lang = en +type = PO + +[nextcloud.sharebymail] +file_filter = translationfiles//sharebymail.po +source_file = translationfiles/templates/sharebymail.pot +source_lang = en +type = PO + +[nextcloud.systemtags] +file_filter = translationfiles//systemtags.po +source_file = translationfiles/templates/systemtags.pot +source_lang = en +type = PO + +[nextcloud.updatenotification] +file_filter = translationfiles//updatenotification.po +source_file = translationfiles/templates/updatenotification.pot +source_lang = en +type = PO + +[nextcloud.theming] +file_filter = translationfiles//theming.po +source_file = translationfiles/templates/theming.pot +source_lang = en +type = PO + +[nextcloud.twofactor_backupcodes] +file_filter = translationfiles//twofactor_backupcodes.po +source_file = translationfiles/templates/twofactor_backupcodes.pot +source_lang = en +type = PO + +[nextcloud.workflowengine] +file_filter = translationfiles//workflowengine.po +source_file = translationfiles/templates/workflowengine.pot +source_lang = en +type = PO diff --git a/apps/comments/js/commentstabview.js b/apps/comments/js/commentstabview.js index 0ad4916350844..9e501b141a708 100644 --- a/apps/comments/js/commentstabview.js +++ b/apps/comments/js/commentstabview.js @@ -586,7 +586,7 @@ $submit.prop('disabled', false); $cancel.prop('disabled', false); - OC.Notification.showTemporary(t('comments', 'Error occurred while retrieving comment with id {id}', {id: commentId})); + OC.Notification.showTemporary(t('comments', 'Error occurred while retrieving comment with ID {id}', {id: commentId})); } }); diff --git a/apps/comments/l10n/af.js b/apps/comments/l10n/af.js index eeceac66ed0de..b75ff8e06c550 100644 --- a/apps/comments/l10n/af.js +++ b/apps/comments/l10n/af.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Nog kommentare …", "Save" : "Bewaar", "Allowed characters {count} of {max}" : "Toegelate karakters {telling} van {maks}", - "Error occurred while retrieving comment with id {id}" : "’n Fout het voorgekom toe kommentaar met id {id} opgehaal is", + "Error occurred while retrieving comment with ID {id}" : "’n Fout het voorgekom toe kommentaar met id {id} opgehaal is", "Error occurred while updating comment with id {id}" : "’n Fout het voorgekom toe kommentaar met id {id} bygewerk is", "Error occurred while posting comment" : "’n Fout het voorgekom toe kommentaar geplaas is", "_%n unread comment_::_%n unread comments_" : ["%n ongeleesde kommentaar","%n ongeleeste kommentare"], @@ -25,6 +25,8 @@ OC.L10N.register( "%1$s commented on %2$s" : "%1$s het op %2$s kommentaar gelewer", "{author} commented on {file}" : "{outeur} het op {lêer} kommentaar gelewer", "Comments for files" : "Kommentare vir lêers", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Jy was genoem op \"%s\", in die kommentaar van 'n gebruiker wat intussen geskrap is.", + "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Jy was genoem op “{lêer}”, in die kommentaar van 'n gebruiker wat intussen geskrap is.", "%1$s mentioned you in a comment on “%2$s”" : "%1$s het u in ’n kommentaar op “%2$s” genoem", "{user} mentioned you in a comment on “{file}”" : "{gebruiker} het u in ’n kommentaar oor “{lêer}” genoem", "Unknown user" : "Onbekende gebruiker", diff --git a/apps/comments/l10n/af.json b/apps/comments/l10n/af.json index 16d5c8efa0ee8..2c9db7765e1fd 100644 --- a/apps/comments/l10n/af.json +++ b/apps/comments/l10n/af.json @@ -10,7 +10,7 @@ "More comments …" : "Nog kommentare …", "Save" : "Bewaar", "Allowed characters {count} of {max}" : "Toegelate karakters {telling} van {maks}", - "Error occurred while retrieving comment with id {id}" : "’n Fout het voorgekom toe kommentaar met id {id} opgehaal is", + "Error occurred while retrieving comment with ID {id}" : "’n Fout het voorgekom toe kommentaar met id {id} opgehaal is", "Error occurred while updating comment with id {id}" : "’n Fout het voorgekom toe kommentaar met id {id} bygewerk is", "Error occurred while posting comment" : "’n Fout het voorgekom toe kommentaar geplaas is", "_%n unread comment_::_%n unread comments_" : ["%n ongeleesde kommentaar","%n ongeleeste kommentare"], @@ -23,6 +23,8 @@ "%1$s commented on %2$s" : "%1$s het op %2$s kommentaar gelewer", "{author} commented on {file}" : "{outeur} het op {lêer} kommentaar gelewer", "Comments for files" : "Kommentare vir lêers", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Jy was genoem op \"%s\", in die kommentaar van 'n gebruiker wat intussen geskrap is.", + "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Jy was genoem op “{lêer}”, in die kommentaar van 'n gebruiker wat intussen geskrap is.", "%1$s mentioned you in a comment on “%2$s”" : "%1$s het u in ’n kommentaar op “%2$s” genoem", "{user} mentioned you in a comment on “{file}”" : "{gebruiker} het u in ’n kommentaar oor “{lêer}” genoem", "Unknown user" : "Onbekende gebruiker", diff --git a/apps/comments/l10n/ar.js b/apps/comments/l10n/ar.js index 380ff32155183..4cc4b878b808e 100644 --- a/apps/comments/l10n/ar.js +++ b/apps/comments/l10n/ar.js @@ -2,7 +2,6 @@ OC.L10N.register( "comments", { "Comments" : "تعليقات", - "Unknown user" : "مستخدم غير معروف", "New comment …" : "تعليق جديد", "Delete comment" : "حذف التعليق", "Post" : "ارسال", @@ -13,7 +12,6 @@ OC.L10N.register( "More comments …" : "مزيد من التعليقات...", "Save" : "حفظ", "Allowed characters {count} of {max}" : "عدد الأحرف المسموح بها {count} من {max}", - "Error occurred while retrieving comment with id {id}" : "حصل خطأ أثناء عرض التعليق رقم {id}", "Error occurred while updating comment with id {id}" : "حصل خطأ أثناء تعديل التعليق رقم {id}", "Error occurred while posting comment" : "حصل خطأ أثناء إرسال التعليق", "Comment" : "تعليق", @@ -22,6 +20,7 @@ OC.L10N.register( "You commented on {file}" : "علقت على {file}", "%1$s commented on %2$s" : "%1$s كتب تعليق على %2$s", "{author} commented on {file}" : "{author} علّق على {file}", - "Comments for files" : "تعليقات على الملفات" + "Comments for files" : "تعليقات على الملفات", + "Unknown user" : "مستخدم غير معروف" }, "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/apps/comments/l10n/ar.json b/apps/comments/l10n/ar.json index 20871a0748788..dc433146de215 100644 --- a/apps/comments/l10n/ar.json +++ b/apps/comments/l10n/ar.json @@ -1,6 +1,5 @@ { "translations": { "Comments" : "تعليقات", - "Unknown user" : "مستخدم غير معروف", "New comment …" : "تعليق جديد", "Delete comment" : "حذف التعليق", "Post" : "ارسال", @@ -11,7 +10,6 @@ "More comments …" : "مزيد من التعليقات...", "Save" : "حفظ", "Allowed characters {count} of {max}" : "عدد الأحرف المسموح بها {count} من {max}", - "Error occurred while retrieving comment with id {id}" : "حصل خطأ أثناء عرض التعليق رقم {id}", "Error occurred while updating comment with id {id}" : "حصل خطأ أثناء تعديل التعليق رقم {id}", "Error occurred while posting comment" : "حصل خطأ أثناء إرسال التعليق", "Comment" : "تعليق", @@ -20,6 +18,7 @@ "You commented on {file}" : "علقت على {file}", "%1$s commented on %2$s" : "%1$s كتب تعليق على %2$s", "{author} commented on {file}" : "{author} علّق على {file}", - "Comments for files" : "تعليقات على الملفات" + "Comments for files" : "تعليقات على الملفات", + "Unknown user" : "مستخدم غير معروف" },"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/apps/comments/l10n/ast.js b/apps/comments/l10n/ast.js index 1f31c5d573274..3e71950766a28 100644 --- a/apps/comments/l10n/ast.js +++ b/apps/comments/l10n/ast.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Más comentarios...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "{count} caráuteres almitíos de {max}", - "Error occurred while retrieving comment with id {id}" : "Asocedió un fallu entrín se recibía'l comentariu cola ID {id}", "Error occurred while updating comment with id {id}" : "Asocedió un fallu entrín s'anovaba'l comentariu cola ID {id}", "Error occurred while posting comment" : "Asocedieron fallos entrín s'espublizaba'l comentariu", "_%n unread comment_::_%n unread comments_" : ["%n comentariu ensin lleer","%n comentarios ensin lleer"], diff --git a/apps/comments/l10n/ast.json b/apps/comments/l10n/ast.json index 9027a3c5f86fa..522bbdc629e68 100644 --- a/apps/comments/l10n/ast.json +++ b/apps/comments/l10n/ast.json @@ -10,7 +10,6 @@ "More comments …" : "Más comentarios...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "{count} caráuteres almitíos de {max}", - "Error occurred while retrieving comment with id {id}" : "Asocedió un fallu entrín se recibía'l comentariu cola ID {id}", "Error occurred while updating comment with id {id}" : "Asocedió un fallu entrín s'anovaba'l comentariu cola ID {id}", "Error occurred while posting comment" : "Asocedieron fallos entrín s'espublizaba'l comentariu", "_%n unread comment_::_%n unread comments_" : ["%n comentariu ensin lleer","%n comentarios ensin lleer"], diff --git a/apps/comments/l10n/bg.js b/apps/comments/l10n/bg.js index ee323661bf0b2..e56ee0d302ab5 100644 --- a/apps/comments/l10n/bg.js +++ b/apps/comments/l10n/bg.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Още коментари...", "Save" : "Запазване", "Allowed characters {count} of {max}" : "Позволени символи {count} от {max}", - "Error occurred while retrieving comment with id {id}" : "Възникна грешка по време на извличане на коментар с код {id}", "Error occurred while updating comment with id {id}" : "Възникна грешка по време на обновяване на коментар с код {id}", "Error occurred while posting comment" : "Възникна грешка по време на изпращане на коментар", "_%n unread comment_::_%n unread comments_" : ["%n непрочетен коментар","%n непрочетени коментари"], @@ -25,6 +24,8 @@ OC.L10N.register( "%1$s commented on %2$s" : "%1$s коментиран за %2$s", "{author} commented on {file}" : "{author} коментира за {file}", "Comments for files" : "Коментари за файлове", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Бяхте споменат/а на “%s”, в коментар от потребител, който вече е изтрит", + "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Бяхте споменат/а към “{file}”, в коментар от потребител, който вече е изтрит", "%1$s mentioned you in a comment on “%2$s”" : "%1$s те спомена в коментар за “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} те спомена в коментар за “{file}”", "Unknown user" : "Непознат потребител", diff --git a/apps/comments/l10n/bg.json b/apps/comments/l10n/bg.json index 21d84ad2b00f7..2b6c8f59cbffa 100644 --- a/apps/comments/l10n/bg.json +++ b/apps/comments/l10n/bg.json @@ -10,7 +10,6 @@ "More comments …" : "Още коментари...", "Save" : "Запазване", "Allowed characters {count} of {max}" : "Позволени символи {count} от {max}", - "Error occurred while retrieving comment with id {id}" : "Възникна грешка по време на извличане на коментар с код {id}", "Error occurred while updating comment with id {id}" : "Възникна грешка по време на обновяване на коментар с код {id}", "Error occurred while posting comment" : "Възникна грешка по време на изпращане на коментар", "_%n unread comment_::_%n unread comments_" : ["%n непрочетен коментар","%n непрочетени коментари"], @@ -23,6 +22,8 @@ "%1$s commented on %2$s" : "%1$s коментиран за %2$s", "{author} commented on {file}" : "{author} коментира за {file}", "Comments for files" : "Коментари за файлове", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Бяхте споменат/а на “%s”, в коментар от потребител, който вече е изтрит", + "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Бяхте споменат/а към “{file}”, в коментар от потребител, който вече е изтрит", "%1$s mentioned you in a comment on “%2$s”" : "%1$s те спомена в коментар за “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} те спомена в коментар за “{file}”", "Unknown user" : "Непознат потребител", diff --git a/apps/comments/l10n/ca.js b/apps/comments/l10n/ca.js index d798017ef7580..1fd848743a9c7 100644 --- a/apps/comments/l10n/ca.js +++ b/apps/comments/l10n/ca.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Més comentaris...", "Save" : "Desa", "Allowed characters {count} of {max}" : "{count} caràcters permesos de {max}", - "Error occurred while retrieving comment with id {id}" : "Hi ha hagut un error en extraure el comentari amb id {id}", "Error occurred while updating comment with id {id}" : "Hi ha hagut un error en actualitzar el comentari amb id {id}", "Error occurred while posting comment" : "Hi ha hagut un error en publicar el comentari", "_%n unread comment_::_%n unread comments_" : ["%n comentari no llegit","%n comentaris no llegits"], @@ -25,6 +24,8 @@ OC.L10N.register( "%1$s commented on %2$s" : "%1$s ha comentat a %2$s", "{author} commented on {file}" : "{author} ha comentat a {file}", "Comments for files" : "Comentaris per arxius", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Has estat mencionat a \"%s\" en un comentari d'un usuari que ja no existeix", + "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Has estat mencionat a \"{file}\" en un comentari d'un usuari que ja no existeix", "%1$s mentioned you in a comment on “%2$s”" : "%1$s us ha nomenat en un comentari a “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} us ha nomenat en un comentari de “{file}”", "Unknown user" : "Usuari desconegut", diff --git a/apps/comments/l10n/ca.json b/apps/comments/l10n/ca.json index ed8005829c7f2..250e60e672932 100644 --- a/apps/comments/l10n/ca.json +++ b/apps/comments/l10n/ca.json @@ -10,7 +10,6 @@ "More comments …" : "Més comentaris...", "Save" : "Desa", "Allowed characters {count} of {max}" : "{count} caràcters permesos de {max}", - "Error occurred while retrieving comment with id {id}" : "Hi ha hagut un error en extraure el comentari amb id {id}", "Error occurred while updating comment with id {id}" : "Hi ha hagut un error en actualitzar el comentari amb id {id}", "Error occurred while posting comment" : "Hi ha hagut un error en publicar el comentari", "_%n unread comment_::_%n unread comments_" : ["%n comentari no llegit","%n comentaris no llegits"], @@ -23,6 +22,8 @@ "%1$s commented on %2$s" : "%1$s ha comentat a %2$s", "{author} commented on {file}" : "{author} ha comentat a {file}", "Comments for files" : "Comentaris per arxius", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Has estat mencionat a \"%s\" en un comentari d'un usuari que ja no existeix", + "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Has estat mencionat a \"{file}\" en un comentari d'un usuari que ja no existeix", "%1$s mentioned you in a comment on “%2$s”" : "%1$s us ha nomenat en un comentari a “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} us ha nomenat en un comentari de “{file}”", "Unknown user" : "Usuari desconegut", diff --git a/apps/comments/l10n/cs.js b/apps/comments/l10n/cs.js index 52785210636d1..a77a1486e3076 100644 --- a/apps/comments/l10n/cs.js +++ b/apps/comments/l10n/cs.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Více komentářů ...", "Save" : "Uložit", "Allowed characters {count} of {max}" : "Povolených znaků {count} z {max}", - "Error occurred while retrieving comment with id {id}" : "Došlo k chybě při načítání komentáře s id {id}", + "Error occurred while retrieving comment with ID {id}" : "Došlo k chybě při načítání komentáře s ID {id}", "Error occurred while updating comment with id {id}" : "Došlo k chybě při aktualizování komentáře s id {id}", "Error occurred while posting comment" : "Došlo k chybě při zveřejňování komentáře", "_%n unread comment_::_%n unread comments_" : ["%n nepřečtený komentář","%n nepřečtené komentáře","%n nepřečtených komentářů"], diff --git a/apps/comments/l10n/cs.json b/apps/comments/l10n/cs.json index 334ff58dd55e1..b7f4d51519517 100644 --- a/apps/comments/l10n/cs.json +++ b/apps/comments/l10n/cs.json @@ -10,7 +10,7 @@ "More comments …" : "Více komentářů ...", "Save" : "Uložit", "Allowed characters {count} of {max}" : "Povolených znaků {count} z {max}", - "Error occurred while retrieving comment with id {id}" : "Došlo k chybě při načítání komentáře s id {id}", + "Error occurred while retrieving comment with ID {id}" : "Došlo k chybě při načítání komentáře s ID {id}", "Error occurred while updating comment with id {id}" : "Došlo k chybě při aktualizování komentáře s id {id}", "Error occurred while posting comment" : "Došlo k chybě při zveřejňování komentáře", "_%n unread comment_::_%n unread comments_" : ["%n nepřečtený komentář","%n nepřečtené komentáře","%n nepřečtených komentářů"], diff --git a/apps/comments/l10n/da.js b/apps/comments/l10n/da.js index 8701bb639f170..68c6c85dccb46 100644 --- a/apps/comments/l10n/da.js +++ b/apps/comments/l10n/da.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Flere kommentarer...", "Save" : "Gem", "Allowed characters {count} of {max}" : "Tilladte tegn {count} af {max}", - "Error occurred while retrieving comment with id {id}" : "Der opstod fejl under hentning af kommentar med id {id}", "Error occurred while updating comment with id {id}" : "Der opstod fejl under opdatering af kommentar med id {id}", "Error occurred while posting comment" : "Der opstod fejl under indsendelse af kommentar", "_%n unread comment_::_%n unread comments_" : ["%n ulæst kommentar","%n ulæste kommentarer"], @@ -25,7 +24,7 @@ OC.L10N.register( "%1$s commented on %2$s" : "%1$s kommenterede %2$s", "{author} commented on {file}" : "{author} kommenterede {file}", "Comments for files" : "Kommentarer for filer", - "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Du blev nævnt i \"%s”, I en kommentar af en bruger der siden er blevet slettet", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Du blev nævnt i \"%s”, I en kommentar af en bruger der er blevet slettet efterfølgende", "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Du blev nævnt i \"{file}”, I en kommentar af en bruger der siden er blevet slettet", "%1$s mentioned you in a comment on “%2$s”" : "%1$s nævnte dig i en kommentarer på “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} nævnte dig i en kommentarer på \"{file}\"", diff --git a/apps/comments/l10n/da.json b/apps/comments/l10n/da.json index 2725cdb94a3da..e1017f927e77e 100644 --- a/apps/comments/l10n/da.json +++ b/apps/comments/l10n/da.json @@ -10,7 +10,6 @@ "More comments …" : "Flere kommentarer...", "Save" : "Gem", "Allowed characters {count} of {max}" : "Tilladte tegn {count} af {max}", - "Error occurred while retrieving comment with id {id}" : "Der opstod fejl under hentning af kommentar med id {id}", "Error occurred while updating comment with id {id}" : "Der opstod fejl under opdatering af kommentar med id {id}", "Error occurred while posting comment" : "Der opstod fejl under indsendelse af kommentar", "_%n unread comment_::_%n unread comments_" : ["%n ulæst kommentar","%n ulæste kommentarer"], @@ -23,7 +22,7 @@ "%1$s commented on %2$s" : "%1$s kommenterede %2$s", "{author} commented on {file}" : "{author} kommenterede {file}", "Comments for files" : "Kommentarer for filer", - "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Du blev nævnt i \"%s”, I en kommentar af en bruger der siden er blevet slettet", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Du blev nævnt i \"%s”, I en kommentar af en bruger der er blevet slettet efterfølgende", "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Du blev nævnt i \"{file}”, I en kommentar af en bruger der siden er blevet slettet", "%1$s mentioned you in a comment on “%2$s”" : "%1$s nævnte dig i en kommentarer på “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} nævnte dig i en kommentarer på \"{file}\"", diff --git a/apps/comments/l10n/de.js b/apps/comments/l10n/de.js index 9df6ee853f064..2d8dc9f322a6d 100644 --- a/apps/comments/l10n/de.js +++ b/apps/comments/l10n/de.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Weitere Kommentare…", "Save" : "Speichern", "Allowed characters {count} of {max}" : "Erlaubte Zeichen {count} von {max}", - "Error occurred while retrieving comment with id {id}" : "Es ist ein Fehler beim Empfangen des Kommentars mit der ID {id} aufgetreten", + "Error occurred while retrieving comment with ID {id}" : "Es ist ein Fehler beim Empfangen des Kommentars mit der ID {id} aufgetreten", "Error occurred while updating comment with id {id}" : "Es ist ein Fehler beim Aktualisieren des Kommentars mit der ID {id} aufgetreten", "Error occurred while posting comment" : "Es ist ein Fehler beim Veröffentlichen des Kommentars aufgetreten", "_%n unread comment_::_%n unread comments_" : ["%n ungelesener Kommentar","%n ungelesene Kommentare"], diff --git a/apps/comments/l10n/de.json b/apps/comments/l10n/de.json index 708267fc616ea..414e3cc7c07a0 100644 --- a/apps/comments/l10n/de.json +++ b/apps/comments/l10n/de.json @@ -10,7 +10,7 @@ "More comments …" : "Weitere Kommentare…", "Save" : "Speichern", "Allowed characters {count} of {max}" : "Erlaubte Zeichen {count} von {max}", - "Error occurred while retrieving comment with id {id}" : "Es ist ein Fehler beim Empfangen des Kommentars mit der ID {id} aufgetreten", + "Error occurred while retrieving comment with ID {id}" : "Es ist ein Fehler beim Empfangen des Kommentars mit der ID {id} aufgetreten", "Error occurred while updating comment with id {id}" : "Es ist ein Fehler beim Aktualisieren des Kommentars mit der ID {id} aufgetreten", "Error occurred while posting comment" : "Es ist ein Fehler beim Veröffentlichen des Kommentars aufgetreten", "_%n unread comment_::_%n unread comments_" : ["%n ungelesener Kommentar","%n ungelesene Kommentare"], diff --git a/apps/comments/l10n/de_DE.js b/apps/comments/l10n/de_DE.js index a2ef3431198fa..f9416b58739f7 100644 --- a/apps/comments/l10n/de_DE.js +++ b/apps/comments/l10n/de_DE.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Weitere Kommentare …", "Save" : "Speichern", "Allowed characters {count} of {max}" : "{count} von {max} Zeichen benutzt", - "Error occurred while retrieving comment with id {id}" : "Es ist ein Fehler beim Empfangen des Kommentars mit der ID {id} aufgetreten", + "Error occurred while retrieving comment with ID {id}" : "Es ist ein Fehler beim Empfangen des Kommentars mit der ID {id} aufgetreten", "Error occurred while updating comment with id {id}" : "Es ist ein Fehler beim Aktualisieren des Kommentars mit der ID {id} aufgetreten", "Error occurred while posting comment" : "Es ist ein Fehler beim Veröffentlichen des Kommentars aufgetreten", "_%n unread comment_::_%n unread comments_" : ["%n ungelesener Kommentar","%n ungelesene Kommentare"], diff --git a/apps/comments/l10n/de_DE.json b/apps/comments/l10n/de_DE.json index fb636bd95007f..20ba6e799325e 100644 --- a/apps/comments/l10n/de_DE.json +++ b/apps/comments/l10n/de_DE.json @@ -10,7 +10,7 @@ "More comments …" : "Weitere Kommentare …", "Save" : "Speichern", "Allowed characters {count} of {max}" : "{count} von {max} Zeichen benutzt", - "Error occurred while retrieving comment with id {id}" : "Es ist ein Fehler beim Empfangen des Kommentars mit der ID {id} aufgetreten", + "Error occurred while retrieving comment with ID {id}" : "Es ist ein Fehler beim Empfangen des Kommentars mit der ID {id} aufgetreten", "Error occurred while updating comment with id {id}" : "Es ist ein Fehler beim Aktualisieren des Kommentars mit der ID {id} aufgetreten", "Error occurred while posting comment" : "Es ist ein Fehler beim Veröffentlichen des Kommentars aufgetreten", "_%n unread comment_::_%n unread comments_" : ["%n ungelesener Kommentar","%n ungelesene Kommentare"], diff --git a/apps/comments/l10n/el.js b/apps/comments/l10n/el.js index 4a63e08b926b6..86b472e1ba1b5 100644 --- a/apps/comments/l10n/el.js +++ b/apps/comments/l10n/el.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Περισσότερα σχόλια ...", "Save" : "Αποθήκευση", "Allowed characters {count} of {max}" : "Επιτρεπόμενοι χαρακτήρες {count} από {max}", - "Error occurred while retrieving comment with id {id}" : "Ένα σφάλμα προέκυψε κατά την λήψη σχολίου με αναγνωριστικό {id}", "Error occurred while updating comment with id {id}" : "Ένα σφάλμα προέκυψε κατά την ενημέρωση του σχολίου με το αναγνωριστικό {id}", "Error occurred while posting comment" : "Ένα σφάλμα προέκυψε κατά την δημοσίευση σχολίου", "_%n unread comment_::_%n unread comments_" : ["%n αδιάβαστο σχόλιο","%n αδιάβαστα σχόλια"], diff --git a/apps/comments/l10n/el.json b/apps/comments/l10n/el.json index 0801a87b1032a..9401fdf12070b 100644 --- a/apps/comments/l10n/el.json +++ b/apps/comments/l10n/el.json @@ -10,7 +10,6 @@ "More comments …" : "Περισσότερα σχόλια ...", "Save" : "Αποθήκευση", "Allowed characters {count} of {max}" : "Επιτρεπόμενοι χαρακτήρες {count} από {max}", - "Error occurred while retrieving comment with id {id}" : "Ένα σφάλμα προέκυψε κατά την λήψη σχολίου με αναγνωριστικό {id}", "Error occurred while updating comment with id {id}" : "Ένα σφάλμα προέκυψε κατά την ενημέρωση του σχολίου με το αναγνωριστικό {id}", "Error occurred while posting comment" : "Ένα σφάλμα προέκυψε κατά την δημοσίευση σχολίου", "_%n unread comment_::_%n unread comments_" : ["%n αδιάβαστο σχόλιο","%n αδιάβαστα σχόλια"], diff --git a/apps/comments/l10n/en_GB.js b/apps/comments/l10n/en_GB.js index 20e3f12897eeb..00c7eadc8d662 100644 --- a/apps/comments/l10n/en_GB.js +++ b/apps/comments/l10n/en_GB.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "More comments …", "Save" : "Save", "Allowed characters {count} of {max}" : "Allowed characters: {count} of {max}", - "Error occurred while retrieving comment with id {id}" : "Error occurred while retrieving comment with id {id}", + "Error occurred while retrieving comment with ID {id}" : "Error occurred while retrieving comment with ID {id}", "Error occurred while updating comment with id {id}" : "Error occurred while updating comment with id {id}", "Error occurred while posting comment" : "Error occurred while posting comment", "_%n unread comment_::_%n unread comments_" : ["%n unread comment","%n unread comments"], diff --git a/apps/comments/l10n/en_GB.json b/apps/comments/l10n/en_GB.json index 284015bba526c..de9edd8a3cf09 100644 --- a/apps/comments/l10n/en_GB.json +++ b/apps/comments/l10n/en_GB.json @@ -10,7 +10,7 @@ "More comments …" : "More comments …", "Save" : "Save", "Allowed characters {count} of {max}" : "Allowed characters: {count} of {max}", - "Error occurred while retrieving comment with id {id}" : "Error occurred while retrieving comment with id {id}", + "Error occurred while retrieving comment with ID {id}" : "Error occurred while retrieving comment with ID {id}", "Error occurred while updating comment with id {id}" : "Error occurred while updating comment with id {id}", "Error occurred while posting comment" : "Error occurred while posting comment", "_%n unread comment_::_%n unread comments_" : ["%n unread comment","%n unread comments"], diff --git a/apps/comments/l10n/es.js b/apps/comments/l10n/es.js index 7b6ed49be1f8f..d856dd89bc819 100644 --- a/apps/comments/l10n/es.js +++ b/apps/comments/l10n/es.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se ha producido un error al recuperar el comentario con ID {id}", + "Error occurred while retrieving comment with ID {id}" : "Se ha producido un error al obtener el comentario con ID {id}", "Error occurred while updating comment with id {id}" : "Se ha producido un error al actualizar el comentario con ID {id}", "Error occurred while posting comment" : "Se ha producido un error al enviar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentario sin leer","%nComentarios no leídos"], diff --git a/apps/comments/l10n/es.json b/apps/comments/l10n/es.json index ef4a4e9d92371..a34ebb2c8cc92 100644 --- a/apps/comments/l10n/es.json +++ b/apps/comments/l10n/es.json @@ -10,7 +10,7 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se ha producido un error al recuperar el comentario con ID {id}", + "Error occurred while retrieving comment with ID {id}" : "Se ha producido un error al obtener el comentario con ID {id}", "Error occurred while updating comment with id {id}" : "Se ha producido un error al actualizar el comentario con ID {id}", "Error occurred while posting comment" : "Se ha producido un error al enviar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentario sin leer","%nComentarios no leídos"], diff --git a/apps/comments/l10n/es_419.js b/apps/comments/l10n/es_419.js index df46f2006af1e..b905f5dfed33f 100644 --- a/apps/comments/l10n/es_419.js +++ b/apps/comments/l10n/es_419.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_419.json b/apps/comments/l10n/es_419.json index d388b93cb6315..2bfc4db0f0fe8 100644 --- a/apps/comments/l10n/es_419.json +++ b/apps/comments/l10n/es_419.json @@ -10,7 +10,6 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_AR.js b/apps/comments/l10n/es_AR.js index f1df8024c17de..c8a3082af4578 100644 --- a/apps/comments/l10n/es_AR.js +++ b/apps/comments/l10n/es_AR.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} of {max}", - "Error occurred while retrieving comment with id {id}" : "Se ha producido un error al recuperar el comentario con id {id}", "Error occurred while updating comment with id {id}" : "Se ha producido un error al actualizar el comentario con id {id}", "Error occurred while posting comment" : "Se ha producido un error al publicar un comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_AR.json b/apps/comments/l10n/es_AR.json index 032f4a58f5a61..a10427cdb4dac 100644 --- a/apps/comments/l10n/es_AR.json +++ b/apps/comments/l10n/es_AR.json @@ -10,7 +10,6 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} of {max}", - "Error occurred while retrieving comment with id {id}" : "Se ha producido un error al recuperar el comentario con id {id}", "Error occurred while updating comment with id {id}" : "Se ha producido un error al actualizar el comentario con id {id}", "Error occurred while posting comment" : "Se ha producido un error al publicar un comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_CL.js b/apps/comments/l10n/es_CL.js index df46f2006af1e..b905f5dfed33f 100644 --- a/apps/comments/l10n/es_CL.js +++ b/apps/comments/l10n/es_CL.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_CL.json b/apps/comments/l10n/es_CL.json index d388b93cb6315..2bfc4db0f0fe8 100644 --- a/apps/comments/l10n/es_CL.json +++ b/apps/comments/l10n/es_CL.json @@ -10,7 +10,6 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_CO.js b/apps/comments/l10n/es_CO.js index df46f2006af1e..b905f5dfed33f 100644 --- a/apps/comments/l10n/es_CO.js +++ b/apps/comments/l10n/es_CO.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_CO.json b/apps/comments/l10n/es_CO.json index d388b93cb6315..2bfc4db0f0fe8 100644 --- a/apps/comments/l10n/es_CO.json +++ b/apps/comments/l10n/es_CO.json @@ -10,7 +10,6 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_CR.js b/apps/comments/l10n/es_CR.js index df46f2006af1e..b905f5dfed33f 100644 --- a/apps/comments/l10n/es_CR.js +++ b/apps/comments/l10n/es_CR.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_CR.json b/apps/comments/l10n/es_CR.json index d388b93cb6315..2bfc4db0f0fe8 100644 --- a/apps/comments/l10n/es_CR.json +++ b/apps/comments/l10n/es_CR.json @@ -10,7 +10,6 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_DO.js b/apps/comments/l10n/es_DO.js index df46f2006af1e..b905f5dfed33f 100644 --- a/apps/comments/l10n/es_DO.js +++ b/apps/comments/l10n/es_DO.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_DO.json b/apps/comments/l10n/es_DO.json index d388b93cb6315..2bfc4db0f0fe8 100644 --- a/apps/comments/l10n/es_DO.json +++ b/apps/comments/l10n/es_DO.json @@ -10,7 +10,6 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_EC.js b/apps/comments/l10n/es_EC.js index df46f2006af1e..b905f5dfed33f 100644 --- a/apps/comments/l10n/es_EC.js +++ b/apps/comments/l10n/es_EC.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_EC.json b/apps/comments/l10n/es_EC.json index d388b93cb6315..2bfc4db0f0fe8 100644 --- a/apps/comments/l10n/es_EC.json +++ b/apps/comments/l10n/es_EC.json @@ -10,7 +10,6 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_GT.js b/apps/comments/l10n/es_GT.js index df46f2006af1e..b905f5dfed33f 100644 --- a/apps/comments/l10n/es_GT.js +++ b/apps/comments/l10n/es_GT.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_GT.json b/apps/comments/l10n/es_GT.json index d388b93cb6315..2bfc4db0f0fe8 100644 --- a/apps/comments/l10n/es_GT.json +++ b/apps/comments/l10n/es_GT.json @@ -10,7 +10,6 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_HN.js b/apps/comments/l10n/es_HN.js index df46f2006af1e..b905f5dfed33f 100644 --- a/apps/comments/l10n/es_HN.js +++ b/apps/comments/l10n/es_HN.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_HN.json b/apps/comments/l10n/es_HN.json index d388b93cb6315..2bfc4db0f0fe8 100644 --- a/apps/comments/l10n/es_HN.json +++ b/apps/comments/l10n/es_HN.json @@ -10,7 +10,6 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_MX.js b/apps/comments/l10n/es_MX.js index df46f2006af1e..68fb3b824bfb3 100644 --- a/apps/comments/l10n/es_MX.js +++ b/apps/comments/l10n/es_MX.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", + "Error occurred while retrieving comment with ID {id}" : "Se presentó un error al recuperar el comentario con ID {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_MX.json b/apps/comments/l10n/es_MX.json index d388b93cb6315..5459b8d7bded9 100644 --- a/apps/comments/l10n/es_MX.json +++ b/apps/comments/l10n/es_MX.json @@ -10,7 +10,7 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", + "Error occurred while retrieving comment with ID {id}" : "Se presentó un error al recuperar el comentario con ID {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_NI.js b/apps/comments/l10n/es_NI.js index df46f2006af1e..b905f5dfed33f 100644 --- a/apps/comments/l10n/es_NI.js +++ b/apps/comments/l10n/es_NI.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_NI.json b/apps/comments/l10n/es_NI.json index d388b93cb6315..2bfc4db0f0fe8 100644 --- a/apps/comments/l10n/es_NI.json +++ b/apps/comments/l10n/es_NI.json @@ -10,7 +10,6 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_PA.js b/apps/comments/l10n/es_PA.js index df46f2006af1e..b905f5dfed33f 100644 --- a/apps/comments/l10n/es_PA.js +++ b/apps/comments/l10n/es_PA.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_PA.json b/apps/comments/l10n/es_PA.json index d388b93cb6315..2bfc4db0f0fe8 100644 --- a/apps/comments/l10n/es_PA.json +++ b/apps/comments/l10n/es_PA.json @@ -10,7 +10,6 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_PE.js b/apps/comments/l10n/es_PE.js index df46f2006af1e..b905f5dfed33f 100644 --- a/apps/comments/l10n/es_PE.js +++ b/apps/comments/l10n/es_PE.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_PE.json b/apps/comments/l10n/es_PE.json index d388b93cb6315..2bfc4db0f0fe8 100644 --- a/apps/comments/l10n/es_PE.json +++ b/apps/comments/l10n/es_PE.json @@ -10,7 +10,6 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_PR.js b/apps/comments/l10n/es_PR.js index df46f2006af1e..b905f5dfed33f 100644 --- a/apps/comments/l10n/es_PR.js +++ b/apps/comments/l10n/es_PR.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_PR.json b/apps/comments/l10n/es_PR.json index d388b93cb6315..2bfc4db0f0fe8 100644 --- a/apps/comments/l10n/es_PR.json +++ b/apps/comments/l10n/es_PR.json @@ -10,7 +10,6 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_PY.js b/apps/comments/l10n/es_PY.js index df46f2006af1e..b905f5dfed33f 100644 --- a/apps/comments/l10n/es_PY.js +++ b/apps/comments/l10n/es_PY.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_PY.json b/apps/comments/l10n/es_PY.json index d388b93cb6315..2bfc4db0f0fe8 100644 --- a/apps/comments/l10n/es_PY.json +++ b/apps/comments/l10n/es_PY.json @@ -10,7 +10,6 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_SV.js b/apps/comments/l10n/es_SV.js index df46f2006af1e..b905f5dfed33f 100644 --- a/apps/comments/l10n/es_SV.js +++ b/apps/comments/l10n/es_SV.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_SV.json b/apps/comments/l10n/es_SV.json index d388b93cb6315..2bfc4db0f0fe8 100644 --- a/apps/comments/l10n/es_SV.json +++ b/apps/comments/l10n/es_SV.json @@ -10,7 +10,6 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_UY.js b/apps/comments/l10n/es_UY.js index df46f2006af1e..b905f5dfed33f 100644 --- a/apps/comments/l10n/es_UY.js +++ b/apps/comments/l10n/es_UY.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/es_UY.json b/apps/comments/l10n/es_UY.json index d388b93cb6315..2bfc4db0f0fe8 100644 --- a/apps/comments/l10n/es_UY.json +++ b/apps/comments/l10n/es_UY.json @@ -10,7 +10,6 @@ "More comments …" : "Más comentarios ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Se presentó un error al recuperar el comentario con Id {id}", "Error occurred while updating comment with id {id}" : "Se presentó un error al actualizar el comentario con Id {id}", "Error occurred while posting comment" : "Se presentó un error al publicar el comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentarios sin leer","%n comentarios sin leer"], diff --git a/apps/comments/l10n/et_EE.js b/apps/comments/l10n/et_EE.js index 952ac372a3d6c..fbdef876dc736 100644 --- a/apps/comments/l10n/et_EE.js +++ b/apps/comments/l10n/et_EE.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Veel kommentaare ...", "Save" : "Salvesta", "Allowed characters {count} of {max}" : "Lubatud märkide arv {count}/{max}", - "Error occurred while retrieving comment with id {id}" : "Kommentaari {id} laadimisel tekkis tõrge", "Error occurred while updating comment with id {id}" : "Kommentaari {id} uuendamisel tekkis tõrge", "Error occurred while posting comment" : "Viga kommentaari postitamisel", "_%n unread comment_::_%n unread comments_" : ["%n lugemata kommentaar","%n lugemata kommentaari"], diff --git a/apps/comments/l10n/et_EE.json b/apps/comments/l10n/et_EE.json index abe05a2eb81f8..b51f3d9c9136b 100644 --- a/apps/comments/l10n/et_EE.json +++ b/apps/comments/l10n/et_EE.json @@ -10,7 +10,6 @@ "More comments …" : "Veel kommentaare ...", "Save" : "Salvesta", "Allowed characters {count} of {max}" : "Lubatud märkide arv {count}/{max}", - "Error occurred while retrieving comment with id {id}" : "Kommentaari {id} laadimisel tekkis tõrge", "Error occurred while updating comment with id {id}" : "Kommentaari {id} uuendamisel tekkis tõrge", "Error occurred while posting comment" : "Viga kommentaari postitamisel", "_%n unread comment_::_%n unread comments_" : ["%n lugemata kommentaar","%n lugemata kommentaari"], diff --git a/apps/comments/l10n/eu.js b/apps/comments/l10n/eu.js index aa2a3711acd83..21a8f4b7ec6cb 100644 --- a/apps/comments/l10n/eu.js +++ b/apps/comments/l10n/eu.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Iruzkin gehiago...", "Save" : "Gorde", "Allowed characters {count} of {max}" : "Onartutako karaktereak {max}-tik {count}", - "Error occurred while retrieving comment with id {id}" : "Akatsa gertatu da {id} id duen iruzkina berreskuratzerakoan", "Error occurred while updating comment with id {id}" : "Akats bat gertatu da {id} id duen iruzkina aldatzerakoan", "Error occurred while posting comment" : "Akats bat gertatu da iruzkina bidaltzerakoan", "_%n unread comment_::_%n unread comments_" : ["iruzkin %n irakurri gabe","%n iruzkin irakurri gabe"], diff --git a/apps/comments/l10n/eu.json b/apps/comments/l10n/eu.json index 2fdafcf45fc76..3f3eacd5e2ecf 100644 --- a/apps/comments/l10n/eu.json +++ b/apps/comments/l10n/eu.json @@ -10,7 +10,6 @@ "More comments …" : "Iruzkin gehiago...", "Save" : "Gorde", "Allowed characters {count} of {max}" : "Onartutako karaktereak {max}-tik {count}", - "Error occurred while retrieving comment with id {id}" : "Akatsa gertatu da {id} id duen iruzkina berreskuratzerakoan", "Error occurred while updating comment with id {id}" : "Akats bat gertatu da {id} id duen iruzkina aldatzerakoan", "Error occurred while posting comment" : "Akats bat gertatu da iruzkina bidaltzerakoan", "_%n unread comment_::_%n unread comments_" : ["iruzkin %n irakurri gabe","%n iruzkin irakurri gabe"], diff --git a/apps/comments/l10n/fi.js b/apps/comments/l10n/fi.js index 20389f92707f1..c82bd4c934e58 100644 --- a/apps/comments/l10n/fi.js +++ b/apps/comments/l10n/fi.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Lisää kommentteja…", "Save" : "Tallenna", "Allowed characters {count} of {max}" : "Sallittujen merkkien määrä {count}/{max}", - "Error occurred while retrieving comment with id {id}" : "Virhe noutaessa kommenttia tunnisteella {id}", + "Error occurred while retrieving comment with ID {id}" : "Virhe haettaessa kommenttia tunnisteella {id}", "Error occurred while updating comment with id {id}" : "Virhe päivittäessä kommenttia tunnisteella {id}", "Error occurred while posting comment" : "Virhe kommenttia lähettäessä", "_%n unread comment_::_%n unread comments_" : ["%n lukematon kommentti","%n lukematonta kommenttia"], @@ -25,6 +25,7 @@ OC.L10N.register( "%1$s commented on %2$s" : "%1$s kommentoi kohdetta %2$s", "{author} commented on {file}" : "{author} kommentoi tiedostoa {file}", "Comments for files" : "Tiedostojen kommentit", + "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Sinut mainittiin tiedoston “{file}” kommentissa käyttäjän toimesta, joka on sittemmin poistettu", "%1$s mentioned you in a comment on “%2$s”" : "%1$s mainitsi sinut kommentissa “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} mainitsi sinut tiedoston \"{file}\" kommentissa", "Unknown user" : "Tuntematon käyttäjä", diff --git a/apps/comments/l10n/fi.json b/apps/comments/l10n/fi.json index 6d92e0d4be27e..cb1e7fcccbe8f 100644 --- a/apps/comments/l10n/fi.json +++ b/apps/comments/l10n/fi.json @@ -10,7 +10,7 @@ "More comments …" : "Lisää kommentteja…", "Save" : "Tallenna", "Allowed characters {count} of {max}" : "Sallittujen merkkien määrä {count}/{max}", - "Error occurred while retrieving comment with id {id}" : "Virhe noutaessa kommenttia tunnisteella {id}", + "Error occurred while retrieving comment with ID {id}" : "Virhe haettaessa kommenttia tunnisteella {id}", "Error occurred while updating comment with id {id}" : "Virhe päivittäessä kommenttia tunnisteella {id}", "Error occurred while posting comment" : "Virhe kommenttia lähettäessä", "_%n unread comment_::_%n unread comments_" : ["%n lukematon kommentti","%n lukematonta kommenttia"], @@ -23,6 +23,7 @@ "%1$s commented on %2$s" : "%1$s kommentoi kohdetta %2$s", "{author} commented on {file}" : "{author} kommentoi tiedostoa {file}", "Comments for files" : "Tiedostojen kommentit", + "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Sinut mainittiin tiedoston “{file}” kommentissa käyttäjän toimesta, joka on sittemmin poistettu", "%1$s mentioned you in a comment on “%2$s”" : "%1$s mainitsi sinut kommentissa “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} mainitsi sinut tiedoston \"{file}\" kommentissa", "Unknown user" : "Tuntematon käyttäjä", diff --git a/apps/comments/l10n/fr.js b/apps/comments/l10n/fr.js index 3a0fa3cbc9a16..b07f6a1b128ff 100644 --- a/apps/comments/l10n/fr.js +++ b/apps/comments/l10n/fr.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Plus de commentaires ...", "Save" : "Enregistrer", "Allowed characters {count} of {max}" : "{count} sur {max} caractères autorisés", - "Error occurred while retrieving comment with id {id}" : "Une erreur est survenue lors de la récupération du commentaire avec l'id {id}", + "Error occurred while retrieving comment with ID {id}" : "Une erreur est survenue lors de la récupération du commentaire avec l'ID {id}", "Error occurred while updating comment with id {id}" : "Une erreur est survenue lors de la mise à jour du commentaire avec l'id {id}", "Error occurred while posting comment" : "Une erreur est survenue lors de l'envoi du commentaire", "_%n unread comment_::_%n unread comments_" : ["%n commentaire non lu","%n commentaires non lus"], diff --git a/apps/comments/l10n/fr.json b/apps/comments/l10n/fr.json index 8c66c7b6c0977..70617d283ab43 100644 --- a/apps/comments/l10n/fr.json +++ b/apps/comments/l10n/fr.json @@ -10,7 +10,7 @@ "More comments …" : "Plus de commentaires ...", "Save" : "Enregistrer", "Allowed characters {count} of {max}" : "{count} sur {max} caractères autorisés", - "Error occurred while retrieving comment with id {id}" : "Une erreur est survenue lors de la récupération du commentaire avec l'id {id}", + "Error occurred while retrieving comment with ID {id}" : "Une erreur est survenue lors de la récupération du commentaire avec l'ID {id}", "Error occurred while updating comment with id {id}" : "Une erreur est survenue lors de la mise à jour du commentaire avec l'id {id}", "Error occurred while posting comment" : "Une erreur est survenue lors de l'envoi du commentaire", "_%n unread comment_::_%n unread comments_" : ["%n commentaire non lu","%n commentaires non lus"], diff --git a/apps/comments/l10n/gl.js b/apps/comments/l10n/gl.js index f151a238db42d..19dbf932dd42a 100644 --- a/apps/comments/l10n/gl.js +++ b/apps/comments/l10n/gl.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Máis comentarios …", "Save" : "Gardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Produciuse un erro ao recuperar o comentario co ID {id}", "Error occurred while updating comment with id {id}" : "Produciuse un erro ao actualizar o comentario co ID {id}", "Error occurred while posting comment" : "Produciuse un erro ao publicar o comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentario sen ler","%n comentarios sen ler"], diff --git a/apps/comments/l10n/gl.json b/apps/comments/l10n/gl.json index 54864e6710c83..c1fe4c0c2c038 100644 --- a/apps/comments/l10n/gl.json +++ b/apps/comments/l10n/gl.json @@ -10,7 +10,6 @@ "More comments …" : "Máis comentarios …", "Save" : "Gardar", "Allowed characters {count} of {max}" : "Caracteres permitidos {count} de {max}", - "Error occurred while retrieving comment with id {id}" : "Produciuse un erro ao recuperar o comentario co ID {id}", "Error occurred while updating comment with id {id}" : "Produciuse un erro ao actualizar o comentario co ID {id}", "Error occurred while posting comment" : "Produciuse un erro ao publicar o comentario", "_%n unread comment_::_%n unread comments_" : ["%n comentario sen ler","%n comentarios sen ler"], diff --git a/apps/comments/l10n/he.js b/apps/comments/l10n/he.js index d21f53e4326f1..7b4fad58ca210 100644 --- a/apps/comments/l10n/he.js +++ b/apps/comments/l10n/he.js @@ -1,25 +1,36 @@ OC.L10N.register( "comments", { + "Comments" : "תגובות", + "New comment …" : "תגובה חדשה", "Delete comment" : "מחיקת תגובה", "Post" : "פרסום", "Cancel" : "ביטול", "Edit comment" : "עריכת תגובה", "[Deleted user]" : "[משתמשים מוסרים]", - "Comments" : "תגובות", + "No comments yet, start the conversation!" : "אין תגובות עדיין, בואו נתחיל לקשקש!", + "More comments …" : "תגובות נוספות…", "Save" : "שמירה", "Allowed characters {count} of {max}" : "תווים מותרים {count} מתוך {max}", - "Error occurred while retrieving comment with id {id}" : "שגיאה אירעה כאשר אוחזרה תגובה עם מספר זיהוי {id}", + "Error occurred while retrieving comment with ID {id}" : "אירעה שגיאה בעת קבלת התגובה עם המזהה {id}", "Error occurred while updating comment with id {id}" : "שגיאה אירעה כאשר עודכנה תגובה עם מספר זיהוי {id}", "Error occurred while posting comment" : "אירעה שגיאה בזמן פרסום תגובה", + "_%n unread comment_::_%n unread comments_" : ["תגובה אחת שלא נקראה","%n תגובות שלא נקראו"], "Comment" : "תגובה", "You commented" : "הערות שלך", "%1$s commented" : "התקבלו תגובות %1$s", - "You commented on %2$s" : "הערות שלך ב- %2$s", + "{author} commented" : "התקבלה תגובה מאת {author}", + "You commented on %1$s" : "הגבת על %1$s", + "You commented on {file}" : "הגבת על {file}", "%1$s commented on %2$s" : "התקבלו תגובות %1$s ב- %2$s ", - "Type in a new comment..." : "יש להכניס תגובה חדשה...", - "No other comments available" : "אין תגובות אחרות זמינות", - "More comments..." : "תגובות נוספות...", - "{count} unread comments" : "{count} תגובות שלא נקראו" + "{author} commented on {file}" : "נוספה תגובה על {file} מאת {author}", + "Comments for files" : "תגובות על קבצים", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "אוזכרת ב־„%s”, בתגובה על ידי משתמש שנמחק בינתיים.", + "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "אוזכרת ב־„{file}”, בתגובה של משתמש שנמחק בינתיים.", + "%1$s mentioned you in a comment on “%2$s”" : "אוזכרת על ידי %1$s בתגובה על „%2$s”", + "{user} mentioned you in a comment on “{file}”" : "אוזכרת על ידי „{user}” בתגובה על „{file}”", + "Unknown user" : "משתמש לא ידוע", + "A (now) deleted user mentioned you in a comment on “%s”" : "אוזכרת על ידי משתמש שנמחק (נכון לעכשיו) בתגובה על „%s”", + "A (now) deleted user mentioned you in a comment on “{file}”" : "אוזכרת על ידי משתמש שנמחק (נכון לעכשיו) בתגובה על „{file}”" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/comments/l10n/he.json b/apps/comments/l10n/he.json index 5cf6472acb0a7..30f07bf52685f 100644 --- a/apps/comments/l10n/he.json +++ b/apps/comments/l10n/he.json @@ -1,23 +1,34 @@ { "translations": { + "Comments" : "תגובות", + "New comment …" : "תגובה חדשה", "Delete comment" : "מחיקת תגובה", "Post" : "פרסום", "Cancel" : "ביטול", "Edit comment" : "עריכת תגובה", "[Deleted user]" : "[משתמשים מוסרים]", - "Comments" : "תגובות", + "No comments yet, start the conversation!" : "אין תגובות עדיין, בואו נתחיל לקשקש!", + "More comments …" : "תגובות נוספות…", "Save" : "שמירה", "Allowed characters {count} of {max}" : "תווים מותרים {count} מתוך {max}", - "Error occurred while retrieving comment with id {id}" : "שגיאה אירעה כאשר אוחזרה תגובה עם מספר זיהוי {id}", + "Error occurred while retrieving comment with ID {id}" : "אירעה שגיאה בעת קבלת התגובה עם המזהה {id}", "Error occurred while updating comment with id {id}" : "שגיאה אירעה כאשר עודכנה תגובה עם מספר זיהוי {id}", "Error occurred while posting comment" : "אירעה שגיאה בזמן פרסום תגובה", + "_%n unread comment_::_%n unread comments_" : ["תגובה אחת שלא נקראה","%n תגובות שלא נקראו"], "Comment" : "תגובה", "You commented" : "הערות שלך", "%1$s commented" : "התקבלו תגובות %1$s", - "You commented on %2$s" : "הערות שלך ב- %2$s", + "{author} commented" : "התקבלה תגובה מאת {author}", + "You commented on %1$s" : "הגבת על %1$s", + "You commented on {file}" : "הגבת על {file}", "%1$s commented on %2$s" : "התקבלו תגובות %1$s ב- %2$s ", - "Type in a new comment..." : "יש להכניס תגובה חדשה...", - "No other comments available" : "אין תגובות אחרות זמינות", - "More comments..." : "תגובות נוספות...", - "{count} unread comments" : "{count} תגובות שלא נקראו" + "{author} commented on {file}" : "נוספה תגובה על {file} מאת {author}", + "Comments for files" : "תגובות על קבצים", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "אוזכרת ב־„%s”, בתגובה על ידי משתמש שנמחק בינתיים.", + "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "אוזכרת ב־„{file}”, בתגובה של משתמש שנמחק בינתיים.", + "%1$s mentioned you in a comment on “%2$s”" : "אוזכרת על ידי %1$s בתגובה על „%2$s”", + "{user} mentioned you in a comment on “{file}”" : "אוזכרת על ידי „{user}” בתגובה על „{file}”", + "Unknown user" : "משתמש לא ידוע", + "A (now) deleted user mentioned you in a comment on “%s”" : "אוזכרת על ידי משתמש שנמחק (נכון לעכשיו) בתגובה על „%s”", + "A (now) deleted user mentioned you in a comment on “{file}”" : "אוזכרת על ידי משתמש שנמחק (נכון לעכשיו) בתגובה על „{file}”" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/comments/l10n/hu.js b/apps/comments/l10n/hu.js index cb85eadb03730..71daf196ed092 100644 --- a/apps/comments/l10n/hu.js +++ b/apps/comments/l10n/hu.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Több hozzászólás...", "Save" : "Mentés", "Allowed characters {count} of {max}" : "Engedélyezett karakterek: {count} / {max}", - "Error occurred while retrieving comment with id {id}" : "Hiba a következő azonosítójú hozzászólás letöltése közben: {id}", + "Error occurred while retrieving comment with ID {id}" : "Hiba a {id} számú komment betöltésekor", "Error occurred while updating comment with id {id}" : "Hiba a következő azonosítójú hozzászólás frissítése közben: {id}", "Error occurred while posting comment" : "Hiba történt a hozzászólás küldése közben", "_%n unread comment_::_%n unread comments_" : ["%n olvasatlan hozzászólás","%n olvasatlan hozzászólás"], diff --git a/apps/comments/l10n/hu.json b/apps/comments/l10n/hu.json index e29d12e208196..6af34cdd4105e 100644 --- a/apps/comments/l10n/hu.json +++ b/apps/comments/l10n/hu.json @@ -10,7 +10,7 @@ "More comments …" : "Több hozzászólás...", "Save" : "Mentés", "Allowed characters {count} of {max}" : "Engedélyezett karakterek: {count} / {max}", - "Error occurred while retrieving comment with id {id}" : "Hiba a következő azonosítójú hozzászólás letöltése közben: {id}", + "Error occurred while retrieving comment with ID {id}" : "Hiba a {id} számú komment betöltésekor", "Error occurred while updating comment with id {id}" : "Hiba a következő azonosítójú hozzászólás frissítése közben: {id}", "Error occurred while posting comment" : "Hiba történt a hozzászólás küldése közben", "_%n unread comment_::_%n unread comments_" : ["%n olvasatlan hozzászólás","%n olvasatlan hozzászólás"], diff --git a/apps/comments/l10n/ia.js b/apps/comments/l10n/ia.js index 923ad29981169..93fdb1cfd731b 100644 --- a/apps/comments/l10n/ia.js +++ b/apps/comments/l10n/ia.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Plus commentarios ...", "Save" : "Salveguardar", "Allowed characters {count} of {max}" : "{count} characteres permittite de {max}", - "Error occurred while retrieving comment with id {id}" : "Un error occurreva durante le recuperation del commentario identificate per {id}", "Error occurred while updating comment with id {id}" : "Un error occurreva durante le actualisation del commentario identificate per {id}", "Error occurred while posting comment" : "Un error occurreva durante le publication del commentario", "_%n unread comment_::_%n unread comments_" : ["%n commentario non legite","%n commentarios non legite"], diff --git a/apps/comments/l10n/ia.json b/apps/comments/l10n/ia.json index 66fa31cf90c8b..3ea4e588bd1fa 100644 --- a/apps/comments/l10n/ia.json +++ b/apps/comments/l10n/ia.json @@ -10,7 +10,6 @@ "More comments …" : "Plus commentarios ...", "Save" : "Salveguardar", "Allowed characters {count} of {max}" : "{count} characteres permittite de {max}", - "Error occurred while retrieving comment with id {id}" : "Un error occurreva durante le recuperation del commentario identificate per {id}", "Error occurred while updating comment with id {id}" : "Un error occurreva durante le actualisation del commentario identificate per {id}", "Error occurred while posting comment" : "Un error occurreva durante le publication del commentario", "_%n unread comment_::_%n unread comments_" : ["%n commentario non legite","%n commentarios non legite"], diff --git a/apps/comments/l10n/is.js b/apps/comments/l10n/is.js index d86c4ecf0d92b..3f8919db95646 100644 --- a/apps/comments/l10n/is.js +++ b/apps/comments/l10n/is.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Fleiri athugasemdir ...", "Save" : "Vista", "Allowed characters {count} of {max}" : "Leyfður stafafjöldi {count} af {max}", - "Error occurred while retrieving comment with id {id}" : "Villa kom upp við að reyna að ná í athugasemd með auðkenninu {id}", + "Error occurred while retrieving comment with ID {id}" : "Villa kom upp við að reyna að ná í ummæli með auðkenninu {id}", "Error occurred while updating comment with id {id}" : "Villa kom upp við að reyna að uppfæra athugasemd með auðkenninu {id}", "Error occurred while posting comment" : "Villa kom upp við að senda inn athugasemd", "_%n unread comment_::_%n unread comments_" : ["%n ólesin athugasemd","%n ólesnar athugasemdir"], @@ -25,6 +25,8 @@ OC.L10N.register( "%1$s commented on %2$s" : "%1$s setti inn athugasemd um %2$s", "{author} commented on {file}" : "{author} setti inn athugasemd við {file}", "Comments for files" : "Athugasemdir við skrár", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Minnst var á þig í “%s”, í athugasemd frá notanda sem síðan þá hefur verið eytt", + "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Minnst var á þig í “{file}”, í athugasemd frá notanda sem síðan þá hefur verið eytt", "%1$s mentioned you in a comment on “%2$s”" : "%1$s minntist á þig í athugasemd við “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} minntist á þig í athugasemd við “{file}”", "Unknown user" : "Óþekktur notandi", diff --git a/apps/comments/l10n/is.json b/apps/comments/l10n/is.json index 32650436cca9b..31447ef968917 100644 --- a/apps/comments/l10n/is.json +++ b/apps/comments/l10n/is.json @@ -10,7 +10,7 @@ "More comments …" : "Fleiri athugasemdir ...", "Save" : "Vista", "Allowed characters {count} of {max}" : "Leyfður stafafjöldi {count} af {max}", - "Error occurred while retrieving comment with id {id}" : "Villa kom upp við að reyna að ná í athugasemd með auðkenninu {id}", + "Error occurred while retrieving comment with ID {id}" : "Villa kom upp við að reyna að ná í ummæli með auðkenninu {id}", "Error occurred while updating comment with id {id}" : "Villa kom upp við að reyna að uppfæra athugasemd með auðkenninu {id}", "Error occurred while posting comment" : "Villa kom upp við að senda inn athugasemd", "_%n unread comment_::_%n unread comments_" : ["%n ólesin athugasemd","%n ólesnar athugasemdir"], @@ -23,6 +23,8 @@ "%1$s commented on %2$s" : "%1$s setti inn athugasemd um %2$s", "{author} commented on {file}" : "{author} setti inn athugasemd við {file}", "Comments for files" : "Athugasemdir við skrár", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Minnst var á þig í “%s”, í athugasemd frá notanda sem síðan þá hefur verið eytt", + "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Minnst var á þig í “{file}”, í athugasemd frá notanda sem síðan þá hefur verið eytt", "%1$s mentioned you in a comment on “%2$s”" : "%1$s minntist á þig í athugasemd við “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} minntist á þig í athugasemd við “{file}”", "Unknown user" : "Óþekktur notandi", diff --git a/apps/comments/l10n/it.js b/apps/comments/l10n/it.js index eb51fb31e1073..74c5fb03d689f 100644 --- a/apps/comments/l10n/it.js +++ b/apps/comments/l10n/it.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Altri commenti...", "Save" : "Salva", "Allowed characters {count} of {max}" : "Caratteri consentiti {count} di {max}", - "Error occurred while retrieving comment with id {id}" : "Si è verificato un errore durante il tentativo di recupero del commento con id {id}", + "Error occurred while retrieving comment with ID {id}" : "Si è verificato un errore durante il recupero del commento con ID {id}", "Error occurred while updating comment with id {id}" : "Si è verificato un errore durante il tentativo di aggiornamento del commento con id {id}", "Error occurred while posting comment" : "Si è verificato un errore durante la pubblicazione del commento.", "_%n unread comment_::_%n unread comments_" : ["%n commento non letto","%n commenti non letti"], diff --git a/apps/comments/l10n/it.json b/apps/comments/l10n/it.json index 818f79b01f8c5..f2eef0cefc4f6 100644 --- a/apps/comments/l10n/it.json +++ b/apps/comments/l10n/it.json @@ -10,7 +10,7 @@ "More comments …" : "Altri commenti...", "Save" : "Salva", "Allowed characters {count} of {max}" : "Caratteri consentiti {count} di {max}", - "Error occurred while retrieving comment with id {id}" : "Si è verificato un errore durante il tentativo di recupero del commento con id {id}", + "Error occurred while retrieving comment with ID {id}" : "Si è verificato un errore durante il recupero del commento con ID {id}", "Error occurred while updating comment with id {id}" : "Si è verificato un errore durante il tentativo di aggiornamento del commento con id {id}", "Error occurred while posting comment" : "Si è verificato un errore durante la pubblicazione del commento.", "_%n unread comment_::_%n unread comments_" : ["%n commento non letto","%n commenti non letti"], diff --git a/apps/comments/l10n/ja.js b/apps/comments/l10n/ja.js index afe78324645e4..7423cbbb6f0a4 100644 --- a/apps/comments/l10n/ja.js +++ b/apps/comments/l10n/ja.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "その他のコメント...", "Save" : "保存", "Allowed characters {count} of {max}" : "入力文字数 {count} / {max}", - "Error occurred while retrieving comment with id {id}" : "コメントID {id} のコメントを取得する際にエラーが発生", "Error occurred while updating comment with id {id}" : "コメントID {id} のコメントをアップロードする際にエラーが発生", "Error occurred while posting comment" : "コメント投稿時にエラーが発生", "_%n unread comment_::_%n unread comments_" : ["%n の未読のコメント"], diff --git a/apps/comments/l10n/ja.json b/apps/comments/l10n/ja.json index 5faf8d6f95fa1..8705164e09347 100644 --- a/apps/comments/l10n/ja.json +++ b/apps/comments/l10n/ja.json @@ -10,7 +10,6 @@ "More comments …" : "その他のコメント...", "Save" : "保存", "Allowed characters {count} of {max}" : "入力文字数 {count} / {max}", - "Error occurred while retrieving comment with id {id}" : "コメントID {id} のコメントを取得する際にエラーが発生", "Error occurred while updating comment with id {id}" : "コメントID {id} のコメントをアップロードする際にエラーが発生", "Error occurred while posting comment" : "コメント投稿時にエラーが発生", "_%n unread comment_::_%n unread comments_" : ["%n の未読のコメント"], diff --git a/apps/comments/l10n/ka_GE.js b/apps/comments/l10n/ka_GE.js index 8b70a2d2243a1..d3d27b4c97266 100644 --- a/apps/comments/l10n/ka_GE.js +++ b/apps/comments/l10n/ka_GE.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "მეტი კომენტარი ...", "Save" : "შენახვა", "Allowed characters {count} of {max}" : "დაშვებული სიმბოლოები {count} {max}-იდან", - "Error occurred while retrieving comment with id {id}" : "კომენტარის id-ით {id}-ის მიღებისას წარმოიშვა შეცდომა", "Error occurred while updating comment with id {id}" : "კომენტარის id-იდ {id}-ის ცვლილებისას წარმოიშვა შეცდომა", "Error occurred while posting comment" : "კომენტარის გამოქვეყნებისას წარმოიშვა შეცდომა", "_%n unread comment_::_%n unread comments_" : ["%n წაუკუთხავი კომენტარი"], diff --git a/apps/comments/l10n/ka_GE.json b/apps/comments/l10n/ka_GE.json index df3226ad00e3b..abcfb469d39e0 100644 --- a/apps/comments/l10n/ka_GE.json +++ b/apps/comments/l10n/ka_GE.json @@ -10,7 +10,6 @@ "More comments …" : "მეტი კომენტარი ...", "Save" : "შენახვა", "Allowed characters {count} of {max}" : "დაშვებული სიმბოლოები {count} {max}-იდან", - "Error occurred while retrieving comment with id {id}" : "კომენტარის id-ით {id}-ის მიღებისას წარმოიშვა შეცდომა", "Error occurred while updating comment with id {id}" : "კომენტარის id-იდ {id}-ის ცვლილებისას წარმოიშვა შეცდომა", "Error occurred while posting comment" : "კომენტარის გამოქვეყნებისას წარმოიშვა შეცდომა", "_%n unread comment_::_%n unread comments_" : ["%n წაუკუთხავი კომენტარი"], diff --git a/apps/comments/l10n/ko.js b/apps/comments/l10n/ko.js index 344ce0cdd017c..ce66d0d27c953 100644 --- a/apps/comments/l10n/ko.js +++ b/apps/comments/l10n/ko.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "더 많은 댓글 …", "Save" : "저장", "Allowed characters {count} of {max}" : "{count}/{max} 글자 사용 가능", - "Error occurred while retrieving comment with id {id}" : "댓글 ID {id}을(를) 가져오는 중 오류가 발생했습니다", "Error occurred while updating comment with id {id}" : "댓글 ID {id}을(를) 업데이트하는 동안 오류가 발생했습니다 ", "Error occurred while posting comment" : "댓글을 게시하는 중 오류가 발생했습니다", "_%n unread comment_::_%n unread comments_" : ["읽지 않은 댓글 %n개"], diff --git a/apps/comments/l10n/ko.json b/apps/comments/l10n/ko.json index da3f833874b9b..a5b85f9b3a324 100644 --- a/apps/comments/l10n/ko.json +++ b/apps/comments/l10n/ko.json @@ -10,7 +10,6 @@ "More comments …" : "더 많은 댓글 …", "Save" : "저장", "Allowed characters {count} of {max}" : "{count}/{max} 글자 사용 가능", - "Error occurred while retrieving comment with id {id}" : "댓글 ID {id}을(를) 가져오는 중 오류가 발생했습니다", "Error occurred while updating comment with id {id}" : "댓글 ID {id}을(를) 업데이트하는 동안 오류가 발생했습니다 ", "Error occurred while posting comment" : "댓글을 게시하는 중 오류가 발생했습니다", "_%n unread comment_::_%n unread comments_" : ["읽지 않은 댓글 %n개"], diff --git a/apps/comments/l10n/lt_LT.js b/apps/comments/l10n/lt_LT.js index 323f74dadcc7a..15aabdbc43a19 100644 --- a/apps/comments/l10n/lt_LT.js +++ b/apps/comments/l10n/lt_LT.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Daugiau komentarų …", "Save" : "Įrašyti", "Allowed characters {count} of {max}" : "Leidžiama simbolių {count} iš {max}", - "Error occurred while retrieving comment with id {id}" : "Klaida bandant parodyti komentarą pagal identifikavimo numerį {id}", "Error occurred while updating comment with id {id}" : "Klaida bandant pataisyti komentarą pagal identifikavimo numerį {id}", "Error occurred while posting comment" : "Skelbiant komentarą, įvyko klaida", "_%n unread comment_::_%n unread comments_" : ["%n neskaitytas komentaras","%n neskaityti komentarai","%n neskaitytų komentarų"], diff --git a/apps/comments/l10n/lt_LT.json b/apps/comments/l10n/lt_LT.json index 1290f72f39b5a..4a9fc1910324d 100644 --- a/apps/comments/l10n/lt_LT.json +++ b/apps/comments/l10n/lt_LT.json @@ -10,7 +10,6 @@ "More comments …" : "Daugiau komentarų …", "Save" : "Įrašyti", "Allowed characters {count} of {max}" : "Leidžiama simbolių {count} iš {max}", - "Error occurred while retrieving comment with id {id}" : "Klaida bandant parodyti komentarą pagal identifikavimo numerį {id}", "Error occurred while updating comment with id {id}" : "Klaida bandant pataisyti komentarą pagal identifikavimo numerį {id}", "Error occurred while posting comment" : "Skelbiant komentarą, įvyko klaida", "_%n unread comment_::_%n unread comments_" : ["%n neskaitytas komentaras","%n neskaityti komentarai","%n neskaitytų komentarų"], diff --git a/apps/comments/l10n/lv.js b/apps/comments/l10n/lv.js index e82c5cac90d0c..7c769bbc6850c 100644 --- a/apps/comments/l10n/lv.js +++ b/apps/comments/l10n/lv.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Vairāk komentāri...", "Save" : "Saglabāt", "Allowed characters {count} of {max}" : "Atļautās zīmes {count} no {max}", - "Error occurred while retrieving comment with id {id}" : "Notika kļūda saņemot komentāru ar id {id}", "Error occurred while updating comment with id {id}" : "Kļūda atjauninot komentāru ar id {id}", "Error occurred while posting comment" : "Notika kļūda pievienojot komentāru", "_%n unread comment_::_%n unread comments_" : ["%n nelasīti komentāri","%n nelasīti komentāri","%n nelasīti komentāri"], diff --git a/apps/comments/l10n/lv.json b/apps/comments/l10n/lv.json index ffe078c360fa7..40800c1a60277 100644 --- a/apps/comments/l10n/lv.json +++ b/apps/comments/l10n/lv.json @@ -10,7 +10,6 @@ "More comments …" : "Vairāk komentāri...", "Save" : "Saglabāt", "Allowed characters {count} of {max}" : "Atļautās zīmes {count} no {max}", - "Error occurred while retrieving comment with id {id}" : "Notika kļūda saņemot komentāru ar id {id}", "Error occurred while updating comment with id {id}" : "Kļūda atjauninot komentāru ar id {id}", "Error occurred while posting comment" : "Notika kļūda pievienojot komentāru", "_%n unread comment_::_%n unread comments_" : ["%n nelasīti komentāri","%n nelasīti komentāri","%n nelasīti komentāri"], diff --git a/apps/comments/l10n/mn.js b/apps/comments/l10n/mn.js index 53c2a9287b81b..73d92028b54f6 100644 --- a/apps/comments/l10n/mn.js +++ b/apps/comments/l10n/mn.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Дараагийн сэтгэгдэлүүд", "Save" : "Хадгалах", "Allowed characters {count} of {max}" : "{max} боломжойгоос {count} тэмдэгт орсон байна", - "Error occurred while retrieving comment with id {id}" : "{id} дугаартай сэтгэгдлийг авахад алдаа гарлаа", "Error occurred while updating comment with id {id}" : "{id} дугаартай сэтгэгдлийг шинэчилэхэд алдаа гарлаа", "Error occurred while posting comment" : "Сэтгэгдлийг хадгалахад алдаа гарлаа", "Comment" : "Сэтгэгдэл", diff --git a/apps/comments/l10n/mn.json b/apps/comments/l10n/mn.json index 0276bbb4a9e3a..5e4a118cb9bc1 100644 --- a/apps/comments/l10n/mn.json +++ b/apps/comments/l10n/mn.json @@ -10,7 +10,6 @@ "More comments …" : "Дараагийн сэтгэгдэлүүд", "Save" : "Хадгалах", "Allowed characters {count} of {max}" : "{max} боломжойгоос {count} тэмдэгт орсон байна", - "Error occurred while retrieving comment with id {id}" : "{id} дугаартай сэтгэгдлийг авахад алдаа гарлаа", "Error occurred while updating comment with id {id}" : "{id} дугаартай сэтгэгдлийг шинэчилэхэд алдаа гарлаа", "Error occurred while posting comment" : "Сэтгэгдлийг хадгалахад алдаа гарлаа", "Comment" : "Сэтгэгдэл", diff --git a/apps/comments/l10n/nb.js b/apps/comments/l10n/nb.js index 2ca162d6b0742..260a60d2cc4f0 100644 --- a/apps/comments/l10n/nb.js +++ b/apps/comments/l10n/nb.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Flere kommentarer..", "Save" : "Lagre", "Allowed characters {count} of {max}" : "Antall tegn tillatt {count} av {max}", - "Error occurred while retrieving comment with id {id}" : "En feil oppstod under henting av kommentar med id {id}", + "Error occurred while retrieving comment with ID {id}" : "En feil oppstod under henting av kommentar med ID {id}", "Error occurred while updating comment with id {id}" : "En feil oppstod under oppdatering av kommentar med id {id}", "Error occurred while posting comment" : "En feil oppstod under posting av kommentar", "_%n unread comment_::_%n unread comments_" : ["%n ulest kommentar","%n uleste kommentarer"], diff --git a/apps/comments/l10n/nb.json b/apps/comments/l10n/nb.json index 2c5a286160929..21518d40203c9 100644 --- a/apps/comments/l10n/nb.json +++ b/apps/comments/l10n/nb.json @@ -10,7 +10,7 @@ "More comments …" : "Flere kommentarer..", "Save" : "Lagre", "Allowed characters {count} of {max}" : "Antall tegn tillatt {count} av {max}", - "Error occurred while retrieving comment with id {id}" : "En feil oppstod under henting av kommentar med id {id}", + "Error occurred while retrieving comment with ID {id}" : "En feil oppstod under henting av kommentar med ID {id}", "Error occurred while updating comment with id {id}" : "En feil oppstod under oppdatering av kommentar med id {id}", "Error occurred while posting comment" : "En feil oppstod under posting av kommentar", "_%n unread comment_::_%n unread comments_" : ["%n ulest kommentar","%n uleste kommentarer"], diff --git a/apps/comments/l10n/nl.js b/apps/comments/l10n/nl.js index c27033507a254..0ec8dcf2d10df 100644 --- a/apps/comments/l10n/nl.js +++ b/apps/comments/l10n/nl.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Meer reacties ...", "Save" : "Opslaan", "Allowed characters {count} of {max}" : "{count} van de {max} toegestane tekens", - "Error occurred while retrieving comment with id {id}" : "Er trad een fout op bij het ophalen van reactie met id {id}", + "Error occurred while retrieving comment with ID {id}" : "Er trad een fout op bij het ophalen van reactie met ID {id}", "Error occurred while updating comment with id {id}" : "Er trad een fout op bij het bijwerken van reactie met id {id}", "Error occurred while posting comment" : "Er trad een fout op bij plaatsen reactie", "_%n unread comment_::_%n unread comments_" : ["%n ongelezen reactie","%n ongelezen reacties"], diff --git a/apps/comments/l10n/nl.json b/apps/comments/l10n/nl.json index bde62425a10e7..72d59f32094a0 100644 --- a/apps/comments/l10n/nl.json +++ b/apps/comments/l10n/nl.json @@ -10,7 +10,7 @@ "More comments …" : "Meer reacties ...", "Save" : "Opslaan", "Allowed characters {count} of {max}" : "{count} van de {max} toegestane tekens", - "Error occurred while retrieving comment with id {id}" : "Er trad een fout op bij het ophalen van reactie met id {id}", + "Error occurred while retrieving comment with ID {id}" : "Er trad een fout op bij het ophalen van reactie met ID {id}", "Error occurred while updating comment with id {id}" : "Er trad een fout op bij het bijwerken van reactie met id {id}", "Error occurred while posting comment" : "Er trad een fout op bij plaatsen reactie", "_%n unread comment_::_%n unread comments_" : ["%n ongelezen reactie","%n ongelezen reacties"], diff --git a/apps/comments/l10n/nn_NO.js b/apps/comments/l10n/nn_NO.js index ce79cf242bc08..806ca84fdea05 100644 --- a/apps/comments/l10n/nn_NO.js +++ b/apps/comments/l10n/nn_NO.js @@ -1,7 +1,22 @@ OC.L10N.register( "comments", { + "Comments" : "Kommentarar", + "New comment …" : "Ny kommentar...", + "Delete comment" : "Slett kommentar", + "Post" : "Publiser", "Cancel" : "Avbryt", - "Save" : "Lagra" + "Edit comment" : "Rediger kommentar", + "No comments yet, start the conversation!" : "Ingen kommetarar enno, start samtala!", + "More comments …" : "Fleire kommentarar...", + "Save" : "Lagra", + "Comment" : "Kommentér", + "You commented" : "Du kommenterte", + "%1$s commented" : "%1$skommenterte", + "{author} commented" : "{author} kommenterte", + "You commented on %1$s" : "Du kommenterte på %1$s", + "You commented on {file}" : "Du kommenterte på {file}", + "%1$s commented on %2$s" : "%1$s kommenterte på %2$s", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Du ble nemnt i \"%s\", i en kommentar av ein brukar som i ettertid har blitt sletta" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/comments/l10n/nn_NO.json b/apps/comments/l10n/nn_NO.json index 51f3ed49364ad..fdcd1676820ac 100644 --- a/apps/comments/l10n/nn_NO.json +++ b/apps/comments/l10n/nn_NO.json @@ -1,5 +1,20 @@ { "translations": { + "Comments" : "Kommentarar", + "New comment …" : "Ny kommentar...", + "Delete comment" : "Slett kommentar", + "Post" : "Publiser", "Cancel" : "Avbryt", - "Save" : "Lagra" + "Edit comment" : "Rediger kommentar", + "No comments yet, start the conversation!" : "Ingen kommetarar enno, start samtala!", + "More comments …" : "Fleire kommentarar...", + "Save" : "Lagra", + "Comment" : "Kommentér", + "You commented" : "Du kommenterte", + "%1$s commented" : "%1$skommenterte", + "{author} commented" : "{author} kommenterte", + "You commented on %1$s" : "Du kommenterte på %1$s", + "You commented on {file}" : "Du kommenterte på {file}", + "%1$s commented on %2$s" : "%1$s kommenterte på %2$s", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Du ble nemnt i \"%s\", i en kommentar av ein brukar som i ettertid har blitt sletta" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/comments/l10n/pl.js b/apps/comments/l10n/pl.js index 813b90ef0425b..73537afee0157 100644 --- a/apps/comments/l10n/pl.js +++ b/apps/comments/l10n/pl.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Więcej komentarzy ...", "Save" : "Zapisz", "Allowed characters {count} of {max}" : "Dozwolone znaki {count} z {max}", - "Error occurred while retrieving comment with id {id}" : "W trakcie pobierania komentarza o identyfikatorze {id} wystąpił błąd.", + "Error occurred while retrieving comment with ID {id}" : "Wystąpił błąd podczas pobierania komentarza o identyfikatorze {id}", "Error occurred while updating comment with id {id}" : "W trakcie aktualizacji komentarza o identyfikatorze {id} wystąpił błąd.", "Error occurred while posting comment" : "Podczas wysyłania komentarza wystąpił błąd", "_%n unread comment_::_%n unread comments_" : ["%n nieprzeczytany komentarz","%n nieprzeczytane komentarze","%n nieprzeczytanych komentarzy","%n nieprzeczytanych komentarzy"], @@ -25,7 +25,7 @@ OC.L10N.register( "%1$s commented on %2$s" : "%1$s skomentował/-a %2$s", "{author} commented on {file}" : "{author} skomentował/-a w {file}‭", "Comments for files" : "Komentarze dla plików", - "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Zostałeś/aś wspomniany/a w \"%s\" przez użytkownika, który został usunięty", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Wspomniano Cię w \"%s\" przez użytkownika, który został usunięty", "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Zostałeś/aś wspomniany/a w \"{file}\" w komentarzach przez użytkownika, który został usunięty", "%1$s mentioned you in a comment on “%2$s”" : "%1$s wspomniał/-a o Tobie w komentarzu “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} wspomniał/-a o Tobie w komentarzu “{file}”", diff --git a/apps/comments/l10n/pl.json b/apps/comments/l10n/pl.json index 00694693059f0..846e6ed703aed 100644 --- a/apps/comments/l10n/pl.json +++ b/apps/comments/l10n/pl.json @@ -10,7 +10,7 @@ "More comments …" : "Więcej komentarzy ...", "Save" : "Zapisz", "Allowed characters {count} of {max}" : "Dozwolone znaki {count} z {max}", - "Error occurred while retrieving comment with id {id}" : "W trakcie pobierania komentarza o identyfikatorze {id} wystąpił błąd.", + "Error occurred while retrieving comment with ID {id}" : "Wystąpił błąd podczas pobierania komentarza o identyfikatorze {id}", "Error occurred while updating comment with id {id}" : "W trakcie aktualizacji komentarza o identyfikatorze {id} wystąpił błąd.", "Error occurred while posting comment" : "Podczas wysyłania komentarza wystąpił błąd", "_%n unread comment_::_%n unread comments_" : ["%n nieprzeczytany komentarz","%n nieprzeczytane komentarze","%n nieprzeczytanych komentarzy","%n nieprzeczytanych komentarzy"], @@ -23,7 +23,7 @@ "%1$s commented on %2$s" : "%1$s skomentował/-a %2$s", "{author} commented on {file}" : "{author} skomentował/-a w {file}‭", "Comments for files" : "Komentarze dla plików", - "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Zostałeś/aś wspomniany/a w \"%s\" przez użytkownika, który został usunięty", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Wspomniano Cię w \"%s\" przez użytkownika, który został usunięty", "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Zostałeś/aś wspomniany/a w \"{file}\" w komentarzach przez użytkownika, który został usunięty", "%1$s mentioned you in a comment on “%2$s”" : "%1$s wspomniał/-a o Tobie w komentarzu “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} wspomniał/-a o Tobie w komentarzu “{file}”", diff --git a/apps/comments/l10n/pt_BR.js b/apps/comments/l10n/pt_BR.js index 54ba334ef63b6..08d7e3c8f44eb 100644 --- a/apps/comments/l10n/pt_BR.js +++ b/apps/comments/l10n/pt_BR.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Mais comentários...", "Save" : "Salvar", "Allowed characters {count} of {max}" : "{count} de {max} caracteres permitidos", - "Error occurred while retrieving comment with id {id}" : "Ocorreu um erro durante a recuperação do comentário com id {id}", + "Error occurred while retrieving comment with ID {id}" : "Erro ao recuperar comentário com a ID {id}", "Error occurred while updating comment with id {id}" : "Ocorreu um erro durante a atualização do comentário com id {id}", "Error occurred while posting comment" : "Ocorreu um erro ao postar o comentário", "_%n unread comment_::_%n unread comments_" : ["%n comentários não lidos","%n comentários não lidos"], diff --git a/apps/comments/l10n/pt_BR.json b/apps/comments/l10n/pt_BR.json index 4218a60661add..487c96dbdc6ea 100644 --- a/apps/comments/l10n/pt_BR.json +++ b/apps/comments/l10n/pt_BR.json @@ -10,7 +10,7 @@ "More comments …" : "Mais comentários...", "Save" : "Salvar", "Allowed characters {count} of {max}" : "{count} de {max} caracteres permitidos", - "Error occurred while retrieving comment with id {id}" : "Ocorreu um erro durante a recuperação do comentário com id {id}", + "Error occurred while retrieving comment with ID {id}" : "Erro ao recuperar comentário com a ID {id}", "Error occurred while updating comment with id {id}" : "Ocorreu um erro durante a atualização do comentário com id {id}", "Error occurred while posting comment" : "Ocorreu um erro ao postar o comentário", "_%n unread comment_::_%n unread comments_" : ["%n comentários não lidos","%n comentários não lidos"], diff --git a/apps/comments/l10n/pt_PT.js b/apps/comments/l10n/pt_PT.js index bc1a4cef17d00..c8b16be003371 100644 --- a/apps/comments/l10n/pt_PT.js +++ b/apps/comments/l10n/pt_PT.js @@ -1,25 +1,35 @@ OC.L10N.register( "comments", { + "Comments" : "Comentários", + "New comment …" : "Novo comentário …", "Delete comment" : "Eliminar comentário", "Post" : "Publicar", "Cancel" : "Cancelar", "Edit comment" : "Editar comentário", "[Deleted user]" : "[Utilizador eliminado]", - "Comments" : "Comentários", + "No comments yet, start the conversation!" : "Ainda sem comentários, inicie uma conversação!", + "More comments …" : "Mais comentários ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "{count} de {max} caracteres restantes", - "Error occurred while retrieving comment with id {id}" : "Ocorreu um erro ao tentar obter o comentário com o id {id}", "Error occurred while updating comment with id {id}" : "Ocorreu um erro ao tentar atualizar o comentário com o id {id}", "Error occurred while posting comment" : "Ocorreu um erro ao tentar publicar o comentário", + "_%n unread comment_::_%n unread comments_" : ["%n comentários por ler","%n comentários por ler"], "Comment" : "Comentário", "You commented" : "Comentou", "%1$s commented" : "%1$s comentou", - "You commented on %2$s" : "Comentou %2$s", + "{author} commented" : "{author} comentou", + "You commented on %1$s" : "Comentaste em %1$s", + "You commented on {file}" : "Comentaste em {file}", "%1$s commented on %2$s" : "%1$s comentou %2$s", - "Type in a new comment..." : "Escreva um novo comentário...", - "No other comments available" : "Nenhum outro comentário disponível", - "More comments..." : "Mais comentários...", - "{count} unread comments" : "{count} comentários não lidos" + "{author} commented on {file}" : "{author} comentou em {file}", + "Comments for files" : "Comentários aos ficheiros", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Foste mencionado em “%s”, num comentário de um utilizador que foi entretanto removido", + "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Foste mencionado e, “{file}”, num comentário de um utilizador que foi entretanto removido", + "%1$s mentioned you in a comment on “%2$s”" : "%1$s mencionou-te num comentário em “%2$s”", + "{user} mentioned you in a comment on “{file}”" : "{user} mencionou-te num comentário em “{file}”", + "Unknown user" : "Utilizador desconhecido", + "A (now) deleted user mentioned you in a comment on “%s”" : "Um utilizador (agora removido) mencionou-te num comentário em “%s”", + "A (now) deleted user mentioned you in a comment on “{file}”" : "Um utilizador (agora removido) mencionou-te num comentário em “{file}”" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/comments/l10n/pt_PT.json b/apps/comments/l10n/pt_PT.json index 7370bfc43b7d2..2e212cb0cadc4 100644 --- a/apps/comments/l10n/pt_PT.json +++ b/apps/comments/l10n/pt_PT.json @@ -1,23 +1,33 @@ { "translations": { + "Comments" : "Comentários", + "New comment …" : "Novo comentário …", "Delete comment" : "Eliminar comentário", "Post" : "Publicar", "Cancel" : "Cancelar", "Edit comment" : "Editar comentário", "[Deleted user]" : "[Utilizador eliminado]", - "Comments" : "Comentários", + "No comments yet, start the conversation!" : "Ainda sem comentários, inicie uma conversação!", + "More comments …" : "Mais comentários ...", "Save" : "Guardar", "Allowed characters {count} of {max}" : "{count} de {max} caracteres restantes", - "Error occurred while retrieving comment with id {id}" : "Ocorreu um erro ao tentar obter o comentário com o id {id}", "Error occurred while updating comment with id {id}" : "Ocorreu um erro ao tentar atualizar o comentário com o id {id}", "Error occurred while posting comment" : "Ocorreu um erro ao tentar publicar o comentário", + "_%n unread comment_::_%n unread comments_" : ["%n comentários por ler","%n comentários por ler"], "Comment" : "Comentário", "You commented" : "Comentou", "%1$s commented" : "%1$s comentou", - "You commented on %2$s" : "Comentou %2$s", + "{author} commented" : "{author} comentou", + "You commented on %1$s" : "Comentaste em %1$s", + "You commented on {file}" : "Comentaste em {file}", "%1$s commented on %2$s" : "%1$s comentou %2$s", - "Type in a new comment..." : "Escreva um novo comentário...", - "No other comments available" : "Nenhum outro comentário disponível", - "More comments..." : "Mais comentários...", - "{count} unread comments" : "{count} comentários não lidos" + "{author} commented on {file}" : "{author} comentou em {file}", + "Comments for files" : "Comentários aos ficheiros", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Foste mencionado em “%s”, num comentário de um utilizador que foi entretanto removido", + "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Foste mencionado e, “{file}”, num comentário de um utilizador que foi entretanto removido", + "%1$s mentioned you in a comment on “%2$s”" : "%1$s mencionou-te num comentário em “%2$s”", + "{user} mentioned you in a comment on “{file}”" : "{user} mencionou-te num comentário em “{file}”", + "Unknown user" : "Utilizador desconhecido", + "A (now) deleted user mentioned you in a comment on “%s”" : "Um utilizador (agora removido) mencionou-te num comentário em “%s”", + "A (now) deleted user mentioned you in a comment on “{file}”" : "Um utilizador (agora removido) mencionou-te num comentário em “{file}”" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/comments/l10n/ro.js b/apps/comments/l10n/ro.js index 7b34fee8721b3..db64387c90441 100644 --- a/apps/comments/l10n/ro.js +++ b/apps/comments/l10n/ro.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Mai multe comentarii...", "Save" : "Salvează", "Allowed characters {count} of {max}" : "Caractere admise {count} din {max}", - "Error occurred while retrieving comment with id {id}" : "Eroare la returnarea comentariului cu id-ul {id}", "Error occurred while updating comment with id {id}" : "Eroare la actualizarea comentariului cu id-ul {id}", "Error occurred while posting comment" : "Eroare la postarea comentariului", "_%n unread comment_::_%n unread comments_" : ["%n comentariu necitit","%n comentarii necitite","%n comentarii necitite"], diff --git a/apps/comments/l10n/ro.json b/apps/comments/l10n/ro.json index 0216f3eeb8a41..5b931b52e1060 100644 --- a/apps/comments/l10n/ro.json +++ b/apps/comments/l10n/ro.json @@ -10,7 +10,6 @@ "More comments …" : "Mai multe comentarii...", "Save" : "Salvează", "Allowed characters {count} of {max}" : "Caractere admise {count} din {max}", - "Error occurred while retrieving comment with id {id}" : "Eroare la returnarea comentariului cu id-ul {id}", "Error occurred while updating comment with id {id}" : "Eroare la actualizarea comentariului cu id-ul {id}", "Error occurred while posting comment" : "Eroare la postarea comentariului", "_%n unread comment_::_%n unread comments_" : ["%n comentariu necitit","%n comentarii necitite","%n comentarii necitite"], diff --git a/apps/comments/l10n/ru.js b/apps/comments/l10n/ru.js index 1766a658d6051..d953bad383f0f 100644 --- a/apps/comments/l10n/ru.js +++ b/apps/comments/l10n/ru.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Ещё комментарии...", "Save" : "Сохранить", "Allowed characters {count} of {max}" : "Допустимых символов {count} из {max}", - "Error occurred while retrieving comment with id {id}" : "При получении комментария с id {id} произошла ошибка", + "Error occurred while retrieving comment with ID {id}" : "При получении комментария с ID {id} произошла ошибка", "Error occurred while updating comment with id {id}" : "При обновлении комментария с id {id} произошла ошибка", "Error occurred while posting comment" : "При сохранении комментария произошла ошибка", "_%n unread comment_::_%n unread comments_" : ["%n непрочитанный комментарий","%n непрочитанных комментариев","%n непрочитанных комментариев","%n непрочитанных комментариев"], diff --git a/apps/comments/l10n/ru.json b/apps/comments/l10n/ru.json index eecfec2017cbe..56eb79994ba0e 100644 --- a/apps/comments/l10n/ru.json +++ b/apps/comments/l10n/ru.json @@ -10,7 +10,7 @@ "More comments …" : "Ещё комментарии...", "Save" : "Сохранить", "Allowed characters {count} of {max}" : "Допустимых символов {count} из {max}", - "Error occurred while retrieving comment with id {id}" : "При получении комментария с id {id} произошла ошибка", + "Error occurred while retrieving comment with ID {id}" : "При получении комментария с ID {id} произошла ошибка", "Error occurred while updating comment with id {id}" : "При обновлении комментария с id {id} произошла ошибка", "Error occurred while posting comment" : "При сохранении комментария произошла ошибка", "_%n unread comment_::_%n unread comments_" : ["%n непрочитанный комментарий","%n непрочитанных комментариев","%n непрочитанных комментариев","%n непрочитанных комментариев"], diff --git a/apps/comments/l10n/si_LK.js b/apps/comments/l10n/si_LK.js index 8f030041abeb4..30759522e25a3 100644 --- a/apps/comments/l10n/si_LK.js +++ b/apps/comments/l10n/si_LK.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "තවත් අදහස් ...", "Save" : "සුරකින්න", "Allowed characters {count} of {max}" : "අකුරු {max} න් {count} බාවිතා කර ඇත", - "Error occurred while retrieving comment with id {id}" : "{id} අදහස ලබාගැනීමේ ගැටළුවක් ඇත", "Error occurred while updating comment with id {id}" : "{id} අදහස වෙනස් කිරීමේ දෝෂයක් ඇත", "Error occurred while posting comment" : "අදහස්ගැ දැක්වීමේ ගැටළුවක් ඇත", "Comment" : "අදහස", diff --git a/apps/comments/l10n/si_LK.json b/apps/comments/l10n/si_LK.json index 5a7331b6e9e31..22c8378d91991 100644 --- a/apps/comments/l10n/si_LK.json +++ b/apps/comments/l10n/si_LK.json @@ -10,7 +10,6 @@ "More comments …" : "තවත් අදහස් ...", "Save" : "සුරකින්න", "Allowed characters {count} of {max}" : "අකුරු {max} න් {count} බාවිතා කර ඇත", - "Error occurred while retrieving comment with id {id}" : "{id} අදහස ලබාගැනීමේ ගැටළුවක් ඇත", "Error occurred while updating comment with id {id}" : "{id} අදහස වෙනස් කිරීමේ දෝෂයක් ඇත", "Error occurred while posting comment" : "අදහස්ගැ දැක්වීමේ ගැටළුවක් ඇත", "Comment" : "අදහස", diff --git a/apps/comments/l10n/sk.js b/apps/comments/l10n/sk.js index 66df1f73d7e4d..452c6bcd9a9fb 100644 --- a/apps/comments/l10n/sk.js +++ b/apps/comments/l10n/sk.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Ďalšie komentáre ...", "Save" : "Uložiť", "Allowed characters {count} of {max}" : "Počet povolených znakov {count} z {max}", - "Error occurred while retrieving comment with id {id}" : "Pri načítavaní komentára s id {id} nastala chyba", "Error occurred while updating comment with id {id}" : "Pri aktualizovaní komentára s id {id} nastala chyba", "Error occurred while posting comment" : "Pri odosielaní komentára nastala chyba", "_%n unread comment_::_%n unread comments_" : ["%n neprečítaný komentár","%n neprečítaných komentárov","%n neprečítaných komentárov"], diff --git a/apps/comments/l10n/sk.json b/apps/comments/l10n/sk.json index 56f2d70fc3769..8df69781553b1 100644 --- a/apps/comments/l10n/sk.json +++ b/apps/comments/l10n/sk.json @@ -10,7 +10,6 @@ "More comments …" : "Ďalšie komentáre ...", "Save" : "Uložiť", "Allowed characters {count} of {max}" : "Počet povolených znakov {count} z {max}", - "Error occurred while retrieving comment with id {id}" : "Pri načítavaní komentára s id {id} nastala chyba", "Error occurred while updating comment with id {id}" : "Pri aktualizovaní komentára s id {id} nastala chyba", "Error occurred while posting comment" : "Pri odosielaní komentára nastala chyba", "_%n unread comment_::_%n unread comments_" : ["%n neprečítaný komentár","%n neprečítaných komentárov","%n neprečítaných komentárov"], diff --git a/apps/comments/l10n/sl.js b/apps/comments/l10n/sl.js index 8718a374b4d35..813d8ac3f3a36 100644 --- a/apps/comments/l10n/sl.js +++ b/apps/comments/l10n/sl.js @@ -1,25 +1,23 @@ OC.L10N.register( "comments", { + "Comments" : "Opombe", + "New comment …" : "Nov komentar ...", "Delete comment" : "Izbriši opombo", "Post" : "Objavi", "Cancel" : "Prekliči", "Edit comment" : "Uredi opombo", "[Deleted user]" : "[Izbrisan uporabnik]", - "Comments" : "Opombe", + "No comments yet, start the conversation!" : "Še ni komentarjev, začni debato!", + "More comments …" : "Več komentarjev ....", "Save" : "Shrani", "Allowed characters {count} of {max}" : "Dovoljeni znaki: {count} od {max}", - "Error occurred while retrieving comment with id {id}" : "Napaka se je zgodila med prenosom komentarja z oznako {id}", "Error occurred while updating comment with id {id}" : "Napaka se je zgodila med posodabljanjem komentarja z oznako {id}", "Error occurred while posting comment" : "Napaka se je zgodila med predajo komentarja", "Comment" : "Opomba", "You commented" : "Vaša opomba", "%1$s commented" : "%1$s opomb", - "You commented on %2$s" : "Napisali ste opombo na %2$s", "%1$s commented on %2$s" : "%1$s opomb ob %2$s", - "Type in a new comment..." : "Vpis nove opombe ...", - "No other comments available" : "Ni drugih opomb", - "More comments..." : "Več opomb ...", - "{count} unread comments" : "{count} neprebranih opomb" + "Unknown user" : "Nepoznan uporabnik" }, "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); diff --git a/apps/comments/l10n/sl.json b/apps/comments/l10n/sl.json index 33bb84c99e143..a020278396460 100644 --- a/apps/comments/l10n/sl.json +++ b/apps/comments/l10n/sl.json @@ -1,23 +1,21 @@ { "translations": { + "Comments" : "Opombe", + "New comment …" : "Nov komentar ...", "Delete comment" : "Izbriši opombo", "Post" : "Objavi", "Cancel" : "Prekliči", "Edit comment" : "Uredi opombo", "[Deleted user]" : "[Izbrisan uporabnik]", - "Comments" : "Opombe", + "No comments yet, start the conversation!" : "Še ni komentarjev, začni debato!", + "More comments …" : "Več komentarjev ....", "Save" : "Shrani", "Allowed characters {count} of {max}" : "Dovoljeni znaki: {count} od {max}", - "Error occurred while retrieving comment with id {id}" : "Napaka se je zgodila med prenosom komentarja z oznako {id}", "Error occurred while updating comment with id {id}" : "Napaka se je zgodila med posodabljanjem komentarja z oznako {id}", "Error occurred while posting comment" : "Napaka se je zgodila med predajo komentarja", "Comment" : "Opomba", "You commented" : "Vaša opomba", "%1$s commented" : "%1$s opomb", - "You commented on %2$s" : "Napisali ste opombo na %2$s", "%1$s commented on %2$s" : "%1$s opomb ob %2$s", - "Type in a new comment..." : "Vpis nove opombe ...", - "No other comments available" : "Ni drugih opomb", - "More comments..." : "Več opomb ...", - "{count} unread comments" : "{count} neprebranih opomb" + "Unknown user" : "Nepoznan uporabnik" },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" } \ No newline at end of file diff --git a/apps/comments/l10n/sq.js b/apps/comments/l10n/sq.js index 200a8221f9d63..6d1dd52b07b10 100644 --- a/apps/comments/l10n/sq.js +++ b/apps/comments/l10n/sq.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Më shumë komente ...", "Save" : "Ruaje", "Allowed characters {count} of {max}" : "Shenja të lejuara {count} nga {max}", - "Error occurred while retrieving comment with id {id}" : "Ndodhi një gabim teksa merrej komenti me id{id}", "Error occurred while updating comment with id {id}" : "Ndodhi një gabim teksa përditësohej komenti me id {id}", "Error occurred while posting comment" : "Ndodhi një gabim teksa postohej komenti", "_%n unread comment_::_%n unread comments_" : ["%n komente të palexuara","%n komente të palexuara "], diff --git a/apps/comments/l10n/sq.json b/apps/comments/l10n/sq.json index 137cfef16de02..bf981eed3205c 100644 --- a/apps/comments/l10n/sq.json +++ b/apps/comments/l10n/sq.json @@ -10,7 +10,6 @@ "More comments …" : "Më shumë komente ...", "Save" : "Ruaje", "Allowed characters {count} of {max}" : "Shenja të lejuara {count} nga {max}", - "Error occurred while retrieving comment with id {id}" : "Ndodhi një gabim teksa merrej komenti me id{id}", "Error occurred while updating comment with id {id}" : "Ndodhi një gabim teksa përditësohej komenti me id {id}", "Error occurred while posting comment" : "Ndodhi një gabim teksa postohej komenti", "_%n unread comment_::_%n unread comments_" : ["%n komente të palexuara","%n komente të palexuara "], diff --git a/apps/comments/l10n/sr.js b/apps/comments/l10n/sr.js index d51b102897e99..ed38d0a5f98a1 100644 --- a/apps/comments/l10n/sr.js +++ b/apps/comments/l10n/sr.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Преостали коментари …", "Save" : "Сачувај", "Allowed characters {count} of {max}" : "Дозвољених {count} знакова од {max}", - "Error occurred while retrieving comment with id {id}" : "Дошло је до грешке при прегледу коментара ознаке {id}", + "Error occurred while retrieving comment with ID {id}" : "Дошло је до грешке при прегледу коментара са идентификацијом {id}", "Error occurred while updating comment with id {id}" : "Дошло је до грешке при преправци коментара ознаке {id}", "Error occurred while posting comment" : "Дошло је до грешке при објави коментара", "_%n unread comment_::_%n unread comments_" : ["%nнепрочитани коментар","%nнепрочитана коментара ","%n непрочитаних коментара"], diff --git a/apps/comments/l10n/sr.json b/apps/comments/l10n/sr.json index f92a2d1fabe94..41bdf838dcd79 100644 --- a/apps/comments/l10n/sr.json +++ b/apps/comments/l10n/sr.json @@ -10,7 +10,7 @@ "More comments …" : "Преостали коментари …", "Save" : "Сачувај", "Allowed characters {count} of {max}" : "Дозвољених {count} знакова од {max}", - "Error occurred while retrieving comment with id {id}" : "Дошло је до грешке при прегледу коментара ознаке {id}", + "Error occurred while retrieving comment with ID {id}" : "Дошло је до грешке при прегледу коментара са идентификацијом {id}", "Error occurred while updating comment with id {id}" : "Дошло је до грешке при преправци коментара ознаке {id}", "Error occurred while posting comment" : "Дошло је до грешке при објави коментара", "_%n unread comment_::_%n unread comments_" : ["%nнепрочитани коментар","%nнепрочитана коментара ","%n непрочитаних коментара"], diff --git a/apps/comments/l10n/sv.js b/apps/comments/l10n/sv.js index 94b78efb12820..60313a2284e48 100644 --- a/apps/comments/l10n/sv.js +++ b/apps/comments/l10n/sv.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Fler kommentarer ...", "Save" : "Spara", "Allowed characters {count} of {max}" : "Antal tillåtna tecken, {count} av {max}", - "Error occurred while retrieving comment with id {id}" : "Fel inträffade vid inläsning av kommentar med id {id}", + "Error occurred while retrieving comment with ID {id}" : "Fel uppstod när kommentaren med ID {id} hämtades", "Error occurred while updating comment with id {id}" : "Fel inträffade vid uppdatering av kommentar med id {id}", "Error occurred while posting comment" : "Fel inträffade vid publicering av kommentar", "_%n unread comment_::_%n unread comments_" : ["%n oläst kommentar","%n olästa kommentarer"], @@ -25,6 +25,8 @@ OC.L10N.register( "%1$s commented on %2$s" : "%1$s kommenterade på %2$s", "{author} commented on {file}" : "{author} kommenterade på {file}", "Comments for files" : "Kommentarer för filer", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Du nämndes på “%s” i en kommentar av en användare som nu har tagits bort", + "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Du nämndes på “{file}” i en kommentar av en användare som nu har tagits bort", "%1$s mentioned you in a comment on “%2$s”" : "%1$s nämnde dig i en kommentar på “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} nämnde dig i en kommentar på \"{file}\"", "Unknown user" : "Okänd användare", diff --git a/apps/comments/l10n/sv.json b/apps/comments/l10n/sv.json index ae50ff98d29fc..936128bbed38f 100644 --- a/apps/comments/l10n/sv.json +++ b/apps/comments/l10n/sv.json @@ -10,7 +10,7 @@ "More comments …" : "Fler kommentarer ...", "Save" : "Spara", "Allowed characters {count} of {max}" : "Antal tillåtna tecken, {count} av {max}", - "Error occurred while retrieving comment with id {id}" : "Fel inträffade vid inläsning av kommentar med id {id}", + "Error occurred while retrieving comment with ID {id}" : "Fel uppstod när kommentaren med ID {id} hämtades", "Error occurred while updating comment with id {id}" : "Fel inträffade vid uppdatering av kommentar med id {id}", "Error occurred while posting comment" : "Fel inträffade vid publicering av kommentar", "_%n unread comment_::_%n unread comments_" : ["%n oläst kommentar","%n olästa kommentarer"], @@ -23,6 +23,8 @@ "%1$s commented on %2$s" : "%1$s kommenterade på %2$s", "{author} commented on {file}" : "{author} kommenterade på {file}", "Comments for files" : "Kommentarer för filer", + "You were mentioned on “%s”, in a comment by a user that has since been deleted" : "Du nämndes på “%s” i en kommentar av en användare som nu har tagits bort", + "You were mentioned on “{file}”, in a comment by a user that has since been deleted" : "Du nämndes på “{file}” i en kommentar av en användare som nu har tagits bort", "%1$s mentioned you in a comment on “%2$s”" : "%1$s nämnde dig i en kommentar på “%2$s”", "{user} mentioned you in a comment on “{file}”" : "{user} nämnde dig i en kommentar på \"{file}\"", "Unknown user" : "Okänd användare", diff --git a/apps/comments/l10n/th.js b/apps/comments/l10n/th.js new file mode 100644 index 0000000000000..8f272264a296d --- /dev/null +++ b/apps/comments/l10n/th.js @@ -0,0 +1,25 @@ +OC.L10N.register( + "comments", + { + "Comments" : "ความคิดเห็น", + "New comment …" : "ความคิดเห็นใหม่ ...", + "Delete comment" : "ลบความคิดเห็น", + "Post" : "โพสต์", + "Cancel" : "ยกเลิก", + "Edit comment" : "แก้ไขความคิดเห็น", + "[Deleted user]" : "[ผู้ใช้ถูกลบไปแล้ว]", + "No comments yet, start the conversation!" : "ยังไม่มีความคิดเห็น เพิ่มความเห็นเลย", + "More comments …" : "ความคิดเห็นอื่นๆ ...", + "Save" : "บันทึก", + "Allowed characters {count} of {max}" : "อนุญาตให้ใช้ {count} จากทั้งหมด {max} ตัวอักษร", + "Error occurred while updating comment with id {id}" : "เกิดข้อผิดพลาดขณะปรับปรุงความเห็น {id}", + "Error occurred while posting comment" : "เกิดข้อผิดพลาดขณะส่งความเห็น {id}", + "_%n unread comment_::_%n unread comments_" : ["%nความเห็นยังไม่อ่าน"], + "Comment" : "แสดงความคิดเห็น", + "You commented" : "คุณได้แสดงความคิดเห็นแล้ว", + "%1$s commented" : "%1$s ได้ถูกแสดงความคิดเห็น", + "You commented on %1$s" : "คุณได้แสดงความคิดเห็นบน %1$s", + "%1$s commented on %2$s" : "%1$s ได้ถูกแสดงความคิดเห็นบน %2$s", + "Unknown user" : "ไม่รู้จักผู้ใช้" +}, +"nplurals=1; plural=0;"); diff --git a/apps/comments/l10n/th.json b/apps/comments/l10n/th.json new file mode 100644 index 0000000000000..59d8d3f1467b5 --- /dev/null +++ b/apps/comments/l10n/th.json @@ -0,0 +1,23 @@ +{ "translations": { + "Comments" : "ความคิดเห็น", + "New comment …" : "ความคิดเห็นใหม่ ...", + "Delete comment" : "ลบความคิดเห็น", + "Post" : "โพสต์", + "Cancel" : "ยกเลิก", + "Edit comment" : "แก้ไขความคิดเห็น", + "[Deleted user]" : "[ผู้ใช้ถูกลบไปแล้ว]", + "No comments yet, start the conversation!" : "ยังไม่มีความคิดเห็น เพิ่มความเห็นเลย", + "More comments …" : "ความคิดเห็นอื่นๆ ...", + "Save" : "บันทึก", + "Allowed characters {count} of {max}" : "อนุญาตให้ใช้ {count} จากทั้งหมด {max} ตัวอักษร", + "Error occurred while updating comment with id {id}" : "เกิดข้อผิดพลาดขณะปรับปรุงความเห็น {id}", + "Error occurred while posting comment" : "เกิดข้อผิดพลาดขณะส่งความเห็น {id}", + "_%n unread comment_::_%n unread comments_" : ["%nความเห็นยังไม่อ่าน"], + "Comment" : "แสดงความคิดเห็น", + "You commented" : "คุณได้แสดงความคิดเห็นแล้ว", + "%1$s commented" : "%1$s ได้ถูกแสดงความคิดเห็น", + "You commented on %1$s" : "คุณได้แสดงความคิดเห็นบน %1$s", + "%1$s commented on %2$s" : "%1$s ได้ถูกแสดงความคิดเห็นบน %2$s", + "Unknown user" : "ไม่รู้จักผู้ใช้" +},"pluralForm" :"nplurals=1; plural=0;" +} \ No newline at end of file diff --git a/apps/comments/l10n/tr.js b/apps/comments/l10n/tr.js index 0baf7ae061934..f41e73c53202f 100644 --- a/apps/comments/l10n/tr.js +++ b/apps/comments/l10n/tr.js @@ -12,7 +12,7 @@ OC.L10N.register( "More comments …" : "Diğer yorumlar ...", "Save" : "Kaydet", "Allowed characters {count} of {max}" : "Yazılabilecek karakter sayısı {count}/{max}", - "Error occurred while retrieving comment with id {id}" : "{id} kodlu yorum alınırken sorun çıktı", + "Error occurred while retrieving comment with ID {id}" : "{id} kodlu yorum alınırken sorun çıktı", "Error occurred while updating comment with id {id}" : "{id} kodlu yorum güncellenirken sorun çıktı", "Error occurred while posting comment" : "Yorum gönderilirken sorun çıktı", "_%n unread comment_::_%n unread comments_" : ["%n okunmamış yorum","%n okunmamış yorum"], diff --git a/apps/comments/l10n/tr.json b/apps/comments/l10n/tr.json index 0b653199a33ad..e37aef6b4a264 100644 --- a/apps/comments/l10n/tr.json +++ b/apps/comments/l10n/tr.json @@ -10,7 +10,7 @@ "More comments …" : "Diğer yorumlar ...", "Save" : "Kaydet", "Allowed characters {count} of {max}" : "Yazılabilecek karakter sayısı {count}/{max}", - "Error occurred while retrieving comment with id {id}" : "{id} kodlu yorum alınırken sorun çıktı", + "Error occurred while retrieving comment with ID {id}" : "{id} kodlu yorum alınırken sorun çıktı", "Error occurred while updating comment with id {id}" : "{id} kodlu yorum güncellenirken sorun çıktı", "Error occurred while posting comment" : "Yorum gönderilirken sorun çıktı", "_%n unread comment_::_%n unread comments_" : ["%n okunmamış yorum","%n okunmamış yorum"], diff --git a/apps/comments/l10n/uk.js b/apps/comments/l10n/uk.js index 547fa22b7a59e..30942d77ae32d 100644 --- a/apps/comments/l10n/uk.js +++ b/apps/comments/l10n/uk.js @@ -1,20 +1,29 @@ OC.L10N.register( "comments", { - "Type in a new comment..." : "Введіть новий коментар...", + "Comments" : "Коментарі", + "New comment …" : "Новий коментар...", "Delete comment" : "Видалити коментар", "Post" : "Відправити", "Cancel" : "Скасувати", "Edit comment" : "Редагувати коментар", "[Deleted user]" : "[Видалений користувач]", - "Comments" : "Коментарі", - "No other comments available" : "Інші коментарі не доступні", - "More comments..." : "Більше коментарів...", + "No comments yet, start the conversation!" : "Коментарі відсутні, почніть бесіду!", + "More comments …" : "Більше коментарів ...", "Save" : "Зберегти", "Allowed characters {count} of {max}" : "Доступно символів {count} з {max}", - "{count} unread comments" : "{count} непрочитаних коментарів", + "Error occurred while retrieving comment with ID {id}" : "Помилка під час відповіді на коментар ID {id}", + "Error occurred while updating comment with id {id}" : "Помилка під час оновлення коментаря з id {id}", + "Error occurred while posting comment" : "Помилка під час написання коментаря", "Comment" : "Коментар", + "You commented" : "Ви прокоментували", "%1$s commented" : "%1$s прокоментовано", - "%1$s commented on %2$s" : "%1$s прокоментовано у %2$s" + "{author} commented" : "{author} прокоментував", + "You commented on %1$s" : "Ви прокоментували на %1$s", + "You commented on {file}" : "Ви прокоментували {file}", + "%1$s commented on %2$s" : "%1$s прокоментовано у %2$s", + "{author} commented on {file}" : "{author} прокоментував {file}", + "Comments for files" : "Коментів для файлів", + "Unknown user" : "Невідомий користувач" }, "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/apps/comments/l10n/uk.json b/apps/comments/l10n/uk.json index 5fbbe2a621786..f5103ea782081 100644 --- a/apps/comments/l10n/uk.json +++ b/apps/comments/l10n/uk.json @@ -1,18 +1,27 @@ { "translations": { - "Type in a new comment..." : "Введіть новий коментар...", + "Comments" : "Коментарі", + "New comment …" : "Новий коментар...", "Delete comment" : "Видалити коментар", "Post" : "Відправити", "Cancel" : "Скасувати", "Edit comment" : "Редагувати коментар", "[Deleted user]" : "[Видалений користувач]", - "Comments" : "Коментарі", - "No other comments available" : "Інші коментарі не доступні", - "More comments..." : "Більше коментарів...", + "No comments yet, start the conversation!" : "Коментарі відсутні, почніть бесіду!", + "More comments …" : "Більше коментарів ...", "Save" : "Зберегти", "Allowed characters {count} of {max}" : "Доступно символів {count} з {max}", - "{count} unread comments" : "{count} непрочитаних коментарів", + "Error occurred while retrieving comment with ID {id}" : "Помилка під час відповіді на коментар ID {id}", + "Error occurred while updating comment with id {id}" : "Помилка під час оновлення коментаря з id {id}", + "Error occurred while posting comment" : "Помилка під час написання коментаря", "Comment" : "Коментар", + "You commented" : "Ви прокоментували", "%1$s commented" : "%1$s прокоментовано", - "%1$s commented on %2$s" : "%1$s прокоментовано у %2$s" + "{author} commented" : "{author} прокоментував", + "You commented on %1$s" : "Ви прокоментували на %1$s", + "You commented on {file}" : "Ви прокоментували {file}", + "%1$s commented on %2$s" : "%1$s прокоментовано у %2$s", + "{author} commented on {file}" : "{author} прокоментував {file}", + "Comments for files" : "Коментів для файлів", + "Unknown user" : "Невідомий користувач" },"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);" } \ No newline at end of file diff --git a/apps/comments/l10n/vi.js b/apps/comments/l10n/vi.js index f91b311691ed8..d6401c0c59735 100644 --- a/apps/comments/l10n/vi.js +++ b/apps/comments/l10n/vi.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "Xem thêm các bình luận...", "Save" : "Lưu", "Allowed characters {count} of {max}" : "Số ký tự được còn lại là {count} trong tổng số {max}", - "Error occurred while retrieving comment with id {id}" : "Có lỗi xảy ra khi truy xuất bình luận có id {id}", "Error occurred while updating comment with id {id}" : "Có lỗi xảy ra khi cập nhật bình luận có id {id}", "Error occurred while posting comment" : "Có lỗi xảy ra khi đăng bình luận", "_%n unread comment_::_%n unread comments_" : ["%n bình luận chưa đọc"], diff --git a/apps/comments/l10n/vi.json b/apps/comments/l10n/vi.json index c2a968a8d9c3b..6d65d6db8692b 100644 --- a/apps/comments/l10n/vi.json +++ b/apps/comments/l10n/vi.json @@ -10,7 +10,6 @@ "More comments …" : "Xem thêm các bình luận...", "Save" : "Lưu", "Allowed characters {count} of {max}" : "Số ký tự được còn lại là {count} trong tổng số {max}", - "Error occurred while retrieving comment with id {id}" : "Có lỗi xảy ra khi truy xuất bình luận có id {id}", "Error occurred while updating comment with id {id}" : "Có lỗi xảy ra khi cập nhật bình luận có id {id}", "Error occurred while posting comment" : "Có lỗi xảy ra khi đăng bình luận", "_%n unread comment_::_%n unread comments_" : ["%n bình luận chưa đọc"], diff --git a/apps/comments/l10n/zh_CN.js b/apps/comments/l10n/zh_CN.js index 6663f6b064f47..21ad0072ed8ff 100644 --- a/apps/comments/l10n/zh_CN.js +++ b/apps/comments/l10n/zh_CN.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "更多评论 ...", "Save" : "保存", "Allowed characters {count} of {max}" : "当前字数: {count},最大允许:{max}", - "Error occurred while retrieving comment with id {id}" : "检索 id 为 {id} 的评论出错", "Error occurred while updating comment with id {id}" : "更新 id 为 {id} 的评论出错", "Error occurred while posting comment" : "发布评论出错", "_%n unread comment_::_%n unread comments_" : ["%n 未读评论"], diff --git a/apps/comments/l10n/zh_CN.json b/apps/comments/l10n/zh_CN.json index 78c080587ddad..9761b25f6e1d2 100644 --- a/apps/comments/l10n/zh_CN.json +++ b/apps/comments/l10n/zh_CN.json @@ -10,7 +10,6 @@ "More comments …" : "更多评论 ...", "Save" : "保存", "Allowed characters {count} of {max}" : "当前字数: {count},最大允许:{max}", - "Error occurred while retrieving comment with id {id}" : "检索 id 为 {id} 的评论出错", "Error occurred while updating comment with id {id}" : "更新 id 为 {id} 的评论出错", "Error occurred while posting comment" : "发布评论出错", "_%n unread comment_::_%n unread comments_" : ["%n 未读评论"], diff --git a/apps/comments/l10n/zh_TW.js b/apps/comments/l10n/zh_TW.js index e02feadc08c32..22584ecd3cc74 100644 --- a/apps/comments/l10n/zh_TW.js +++ b/apps/comments/l10n/zh_TW.js @@ -12,7 +12,6 @@ OC.L10N.register( "More comments …" : "其他留言…", "Save" : "儲存", "Allowed characters {count} of {max}" : "已輸入 {count} / 長度限制 {max}", - "Error occurred while retrieving comment with id {id}" : "取得留言 {id} 發生錯誤", "Error occurred while updating comment with id {id}" : "編輯留言 {id} 發生錯誤", "Error occurred while posting comment" : "張貼留言出錯", "_%n unread comment_::_%n unread comments_" : ["%n 未讀留言"], diff --git a/apps/comments/l10n/zh_TW.json b/apps/comments/l10n/zh_TW.json index f076b52d49144..455454782de95 100644 --- a/apps/comments/l10n/zh_TW.json +++ b/apps/comments/l10n/zh_TW.json @@ -10,7 +10,6 @@ "More comments …" : "其他留言…", "Save" : "儲存", "Allowed characters {count} of {max}" : "已輸入 {count} / 長度限制 {max}", - "Error occurred while retrieving comment with id {id}" : "取得留言 {id} 發生錯誤", "Error occurred while updating comment with id {id}" : "編輯留言 {id} 發生錯誤", "Error occurred while posting comment" : "張貼留言出錯", "_%n unread comment_::_%n unread comments_" : ["%n 未讀留言"], diff --git a/apps/comments/lib/Activity/Listener.php b/apps/comments/lib/Activity/Listener.php index 76af565cf1589..09a4d31e173b9 100644 --- a/apps/comments/lib/Activity/Listener.php +++ b/apps/comments/lib/Activity/Listener.php @@ -31,7 +31,6 @@ use OCP\Files\Node; use OCP\IUser; use OCP\IUserSession; -use OCP\Share; use OCP\Share\IShareHelper; class Listener { @@ -99,7 +98,7 @@ public function commentEvent(CommentsEvent $event) { /** @var Node $node */ $node = array_shift($nodes); $al = $this->shareHelper->getPathsForAccessList($node); - $users = array_merge($users, $al['users']); + $users += $al['users']; } } @@ -120,7 +119,9 @@ public function commentEvent(CommentsEvent $event) { ]); foreach ($users as $user => $path) { - $activity->setAffectedUser($user); + // numerical user ids end up as integers from array keys, but string + // is required + $activity->setAffectedUser((string)$user); $activity->setSubject('add_comment_subject', [ 'actor' => $actor, diff --git a/apps/comments/tests/Unit/Activity/ListenerTest.php b/apps/comments/tests/Unit/Activity/ListenerTest.php new file mode 100644 index 0000000000000..4454101bb382c --- /dev/null +++ b/apps/comments/tests/Unit/Activity/ListenerTest.php @@ -0,0 +1,187 @@ + + * + * @author Arthur Schiwon + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * 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 + * along with this program. If not, see . + * + */ + +namespace OCA\Comments\Tests\Unit\Activity; + +use OCA\Comments\Activity\Listener; +use OCP\Activity\IEvent; +use OCP\Activity\IManager; +use OCP\App\IAppManager; +use OCP\Comments\CommentsEvent; +use OCP\Comments\IComment; +use OCP\Files\Config\ICachedMountFileInfo; +use OCP\Files\Config\IMountProviderCollection; +use OCP\Files\Config\IUserMountCache; +use OCP\Files\Folder; +use OCP\Files\IRootFolder; +use OCP\Files\Node; +use OCP\IUser; +use OCP\IUserSession; +use OCP\Share\IShareHelper; +use Test\TestCase; + +class ListenerTest extends TestCase { + + /** @var Listener */ + protected $listener; + + /** @var IManager|\PHPUnit_Framework_MockObject_MockObject */ + protected $activityManager; + + /** @var IUserSession|\PHPUnit_Framework_MockObject_MockObject */ + protected $session; + + /** @var IAppManager|\PHPUnit_Framework_MockObject_MockObject */ + protected $appManager; + + /** @var IMountProviderCollection|\PHPUnit_Framework_MockObject_MockObject */ + protected $mountProviderCollection; + + /** @var IRootFolder|\PHPUnit_Framework_MockObject_MockObject */ + protected $rootFolder; + + /** @var IShareHelper|\PHPUnit_Framework_MockObject_MockObject */ + protected $shareHelper; + + protected function setUp() { + parent::setUp(); + + $this->activityManager = $this->createMock(IManager::class); + $this->session = $this->createMock(IUserSession::class); + $this->appManager = $this->createMock(IAppManager::class); + $this->mountProviderCollection = $this->createMock(IMountProviderCollection::class); + $this->rootFolder = $this->createMock(IRootFolder::class); + $this->shareHelper = $this->createMock(IShareHelper::class); + + $this->listener = new Listener( + $this->activityManager, + $this->session, + $this->appManager, + $this->mountProviderCollection, + $this->rootFolder, + $this->shareHelper + ); + } + + public function testCommentEvent() { + $this->appManager->expects($this->any()) + ->method('isInstalled') + ->with('activity') + ->willReturn(true); + + $comment = $this->createMock(IComment::class); + $comment->expects($this->any()) + ->method('getObjectType') + ->willReturn('files'); + + /** @var CommentsEvent|\PHPUnit_Framework_MockObject_MockObject $event */ + $event = $this->createMock(CommentsEvent::class); + $event->expects($this->any()) + ->method('getComment') + ->willReturn($comment); + $event->expects($this->any()) + ->method('getEvent') + ->willReturn(CommentsEvent::EVENT_ADD); + + /** @var IUser|\PHPUnit_Framework_MockObject_MockObject $ownerUser */ + $ownerUser = $this->createMock(IUser::class); + $ownerUser->expects($this->any()) + ->method('getUID') + ->willReturn('937393'); + + /** @var \PHPUnit_Framework_MockObject_MockObject $mount */ + $mount = $this->createMock(ICachedMountFileInfo::class); + $mount->expects($this->any()) + ->method('getUser') + ->willReturn($ownerUser); // perhaps not the right user, but does not matter in this scenario + + $mounts = [ $mount, $mount ]; // to make sure duplicates are dealt with + + $userMountCache = $this->createMock(IUserMountCache::class); + $userMountCache->expects($this->any()) + ->method('getMountsForFileId') + ->willReturn($mounts); + + $this->mountProviderCollection->expects($this->any()) + ->method('getMountCache') + ->willReturn($userMountCache); + + $node = $this->createMock(Node::class); + $nodes = [ $node ]; + + $ownerFolder = $this->createMock(Folder::class); + $ownerFolder->expects($this->any()) + ->method('getById') + ->willReturn($nodes); + + $this->rootFolder->expects($this->any()) + ->method('getUserFolder') + ->willReturn($ownerFolder); + + $al = [ 'users' => [ + '873304' => 'i/got/it/here', + '254342' => 'there/i/have/it', + 'sandra' => 'and/here/i/placed/it' + ]]; + $this->shareHelper->expects($this->any()) + ->method('getPathsForAccessList') + ->willReturn($al); + + $this->session->expects($this->any()) + ->method('getUser') + ->willReturn($ownerUser); + + /** @var \PHPUnit_Framework_MockObject_MockObject $activity */ + $activity = $this->createMock(IEvent::class); + $activity->expects($this->exactly(count($al['users']))) + ->method('setAffectedUser'); + $activity->expects($this->once()) + ->method('setApp') + ->with('comments') + ->willReturnSelf(); + $activity->expects($this->once()) + ->method('setType') + ->with('comments') + ->willReturnSelf(); + $activity->expects($this->once()) + ->method('setAuthor') + ->with($ownerUser->getUID()) + ->willReturnSelf(); + $activity->expects($this->once()) + ->method('setObject') + ->with('files', $this->anything()) + ->willReturnSelf(); + $activity->expects($this->once()) + ->method('setMessage') + ->with('add_comment_message', $this->anything()) + ->willReturnSelf(); + + $this->activityManager->expects($this->once()) + ->method('generateEvent') + ->willReturn($activity); + $this->activityManager->expects($this->exactly(count($al['users']))) + ->method('publish'); + + $this->listener->commentEvent($event); + } +} diff --git a/apps/dav/l10n/cs.js b/apps/dav/l10n/cs.js index 2145acaa23cd2..012a3c09b884d 100644 --- a/apps/dav/l10n/cs.js +++ b/apps/dav/l10n/cs.js @@ -10,6 +10,8 @@ OC.L10N.register( "You deleted calendar {calendar}" : "Smazal(a) jste kalendář {calendar}", "{actor} updated calendar {calendar}" : "{actor} aktualizoval(a) kalendář {calendar}", "You updated calendar {calendar}" : "Aktualizoval(a) jste kalendář {calendar}", + "You shared calendar {calendar} as public link" : "Sdílel(a) jste kalendář {calendar} jako veřejný odkaz", + "You removed public link for calendar {calendar}" : "Odstranil(a) jste veřejný odkaz pro kalendář {calendar} ", "{actor} shared calendar {calendar} with you" : "{actor} s vámi nasdílel(a) kalendář {calendar}", "You shared calendar {calendar} with {user}" : "S uživatelem {user} jste začal(a) sdílet kalendář {calendar}", "{actor} shared calendar {calendar} with {user}" : "{actor} začal sdílet kalendář {calendar} s uživatelem {user}", @@ -53,11 +55,13 @@ OC.L10N.register( "Description:" : "Popis:", "Link:" : "Odkaz:", "Contacts" : "Kontakty", + "WebDAV" : "WebDAV", "Technical details" : "Technické detaily", "Remote Address: %s" : "Vzdálená adresa: %s", "Request ID: %s" : "ID požadavku: %s", "CalDAV server" : "CalDAV server", "Send invitations to attendees" : "Poslat pozvánky na adresy účastníků", - "Please make sure to properly set up the email settings above." : "Ujistěte se, že jste správně nastavili výše uvedená nastavení e-mailu." + "Please make sure to properly set up the email settings above." : "Ujistěte se, že jste správně nastavili výše uvedená nastavení e-mailu.", + "Automatically generate a birthday calendar" : "Automaticky vytvořit kalendář s narozeninami" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/dav/l10n/cs.json b/apps/dav/l10n/cs.json index 0857d4120a59e..09b60937f3ac9 100644 --- a/apps/dav/l10n/cs.json +++ b/apps/dav/l10n/cs.json @@ -8,6 +8,8 @@ "You deleted calendar {calendar}" : "Smazal(a) jste kalendář {calendar}", "{actor} updated calendar {calendar}" : "{actor} aktualizoval(a) kalendář {calendar}", "You updated calendar {calendar}" : "Aktualizoval(a) jste kalendář {calendar}", + "You shared calendar {calendar} as public link" : "Sdílel(a) jste kalendář {calendar} jako veřejný odkaz", + "You removed public link for calendar {calendar}" : "Odstranil(a) jste veřejný odkaz pro kalendář {calendar} ", "{actor} shared calendar {calendar} with you" : "{actor} s vámi nasdílel(a) kalendář {calendar}", "You shared calendar {calendar} with {user}" : "S uživatelem {user} jste začal(a) sdílet kalendář {calendar}", "{actor} shared calendar {calendar} with {user}" : "{actor} začal sdílet kalendář {calendar} s uživatelem {user}", @@ -51,11 +53,13 @@ "Description:" : "Popis:", "Link:" : "Odkaz:", "Contacts" : "Kontakty", + "WebDAV" : "WebDAV", "Technical details" : "Technické detaily", "Remote Address: %s" : "Vzdálená adresa: %s", "Request ID: %s" : "ID požadavku: %s", "CalDAV server" : "CalDAV server", "Send invitations to attendees" : "Poslat pozvánky na adresy účastníků", - "Please make sure to properly set up the email settings above." : "Ujistěte se, že jste správně nastavili výše uvedená nastavení e-mailu." + "Please make sure to properly set up the email settings above." : "Ujistěte se, že jste správně nastavili výše uvedená nastavení e-mailu.", + "Automatically generate a birthday calendar" : "Automaticky vytvořit kalendář s narozeninami" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/dav/l10n/de.js b/apps/dav/l10n/de.js index 2a56e48e5dae5..4402c07a39747 100644 --- a/apps/dav/l10n/de.js +++ b/apps/dav/l10n/de.js @@ -55,6 +55,7 @@ OC.L10N.register( "Description:" : "Beschreibung:", "Link:" : "Link:", "Contacts" : "Kontakte", + "WebDAV" : "WebDAV", "Technical details" : "Technische Details", "Remote Address: %s" : "Entfernte Adresse: %s", "Request ID: %s" : "Anfragekennung: %s", diff --git a/apps/dav/l10n/de.json b/apps/dav/l10n/de.json index fa1f09644f96b..83973d8a7b62e 100644 --- a/apps/dav/l10n/de.json +++ b/apps/dav/l10n/de.json @@ -53,6 +53,7 @@ "Description:" : "Beschreibung:", "Link:" : "Link:", "Contacts" : "Kontakte", + "WebDAV" : "WebDAV", "Technical details" : "Technische Details", "Remote Address: %s" : "Entfernte Adresse: %s", "Request ID: %s" : "Anfragekennung: %s", diff --git a/apps/dav/l10n/de_DE.js b/apps/dav/l10n/de_DE.js index 67d215a2d0a6a..058a2af65a01a 100644 --- a/apps/dav/l10n/de_DE.js +++ b/apps/dav/l10n/de_DE.js @@ -55,6 +55,7 @@ OC.L10N.register( "Description:" : "Beschreibung:", "Link:" : "Link:", "Contacts" : "Kontakte", + "WebDAV" : "WebDAV", "Technical details" : "Technische Details", "Remote Address: %s" : "Entfernte Adresse: %s", "Request ID: %s" : "Anfragekennung: %s", diff --git a/apps/dav/l10n/de_DE.json b/apps/dav/l10n/de_DE.json index 06722ac039b1f..824e670dfa27a 100644 --- a/apps/dav/l10n/de_DE.json +++ b/apps/dav/l10n/de_DE.json @@ -53,6 +53,7 @@ "Description:" : "Beschreibung:", "Link:" : "Link:", "Contacts" : "Kontakte", + "WebDAV" : "WebDAV", "Technical details" : "Technische Details", "Remote Address: %s" : "Entfernte Adresse: %s", "Request ID: %s" : "Anfragekennung: %s", diff --git a/apps/dav/l10n/el.js b/apps/dav/l10n/el.js index 721ba1eb84473..7ea094cae3973 100644 --- a/apps/dav/l10n/el.js +++ b/apps/dav/l10n/el.js @@ -54,6 +54,7 @@ OC.L10N.register( "Description:" : "Περιγραφή:", "Link:" : "Σύνδεσμος:", "Contacts" : "Επαφές", + "WebDAV" : "WebDAV", "Technical details" : "Τεχνικές λεπτομέρειες", "Remote Address: %s" : "Απομακρυσμένη Διεύθυνση: %s", "Request ID: %s" : "ID Αιτήματος: %s", diff --git a/apps/dav/l10n/el.json b/apps/dav/l10n/el.json index ef5faaa24a47e..94eee58e8deea 100644 --- a/apps/dav/l10n/el.json +++ b/apps/dav/l10n/el.json @@ -52,6 +52,7 @@ "Description:" : "Περιγραφή:", "Link:" : "Σύνδεσμος:", "Contacts" : "Επαφές", + "WebDAV" : "WebDAV", "Technical details" : "Τεχνικές λεπτομέρειες", "Remote Address: %s" : "Απομακρυσμένη Διεύθυνση: %s", "Request ID: %s" : "ID Αιτήματος: %s", diff --git a/apps/dav/l10n/en_GB.js b/apps/dav/l10n/en_GB.js index 001d824d16445..eeda81b661210 100644 --- a/apps/dav/l10n/en_GB.js +++ b/apps/dav/l10n/en_GB.js @@ -55,6 +55,7 @@ OC.L10N.register( "Description:" : "Description:", "Link:" : "Link:", "Contacts" : "Contacts", + "WebDAV" : "WebDAV", "Technical details" : "Technical details", "Remote Address: %s" : "Remote Address: %s", "Request ID: %s" : "Request ID: %s", diff --git a/apps/dav/l10n/en_GB.json b/apps/dav/l10n/en_GB.json index f0e9e693ae9d8..e3a7a0b46b6dc 100644 --- a/apps/dav/l10n/en_GB.json +++ b/apps/dav/l10n/en_GB.json @@ -53,6 +53,7 @@ "Description:" : "Description:", "Link:" : "Link:", "Contacts" : "Contacts", + "WebDAV" : "WebDAV", "Technical details" : "Technical details", "Remote Address: %s" : "Remote Address: %s", "Request ID: %s" : "Request ID: %s", diff --git a/apps/dav/l10n/es.js b/apps/dav/l10n/es.js index 2e74e32f16031..07b1600e8b0fc 100644 --- a/apps/dav/l10n/es.js +++ b/apps/dav/l10n/es.js @@ -55,6 +55,7 @@ OC.L10N.register( "Description:" : "Descripción:", "Link:" : "Enlace:", "Contacts" : "Contactos", + "WebDAV" : "WebDAV", "Technical details" : "Detalles técnicos", "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", diff --git a/apps/dav/l10n/es.json b/apps/dav/l10n/es.json index 722da49bf83d5..9bb9118d043da 100644 --- a/apps/dav/l10n/es.json +++ b/apps/dav/l10n/es.json @@ -53,6 +53,7 @@ "Description:" : "Descripción:", "Link:" : "Enlace:", "Contacts" : "Contactos", + "WebDAV" : "WebDAV", "Technical details" : "Detalles técnicos", "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", diff --git a/apps/dav/l10n/es_MX.js b/apps/dav/l10n/es_MX.js index 6f229188f9af6..d01873bd44416 100644 --- a/apps/dav/l10n/es_MX.js +++ b/apps/dav/l10n/es_MX.js @@ -55,6 +55,7 @@ OC.L10N.register( "Description:" : "Descripción:", "Link:" : "Enlace:", "Contacts" : "Contactos", + "WebDAV" : "WebDAV", "Technical details" : "Detalles técnicos", "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", diff --git a/apps/dav/l10n/es_MX.json b/apps/dav/l10n/es_MX.json index eba678f78a0fc..5cbd4755efddc 100644 --- a/apps/dav/l10n/es_MX.json +++ b/apps/dav/l10n/es_MX.json @@ -53,6 +53,7 @@ "Description:" : "Descripción:", "Link:" : "Enlace:", "Contacts" : "Contactos", + "WebDAV" : "WebDAV", "Technical details" : "Detalles técnicos", "Remote Address: %s" : "Dirección remota: %s", "Request ID: %s" : "ID de solicitud: %s", diff --git a/apps/dav/l10n/fi.js b/apps/dav/l10n/fi.js index 51e42b5d72e8a..ce54c41f6da31 100644 --- a/apps/dav/l10n/fi.js +++ b/apps/dav/l10n/fi.js @@ -10,6 +10,8 @@ OC.L10N.register( "You deleted calendar {calendar}" : "Poistit kalenterin {calendar}", "{actor} updated calendar {calendar}" : "{actor} päivitti kalenterin {calendar}", "You updated calendar {calendar}" : "Päivitit kalenterin {calendar}", + "You shared calendar {calendar} as public link" : "Jaoit kalenterin {calendar} julkisena linkkinä", + "You removed public link for calendar {calendar}" : "Poistit julkisen linkin kalenterilta {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} jakoi kalenterin {calendar} kanssasi", "You shared calendar {calendar} with {user}" : "Jaoit kalenterin {calendar} käyttäjälle {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} jakoi kalenterin {calendar} käyttäjälle {user}", @@ -41,12 +43,26 @@ OC.L10N.register( "A calendar event was modified" : "Kalenterin tapahtumaa on muokattu", "A calendar todo was modified" : "Kalenterin tehtävää on muokattu", "Contact birthdays" : "Yhteystietojen syntymäpäivät", + "Invitation canceled" : "Kutsu peruttu", + "Hello %s," : "Hei %s", + "The meeting »%s« with %s was canceled." : "Tapaaminen »%s« henkilön %s kanssa peruttiin.", + "Invitation updated" : "Kutsu päivitetty", + "The meeting »%s« with %s was updated." : "Tapaaminen »%s« henkilön %s kanssa päivitettiin.", + "%s invited you to »%s«" : "%s kutsui sinut »%s«", + "When:" : "Milloin:", + "Where:" : "Missä:", + "Description:" : "Kuvaus:", + "Link:" : "Linkki:", "Contacts" : "Yhteystiedot", + "WebDAV" : "WebDAV", "Technical details" : "Tekniset yksityiskohdat", "Remote Address: %s" : "Etäosoite: %s", "Request ID: %s" : "Pyynnön tunniste: %s", "CalDAV server" : "CalDAV-palvelin", "Send invitations to attendees" : "Lähetä kutsut osallistujille", - "Please make sure to properly set up the email settings above." : "Varmista, että määrität sähköpostiasetukset oikein yläpuolelle. " + "Please make sure to properly set up the email settings above." : "Varmista, että määrität sähköpostiasetukset oikein yläpuolelle. ", + "Automatically generate a birthday calendar" : "Luo syntymäpäiväkalenteri automaattisesti", + "Birthday calendars will be generated by a background job." : "Syntymäpäiväkalenterit luodaan taustatyön toimesta.", + "Hence they will not be available immediately after enabling but will show up after some time." : "Sen vuoksi ne eivät ole välittömästi saatavilla käyttöönoton jälkeen, vaan ne tulevat näkyviin pienellä viiveellä." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/fi.json b/apps/dav/l10n/fi.json index 6b3726a242e50..888818020f33f 100644 --- a/apps/dav/l10n/fi.json +++ b/apps/dav/l10n/fi.json @@ -8,6 +8,8 @@ "You deleted calendar {calendar}" : "Poistit kalenterin {calendar}", "{actor} updated calendar {calendar}" : "{actor} päivitti kalenterin {calendar}", "You updated calendar {calendar}" : "Päivitit kalenterin {calendar}", + "You shared calendar {calendar} as public link" : "Jaoit kalenterin {calendar} julkisena linkkinä", + "You removed public link for calendar {calendar}" : "Poistit julkisen linkin kalenterilta {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} jakoi kalenterin {calendar} kanssasi", "You shared calendar {calendar} with {user}" : "Jaoit kalenterin {calendar} käyttäjälle {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} jakoi kalenterin {calendar} käyttäjälle {user}", @@ -39,12 +41,26 @@ "A calendar event was modified" : "Kalenterin tapahtumaa on muokattu", "A calendar todo was modified" : "Kalenterin tehtävää on muokattu", "Contact birthdays" : "Yhteystietojen syntymäpäivät", + "Invitation canceled" : "Kutsu peruttu", + "Hello %s," : "Hei %s", + "The meeting »%s« with %s was canceled." : "Tapaaminen »%s« henkilön %s kanssa peruttiin.", + "Invitation updated" : "Kutsu päivitetty", + "The meeting »%s« with %s was updated." : "Tapaaminen »%s« henkilön %s kanssa päivitettiin.", + "%s invited you to »%s«" : "%s kutsui sinut »%s«", + "When:" : "Milloin:", + "Where:" : "Missä:", + "Description:" : "Kuvaus:", + "Link:" : "Linkki:", "Contacts" : "Yhteystiedot", + "WebDAV" : "WebDAV", "Technical details" : "Tekniset yksityiskohdat", "Remote Address: %s" : "Etäosoite: %s", "Request ID: %s" : "Pyynnön tunniste: %s", "CalDAV server" : "CalDAV-palvelin", "Send invitations to attendees" : "Lähetä kutsut osallistujille", - "Please make sure to properly set up the email settings above." : "Varmista, että määrität sähköpostiasetukset oikein yläpuolelle. " + "Please make sure to properly set up the email settings above." : "Varmista, että määrität sähköpostiasetukset oikein yläpuolelle. ", + "Automatically generate a birthday calendar" : "Luo syntymäpäiväkalenteri automaattisesti", + "Birthday calendars will be generated by a background job." : "Syntymäpäiväkalenterit luodaan taustatyön toimesta.", + "Hence they will not be available immediately after enabling but will show up after some time." : "Sen vuoksi ne eivät ole välittömästi saatavilla käyttöönoton jälkeen, vaan ne tulevat näkyviin pienellä viiveellä." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/dav/l10n/fr.js b/apps/dav/l10n/fr.js index 13fa7a30852d5..291e5615265b4 100644 --- a/apps/dav/l10n/fr.js +++ b/apps/dav/l10n/fr.js @@ -55,6 +55,7 @@ OC.L10N.register( "Description:" : "Description :", "Link:" : "Lien :", "Contacts" : "Contacts", + "WebDAV" : "WebDAV", "Technical details" : "Détails techniques", "Remote Address: %s" : "Adresse distante : %s", "Request ID: %s" : "ID de la requête : %s", diff --git a/apps/dav/l10n/fr.json b/apps/dav/l10n/fr.json index c7718e4f361e5..b09c10b96f3dd 100644 --- a/apps/dav/l10n/fr.json +++ b/apps/dav/l10n/fr.json @@ -53,6 +53,7 @@ "Description:" : "Description :", "Link:" : "Lien :", "Contacts" : "Contacts", + "WebDAV" : "WebDAV", "Technical details" : "Détails techniques", "Remote Address: %s" : "Adresse distante : %s", "Request ID: %s" : "ID de la requête : %s", diff --git a/apps/dav/l10n/he.js b/apps/dav/l10n/he.js new file mode 100644 index 0000000000000..04523cb0c1e64 --- /dev/null +++ b/apps/dav/l10n/he.js @@ -0,0 +1,39 @@ +OC.L10N.register( + "dav", + { + "Calendar" : "יומן", + "Todos" : "משימות מטלות", + "Personal" : "אישי", + "{actor} created calendar {calendar}" : "היומן {calendar} נוצר על ידי {actor}", + "You created calendar {calendar}" : "מחקת את היומן {calendar}", + "{actor} deleted calendar {calendar}" : "היומן {calendar} נמחק על ידי {actor}", + "You deleted calendar {calendar}" : "מחקת את היומן {calendar}", + "{actor} updated calendar {calendar}" : "היומן {calendar} עודכן על ידי {actor}", + "You updated calendar {calendar}" : "עדכנת את היומן {calendar}", + "You shared calendar {calendar} as public link" : "שיתפת את היומן {calendar} כקישור ציבורי", + "You removed public link for calendar {calendar}" : "הסרת את הקישור הציבורי ליומן {calendar}", + "A calendar was modified" : " יומן נערך", + "A calendar event was modified" : "אירוע ביומן נערך", + "Contact birthdays" : "ימי הולדת של אנשי קשר", + "Invitation canceled" : "ההזמנה בוטלה", + "Hello %s," : "שלום %s,", + "The meeting »%s« with %s was canceled." : "הפגישה „%s” עם %s בוטלה.", + "Invitation updated" : "ההזמנה עודכנה", + "The meeting »%s« with %s was updated." : "הפגישה „%s” עם %s עודכנה.", + "When:" : "מתי:", + "Where:" : "איפה:", + "Description:" : "תיאור:", + "Link:" : "קישור:", + "Contacts" : "אנשי קשר", + "WebDAV" : "WebDAV", + "Technical details" : "פרטים טכניים", + "Remote Address: %s" : "כתובת מרוחקת: %s", + "Request ID: %s" : "מזהה בקשה: %s", + "CalDAV server" : "שרת CalDAV", + "Send invitations to attendees" : "שליחת הזמנות למשתתפים", + "Please make sure to properly set up the email settings above." : "נא לוודא שהגדרת את הדוא״ל שלהלן כראוי.", + "Automatically generate a birthday calendar" : "יצירת יומן ימי הולדת אוטומטית", + "Birthday calendars will be generated by a background job." : "יומני ימי הולדת ייווצרו על ידי משימה ברקע.", + "Hence they will not be available immediately after enabling but will show up after some time." : "לכן הם לא יהיה זמינים מיד לאחר ההפעלה אלא הם יופיעו לאחר זמן מה." +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/he.json b/apps/dav/l10n/he.json new file mode 100644 index 0000000000000..11c7ca6b6bf3f --- /dev/null +++ b/apps/dav/l10n/he.json @@ -0,0 +1,37 @@ +{ "translations": { + "Calendar" : "יומן", + "Todos" : "משימות מטלות", + "Personal" : "אישי", + "{actor} created calendar {calendar}" : "היומן {calendar} נוצר על ידי {actor}", + "You created calendar {calendar}" : "מחקת את היומן {calendar}", + "{actor} deleted calendar {calendar}" : "היומן {calendar} נמחק על ידי {actor}", + "You deleted calendar {calendar}" : "מחקת את היומן {calendar}", + "{actor} updated calendar {calendar}" : "היומן {calendar} עודכן על ידי {actor}", + "You updated calendar {calendar}" : "עדכנת את היומן {calendar}", + "You shared calendar {calendar} as public link" : "שיתפת את היומן {calendar} כקישור ציבורי", + "You removed public link for calendar {calendar}" : "הסרת את הקישור הציבורי ליומן {calendar}", + "A calendar was modified" : " יומן נערך", + "A calendar event was modified" : "אירוע ביומן נערך", + "Contact birthdays" : "ימי הולדת של אנשי קשר", + "Invitation canceled" : "ההזמנה בוטלה", + "Hello %s," : "שלום %s,", + "The meeting »%s« with %s was canceled." : "הפגישה „%s” עם %s בוטלה.", + "Invitation updated" : "ההזמנה עודכנה", + "The meeting »%s« with %s was updated." : "הפגישה „%s” עם %s עודכנה.", + "When:" : "מתי:", + "Where:" : "איפה:", + "Description:" : "תיאור:", + "Link:" : "קישור:", + "Contacts" : "אנשי קשר", + "WebDAV" : "WebDAV", + "Technical details" : "פרטים טכניים", + "Remote Address: %s" : "כתובת מרוחקת: %s", + "Request ID: %s" : "מזהה בקשה: %s", + "CalDAV server" : "שרת CalDAV", + "Send invitations to attendees" : "שליחת הזמנות למשתתפים", + "Please make sure to properly set up the email settings above." : "נא לוודא שהגדרת את הדוא״ל שלהלן כראוי.", + "Automatically generate a birthday calendar" : "יצירת יומן ימי הולדת אוטומטית", + "Birthday calendars will be generated by a background job." : "יומני ימי הולדת ייווצרו על ידי משימה ברקע.", + "Hence they will not be available immediately after enabling but will show up after some time." : "לכן הם לא יהיה זמינים מיד לאחר ההפעלה אלא הם יופיעו לאחר זמן מה." +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/apps/dav/l10n/hu.js b/apps/dav/l10n/hu.js index e028e61e78776..88c86a874a3e2 100644 --- a/apps/dav/l10n/hu.js +++ b/apps/dav/l10n/hu.js @@ -55,6 +55,7 @@ OC.L10N.register( "Description:" : "Leírás:", "Link:" : "Link:", "Contacts" : "Névjegyek", + "WebDAV" : "WebDAV", "Technical details" : "Technikai adatok", "Remote Address: %s" : "Távoli cím: %s", "Request ID: %s" : "Kérelem azonosító: %s", diff --git a/apps/dav/l10n/hu.json b/apps/dav/l10n/hu.json index 2f507d46aa9ed..cd9af1917565e 100644 --- a/apps/dav/l10n/hu.json +++ b/apps/dav/l10n/hu.json @@ -53,6 +53,7 @@ "Description:" : "Leírás:", "Link:" : "Link:", "Contacts" : "Névjegyek", + "WebDAV" : "WebDAV", "Technical details" : "Technikai adatok", "Remote Address: %s" : "Távoli cím: %s", "Request ID: %s" : "Kérelem azonosító: %s", diff --git a/apps/dav/l10n/is.js b/apps/dav/l10n/is.js index 31be41f4f2380..6debe2959d7b9 100644 --- a/apps/dav/l10n/is.js +++ b/apps/dav/l10n/is.js @@ -10,6 +10,8 @@ OC.L10N.register( "You deleted calendar {calendar}" : "Þú eyddir dagatalinu {calendar}", "{actor} updated calendar {calendar}" : "{actor} uppfærði dagatalið {calendar}", "You updated calendar {calendar}" : "Þú uppfærðir dagatalið {calendar}", + "You shared calendar {calendar} as public link" : "Þú deildir dagatalinu {calendar} sem almenningstengli", + "You removed public link for calendar {calendar}" : "Þú fjarlægðir almenningstengilinn fyrir dagatalið {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} deildi dagatalinu {calendar} með þér", "You shared calendar {calendar} with {user}" : "Þú deildir dagatalinu {calendar} með {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} deildi dagatalinu {calendar} með {user}", @@ -53,11 +55,15 @@ OC.L10N.register( "Description:" : "Lýsing:", "Link:" : "Tengill:", "Contacts" : "Tengiliðir", + "WebDAV" : "WebDAV", "Technical details" : "Tæknilegar upplýsingar", "Remote Address: %s" : "Fjartengt vistfang: %s", "Request ID: %s" : "Beiðni um auðkenni: %s", "CalDAV server" : "CalDAV-þjónn", "Send invitations to attendees" : "Senda boð til þátttakenda", - "Please make sure to properly set up the email settings above." : "Gakktu úr skugga um að tölvupóststillingarnar hér fyrir ofan séu réttar." + "Please make sure to properly set up the email settings above." : "Gakktu úr skugga um að tölvupóststillingarnar hér fyrir ofan séu réttar.", + "Automatically generate a birthday calendar" : "Útbúa fæðingardagatal sjálfvirkt", + "Birthday calendars will be generated by a background job." : "Fæðingardagatöl verða útbúin í bakvinnsluferli.", + "Hence they will not be available immediately after enabling but will show up after some time." : "Þar með verða þau ekki tilbúin strax eftir að þetta er virkjað, heldur birtast þau eftir nokkurn tíma." }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/dav/l10n/is.json b/apps/dav/l10n/is.json index 16fd1c96e4d37..639569b55b60c 100644 --- a/apps/dav/l10n/is.json +++ b/apps/dav/l10n/is.json @@ -8,6 +8,8 @@ "You deleted calendar {calendar}" : "Þú eyddir dagatalinu {calendar}", "{actor} updated calendar {calendar}" : "{actor} uppfærði dagatalið {calendar}", "You updated calendar {calendar}" : "Þú uppfærðir dagatalið {calendar}", + "You shared calendar {calendar} as public link" : "Þú deildir dagatalinu {calendar} sem almenningstengli", + "You removed public link for calendar {calendar}" : "Þú fjarlægðir almenningstengilinn fyrir dagatalið {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} deildi dagatalinu {calendar} með þér", "You shared calendar {calendar} with {user}" : "Þú deildir dagatalinu {calendar} með {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} deildi dagatalinu {calendar} með {user}", @@ -51,11 +53,15 @@ "Description:" : "Lýsing:", "Link:" : "Tengill:", "Contacts" : "Tengiliðir", + "WebDAV" : "WebDAV", "Technical details" : "Tæknilegar upplýsingar", "Remote Address: %s" : "Fjartengt vistfang: %s", "Request ID: %s" : "Beiðni um auðkenni: %s", "CalDAV server" : "CalDAV-þjónn", "Send invitations to attendees" : "Senda boð til þátttakenda", - "Please make sure to properly set up the email settings above." : "Gakktu úr skugga um að tölvupóststillingarnar hér fyrir ofan séu réttar." + "Please make sure to properly set up the email settings above." : "Gakktu úr skugga um að tölvupóststillingarnar hér fyrir ofan séu réttar.", + "Automatically generate a birthday calendar" : "Útbúa fæðingardagatal sjálfvirkt", + "Birthday calendars will be generated by a background job." : "Fæðingardagatöl verða útbúin í bakvinnsluferli.", + "Hence they will not be available immediately after enabling but will show up after some time." : "Þar með verða þau ekki tilbúin strax eftir að þetta er virkjað, heldur birtast þau eftir nokkurn tíma." },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" } \ No newline at end of file diff --git a/apps/dav/l10n/it.js b/apps/dav/l10n/it.js index c9b206f0ddfcb..34893da53b04e 100644 --- a/apps/dav/l10n/it.js +++ b/apps/dav/l10n/it.js @@ -55,6 +55,7 @@ OC.L10N.register( "Description:" : "Descrizione:", "Link:" : "Collegamento:", "Contacts" : "Contatti", + "WebDAV" : "WebDAV", "Technical details" : "Dettagli tecnici", "Remote Address: %s" : "Indirizzo remoto: %s", "Request ID: %s" : "ID richiesta: %s", diff --git a/apps/dav/l10n/it.json b/apps/dav/l10n/it.json index 21f9e0449cb0c..538b041e10ac4 100644 --- a/apps/dav/l10n/it.json +++ b/apps/dav/l10n/it.json @@ -53,6 +53,7 @@ "Description:" : "Descrizione:", "Link:" : "Collegamento:", "Contacts" : "Contatti", + "WebDAV" : "WebDAV", "Technical details" : "Dettagli tecnici", "Remote Address: %s" : "Indirizzo remoto: %s", "Request ID: %s" : "ID richiesta: %s", diff --git a/apps/dav/l10n/ka_GE.js b/apps/dav/l10n/ka_GE.js index 7cbbcc7e26af5..5c3d70b2c64bb 100644 --- a/apps/dav/l10n/ka_GE.js +++ b/apps/dav/l10n/ka_GE.js @@ -55,6 +55,7 @@ OC.L10N.register( "Description:" : "აღწერა:", "Link:" : "ბმული:", "Contacts" : "კონტაქტები", + "WebDAV" : "WebDAV", "Technical details" : "ტექნიკური დეტალები", "Remote Address: %s" : "დისტანციური მისამართი: %s", "Request ID: %s" : "მოთხოვნის ID: %s", diff --git a/apps/dav/l10n/ka_GE.json b/apps/dav/l10n/ka_GE.json index 9dcb8b43ba7fd..c9318e2c9f547 100644 --- a/apps/dav/l10n/ka_GE.json +++ b/apps/dav/l10n/ka_GE.json @@ -53,6 +53,7 @@ "Description:" : "აღწერა:", "Link:" : "ბმული:", "Contacts" : "კონტაქტები", + "WebDAV" : "WebDAV", "Technical details" : "ტექნიკური დეტალები", "Remote Address: %s" : "დისტანციური მისამართი: %s", "Request ID: %s" : "მოთხოვნის ID: %s", diff --git a/apps/dav/l10n/nb.js b/apps/dav/l10n/nb.js index 3f79541d200bc..84bed9c007888 100644 --- a/apps/dav/l10n/nb.js +++ b/apps/dav/l10n/nb.js @@ -55,6 +55,7 @@ OC.L10N.register( "Description:" : "Beskrivelse:", "Link:" : "Lenke:", "Contacts" : "Kontakter", + "WebDAV" : "WebDAV", "Technical details" : "Tekniske detaljer", "Remote Address: %s" : "Ekstern adresse: %s", "Request ID: %s" : "Forespørsel ID: %s", diff --git a/apps/dav/l10n/nb.json b/apps/dav/l10n/nb.json index c76b4bc26c6a0..31a7abe615e5d 100644 --- a/apps/dav/l10n/nb.json +++ b/apps/dav/l10n/nb.json @@ -53,6 +53,7 @@ "Description:" : "Beskrivelse:", "Link:" : "Lenke:", "Contacts" : "Kontakter", + "WebDAV" : "WebDAV", "Technical details" : "Tekniske detaljer", "Remote Address: %s" : "Ekstern adresse: %s", "Request ID: %s" : "Forespørsel ID: %s", diff --git a/apps/dav/l10n/nl.js b/apps/dav/l10n/nl.js index b88f45f10274d..530dbac548782 100644 --- a/apps/dav/l10n/nl.js +++ b/apps/dav/l10n/nl.js @@ -55,6 +55,7 @@ OC.L10N.register( "Description:" : "Omschrijving:", "Link:" : "Link:", "Contacts" : "Contactpersonen", + "WebDAV" : "WebDAV", "Technical details" : "Technische details", "Remote Address: %s" : "Extern adres: %s", "Request ID: %s" : "Aanvraag-ID: %s", diff --git a/apps/dav/l10n/nl.json b/apps/dav/l10n/nl.json index baea2f45af840..4f3f6cf7f7297 100644 --- a/apps/dav/l10n/nl.json +++ b/apps/dav/l10n/nl.json @@ -53,6 +53,7 @@ "Description:" : "Omschrijving:", "Link:" : "Link:", "Contacts" : "Contactpersonen", + "WebDAV" : "WebDAV", "Technical details" : "Technische details", "Remote Address: %s" : "Extern adres: %s", "Request ID: %s" : "Aanvraag-ID: %s", diff --git a/apps/dav/l10n/nn_NO.js b/apps/dav/l10n/nn_NO.js new file mode 100644 index 0000000000000..5dee7e46749c4 --- /dev/null +++ b/apps/dav/l10n/nn_NO.js @@ -0,0 +1,43 @@ +OC.L10N.register( + "dav", + { + "Calendar" : "Kalendar", + "Todos" : "Å gjere", + "Personal" : "Personleg", + "{actor} created calendar {calendar}" : "{actor} lagde kalendaren {calendar}", + "You created calendar {calendar}" : "Du lagde kalendaren {calendar}", + "{actor} deleted calendar {calendar}" : "{actor} sletta kalendaren {calendar}", + "You deleted calendar {calendar}" : "Du sletta kalendaren {calendar}", + "{actor} updated calendar {calendar}" : "{actor} oppdaterte kalendaren {calendar}", + "You updated calendar {calendar}" : "Du oppdaterte kalendaren {calendar}", + "You shared calendar {calendar} as public link" : "Du delte kalendaren {calendar} som en offentleg lenke", + "You removed public link for calendar {calendar}" : "Du fjerna den offentlege lenka for kalendaren {calendar}", + "{actor} shared calendar {calendar} with you" : "{actor} delte kalendaren {calendar} med deg", + "You shared calendar {calendar} with {user}" : "Du delte kalendaren {calendar} med {user}", + "{actor} shared calendar {calendar} with {user}" : "{actor} delte kalendaren {calendar} med {user}", + "{actor} unshared calendar {calendar} from you" : "{actor} stoppa å dele kalendaren {calendar} med deg", + "You unshared calendar {calendar} from {user}" : "Du stoppa å dele kalendaren {calendar} med {user}", + "{actor} unshared calendar {calendar} from {user}" : "{actor} stoppa å dele kalendaren {calendar} med {user}", + "{actor} unshared calendar {calendar} from themselves" : "{actor} stoppa å dele kalendaren {calendar} med segsjølv", + "You shared calendar {calendar} with group {group}" : "Du delte kalendaren {calendar} med gruppa {group}", + "{actor} shared calendar {calendar} with group {group}" : "{actor} delte kalendaren {calendar} med gruppa {group}", + "You unshared calendar {calendar} from group {group}" : "Du stoppa å dele {calendar} med gruppa {group}", + "{actor} unshared calendar {calendar} from group {group}" : "{actor} stoppa å dele kalendaren {calendar} med gruppa {group}", + "{actor} created event {event} in calendar {calendar}" : "{actor} oppretta ein hending {event} i kalendaren {calendar}", + "You created event {event} in calendar {calendar}" : "Du oppretta ei hending {event} i kalendaren {calendar}", + "{actor} deleted event {event} from calendar {calendar}" : "{actor} seltta ei hending {event} frå kalendaren {calendar}", + "You deleted event {event} from calendar {calendar}" : "Du sletta ei hending {event} frå kalendaren {calendar}", + "{actor} updated event {event} in calendar {calendar}" : "{actor} oppdaterte hendinga {event} i kalendaren {calendar}", + "You updated event {event} in calendar {calendar}" : "Du oppdaterte hendinga {event} i kalendaren {calendar}", + "{actor} created todo {todo} in list {calendar}" : "{actor} oppretta å gjere {todo} i lista {calendar}", + "You created todo {todo} in list {calendar}" : "Du oppretta å gjere {todo} i lista {calendar}", + "{actor} deleted todo {todo} from list {calendar}" : "{actor} sletta å gjere {todo} frå lista {calendar}", + "You deleted todo {todo} from list {calendar}" : "Du sletta å gjere {todo} frå lista {calendar}", + "{actor} updated todo {todo} in list {calendar}" : "{actor} oppdaterte å gjere {todo} i lista {calendar}", + "You updated todo {todo} in list {calendar}" : "Du oppdaterte å gjere {todo} i lista {calendar}", + "{actor} solved todo {todo} in list {calendar}" : "{actor} løyste å gjere {todo} i lista {calendar}", + "You solved todo {todo} in list {calendar}" : "Du løyste å gjere {todo} i lista {calendar}", + "{actor} reopened todo {todo} in list {calendar}" : "{actor} igjen-opna å gjere {todo} i lista {calendar}", + "You reopened todo {todo} in list {calendar}" : "Du igjen-opna å gjere {todo} i lista {calendar}" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/nn_NO.json b/apps/dav/l10n/nn_NO.json new file mode 100644 index 0000000000000..3323f9f708852 --- /dev/null +++ b/apps/dav/l10n/nn_NO.json @@ -0,0 +1,41 @@ +{ "translations": { + "Calendar" : "Kalendar", + "Todos" : "Å gjere", + "Personal" : "Personleg", + "{actor} created calendar {calendar}" : "{actor} lagde kalendaren {calendar}", + "You created calendar {calendar}" : "Du lagde kalendaren {calendar}", + "{actor} deleted calendar {calendar}" : "{actor} sletta kalendaren {calendar}", + "You deleted calendar {calendar}" : "Du sletta kalendaren {calendar}", + "{actor} updated calendar {calendar}" : "{actor} oppdaterte kalendaren {calendar}", + "You updated calendar {calendar}" : "Du oppdaterte kalendaren {calendar}", + "You shared calendar {calendar} as public link" : "Du delte kalendaren {calendar} som en offentleg lenke", + "You removed public link for calendar {calendar}" : "Du fjerna den offentlege lenka for kalendaren {calendar}", + "{actor} shared calendar {calendar} with you" : "{actor} delte kalendaren {calendar} med deg", + "You shared calendar {calendar} with {user}" : "Du delte kalendaren {calendar} med {user}", + "{actor} shared calendar {calendar} with {user}" : "{actor} delte kalendaren {calendar} med {user}", + "{actor} unshared calendar {calendar} from you" : "{actor} stoppa å dele kalendaren {calendar} med deg", + "You unshared calendar {calendar} from {user}" : "Du stoppa å dele kalendaren {calendar} med {user}", + "{actor} unshared calendar {calendar} from {user}" : "{actor} stoppa å dele kalendaren {calendar} med {user}", + "{actor} unshared calendar {calendar} from themselves" : "{actor} stoppa å dele kalendaren {calendar} med segsjølv", + "You shared calendar {calendar} with group {group}" : "Du delte kalendaren {calendar} med gruppa {group}", + "{actor} shared calendar {calendar} with group {group}" : "{actor} delte kalendaren {calendar} med gruppa {group}", + "You unshared calendar {calendar} from group {group}" : "Du stoppa å dele {calendar} med gruppa {group}", + "{actor} unshared calendar {calendar} from group {group}" : "{actor} stoppa å dele kalendaren {calendar} med gruppa {group}", + "{actor} created event {event} in calendar {calendar}" : "{actor} oppretta ein hending {event} i kalendaren {calendar}", + "You created event {event} in calendar {calendar}" : "Du oppretta ei hending {event} i kalendaren {calendar}", + "{actor} deleted event {event} from calendar {calendar}" : "{actor} seltta ei hending {event} frå kalendaren {calendar}", + "You deleted event {event} from calendar {calendar}" : "Du sletta ei hending {event} frå kalendaren {calendar}", + "{actor} updated event {event} in calendar {calendar}" : "{actor} oppdaterte hendinga {event} i kalendaren {calendar}", + "You updated event {event} in calendar {calendar}" : "Du oppdaterte hendinga {event} i kalendaren {calendar}", + "{actor} created todo {todo} in list {calendar}" : "{actor} oppretta å gjere {todo} i lista {calendar}", + "You created todo {todo} in list {calendar}" : "Du oppretta å gjere {todo} i lista {calendar}", + "{actor} deleted todo {todo} from list {calendar}" : "{actor} sletta å gjere {todo} frå lista {calendar}", + "You deleted todo {todo} from list {calendar}" : "Du sletta å gjere {todo} frå lista {calendar}", + "{actor} updated todo {todo} in list {calendar}" : "{actor} oppdaterte å gjere {todo} i lista {calendar}", + "You updated todo {todo} in list {calendar}" : "Du oppdaterte å gjere {todo} i lista {calendar}", + "{actor} solved todo {todo} in list {calendar}" : "{actor} løyste å gjere {todo} i lista {calendar}", + "You solved todo {todo} in list {calendar}" : "Du løyste å gjere {todo} i lista {calendar}", + "{actor} reopened todo {todo} in list {calendar}" : "{actor} igjen-opna å gjere {todo} i lista {calendar}", + "You reopened todo {todo} in list {calendar}" : "Du igjen-opna å gjere {todo} i lista {calendar}" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/apps/dav/l10n/pl.js b/apps/dav/l10n/pl.js index 6240fc9cab41b..11d53da887d1f 100644 --- a/apps/dav/l10n/pl.js +++ b/apps/dav/l10n/pl.js @@ -10,6 +10,8 @@ OC.L10N.register( "You deleted calendar {calendar}" : "Usunąłęś/ęłaś kalendarz {calendar}", "{actor} updated calendar {calendar}" : "{actor} zaktualizował/-a kalendarz {calendar} .", "You updated calendar {calendar}" : "Zaktualizowałeś/-aś kalendarz {calendar}", + "You shared calendar {calendar} as public link" : "Udostępniłeś kalendarz {calendar} jako publiczny link", + "You removed public link for calendar {calendar}" : "Usunąłeś publiczny link do kalendarza {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} współdzieli kalendarz {calendar} z Tobą", "You shared calendar {calendar} with {user}" : "Współdzielisz kalendarz {calendar} z {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} współdzieli kalendarz {calendar} z {user}", @@ -53,11 +55,13 @@ OC.L10N.register( "Description:" : "Opis:", "Link:" : "Link: ", "Contacts" : "Kontakty", + "WebDAV" : "WebDAV", "Technical details" : "Szczegóły techniczne", "Remote Address: %s" : "Adres zdalny: %s", "Request ID: %s" : "ID żądania: %s", "CalDAV server" : "Serwer CalDAV", "Send invitations to attendees" : "Wyślij uczestnikom zaproszenia", - "Please make sure to properly set up the email settings above." : "Upewnij się, że dobrze skonfigurowano powyżej ustawienia poczty e-mail." + "Please make sure to properly set up the email settings above." : "Upewnij się, że dobrze skonfigurowano powyżej ustawienia poczty e-mail.", + "Automatically generate a birthday calendar" : "Automatycznie generuj kalendarz urodzin" }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/dav/l10n/pl.json b/apps/dav/l10n/pl.json index eb949a6e0522e..e04a6e25b5c3d 100644 --- a/apps/dav/l10n/pl.json +++ b/apps/dav/l10n/pl.json @@ -8,6 +8,8 @@ "You deleted calendar {calendar}" : "Usunąłęś/ęłaś kalendarz {calendar}", "{actor} updated calendar {calendar}" : "{actor} zaktualizował/-a kalendarz {calendar} .", "You updated calendar {calendar}" : "Zaktualizowałeś/-aś kalendarz {calendar}", + "You shared calendar {calendar} as public link" : "Udostępniłeś kalendarz {calendar} jako publiczny link", + "You removed public link for calendar {calendar}" : "Usunąłeś publiczny link do kalendarza {calendar}", "{actor} shared calendar {calendar} with you" : "{actor} współdzieli kalendarz {calendar} z Tobą", "You shared calendar {calendar} with {user}" : "Współdzielisz kalendarz {calendar} z {user}", "{actor} shared calendar {calendar} with {user}" : "{actor} współdzieli kalendarz {calendar} z {user}", @@ -51,11 +53,13 @@ "Description:" : "Opis:", "Link:" : "Link: ", "Contacts" : "Kontakty", + "WebDAV" : "WebDAV", "Technical details" : "Szczegóły techniczne", "Remote Address: %s" : "Adres zdalny: %s", "Request ID: %s" : "ID żądania: %s", "CalDAV server" : "Serwer CalDAV", "Send invitations to attendees" : "Wyślij uczestnikom zaproszenia", - "Please make sure to properly set up the email settings above." : "Upewnij się, że dobrze skonfigurowano powyżej ustawienia poczty e-mail." + "Please make sure to properly set up the email settings above." : "Upewnij się, że dobrze skonfigurowano powyżej ustawienia poczty e-mail.", + "Automatically generate a birthday calendar" : "Automatycznie generuj kalendarz urodzin" },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" } \ No newline at end of file diff --git a/apps/dav/l10n/pt_BR.js b/apps/dav/l10n/pt_BR.js index d75b1b309e4b0..b98acb4faa874 100644 --- a/apps/dav/l10n/pt_BR.js +++ b/apps/dav/l10n/pt_BR.js @@ -55,6 +55,7 @@ OC.L10N.register( "Description:" : "Descrição:", "Link:" : "Link:", "Contacts" : "Contatos", + "WebDAV" : "WebDAV", "Technical details" : "Detalhes técnicos", "Remote Address: %s" : "Endereço remoto: %s", "Request ID: %s" : "ID do solicitante: %s", diff --git a/apps/dav/l10n/pt_BR.json b/apps/dav/l10n/pt_BR.json index d706df8e93990..e3797e17f27d7 100644 --- a/apps/dav/l10n/pt_BR.json +++ b/apps/dav/l10n/pt_BR.json @@ -53,6 +53,7 @@ "Description:" : "Descrição:", "Link:" : "Link:", "Contacts" : "Contatos", + "WebDAV" : "WebDAV", "Technical details" : "Detalhes técnicos", "Remote Address: %s" : "Endereço remoto: %s", "Request ID: %s" : "ID do solicitante: %s", diff --git a/apps/dav/l10n/ru.js b/apps/dav/l10n/ru.js index 86082e3f8c649..70cfd8050a609 100644 --- a/apps/dav/l10n/ru.js +++ b/apps/dav/l10n/ru.js @@ -55,6 +55,7 @@ OC.L10N.register( "Description:" : "Описание:", "Link:" : "Ссылка:", "Contacts" : "Контакты", + "WebDAV" : "WebDAV", "Technical details" : "Технические подробности", "Remote Address: %s" : "Удаленный адрес: %s", "Request ID: %s" : "ID запроса: %s", diff --git a/apps/dav/l10n/ru.json b/apps/dav/l10n/ru.json index 8c53fede2aa55..934bcaa719ed3 100644 --- a/apps/dav/l10n/ru.json +++ b/apps/dav/l10n/ru.json @@ -53,6 +53,7 @@ "Description:" : "Описание:", "Link:" : "Ссылка:", "Contacts" : "Контакты", + "WebDAV" : "WebDAV", "Technical details" : "Технические подробности", "Remote Address: %s" : "Удаленный адрес: %s", "Request ID: %s" : "ID запроса: %s", diff --git a/apps/dav/l10n/sk.js b/apps/dav/l10n/sk.js index 167a3f5e05379..46199bdd4f977 100644 --- a/apps/dav/l10n/sk.js +++ b/apps/dav/l10n/sk.js @@ -52,11 +52,14 @@ OC.L10N.register( "Description:" : "Popis:", "Link:" : "Odkaz:", "Contacts" : "Kontakty", + "WebDAV" : "WebDAV", "Technical details" : "Technické podrobnosti", "Remote Address: %s" : "Vzdialená adresa: %s", "Request ID: %s" : "ID požiadavky: %s", "CalDAV server" : "Server CalDAV", "Send invitations to attendees" : "Odoslanie pozvánok účastníkom", - "Please make sure to properly set up the email settings above." : "Uistite sa, že máte správne nastavené vyššie uvedené nastavenia e-mailu." + "Please make sure to properly set up the email settings above." : "Uistite sa, že máte správne nastavené vyššie uvedené nastavenia e-mailu.", + "Automatically generate a birthday calendar" : "Automaticky generovať narodeninový kalendár", + "Birthday calendars will be generated by a background job." : "Narodeninové kalendáre budú generované úlohou na pozadí." }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/dav/l10n/sk.json b/apps/dav/l10n/sk.json index ffb75e0e49fa1..6455aa505bcd1 100644 --- a/apps/dav/l10n/sk.json +++ b/apps/dav/l10n/sk.json @@ -50,11 +50,14 @@ "Description:" : "Popis:", "Link:" : "Odkaz:", "Contacts" : "Kontakty", + "WebDAV" : "WebDAV", "Technical details" : "Technické podrobnosti", "Remote Address: %s" : "Vzdialená adresa: %s", "Request ID: %s" : "ID požiadavky: %s", "CalDAV server" : "Server CalDAV", "Send invitations to attendees" : "Odoslanie pozvánok účastníkom", - "Please make sure to properly set up the email settings above." : "Uistite sa, že máte správne nastavené vyššie uvedené nastavenia e-mailu." + "Please make sure to properly set up the email settings above." : "Uistite sa, že máte správne nastavené vyššie uvedené nastavenia e-mailu.", + "Automatically generate a birthday calendar" : "Automaticky generovať narodeninový kalendár", + "Birthday calendars will be generated by a background job." : "Narodeninové kalendáre budú generované úlohou na pozadí." },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/dav/l10n/sq.js b/apps/dav/l10n/sq.js index ecb7f350e095d..c44c06f1a6c08 100644 --- a/apps/dav/l10n/sq.js +++ b/apps/dav/l10n/sq.js @@ -41,6 +41,9 @@ OC.L10N.register( "A calendar event was modified" : "Një event në kalendar u modifikua", "A calendar todo was modified" : "Një kalendar todo u modifikua", "Contact birthdays" : "Ditëlindjet e kontakteve", + "Hello %s," : "Përshëndetje %s,", + "%s invited you to »%s«" : "%s ju ftoi juve tek %s", + "Link:" : "Link:", "Contacts" : "Kontaktet", "Technical details" : "Detaje teknike", "Remote Address: %s" : "Adresa remote: %s", diff --git a/apps/dav/l10n/sq.json b/apps/dav/l10n/sq.json index 981ace9d18a8b..a5d22616a0189 100644 --- a/apps/dav/l10n/sq.json +++ b/apps/dav/l10n/sq.json @@ -39,6 +39,9 @@ "A calendar event was modified" : "Një event në kalendar u modifikua", "A calendar todo was modified" : "Një kalendar todo u modifikua", "Contact birthdays" : "Ditëlindjet e kontakteve", + "Hello %s," : "Përshëndetje %s,", + "%s invited you to »%s«" : "%s ju ftoi juve tek %s", + "Link:" : "Link:", "Contacts" : "Kontaktet", "Technical details" : "Detaje teknike", "Remote Address: %s" : "Adresa remote: %s", diff --git a/apps/dav/l10n/sr.js b/apps/dav/l10n/sr.js index 6564181dd23e5..e31b17da48280 100644 --- a/apps/dav/l10n/sr.js +++ b/apps/dav/l10n/sr.js @@ -55,6 +55,7 @@ OC.L10N.register( "Description:" : "Опис:", "Link:" : "Веза:", "Contacts" : "Контакти", + "WebDAV" : "ВебДАВ", "Technical details" : "Технички детаљи", "Remote Address: %s" : "Удаљена адреса: %s", "Request ID: %s" : "ИД захтева: %s", diff --git a/apps/dav/l10n/sr.json b/apps/dav/l10n/sr.json index 260ffb0a086cf..fea5b91a7d00d 100644 --- a/apps/dav/l10n/sr.json +++ b/apps/dav/l10n/sr.json @@ -53,6 +53,7 @@ "Description:" : "Опис:", "Link:" : "Веза:", "Contacts" : "Контакти", + "WebDAV" : "ВебДАВ", "Technical details" : "Технички детаљи", "Remote Address: %s" : "Удаљена адреса: %s", "Request ID: %s" : "ИД захтева: %s", diff --git a/apps/dav/l10n/sv.js b/apps/dav/l10n/sv.js index cc93613e2b0df..f6af2bf93f3b9 100644 --- a/apps/dav/l10n/sv.js +++ b/apps/dav/l10n/sv.js @@ -55,6 +55,7 @@ OC.L10N.register( "Description:" : "Beskrivning:", "Link:" : "Länk:", "Contacts" : "Kontakter", + "WebDAV" : "WebDAV", "Technical details" : "Tekniska detaljer", "Remote Address: %s" : "Extern adress: %s", "Request ID: %s" : "Begär ID: %s", @@ -62,6 +63,7 @@ OC.L10N.register( "Send invitations to attendees" : "Skicka inbjudan till deltagare", "Please make sure to properly set up the email settings above." : "Vänligen säkerställ att epost-inställningarna ovan är korrekt angivna", "Automatically generate a birthday calendar" : "Generera en födelsedagskalender automatiskt", - "Birthday calendars will be generated by a background job." : "Födelsedagskalender kommer skapas som ett bakgrundsjobb." + "Birthday calendars will be generated by a background job." : "Födelsedagskalender kommer skapas som ett bakgrundsjobb.", + "Hence they will not be available immediately after enabling but will show up after some time." : "Därför kommer de inte vara tillgängliga direkt efter aktivering men kommer dyka upp efter en tid." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/dav/l10n/sv.json b/apps/dav/l10n/sv.json index df7d8faa22ad8..4c256ddb1aa8a 100644 --- a/apps/dav/l10n/sv.json +++ b/apps/dav/l10n/sv.json @@ -53,6 +53,7 @@ "Description:" : "Beskrivning:", "Link:" : "Länk:", "Contacts" : "Kontakter", + "WebDAV" : "WebDAV", "Technical details" : "Tekniska detaljer", "Remote Address: %s" : "Extern adress: %s", "Request ID: %s" : "Begär ID: %s", @@ -60,6 +61,7 @@ "Send invitations to attendees" : "Skicka inbjudan till deltagare", "Please make sure to properly set up the email settings above." : "Vänligen säkerställ att epost-inställningarna ovan är korrekt angivna", "Automatically generate a birthday calendar" : "Generera en födelsedagskalender automatiskt", - "Birthday calendars will be generated by a background job." : "Födelsedagskalender kommer skapas som ett bakgrundsjobb." + "Birthday calendars will be generated by a background job." : "Födelsedagskalender kommer skapas som ett bakgrundsjobb.", + "Hence they will not be available immediately after enabling but will show up after some time." : "Därför kommer de inte vara tillgängliga direkt efter aktivering men kommer dyka upp efter en tid." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/dav/l10n/tr.js b/apps/dav/l10n/tr.js index 4df4c5f891f91..4053bf5433035 100644 --- a/apps/dav/l10n/tr.js +++ b/apps/dav/l10n/tr.js @@ -55,6 +55,7 @@ OC.L10N.register( "Description:" : "Açıklama:", "Link:" : "Bağlantı:", "Contacts" : "Kişiler", + "WebDAV" : "WebDAV", "Technical details" : "Teknik ayrıntılar", "Remote Address: %s" : "Uzak Adres: %s", "Request ID: %s" : "İstek Kodu: %s", diff --git a/apps/dav/l10n/tr.json b/apps/dav/l10n/tr.json index 6b6498588985a..254ca8d63fb0f 100644 --- a/apps/dav/l10n/tr.json +++ b/apps/dav/l10n/tr.json @@ -53,6 +53,7 @@ "Description:" : "Açıklama:", "Link:" : "Bağlantı:", "Contacts" : "Kişiler", + "WebDAV" : "WebDAV", "Technical details" : "Teknik ayrıntılar", "Remote Address: %s" : "Uzak Adres: %s", "Request ID: %s" : "İstek Kodu: %s", diff --git a/apps/dav/l10n/zh_CN.js b/apps/dav/l10n/zh_CN.js index e0ee9015402fa..1cf8ce048ff6c 100644 --- a/apps/dav/l10n/zh_CN.js +++ b/apps/dav/l10n/zh_CN.js @@ -10,6 +10,8 @@ OC.L10N.register( "You deleted calendar {calendar}" : "您删除的日历 {calendar}", "{actor} updated calendar {calendar}" : "{actor} 更新了日历 {calendar}", "You updated calendar {calendar}" : "您更新了日历 {calendar}", + "You shared calendar {calendar} as public link" : "您已将日历{calendar}共享为公开链接", + "You removed public link for calendar {calendar}" : "您移除了日历{calendar}的公开链接", "{actor} shared calendar {calendar} with you" : "{actor} 收到的日历分享 {calendar}", "You shared calendar {calendar} with {user}" : "您与 {user} 分享了日历 {calendar}", "{actor} shared calendar {calendar} with {user}" : "{actor} 与 {user} 分享了日历 {calendar}", @@ -41,9 +43,19 @@ OC.L10N.register( "A calendar event was modified" : "日历中事件已经修改", "A calendar todo was modified" : "列表中待办事项已经修改", "Contact birthdays" : "联系人生日", + "Invitation canceled" : "邀请已取消", + "Hello %s," : "%s你好,", + "Invitation updated" : "邀请已更新", + "When:" : "时间:", + "Where:" : "地点:", + "Description:" : "描述:", + "Link:" : "链接:", "Contacts" : "联系人", "Technical details" : "技术细节", "Remote Address: %s" : "远程地址: %s", - "Request ID: %s" : "请求 ID: %s" + "Request ID: %s" : "请求 ID: %s", + "CalDAV server" : "日历服务", + "Automatically generate a birthday calendar" : "自动生成生日日历", + "Birthday calendars will be generated by a background job." : "生日日历将由后台作业生成。" }, "nplurals=1; plural=0;"); diff --git a/apps/dav/l10n/zh_CN.json b/apps/dav/l10n/zh_CN.json index 30419409556ca..f18e5954759ee 100644 --- a/apps/dav/l10n/zh_CN.json +++ b/apps/dav/l10n/zh_CN.json @@ -8,6 +8,8 @@ "You deleted calendar {calendar}" : "您删除的日历 {calendar}", "{actor} updated calendar {calendar}" : "{actor} 更新了日历 {calendar}", "You updated calendar {calendar}" : "您更新了日历 {calendar}", + "You shared calendar {calendar} as public link" : "您已将日历{calendar}共享为公开链接", + "You removed public link for calendar {calendar}" : "您移除了日历{calendar}的公开链接", "{actor} shared calendar {calendar} with you" : "{actor} 收到的日历分享 {calendar}", "You shared calendar {calendar} with {user}" : "您与 {user} 分享了日历 {calendar}", "{actor} shared calendar {calendar} with {user}" : "{actor} 与 {user} 分享了日历 {calendar}", @@ -39,9 +41,19 @@ "A calendar event was modified" : "日历中事件已经修改", "A calendar todo was modified" : "列表中待办事项已经修改", "Contact birthdays" : "联系人生日", + "Invitation canceled" : "邀请已取消", + "Hello %s," : "%s你好,", + "Invitation updated" : "邀请已更新", + "When:" : "时间:", + "Where:" : "地点:", + "Description:" : "描述:", + "Link:" : "链接:", "Contacts" : "联系人", "Technical details" : "技术细节", "Remote Address: %s" : "远程地址: %s", - "Request ID: %s" : "请求 ID: %s" + "Request ID: %s" : "请求 ID: %s", + "CalDAV server" : "日历服务", + "Automatically generate a birthday calendar" : "自动生成生日日历", + "Birthday calendars will be generated by a background job." : "生日日历将由后台作业生成。" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/dav/l10n/zh_TW.js b/apps/dav/l10n/zh_TW.js index 30e5137e6abfb..cbf4b4f262dc5 100644 --- a/apps/dav/l10n/zh_TW.js +++ b/apps/dav/l10n/zh_TW.js @@ -1,11 +1,47 @@ OC.L10N.register( "dav", { - "Contact birthdays" : "聯絡人生日", + "Calendar" : "日曆", + "Todos" : "待辦事項", "Personal" : "個人", + "{actor} created calendar {calendar}" : "{actor} 建立了日曆 {calendar}", + "You created calendar {calendar}" : "您建立了日曆 {calendar}", + "{actor} deleted calendar {calendar}" : "{actor} 刪除了日曆 {calendar}", + "You deleted calendar {calendar}" : "您刪除了日曆 {calendar}", + "{actor} updated calendar {calendar}" : "{actor} 更新了日曆 {calendar}", + "You updated calendar {calendar}" : "你更新了日曆 {calendar}", + "{actor} shared calendar {calendar} with you" : "{actor} 與你分享了{calendar} ", + "You shared calendar {calendar} with {user}" : "你與 {user} 分享了 {calendar} ", + "{actor} shared calendar {calendar} with {user}" : "{actor} 與 {user} 分享了日曆 {calendar} ", + "{actor} unshared calendar {calendar} from you" : "{actor} 停止與您分享日曆 {calendar}", + "You unshared calendar {calendar} from {user}" : "您停止與 {user} 分享日曆 {calendar}", + "{actor} unshared calendar {calendar} from {user}" : "{actor} 停止與 {user} 分享日曆 {calendar}", + "{actor} unshared calendar {calendar} from themselves" : "{actor} 停止與他們自己分享日曆 {calendar}", + "You shared calendar {calendar} with group {group}" : "您與群組 {group} 分享了日曆 {calendar}", + "{actor} shared calendar {calendar} with group {group}" : "{actor} 與群組 {group} 分享了日曆 {calendar}", + "You unshared calendar {calendar} from group {group}" : "您已停止與群組 {group} 分享日曆 {calendar}", + "You updated event {event} in calendar {calendar}" : "您更新了日曆 {calendar}中的事件{event}", + "A calendar was modified" : "一個日曆被更動", + "A calendar event was modified" : "一個日曆活動被更動", + "A calendar todo was modified" : "一個日曆代辦事項被更動", + "Contact birthdays" : "聯絡人生日", + "%s via %s" : "%s 透過 %s", + "Invitation canceled" : "邀請被取消了", + "Hello %s," : "%s您好,", + "The meeting »%s« with %s was canceled." : "會議 %s 與 %s 被取消了", + "Invitation updated" : "邀請更新", + "The meeting »%s« with %s was updated." : "會議 %s 與 %s 有所更動", + "%s invited you to »%s«" : "%s邀請了您到%s", + "When:" : "時間", + "Where:" : "地點", + "Description:" : "描述", + "Link:" : "連結", "Contacts" : "聯絡人", + "WebDAV" : "WebDAV", "Technical details" : "技術細節", "Remote Address: %s" : "遠端位置:%s", - "Request ID: %s" : "請求編號:%s" + "Request ID: %s" : "請求編號:%s", + "CalDAV server" : "網路行事曆伺服器", + "Send invitations to attendees" : "發送邀請函給參加者" }, "nplurals=1; plural=0;"); diff --git a/apps/dav/l10n/zh_TW.json b/apps/dav/l10n/zh_TW.json index a388341d78c11..c4a4ba6533373 100644 --- a/apps/dav/l10n/zh_TW.json +++ b/apps/dav/l10n/zh_TW.json @@ -1,9 +1,45 @@ { "translations": { - "Contact birthdays" : "聯絡人生日", + "Calendar" : "日曆", + "Todos" : "待辦事項", "Personal" : "個人", + "{actor} created calendar {calendar}" : "{actor} 建立了日曆 {calendar}", + "You created calendar {calendar}" : "您建立了日曆 {calendar}", + "{actor} deleted calendar {calendar}" : "{actor} 刪除了日曆 {calendar}", + "You deleted calendar {calendar}" : "您刪除了日曆 {calendar}", + "{actor} updated calendar {calendar}" : "{actor} 更新了日曆 {calendar}", + "You updated calendar {calendar}" : "你更新了日曆 {calendar}", + "{actor} shared calendar {calendar} with you" : "{actor} 與你分享了{calendar} ", + "You shared calendar {calendar} with {user}" : "你與 {user} 分享了 {calendar} ", + "{actor} shared calendar {calendar} with {user}" : "{actor} 與 {user} 分享了日曆 {calendar} ", + "{actor} unshared calendar {calendar} from you" : "{actor} 停止與您分享日曆 {calendar}", + "You unshared calendar {calendar} from {user}" : "您停止與 {user} 分享日曆 {calendar}", + "{actor} unshared calendar {calendar} from {user}" : "{actor} 停止與 {user} 分享日曆 {calendar}", + "{actor} unshared calendar {calendar} from themselves" : "{actor} 停止與他們自己分享日曆 {calendar}", + "You shared calendar {calendar} with group {group}" : "您與群組 {group} 分享了日曆 {calendar}", + "{actor} shared calendar {calendar} with group {group}" : "{actor} 與群組 {group} 分享了日曆 {calendar}", + "You unshared calendar {calendar} from group {group}" : "您已停止與群組 {group} 分享日曆 {calendar}", + "You updated event {event} in calendar {calendar}" : "您更新了日曆 {calendar}中的事件{event}", + "A calendar was modified" : "一個日曆被更動", + "A calendar event was modified" : "一個日曆活動被更動", + "A calendar todo was modified" : "一個日曆代辦事項被更動", + "Contact birthdays" : "聯絡人生日", + "%s via %s" : "%s 透過 %s", + "Invitation canceled" : "邀請被取消了", + "Hello %s," : "%s您好,", + "The meeting »%s« with %s was canceled." : "會議 %s 與 %s 被取消了", + "Invitation updated" : "邀請更新", + "The meeting »%s« with %s was updated." : "會議 %s 與 %s 有所更動", + "%s invited you to »%s«" : "%s邀請了您到%s", + "When:" : "時間", + "Where:" : "地點", + "Description:" : "描述", + "Link:" : "連結", "Contacts" : "聯絡人", + "WebDAV" : "WebDAV", "Technical details" : "技術細節", "Remote Address: %s" : "遠端位置:%s", - "Request ID: %s" : "請求編號:%s" + "Request ID: %s" : "請求編號:%s", + "CalDAV server" : "網路行事曆伺服器", + "Send invitations to attendees" : "發送邀請函給參加者" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/dav/lib/CalDAV/BirthdayService.php b/apps/dav/lib/CalDAV/BirthdayService.php index 62d218f0a2a28..0f6e819bcc519 100644 --- a/apps/dav/lib/CalDAV/BirthdayService.php +++ b/apps/dav/lib/CalDAV/BirthdayService.php @@ -148,10 +148,11 @@ public function ensureCalendarExists($principal) { /** * @param string $cardData * @param string $dateField + * @param string $postfix * @param string $summarySymbol * @return null|VCalendar */ - public function buildDateFromContact($cardData, $dateField, $summarySymbol) { + public function buildDateFromContact($cardData, $dateField, $postfix, $summarySymbol) { if (empty($cardData)) { return null; } @@ -221,7 +222,7 @@ public function buildDateFromContact($cardData, $dateField, $summarySymbol) { $date ); $vEvent->DTEND['VALUE'] = 'DATE'; - $vEvent->{'UID'} = $doc->UID; + $vEvent->{'UID'} = $doc->UID . $postfix; $vEvent->{'RRULE'} = 'FREQ=YEARLY'; $vEvent->{'SUMMARY'} = $summary; $vEvent->{'TRANSP'} = 'TRANSPARENT'; @@ -297,7 +298,7 @@ protected function getAllAffectedPrincipals($addressBookId) { */ private function updateCalendar($cardUri, $cardData, $book, $calendarId, $type) { $objectUri = $book['uri'] . '-' . $cardUri . $type['postfix'] . '.ics'; - $calendarData = $this->buildDateFromContact($cardData, $type['field'], $type['symbol']); + $calendarData = $this->buildDateFromContact($cardData, $type['field'], $type['postfix'], $type['symbol']); $existing = $this->calDavBackEnd->getCalendarObject($calendarId, $objectUri); if (is_null($calendarData)) { if (!is_null($existing)) { diff --git a/apps/dav/lib/Connector/Sabre/CustomPropertiesBackend.php b/apps/dav/lib/Connector/Sabre/CustomPropertiesBackend.php index e9118cfc9e089..d08917ff35d30 100644 --- a/apps/dav/lib/Connector/Sabre/CustomPropertiesBackend.php +++ b/apps/dav/lib/Connector/Sabre/CustomPropertiesBackend.php @@ -52,6 +52,7 @@ class CustomPropertiesBackend implements BackendInterface { '{http://owncloud.org/ns}downloadURL', '{http://owncloud.org/ns}dDC', '{http://owncloud.org/ns}size', + '{http://nextcloud.org/ns}is-encrypted', ); /** diff --git a/apps/dav/lib/Connector/Sabre/Directory.php b/apps/dav/lib/Connector/Sabre/Directory.php index 6fe9d26614e79..a7b8ea1755efd 100644 --- a/apps/dav/lib/Connector/Sabre/Directory.php +++ b/apps/dav/lib/Connector/Sabre/Directory.php @@ -150,11 +150,11 @@ public function createFile($name, $data = null) { $node->acquireLock(ILockingProvider::LOCK_SHARED); return $node->put($data); } catch (\OCP\Files\StorageNotAvailableException $e) { - throw new \Sabre\DAV\Exception\ServiceUnavailable($e->getMessage()); + throw new \Sabre\DAV\Exception\ServiceUnavailable($e->getMessage(), $e->getCode(), $e); } catch (InvalidPathException $ex) { - throw new InvalidPath($ex->getMessage()); + throw new InvalidPath($ex->getMessage(), false, $ex); } catch (ForbiddenException $ex) { - throw new Forbidden($ex->getMessage(), $ex->getRetry()); + throw new Forbidden($ex->getMessage(), $ex->getRetry(), $ex); } catch (LockedException $e) { throw new FileLocked($e->getMessage(), $e->getCode(), $e); } diff --git a/apps/dav/lib/Connector/Sabre/Exception/InvalidPath.php b/apps/dav/lib/Connector/Sabre/Exception/InvalidPath.php index 9d60b22761291..346e21adc9dbe 100644 --- a/apps/dav/lib/Connector/Sabre/Exception/InvalidPath.php +++ b/apps/dav/lib/Connector/Sabre/Exception/InvalidPath.php @@ -36,9 +36,10 @@ class InvalidPath extends Exception { /** * @param string $message * @param bool $retry + * @param \Exception|null $previous */ - public function __construct($message, $retry = false) { - parent::__construct($message); + public function __construct($message, $retry = false, \Exception $previous = null) { + parent::__construct($message, 0, $previous); $this->retry = $retry; } diff --git a/apps/dav/lib/Connector/Sabre/File.php b/apps/dav/lib/Connector/Sabre/File.php index 597e6ebef90c9..6a467e9eff28f 100644 --- a/apps/dav/lib/Connector/Sabre/File.php +++ b/apps/dav/lib/Connector/Sabre/File.php @@ -144,6 +144,8 @@ public function put($data) { } else { // upload file directly as the final path $partFilePath = $this->path; + + $this->emitPreHooks($exists); } // the part file and target file might be on a different storage in case of a single file storage (e.g. single file share) @@ -188,11 +190,7 @@ public function put($data) { try { $view = \OC\Files\Filesystem::getView(); - if ($view) { - $run = $this->emitPreHooks($exists); - } else { - $run = true; - } + $run = ($view && $needsPartFile) ? $this->emitPreHooks($exists) : true; try { $this->changeLock(ILockingProvider::LOCK_EXCLUSIVE); diff --git a/apps/dav/lib/Connector/Sabre/FilesPlugin.php b/apps/dav/lib/Connector/Sabre/FilesPlugin.php index a3a0893259b6f..f36ebe5636cb8 100644 --- a/apps/dav/lib/Connector/Sabre/FilesPlugin.php +++ b/apps/dav/lib/Connector/Sabre/FilesPlugin.php @@ -339,11 +339,6 @@ public function handleGetProperties(PropFind $propFind, \Sabre\DAV\INode $node) } }); - $propFind->handle(self::IS_ENCRYPTED_PROPERTYNAME, function() use ($node) { - $result = $node->getFileInfo()->isEncrypted() ? '1' : '0'; - return $result; - }); - $propFind->handle(self::HAS_PREVIEW_PROPERTYNAME, function () use ($node) { return json_encode($this->previewManager->isAvailable($node->getFileInfo())); }); @@ -392,6 +387,10 @@ public function handleGetProperties(PropFind $propFind, \Sabre\DAV\INode $node) $propFind->handle(self::SIZE_PROPERTYNAME, function() use ($node) { return $node->getSize(); }); + + $propFind->handle(self::IS_ENCRYPTED_PROPERTYNAME, function() use ($node) { + return $node->getFileInfo()->isEncrypted() ? '1' : '0'; + }); } } diff --git a/apps/dav/lib/HookManager.php b/apps/dav/lib/HookManager.php index 1e808e58656c4..57b176213e091 100644 --- a/apps/dav/lib/HookManager.php +++ b/apps/dav/lib/HookManager.php @@ -43,7 +43,7 @@ class HookManager { private $syncService; /** @var IUser[] */ - private $usersToDelete; + private $usersToDelete = []; /** @var CalDavBackend */ private $calDav; @@ -52,10 +52,10 @@ class HookManager { private $cardDav; /** @var array */ - private $calendarsToDelete; + private $calendarsToDelete = []; /** @var array */ - private $addressBooksToDelete; + private $addressBooksToDelete = []; /** @var EventDispatcher */ private $eventDispatcher; diff --git a/apps/dav/lib/Migration/Version1004Date20170825134824.php b/apps/dav/lib/Migration/Version1004Date20170825134824.php index dceb1ffbbdcfe..26855c2e23e02 100644 --- a/apps/dav/lib/Migration/Version1004Date20170825134824.php +++ b/apps/dav/lib/Migration/Version1004Date20170825134824.php @@ -23,20 +23,20 @@ */ namespace OCA\DAV\Migration; -use Doctrine\DBAL\Schema\Schema; +use OCP\DB\ISchemaWrapper; use OCP\Migration\SimpleMigrationStep; use OCP\Migration\IOutput; class Version1004Date20170825134824 extends SimpleMigrationStep { /** * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - * @return null|Schema + * @return null|ISchemaWrapper * @since 13.0.0 */ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { - /** @var Schema $schema */ + /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); if (!$schema->hasTable('addressbooks')) { diff --git a/apps/dav/lib/Migration/Version1004Date20170919104507.php b/apps/dav/lib/Migration/Version1004Date20170919104507.php index d4c7026aea8e2..2cf4065011be6 100644 --- a/apps/dav/lib/Migration/Version1004Date20170919104507.php +++ b/apps/dav/lib/Migration/Version1004Date20170919104507.php @@ -23,7 +23,7 @@ */ namespace OCA\DAV\Migration; -use Doctrine\DBAL\Schema\Schema; +use OCP\DB\ISchemaWrapper; use OCP\Migration\SimpleMigrationStep; use OCP\Migration\IOutput; @@ -31,13 +31,13 @@ class Version1004Date20170919104507 extends SimpleMigrationStep { /** * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - * @return null|Schema + * @return null|ISchemaWrapper * @since 13.0.0 */ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { - /** @var Schema $schema */ + /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); $table = $schema->getTable('addressbooks'); diff --git a/apps/dav/lib/Migration/Version1004Date20170924124212.php b/apps/dav/lib/Migration/Version1004Date20170924124212.php index 425747af74265..e3f509b2a71df 100644 --- a/apps/dav/lib/Migration/Version1004Date20170924124212.php +++ b/apps/dav/lib/Migration/Version1004Date20170924124212.php @@ -22,7 +22,7 @@ */ namespace OCA\DAV\Migration; -use Doctrine\DBAL\Schema\Schema; +use OCP\DB\ISchemaWrapper; use OCP\Migration\SimpleMigrationStep; use OCP\Migration\IOutput; @@ -30,13 +30,13 @@ class Version1004Date20170924124212 extends SimpleMigrationStep { /** * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - * @return null|Schema + * @return null|ISchemaWrapper * @since 13.0.0 */ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { - /** @var Schema $schema */ + /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); $table = $schema->getTable('cards'); diff --git a/apps/dav/lib/Migration/Version1004Date20170926103422.php b/apps/dav/lib/Migration/Version1004Date20170926103422.php index d50cbae396b81..5da6465bc8661 100644 --- a/apps/dav/lib/Migration/Version1004Date20170926103422.php +++ b/apps/dav/lib/Migration/Version1004Date20170926103422.php @@ -23,10 +23,7 @@ */ namespace OCA\DAV\Migration; -use Doctrine\DBAL\Schema\Schema; use OCP\Migration\BigIntMigration; -use OCP\Migration\SimpleMigrationStep; -use OCP\Migration\IOutput; /** * Auto-generated migration step: Please modify to your needs! diff --git a/apps/dav/lib/Upload/ChunkingPlugin.php b/apps/dav/lib/Upload/ChunkingPlugin.php index 5768f53c2b496..858129dd5984f 100644 --- a/apps/dav/lib/Upload/ChunkingPlugin.php +++ b/apps/dav/lib/Upload/ChunkingPlugin.php @@ -99,7 +99,10 @@ private function verifySize() { return; } $actualSize = $this->sourceNode->getSize(); - if ((int)$expectedSize !== $actualSize) { + + // casted to string because cast to float cause equality for non equal numbers + // and integer has the problem of limited size on 32 bit systems + if ((string)$expectedSize !== (string)$actualSize) { throw new BadRequest("Chunks on server do not sum up to $expectedSize but to $actualSize bytes"); } } diff --git a/apps/dav/tests/unit/CardDAV/BirthdayServiceTest.php b/apps/dav/tests/unit/CardDAV/BirthdayServiceTest.php index 867168033a4e9..739b81ddf0172 100644 --- a/apps/dav/tests/unit/CardDAV/BirthdayServiceTest.php +++ b/apps/dav/tests/unit/CardDAV/BirthdayServiceTest.php @@ -64,7 +64,7 @@ public function setUp() { * @param string | null $data */ public function testBuildBirthdayFromContact($expectedSummary, $data) { - $cal = $this->service->buildDateFromContact($data, 'BDAY', '*'); + $cal = $this->service->buildDateFromContact($data, 'BDAY', '', '*'); if ($expectedSummary === null) { $this->assertNull($cal); } else { diff --git a/apps/encryption/l10n/az.js b/apps/encryption/l10n/az.js index 0b429f903faf3..5e3bb0198af11 100644 --- a/apps/encryption/l10n/az.js +++ b/apps/encryption/l10n/az.js @@ -17,8 +17,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Köhnə şifrə düzgün deyildi, xahiş olunur yenidən cəhd edəsiniz.", "The current log-in password was not correct, please try again." : "Hal-hazırki istifadəçi şifrəsi düzgün deyildi, xahiş olunur yenidən cəhd edəsiniz.", "Private key password successfully updated." : "Gizli aşar şifrəsi uğurla yeniləndi.", - "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." : "Şifrələnmə proqramı üçün yalnış şəxsi açar. Xahiş olunur öz şəxsi quraşdırmalarınızda şəxsi açarınızı yeniləyəsiniz ki, şifrələnmiş fayllara yetki ala biləsiniz. ", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Proqram şifrələnməsi işə salınıb ancaq, sizin açarlar inisializasiya edilməyib. Xahiş edilir çıxıb yenidən daxil olasınız", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Bu faylı deşifrə etmək olmur və ola bilər ki, bu paylaşımda olan fayldır. Xahiş olunur faylın sahibinə həmin faylı sizinlə yenidən paylaşım etməsini bildirəsiniz. ", "Cheers!" : "Şərəfə!", "Recovery key password" : "Açar şifrənin bərpa edilməsi", diff --git a/apps/encryption/l10n/az.json b/apps/encryption/l10n/az.json index fc5ab73b8b428..9aa33d8b69619 100644 --- a/apps/encryption/l10n/az.json +++ b/apps/encryption/l10n/az.json @@ -15,8 +15,6 @@ "The old password was not correct, please try again." : "Köhnə şifrə düzgün deyildi, xahiş olunur yenidən cəhd edəsiniz.", "The current log-in password was not correct, please try again." : "Hal-hazırki istifadəçi şifrəsi düzgün deyildi, xahiş olunur yenidən cəhd edəsiniz.", "Private key password successfully updated." : "Gizli aşar şifrəsi uğurla yeniləndi.", - "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." : "Şifrələnmə proqramı üçün yalnış şəxsi açar. Xahiş olunur öz şəxsi quraşdırmalarınızda şəxsi açarınızı yeniləyəsiniz ki, şifrələnmiş fayllara yetki ala biləsiniz. ", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Proqram şifrələnməsi işə salınıb ancaq, sizin açarlar inisializasiya edilməyib. Xahiş edilir çıxıb yenidən daxil olasınız", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Bu faylı deşifrə etmək olmur və ola bilər ki, bu paylaşımda olan fayldır. Xahiş olunur faylın sahibinə həmin faylı sizinlə yenidən paylaşım etməsini bildirəsiniz. ", "Cheers!" : "Şərəfə!", "Recovery key password" : "Açar şifrənin bərpa edilməsi", diff --git a/apps/encryption/l10n/bg.js b/apps/encryption/l10n/bg.js new file mode 100644 index 0000000000000..e9ebe5388a15c --- /dev/null +++ b/apps/encryption/l10n/bg.js @@ -0,0 +1,40 @@ +OC.L10N.register( + "encryption", + { + "Missing recovery key password" : "Липсва парола за възстановяване", + "Please repeat the recovery key password" : "Повтори новата парола за възстановяване", + "Repeated recovery key password does not match the provided recovery key password" : "Повторената парола за възстановяване не съвпада със зададената парола за възстановяване", + "Recovery key successfully enabled" : "Успешно включване на опцията ключ за възстановяване.", + "Could not enable recovery key. Please check your recovery key password!" : "Неуспешно включване на опцията ключ за възстановяване. Моля, провери паролата за ключа за възстановяване.", + "Recovery key successfully disabled" : "Успешно изключване на ключа за възстановяване.", + "Could not disable recovery key. Please check your recovery key password!" : "Неуспешно изключване на ключа за възстановяване. Моля, провери паролата за ключа за възстановяване!", + "Missing parameters" : "Липсващи параметри", + "Please provide the old recovery password" : "Моля, въведи старата парола за възстановяване", + "Please provide a new recovery password" : "Моля, задай нова парола за възстановяване", + "Please repeat the new recovery password" : "Моля, въведи повторна новата парола за възстановяване", + "Password successfully changed." : "Паролата е успешно променена.", + "Could not change the password. Maybe the old password was not correct." : "Грешка при промяна на паролата. Може би старата ти парола е сгрешена.", + "Could not update the private key password." : "Неуспешна промяна на паролата на личния ключ", + "The old password was not correct, please try again." : "Старата парола е грешна, опитай отново.", + "The current log-in password was not correct, please try again." : "Грешна парола за вписване, опитай отново.", + "Private key password successfully updated." : "Успешно променена тайната парола за ключа.", + "Missing Signature" : "Липсва подпис", + "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Файлът не може да бъде разшифроване, вероятно е споделен файл. Моля, помолете собственика на файла да го сподели повторно.", + "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Файлът не може да бъде прочетен, вероятно е споделен файл. Моля, помолете собственика на файла да го сподели повторно.", + "The share will expire on %s." : "Споделянето ще изтече на %s.", + "Cheers!" : "Поздрави!", + "Recovery key password" : "Парола за възстановяане на ключа", + "Change recovery key password:" : "Промени паролата за въстановяване на ключа:", + "Change Password" : "Промени Паролата", + "Your private key password no longer matches your log-in password." : "Личният ви ключ не съвпада с паролата за вписване.", + "Set your old private key password to your current log-in password:" : "Промени паролата за тайния ти включ на паролата за вписване:", + " If you don't remember your old password you can ask your administrator to recover your files." : "Ако не помниш старата парола помоли администратора да възстанови файловете ти.", + "Old log-in password" : "Стара парола за вписване", + "Current log-in password" : "Текуща парола за вписване", + "Update Private Key Password" : "Промени Тайната Парола за Ключа", + "Enable password recovery:" : "Включи опцията възстановяване на паролата:", + "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Избирането на тази опция ще ти позволи да възстановиш достъпа си до файловете в случай на изгубена парола.", + "Enabled" : "Включено", + "Disabled" : "Изключено" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/bg.json b/apps/encryption/l10n/bg.json new file mode 100644 index 0000000000000..20f8203d5830b --- /dev/null +++ b/apps/encryption/l10n/bg.json @@ -0,0 +1,38 @@ +{ "translations": { + "Missing recovery key password" : "Липсва парола за възстановяване", + "Please repeat the recovery key password" : "Повтори новата парола за възстановяване", + "Repeated recovery key password does not match the provided recovery key password" : "Повторената парола за възстановяване не съвпада със зададената парола за възстановяване", + "Recovery key successfully enabled" : "Успешно включване на опцията ключ за възстановяване.", + "Could not enable recovery key. Please check your recovery key password!" : "Неуспешно включване на опцията ключ за възстановяване. Моля, провери паролата за ключа за възстановяване.", + "Recovery key successfully disabled" : "Успешно изключване на ключа за възстановяване.", + "Could not disable recovery key. Please check your recovery key password!" : "Неуспешно изключване на ключа за възстановяване. Моля, провери паролата за ключа за възстановяване!", + "Missing parameters" : "Липсващи параметри", + "Please provide the old recovery password" : "Моля, въведи старата парола за възстановяване", + "Please provide a new recovery password" : "Моля, задай нова парола за възстановяване", + "Please repeat the new recovery password" : "Моля, въведи повторна новата парола за възстановяване", + "Password successfully changed." : "Паролата е успешно променена.", + "Could not change the password. Maybe the old password was not correct." : "Грешка при промяна на паролата. Може би старата ти парола е сгрешена.", + "Could not update the private key password." : "Неуспешна промяна на паролата на личния ключ", + "The old password was not correct, please try again." : "Старата парола е грешна, опитай отново.", + "The current log-in password was not correct, please try again." : "Грешна парола за вписване, опитай отново.", + "Private key password successfully updated." : "Успешно променена тайната парола за ключа.", + "Missing Signature" : "Липсва подпис", + "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Файлът не може да бъде разшифроване, вероятно е споделен файл. Моля, помолете собственика на файла да го сподели повторно.", + "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Файлът не може да бъде прочетен, вероятно е споделен файл. Моля, помолете собственика на файла да го сподели повторно.", + "The share will expire on %s." : "Споделянето ще изтече на %s.", + "Cheers!" : "Поздрави!", + "Recovery key password" : "Парола за възстановяане на ключа", + "Change recovery key password:" : "Промени паролата за въстановяване на ключа:", + "Change Password" : "Промени Паролата", + "Your private key password no longer matches your log-in password." : "Личният ви ключ не съвпада с паролата за вписване.", + "Set your old private key password to your current log-in password:" : "Промени паролата за тайния ти включ на паролата за вписване:", + " If you don't remember your old password you can ask your administrator to recover your files." : "Ако не помниш старата парола помоли администратора да възстанови файловете ти.", + "Old log-in password" : "Стара парола за вписване", + "Current log-in password" : "Текуща парола за вписване", + "Update Private Key Password" : "Промени Тайната Парола за Ключа", + "Enable password recovery:" : "Включи опцията възстановяване на паролата:", + "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Избирането на тази опция ще ти позволи да възстановиш достъпа си до файловете в случай на изгубена парола.", + "Enabled" : "Включено", + "Disabled" : "Изключено" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/apps/encryption/l10n/ca.js b/apps/encryption/l10n/ca.js index 208b2aebb113c..9b57c56ab5c00 100644 --- a/apps/encryption/l10n/ca.js +++ b/apps/encryption/l10n/ca.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contrasenya antiga no es correcta, Si us plau, Intenteu-ho de nou.", "The current log-in password was not correct, please try again." : "La contrasenya d'inici de sessió actual no era correcta, torneu-ho a provar.", "Private key password successfully updated." : "La contrasenya de la clau privada s'ha actualitzat.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necessiteu migrar les claus de xifratge des del xifratge antic (ownCloud <= 8.0) al nou. Si us plau, executeu 'encryption d'occ: migrate' o poseu-vos en contacte amb l'administrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Clau privada no vàlida per a l'aplicació de xifrat. Actualitzeu la contrasenya de la clau privada a la vostra configuració personal per recuperar l'accés als vostres fitxers xifrats.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "L'aplicació de xifrat està habilitada, però les vostres claus no s'inicialitzen. Tanqueu la sessió d'inici de sessió i torneu a iniciar sessió.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Activeu el xifratge del servidor en la configuració de l'administrador per poder utilitzar el mòdul de xifratge.", @@ -31,9 +30,9 @@ OC.L10N.register( "one-time password for server-side-encryption" : "contrasenya única per al xifrat del costat del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es pot desencriptar aquest fitxer, probablement és un fitxer compartit. Demaneu al propietari del fitxer que el comparteixi de nou amb vós.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es pot llegir aquest fitxer, probablement aquest sigui un fitxer compartit. Demana al propietari del fitxer que torni a compartir el fitxer amb tu.", + "Default encryption module" : "Mòdul de xifrat per defecte", "The share will expire on %s." : "La compartició venç el %s.", "Cheers!" : "Salut!", - "Default encryption module" : "Mòdul de xifrat per defecte", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "L'aplicació d'encriptació està activada però les claus no estan inicialitzades, sortiu i acrediteu-vos de nou.", "Encrypt the home storage" : "Xifra l'emmagatzematge de casa", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Si activeu aquesta opció xifra tots els fitxers emmagatzemats a l'emmagatzematge principal, en cas contrari, només es codificaran els fitxers en emmagatzematge extern", @@ -58,6 +57,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Activar aquesta opció us permetrà obtenir de nou accés als vostres fitxers encriptats en cas de perdre la contrasenya", "Enabled" : "Activat", "Disabled" : "Desactivat", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "L'aplicació d'encriptació està activada però les claus no estan inicialitzades, sortiu i acrediteu-vos de nou." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necessiteu migrar les claus de xifratge des del xifratge antic (ownCloud <= 8.0) al nou. Si us plau, executeu 'encryption d'occ: migrate' o poseu-vos en contacte amb l'administrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/ca.json b/apps/encryption/l10n/ca.json index 1b02eea2feba1..db395f336bfdd 100644 --- a/apps/encryption/l10n/ca.json +++ b/apps/encryption/l10n/ca.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contrasenya antiga no es correcta, Si us plau, Intenteu-ho de nou.", "The current log-in password was not correct, please try again." : "La contrasenya d'inici de sessió actual no era correcta, torneu-ho a provar.", "Private key password successfully updated." : "La contrasenya de la clau privada s'ha actualitzat.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necessiteu migrar les claus de xifratge des del xifratge antic (ownCloud <= 8.0) al nou. Si us plau, executeu 'encryption d'occ: migrate' o poseu-vos en contacte amb l'administrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Clau privada no vàlida per a l'aplicació de xifrat. Actualitzeu la contrasenya de la clau privada a la vostra configuració personal per recuperar l'accés als vostres fitxers xifrats.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "L'aplicació de xifrat està habilitada, però les vostres claus no s'inicialitzen. Tanqueu la sessió d'inici de sessió i torneu a iniciar sessió.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Activeu el xifratge del servidor en la configuració de l'administrador per poder utilitzar el mòdul de xifratge.", @@ -29,9 +28,9 @@ "one-time password for server-side-encryption" : "contrasenya única per al xifrat del costat del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es pot desencriptar aquest fitxer, probablement és un fitxer compartit. Demaneu al propietari del fitxer que el comparteixi de nou amb vós.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es pot llegir aquest fitxer, probablement aquest sigui un fitxer compartit. Demana al propietari del fitxer que torni a compartir el fitxer amb tu.", + "Default encryption module" : "Mòdul de xifrat per defecte", "The share will expire on %s." : "La compartició venç el %s.", "Cheers!" : "Salut!", - "Default encryption module" : "Mòdul de xifrat per defecte", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "L'aplicació d'encriptació està activada però les claus no estan inicialitzades, sortiu i acrediteu-vos de nou.", "Encrypt the home storage" : "Xifra l'emmagatzematge de casa", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Si activeu aquesta opció xifra tots els fitxers emmagatzemats a l'emmagatzematge principal, en cas contrari, només es codificaran els fitxers en emmagatzematge extern", @@ -56,6 +55,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Activar aquesta opció us permetrà obtenir de nou accés als vostres fitxers encriptats en cas de perdre la contrasenya", "Enabled" : "Activat", "Disabled" : "Desactivat", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "L'aplicació d'encriptació està activada però les claus no estan inicialitzades, sortiu i acrediteu-vos de nou." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necessiteu migrar les claus de xifratge des del xifratge antic (ownCloud <= 8.0) al nou. Si us plau, executeu 'encryption d'occ: migrate' o poseu-vos en contacte amb l'administrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/cs.js b/apps/encryption/l10n/cs.js index dbaf00ba63c2c..71076d204c38e 100644 --- a/apps/encryption/l10n/cs.js +++ b/apps/encryption/l10n/cs.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Staré heslo nebylo zadáno správně, zkuste to prosím znovu.", "The current log-in password was not correct, please try again." : "Současné přihlašovací heslo nebylo zadáno správně, zkuste to prosím znovu.", "Private key password successfully updated." : "Heslo soukromého klíče úspěšně aktualizováno.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Musíte přenést své šifrovací klíče ze staré verze šifrování (ownCloud <= 8.0) na novou. Spusťte příkaz 'occ encryption:migrate' nebo kontaktujte svého administrátora.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Chybný soukromý klíč pro šifrovací aplikaci. Aktualizujte prosím heslo svého soukromého klíče v osobním nastavení, abyste znovu získali přístup ke svým zašifrovaným souborům.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Chcete-li používat šifrovací modul, povolte prosím šifrování na straně serveru v nastavení administrátora.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "jednorázové heslo pro šifrování na straně serveru", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tento soubor se nepodařilo dešifrovat, pravděpodobně je sdílený. Požádejte prosím majitele souboru, aby jej s vámi znovu sdílel.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Soubor nelze načíst, pravděpodobně se jedná o sdílený soubor. Požádejte prosím vlastníka souboru, aby vám jej znovu sdílel.", + "Default encryption module" : "Výchozí šifrovací modul", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Ahoj!\n\nAdministrátor povolil šifrování dat na serveru. Vaše soubory byly zašifrovány za použití hesla '%s'.\n\nPřihlašte se do webového rozhraní, přejděte do nastavení 'základního šifrovacího modulu' a aktualizujte šifrovací heslo zadáním hesla výše do pole 'původní přihlašovací heslo' a svého aktuálního přihlašovacího hesla.\n\n", "The share will expire on %s." : "Sdílení vyprší %s.", "Cheers!" : "Ať slouží!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Ahoj!

Administrátor povolil šifrování dat na serveru. Vaše soubory byly zašifrovány za použití hesla %s.

Přihlašte se do webového rozhraní, přejděte do nastavení \"základního šifrovacího modulu\" a aktualizujte šifrovací heslo zadáním hesla výše do pole \"původní přihlašovací heslo\" a svého aktuálního přihlašovacího hesla.

", - "Default encryption module" : "Výchozí šifrovací modul", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikace pro šifrování je zapnuta, ale šifrovací klíče ještě nejsou inicializované. Prosím odhlaste se a znovu se přihlaste", "Encrypt the home storage" : "Zašifrovat domovské úložiště", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Povolení tohoto nastavení zašifruje všechny soubory uložené v hlavním úložišti, jinak budou šifrovány pouze soubory na externích úložištích.", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Zapnutí této volby vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo", "Enabled" : "Povoleno", "Disabled" : "Zakázáno", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Musíte přenést své šifrovací klíče ze staré verze šifrování (ownCloud <= 8.0) na novou. Spusťte příkaz 'occ encryption:migrate' nebo kontaktujte svého administrátora." }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/encryption/l10n/cs.json b/apps/encryption/l10n/cs.json index fa4ba721b09d4..69aaf8ebadce7 100644 --- a/apps/encryption/l10n/cs.json +++ b/apps/encryption/l10n/cs.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Staré heslo nebylo zadáno správně, zkuste to prosím znovu.", "The current log-in password was not correct, please try again." : "Současné přihlašovací heslo nebylo zadáno správně, zkuste to prosím znovu.", "Private key password successfully updated." : "Heslo soukromého klíče úspěšně aktualizováno.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Musíte přenést své šifrovací klíče ze staré verze šifrování (ownCloud <= 8.0) na novou. Spusťte příkaz 'occ encryption:migrate' nebo kontaktujte svého administrátora.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Chybný soukromý klíč pro šifrovací aplikaci. Aktualizujte prosím heslo svého soukromého klíče v osobním nastavení, abyste znovu získali přístup ke svým zašifrovaným souborům.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Chcete-li používat šifrovací modul, povolte prosím šifrování na straně serveru v nastavení administrátora.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "jednorázové heslo pro šifrování na straně serveru", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tento soubor se nepodařilo dešifrovat, pravděpodobně je sdílený. Požádejte prosím majitele souboru, aby jej s vámi znovu sdílel.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Soubor nelze načíst, pravděpodobně se jedná o sdílený soubor. Požádejte prosím vlastníka souboru, aby vám jej znovu sdílel.", + "Default encryption module" : "Výchozí šifrovací modul", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Ahoj!\n\nAdministrátor povolil šifrování dat na serveru. Vaše soubory byly zašifrovány za použití hesla '%s'.\n\nPřihlašte se do webového rozhraní, přejděte do nastavení 'základního šifrovacího modulu' a aktualizujte šifrovací heslo zadáním hesla výše do pole 'původní přihlašovací heslo' a svého aktuálního přihlašovacího hesla.\n\n", "The share will expire on %s." : "Sdílení vyprší %s.", "Cheers!" : "Ať slouží!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Ahoj!

Administrátor povolil šifrování dat na serveru. Vaše soubory byly zašifrovány za použití hesla %s.

Přihlašte se do webového rozhraní, přejděte do nastavení \"základního šifrovacího modulu\" a aktualizujte šifrovací heslo zadáním hesla výše do pole \"původní přihlašovací heslo\" a svého aktuálního přihlašovacího hesla.

", - "Default encryption module" : "Výchozí šifrovací modul", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikace pro šifrování je zapnuta, ale šifrovací klíče ještě nejsou inicializované. Prosím odhlaste se a znovu se přihlaste", "Encrypt the home storage" : "Zašifrovat domovské úložiště", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Povolení tohoto nastavení zašifruje všechny soubory uložené v hlavním úložišti, jinak budou šifrovány pouze soubory na externích úložištích.", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Zapnutí této volby vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo", "Enabled" : "Povoleno", "Disabled" : "Zakázáno", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Musíte přenést své šifrovací klíče ze staré verze šifrování (ownCloud <= 8.0) na novou. Spusťte příkaz 'occ encryption:migrate' nebo kontaktujte svého administrátora." },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/encryption/l10n/da.js b/apps/encryption/l10n/da.js index 149819014c736..dee128be847d6 100644 --- a/apps/encryption/l10n/da.js +++ b/apps/encryption/l10n/da.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Det gamle kodeord var ikke korrekt, prøv venligst igen.", "The current log-in password was not correct, please try again." : "Det nuværende kodeord til log-in var ikke korrekt, prøv venligst igen.", "Private key password successfully updated." : "Privat nøgle kodeord succesfuldt opdateret.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Du skal overflytte dine krypteringsnøgler fra den gamle kryptering (ownCloud <= 8.0) til den nye af slagsen. Kør venligst \"occ encryption:migrate\" eller kontakt din administrator.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Ugyldig privat nøgle til Krypteringsprogrammet. Venligst opdater din kode til privat nøgle i dine personlige indstillinger for at gendanne adgang til dine krypterede filer.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Krypteringsprogrammet er aktiveret, men dine nøgler er ikke indlæst. Log venligst ud og ind igen.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Venligst aktiver Server kryptering under administrationen hvis du vil anvende krypterings modulet.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Engangs password for kryptering på serverdelen", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Kan ikke kryptere denne fil, sandsynligvis fordi filen er delt. Bed venligst filens ejer om at dele den med dig på ny.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Kan ikke læse denne fil, sandsynligvis fordi det er en delt fil. Bed venligst ejeren af filen om at dele filen med dig på ny.", + "Default encryption module" : "Standard krypterings modul", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hej,\n\nAdministrator aktiveret kryptering på serverdelen. '%s'.\n\nVenligst log på web brugerfladen, gå til sektionen \"grundlæggende krypterings modul\" for din personlige opsætninger og opdater dine krypterings kodeord ved at indtaste dette kodeord i \"gamle kodeord log\" feltet samt dit nuværende kodeord.\n\n", "The share will expire on %s." : "Delingen vil udløbe om %s.", "Cheers!" : "Hej!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hej,

administrator aktiveret kryptering på serverdelen. Dine file er blevet krypteret med kodeordet %s.

Venligst log på web brugerfladen, gå til sektionen \"grundlæggende krypterings modul\" for din personlige opsætninger og opdater dine krypterings kodeord ved at indtaste dette kodeord i \"gamle kodeord log\" feltet samt dit nuværende kodeord.

", - "Default encryption module" : "Standard krypterings modul", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Krypteringsprogrammet er aktiveret men dine nøgler er ikke indlæst, log venligst ud og ind igen", "Encrypt the home storage" : "Krypter hjemmelageret", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Ved at slå denne valgmulighed til krypteres alle filer i hovedlageret, ellers vil kun filer på eksternt lager blive krypteret", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Aktivering af denne valgmulighed tillader dig at generhverve adgang til dine krypterede filer i tilfælde af tab af kodeord", "Enabled" : "Aktiveret", "Disabled" : "Deaktiveret", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Krypteringsprogrammet er aktiveret, men din nøgler er ikke igangsat. Log venligst ud og ind igen." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Du skal overflytte dine krypteringsnøgler fra den gamle kryptering (ownCloud <= 8.0) til den nye af slagsen. Kør venligst \"occ encryption:migrate\" eller kontakt din administrator." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/da.json b/apps/encryption/l10n/da.json index 41283089b1611..147bd2c42b67d 100644 --- a/apps/encryption/l10n/da.json +++ b/apps/encryption/l10n/da.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Det gamle kodeord var ikke korrekt, prøv venligst igen.", "The current log-in password was not correct, please try again." : "Det nuværende kodeord til log-in var ikke korrekt, prøv venligst igen.", "Private key password successfully updated." : "Privat nøgle kodeord succesfuldt opdateret.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Du skal overflytte dine krypteringsnøgler fra den gamle kryptering (ownCloud <= 8.0) til den nye af slagsen. Kør venligst \"occ encryption:migrate\" eller kontakt din administrator.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Ugyldig privat nøgle til Krypteringsprogrammet. Venligst opdater din kode til privat nøgle i dine personlige indstillinger for at gendanne adgang til dine krypterede filer.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Krypteringsprogrammet er aktiveret, men dine nøgler er ikke indlæst. Log venligst ud og ind igen.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Venligst aktiver Server kryptering under administrationen hvis du vil anvende krypterings modulet.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Engangs password for kryptering på serverdelen", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Kan ikke kryptere denne fil, sandsynligvis fordi filen er delt. Bed venligst filens ejer om at dele den med dig på ny.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Kan ikke læse denne fil, sandsynligvis fordi det er en delt fil. Bed venligst ejeren af filen om at dele filen med dig på ny.", + "Default encryption module" : "Standard krypterings modul", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hej,\n\nAdministrator aktiveret kryptering på serverdelen. '%s'.\n\nVenligst log på web brugerfladen, gå til sektionen \"grundlæggende krypterings modul\" for din personlige opsætninger og opdater dine krypterings kodeord ved at indtaste dette kodeord i \"gamle kodeord log\" feltet samt dit nuværende kodeord.\n\n", "The share will expire on %s." : "Delingen vil udløbe om %s.", "Cheers!" : "Hej!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hej,

administrator aktiveret kryptering på serverdelen. Dine file er blevet krypteret med kodeordet %s.

Venligst log på web brugerfladen, gå til sektionen \"grundlæggende krypterings modul\" for din personlige opsætninger og opdater dine krypterings kodeord ved at indtaste dette kodeord i \"gamle kodeord log\" feltet samt dit nuværende kodeord.

", - "Default encryption module" : "Standard krypterings modul", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Krypteringsprogrammet er aktiveret men dine nøgler er ikke indlæst, log venligst ud og ind igen", "Encrypt the home storage" : "Krypter hjemmelageret", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Ved at slå denne valgmulighed til krypteres alle filer i hovedlageret, ellers vil kun filer på eksternt lager blive krypteret", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Aktivering af denne valgmulighed tillader dig at generhverve adgang til dine krypterede filer i tilfælde af tab af kodeord", "Enabled" : "Aktiveret", "Disabled" : "Deaktiveret", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Krypteringsprogrammet er aktiveret, men din nøgler er ikke igangsat. Log venligst ud og ind igen." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Du skal overflytte dine krypteringsnøgler fra den gamle kryptering (ownCloud <= 8.0) til den nye af slagsen. Kør venligst \"occ encryption:migrate\" eller kontakt din administrator." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/de.js b/apps/encryption/l10n/de.js index cf32e517fe2a4..9ad1bf76394c9 100644 --- a/apps/encryption/l10n/de.js +++ b/apps/encryption/l10n/de.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Das alte Passwort war falsch, bitte versuche es erneut.", "The current log-in password was not correct, please try again." : "Das aktuelle Anmeldepasswort war nicht korrekt, bitte versuche es noch einmal.", "Private key password successfully updated." : "Das Passwort des privaten Schlüssels wurde aktualisiert.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Verschlüsselungsschlüssel müssen von der alten Verschlüsselung (ownCloud <= 8.0) zur neuen migriert werden. Bitte 'occ encryption:migrate' ausführen oder Deinen Administrator kontaktieren.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Falscher privater Schlüssel für die Verschlüsselungs-App. Bitte aktualisiere Deinen privaten Schlüssel in Deinen persönlichen Einstellungen um wieder Zugriff auf die verschlüsselten Dateien zu erhalten.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Verschlüsselung-App ist aktiviert, aber Deine Schlüssel sind nicht initialisiert. Bitte melde Dich ab und wieder an.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Bitte aktiviere server-seitige Verschlüsselung in den Administrator-Einstellungen um das Verschlüsselungsmodul nutzen zu können", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Einmal-Passwort für serverseitige Verschlüsselung", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Diese Datei kann nicht entschlüsselt werden, es handelt sich wahrscheinlich um eine geteilte Datei. Bitte kontaktiere den Eigentümer der Datei und bitte darum, die Datei noch einmal mit Dir zu teilen.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Diese Datei kann nicht gelesen werden, es handelt sich wahrscheinlich um eine geteilte Datei. Bitte kontaktiere den Eigentümer der Datei und bitte darum, die Datei noch einmal mit Dir zu teilen.", + "Default encryption module" : "Standard-Verschlüsselungsmodul", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hey,\n\nder Administrator hat die servereitige Verschlüsselung aktiviert. Die Dateien wurden mit dem Passwort '%s' verschlüsselt.\n\nBitte über die Web-Oberfläche anmelden und die persönlichen Einstellungen aufrufen. Dort findet sich die Option 'Basisverschlüsselungsmodul' und das Verschlüsselungspasswort kann aktualisiert werden, indem das Passwort in das Feld 'altes Anmelde-Passwort' und in das 'aktuelles Anmelde-Passwort'-Feld eingegeben wird.\n\n", "The share will expire on %s." : "Die Freigabe wird am %s ablaufen.", "Cheers!" : "Noch einen schönen Tag!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hallo,

der Administrator hat die servereitige Verschlüsselung aktiviert. Die Dateien wurden mit dem Passwort %s verschlüsselt.

Bitte melde dich im Web-Interface an, gehe in deine persönlichen Einstellungen. Dort findest du die Option 'Basisverschlüsselungsmodul' und aktualisiere dort dein Verschlüsselungspasswort indem du das Passwort in das 'alte Anmelde-Passwort' und in das 'aktuellen Anmelde-Passwort' Feld eingibst.

", - "Default encryption module" : "Standard-Verschlüsselungsmodul", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Verschlüsselungs-App ist aktiviert, aber die Schlüssel sind noch nicht initialisiert. Bitte melde Dich ab und wieder an", "Encrypt the home storage" : "Benutzerverzeichnis verschlüsseln", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Die Aktivierung dieser Option verschlüsselt alle Dateien die auf dem Hauptspeicher gespeichert sind, ansonsten werden nur Dateien auf dem externen Speicher verschlüsselt", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Durch die Aktivierung dieser Option hast Du die Möglichkeit, wieder auf Deine verschlüsselten Dateien zugreifen zu können, wenn Du Dein Passwort verloren hast.", "Enabled" : "Aktiviert", "Disabled" : "Deaktiviert", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Die Verschlüsselungs-App ist aktiviert, aber deine Schlüssel sind nicht initialisiert. Bitte erneut ab- und wieder anmelden." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Verschlüsselungsschlüssel müssen von der alten Verschlüsselung (ownCloud <= 8.0) zur neuen migriert werden. Bitte 'occ encryption:migrate' ausführen oder Deinen Administrator kontaktieren." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/de.json b/apps/encryption/l10n/de.json index 5dad919db345d..477644aa63388 100644 --- a/apps/encryption/l10n/de.json +++ b/apps/encryption/l10n/de.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Das alte Passwort war falsch, bitte versuche es erneut.", "The current log-in password was not correct, please try again." : "Das aktuelle Anmeldepasswort war nicht korrekt, bitte versuche es noch einmal.", "Private key password successfully updated." : "Das Passwort des privaten Schlüssels wurde aktualisiert.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Verschlüsselungsschlüssel müssen von der alten Verschlüsselung (ownCloud <= 8.0) zur neuen migriert werden. Bitte 'occ encryption:migrate' ausführen oder Deinen Administrator kontaktieren.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Falscher privater Schlüssel für die Verschlüsselungs-App. Bitte aktualisiere Deinen privaten Schlüssel in Deinen persönlichen Einstellungen um wieder Zugriff auf die verschlüsselten Dateien zu erhalten.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Verschlüsselung-App ist aktiviert, aber Deine Schlüssel sind nicht initialisiert. Bitte melde Dich ab und wieder an.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Bitte aktiviere server-seitige Verschlüsselung in den Administrator-Einstellungen um das Verschlüsselungsmodul nutzen zu können", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Einmal-Passwort für serverseitige Verschlüsselung", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Diese Datei kann nicht entschlüsselt werden, es handelt sich wahrscheinlich um eine geteilte Datei. Bitte kontaktiere den Eigentümer der Datei und bitte darum, die Datei noch einmal mit Dir zu teilen.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Diese Datei kann nicht gelesen werden, es handelt sich wahrscheinlich um eine geteilte Datei. Bitte kontaktiere den Eigentümer der Datei und bitte darum, die Datei noch einmal mit Dir zu teilen.", + "Default encryption module" : "Standard-Verschlüsselungsmodul", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hey,\n\nder Administrator hat die servereitige Verschlüsselung aktiviert. Die Dateien wurden mit dem Passwort '%s' verschlüsselt.\n\nBitte über die Web-Oberfläche anmelden und die persönlichen Einstellungen aufrufen. Dort findet sich die Option 'Basisverschlüsselungsmodul' und das Verschlüsselungspasswort kann aktualisiert werden, indem das Passwort in das Feld 'altes Anmelde-Passwort' und in das 'aktuelles Anmelde-Passwort'-Feld eingegeben wird.\n\n", "The share will expire on %s." : "Die Freigabe wird am %s ablaufen.", "Cheers!" : "Noch einen schönen Tag!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hallo,

der Administrator hat die servereitige Verschlüsselung aktiviert. Die Dateien wurden mit dem Passwort %s verschlüsselt.

Bitte melde dich im Web-Interface an, gehe in deine persönlichen Einstellungen. Dort findest du die Option 'Basisverschlüsselungsmodul' und aktualisiere dort dein Verschlüsselungspasswort indem du das Passwort in das 'alte Anmelde-Passwort' und in das 'aktuellen Anmelde-Passwort' Feld eingibst.

", - "Default encryption module" : "Standard-Verschlüsselungsmodul", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Verschlüsselungs-App ist aktiviert, aber die Schlüssel sind noch nicht initialisiert. Bitte melde Dich ab und wieder an", "Encrypt the home storage" : "Benutzerverzeichnis verschlüsseln", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Die Aktivierung dieser Option verschlüsselt alle Dateien die auf dem Hauptspeicher gespeichert sind, ansonsten werden nur Dateien auf dem externen Speicher verschlüsselt", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Durch die Aktivierung dieser Option hast Du die Möglichkeit, wieder auf Deine verschlüsselten Dateien zugreifen zu können, wenn Du Dein Passwort verloren hast.", "Enabled" : "Aktiviert", "Disabled" : "Deaktiviert", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Die Verschlüsselungs-App ist aktiviert, aber deine Schlüssel sind nicht initialisiert. Bitte erneut ab- und wieder anmelden." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Verschlüsselungsschlüssel müssen von der alten Verschlüsselung (ownCloud <= 8.0) zur neuen migriert werden. Bitte 'occ encryption:migrate' ausführen oder Deinen Administrator kontaktieren." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/de_DE.js b/apps/encryption/l10n/de_DE.js index 80da278d6f8fa..0622e4941e3df 100644 --- a/apps/encryption/l10n/de_DE.js +++ b/apps/encryption/l10n/de_DE.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Das alte Passwort war falsch, bitte versuchen Sie es erneut.", "The current log-in password was not correct, please try again." : "Das aktuelle Anmeldepasswort war nicht korrekt, bitte versuchen Sie es noch einmal.", "Private key password successfully updated." : "Das Passwort des privaten Schlüssels wurde aktualisiert.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Sie müssen Ihre Verschlüsselungsschlüssel von der alten Verschlüsselung (ownCloud <= 8.0) zur neuen migrieren. Bitte führen Sie 'occ encryption:migrate' aus oder kontaktieren Sie Ihren Administrator.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Falscher privater Schlüssel für die Verschlüsselungs-App. Bitte aktualisieren Sie Ihren privaten Schlüssel in Ihren persönlichen Einstellungen um wieder Zugriff auf die verschlüsselten Dateien zu erhalten.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Verschlüsselung-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte melden Sie sich ab und wieder an.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Bitte aktiviere server-seitige Verschlüsselung in den Administrator-Einstellungen um das Verschlüsselungsmodul nutzen zu können", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Einmal-Passwort für serverseitige Verschlüsselung", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Diese Datei kann nicht entschlüsselt werden, es handelt sich wahrscheinlich um eine geteilte Datei. Bitte kontaktieren Sie den Eigentümer der Datei und bitten Sie darum, die Datei noch einmal mit Ihnen zu teilen.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Diese Datei kann nicht gelesen werden, es handelt sich wahrscheinlich um eine geteilte Datei. Bitte kontaktieren Sie den Eigentümer der Datei und bitten Sie darum, die Datei noch einmal mit Ihnen zu teilen.", + "Default encryption module" : "Standard-Verschlüsselungsmodul", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hey,\n\nder Administrator hat die servereitige Verschlüsselung aktiviert. Die Dateien wurden mit dem Passwort '%s' verschlüsselt.\n\nBitte melden Sie sich im Web-Oberfläche an, gehen Sie in ihre persönlichen Einstellungen. Dort finden Sie die Option 'Basisverschlüsselungsmodul' und aktualisieren Sie dort ihr Verschlüsselungspasswort indem Sie das Passwort in das 'altes Anmelde-Passwort' und in das 'aktuelles Anmelde-Passwort' Feld eingeben.\n\n", "The share will expire on %s." : "Die Freigabe wird am %s ablaufen.", "Cheers!" : "Noch einen schönen Tag!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hollo,

der Administrator hat die servereitige Verschlüsselung aktiviert. Die Dateien wurden mit dem Passwort %s verschlüsselt.

Bitte melden Sie sich im Web-Interface an und gehen Sie in ihre persönlichen Einstellungen. Dort finden Sie die Option 'Basisverschlüsselungsmodul' und aktualisieren Sie dort Ihr Verschlüsselungspasswort indem Sie das Passwort in das 'altes Anmelde-Passwort-' und in das 'aktuelles Anmelde-Passwort' Feld eingeben.

", - "Default encryption module" : "Standard-Verschlüsselungsmodul", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Verschlüsselungs-App ist aktiviert, aber die Schlüssel sind noch nicht initialisiert. Bitte melden Sie sich ab und wieder an", "Encrypt the home storage" : "Benutzerverzeichnis verschlüsseln", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Die Aktivierung dieser Option verschlüsselt alle Dateien die auf dem Hauptspeicher gespeichert sind, ansonsten werden nur Dateien auf dem externen Speicher verschlüsselt", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben.", "Enabled" : "Aktiviert", "Disabled" : "Deaktiviert", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Die Verschlüsselung-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte erneut ab- und wieder anmelden." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Sie müssen Ihre Verschlüsselungsschlüssel von der alten Verschlüsselung (ownCloud <= 8.0) zur neuen migrieren. Bitte führen Sie 'occ encryption:migrate' aus oder kontaktieren Sie Ihren Administrator." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/de_DE.json b/apps/encryption/l10n/de_DE.json index 37965f2a8341c..95a8909f73cf1 100644 --- a/apps/encryption/l10n/de_DE.json +++ b/apps/encryption/l10n/de_DE.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Das alte Passwort war falsch, bitte versuchen Sie es erneut.", "The current log-in password was not correct, please try again." : "Das aktuelle Anmeldepasswort war nicht korrekt, bitte versuchen Sie es noch einmal.", "Private key password successfully updated." : "Das Passwort des privaten Schlüssels wurde aktualisiert.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Sie müssen Ihre Verschlüsselungsschlüssel von der alten Verschlüsselung (ownCloud <= 8.0) zur neuen migrieren. Bitte führen Sie 'occ encryption:migrate' aus oder kontaktieren Sie Ihren Administrator.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Falscher privater Schlüssel für die Verschlüsselungs-App. Bitte aktualisieren Sie Ihren privaten Schlüssel in Ihren persönlichen Einstellungen um wieder Zugriff auf die verschlüsselten Dateien zu erhalten.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Verschlüsselung-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte melden Sie sich ab und wieder an.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Bitte aktiviere server-seitige Verschlüsselung in den Administrator-Einstellungen um das Verschlüsselungsmodul nutzen zu können", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Einmal-Passwort für serverseitige Verschlüsselung", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Diese Datei kann nicht entschlüsselt werden, es handelt sich wahrscheinlich um eine geteilte Datei. Bitte kontaktieren Sie den Eigentümer der Datei und bitten Sie darum, die Datei noch einmal mit Ihnen zu teilen.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Diese Datei kann nicht gelesen werden, es handelt sich wahrscheinlich um eine geteilte Datei. Bitte kontaktieren Sie den Eigentümer der Datei und bitten Sie darum, die Datei noch einmal mit Ihnen zu teilen.", + "Default encryption module" : "Standard-Verschlüsselungsmodul", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hey,\n\nder Administrator hat die servereitige Verschlüsselung aktiviert. Die Dateien wurden mit dem Passwort '%s' verschlüsselt.\n\nBitte melden Sie sich im Web-Oberfläche an, gehen Sie in ihre persönlichen Einstellungen. Dort finden Sie die Option 'Basisverschlüsselungsmodul' und aktualisieren Sie dort ihr Verschlüsselungspasswort indem Sie das Passwort in das 'altes Anmelde-Passwort' und in das 'aktuelles Anmelde-Passwort' Feld eingeben.\n\n", "The share will expire on %s." : "Die Freigabe wird am %s ablaufen.", "Cheers!" : "Noch einen schönen Tag!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hollo,

der Administrator hat die servereitige Verschlüsselung aktiviert. Die Dateien wurden mit dem Passwort %s verschlüsselt.

Bitte melden Sie sich im Web-Interface an und gehen Sie in ihre persönlichen Einstellungen. Dort finden Sie die Option 'Basisverschlüsselungsmodul' und aktualisieren Sie dort Ihr Verschlüsselungspasswort indem Sie das Passwort in das 'altes Anmelde-Passwort-' und in das 'aktuelles Anmelde-Passwort' Feld eingeben.

", - "Default encryption module" : "Standard-Verschlüsselungsmodul", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Verschlüsselungs-App ist aktiviert, aber die Schlüssel sind noch nicht initialisiert. Bitte melden Sie sich ab und wieder an", "Encrypt the home storage" : "Benutzerverzeichnis verschlüsseln", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Die Aktivierung dieser Option verschlüsselt alle Dateien die auf dem Hauptspeicher gespeichert sind, ansonsten werden nur Dateien auf dem externen Speicher verschlüsselt", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben.", "Enabled" : "Aktiviert", "Disabled" : "Deaktiviert", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Die Verschlüsselung-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte erneut ab- und wieder anmelden." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Sie müssen Ihre Verschlüsselungsschlüssel von der alten Verschlüsselung (ownCloud <= 8.0) zur neuen migrieren. Bitte führen Sie 'occ encryption:migrate' aus oder kontaktieren Sie Ihren Administrator." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/el.js b/apps/encryption/l10n/el.js index 16fe713c83335..f791c1e17fe44 100644 --- a/apps/encryption/l10n/el.js +++ b/apps/encryption/l10n/el.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Το παλαιό συνθηματικό δεν είναι σωστό, παρακαλώ δοκιμάστε ξανά.", "The current log-in password was not correct, please try again." : "Το τρέχον συνθηματικό δεν είναι σωστό, παρακαλώ δοκιμάστε ξανά.", "Private key password successfully updated." : "Το Προσωπικό κλειδί πρόσβασης ενημερώθηκε επιτυχώς", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Πρέπει να μεταφέρετε τα κλειδιά κρυπτογράφησής σας από την παλιά κρυπτογράφηση (ownCloud <= 8.0) στην καινούρια. Παρακαλούμε εκτελέστε την εντολή 'occ encryption:migrate' ή επικοινωνήστε με το διαχειριστή σας.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Άκυρο προσωπικό κλειδί για την εφαρμογή κρυπτογράφησης. Παρακαλώ ενημερώστε τον κωδικό του προσωπικού κλειδιού σας στις προσωπικές ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν αρχικοποιηθεί. Πραγματοποιήστε έξοδο και είσοδο στην εφαρμογή εκ νέου.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Παρακαλούμε ενεργοποιήστε την κρυπτογράφηση στον διακομιστή, στις ρυθμίσεις διαχειριστή για να χρησιμοποιήσετε την κρυπτογράφηση", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "κωδικός μιας χρήσης για κρυπτογράφηση στο διακομιστή", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Δεν ήταν δυνατό να αποκρυπτογραφηθεί αυτό το αρχείο, πιθανόν πρόκειται για κοινόχρηστο αρχείο. Παρακαλώ ζητήστε από τον ιδιοκτήτη του αρχείου να το ξαναμοιραστεί μαζί σας.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Αδυναμία ανάγνωσης αυτού του αρχείου, πιθανό να είναι διαμοιραζόμενο αρχείο. Παρακαλώ ρωτήστε τον κάτοχο του αρχείου να το διαμοιράσει ξανά μαζί σας.", + "Default encryption module" : "Προεπιλεγμένη μονάδα κρυπτογράφησης", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Χαίρετε,\n\nο διαχειριστής ενεργοποίηση την κρυπτογράφηση στο διακομιστή. Τα αρχεία σας κρυπτογραφήθηκαν με τον κωδικό '%s'.\n\nΠαρακαλούμε συνδεθείτε στη διεπαφή ιστού, πηγαίνετε στην ενότητα 'μονάδα βασικής κρυπτογράφησης' στις προσωπικές σας ρυθμίσεις και ενημερώστε τον κωδικό κρυπτογράφησης εισάγοντας αυτό τον κωδικό στο πεδίο 'παλιός κωδικός σύνδεσης' και τον τωρινό σας κωδικό σύνδεσης.\n", "The share will expire on %s." : "Ο διαμοιρασμός θα λήξει σε %s.", "Cheers!" : "Χαιρετισμούς!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Χαίρετε,

ο διαχειριστής ενεργοποίησε την κρυπτογράφηση στο διακομιστή. Τα αρχεία σας κρυπτογραφήθηκαν με τον κωδικό %s.

Παρακαλούμε συνδεθείτε στη διεπαφή ιστού, πηγαίνετε στην ενότητα \"μονάδα βασικής κρυπτογράφησης\" τωνπ ροσωπικών σας ρυθμίσεων και ενημερώστε τον κωδικό κρυπτογράφησης εισάγοντας αυτό τον κωδικό στο πεδίο \"παλιός κωδικός σύνδεσης\" και τον τωρινό σας κωδικό σύνδεσης.", - "Default encryption module" : "Προεπιλεγμένη μονάδα κρυπτογράφησης", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε.", "Encrypt the home storage" : "Κρυπτογράφηση του κεντρικού χώρου αποθήκευσης", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Η ενεργοποίηση αυτή της επιλογής κρυπτογραφεί όλα τα αρχεία που βρίσκονται στον κύριο αποθηκευτικό χώρο, αλλιώς μόνο τα αρχεία σε εξωτερικούς αποθηκευτικούς χώρους θα κρυπτογραφηθούν.", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Η ενεργοποίηση αυτής της επιλογής θα σας επιτρέψει να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία σε περίπτωση απώλειας του κωδικού σας", "Enabled" : "Ενεργοποιημένο", "Disabled" : "Απενεργοποιημένο", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Πρέπει να μεταφέρετε τα κλειδιά κρυπτογράφησής σας από την παλιά κρυπτογράφηση (ownCloud <= 8.0) στην καινούρια. Παρακαλούμε εκτελέστε την εντολή 'occ encryption:migrate' ή επικοινωνήστε με το διαχειριστή σας." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/el.json b/apps/encryption/l10n/el.json index 6ec8202c6cd7d..9e0449451c253 100644 --- a/apps/encryption/l10n/el.json +++ b/apps/encryption/l10n/el.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Το παλαιό συνθηματικό δεν είναι σωστό, παρακαλώ δοκιμάστε ξανά.", "The current log-in password was not correct, please try again." : "Το τρέχον συνθηματικό δεν είναι σωστό, παρακαλώ δοκιμάστε ξανά.", "Private key password successfully updated." : "Το Προσωπικό κλειδί πρόσβασης ενημερώθηκε επιτυχώς", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Πρέπει να μεταφέρετε τα κλειδιά κρυπτογράφησής σας από την παλιά κρυπτογράφηση (ownCloud <= 8.0) στην καινούρια. Παρακαλούμε εκτελέστε την εντολή 'occ encryption:migrate' ή επικοινωνήστε με το διαχειριστή σας.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Άκυρο προσωπικό κλειδί για την εφαρμογή κρυπτογράφησης. Παρακαλώ ενημερώστε τον κωδικό του προσωπικού κλειδιού σας στις προσωπικές ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν αρχικοποιηθεί. Πραγματοποιήστε έξοδο και είσοδο στην εφαρμογή εκ νέου.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Παρακαλούμε ενεργοποιήστε την κρυπτογράφηση στον διακομιστή, στις ρυθμίσεις διαχειριστή για να χρησιμοποιήσετε την κρυπτογράφηση", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "κωδικός μιας χρήσης για κρυπτογράφηση στο διακομιστή", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Δεν ήταν δυνατό να αποκρυπτογραφηθεί αυτό το αρχείο, πιθανόν πρόκειται για κοινόχρηστο αρχείο. Παρακαλώ ζητήστε από τον ιδιοκτήτη του αρχείου να το ξαναμοιραστεί μαζί σας.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Αδυναμία ανάγνωσης αυτού του αρχείου, πιθανό να είναι διαμοιραζόμενο αρχείο. Παρακαλώ ρωτήστε τον κάτοχο του αρχείου να το διαμοιράσει ξανά μαζί σας.", + "Default encryption module" : "Προεπιλεγμένη μονάδα κρυπτογράφησης", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Χαίρετε,\n\nο διαχειριστής ενεργοποίηση την κρυπτογράφηση στο διακομιστή. Τα αρχεία σας κρυπτογραφήθηκαν με τον κωδικό '%s'.\n\nΠαρακαλούμε συνδεθείτε στη διεπαφή ιστού, πηγαίνετε στην ενότητα 'μονάδα βασικής κρυπτογράφησης' στις προσωπικές σας ρυθμίσεις και ενημερώστε τον κωδικό κρυπτογράφησης εισάγοντας αυτό τον κωδικό στο πεδίο 'παλιός κωδικός σύνδεσης' και τον τωρινό σας κωδικό σύνδεσης.\n", "The share will expire on %s." : "Ο διαμοιρασμός θα λήξει σε %s.", "Cheers!" : "Χαιρετισμούς!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Χαίρετε,

ο διαχειριστής ενεργοποίησε την κρυπτογράφηση στο διακομιστή. Τα αρχεία σας κρυπτογραφήθηκαν με τον κωδικό %s.

Παρακαλούμε συνδεθείτε στη διεπαφή ιστού, πηγαίνετε στην ενότητα \"μονάδα βασικής κρυπτογράφησης\" τωνπ ροσωπικών σας ρυθμίσεων και ενημερώστε τον κωδικό κρυπτογράφησης εισάγοντας αυτό τον κωδικό στο πεδίο \"παλιός κωδικός σύνδεσης\" και τον τωρινό σας κωδικό σύνδεσης.", - "Default encryption module" : "Προεπιλεγμένη μονάδα κρυπτογράφησης", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε.", "Encrypt the home storage" : "Κρυπτογράφηση του κεντρικού χώρου αποθήκευσης", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Η ενεργοποίηση αυτή της επιλογής κρυπτογραφεί όλα τα αρχεία που βρίσκονται στον κύριο αποθηκευτικό χώρο, αλλιώς μόνο τα αρχεία σε εξωτερικούς αποθηκευτικούς χώρους θα κρυπτογραφηθούν.", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Η ενεργοποίηση αυτής της επιλογής θα σας επιτρέψει να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία σε περίπτωση απώλειας του κωδικού σας", "Enabled" : "Ενεργοποιημένο", "Disabled" : "Απενεργοποιημένο", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Πρέπει να μεταφέρετε τα κλειδιά κρυπτογράφησής σας από την παλιά κρυπτογράφηση (ownCloud <= 8.0) στην καινούρια. Παρακαλούμε εκτελέστε την εντολή 'occ encryption:migrate' ή επικοινωνήστε με το διαχειριστή σας." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/en_GB.js b/apps/encryption/l10n/en_GB.js index 7a4be4ea8266d..ba10d0a16599b 100644 --- a/apps/encryption/l10n/en_GB.js +++ b/apps/encryption/l10n/en_GB.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "The old password was not correct, please try again.", "The current log-in password was not correct, please try again." : "The current log-in password was not correct, please try again.", "Private key password successfully updated." : "Private key password updated successfully.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Please enable server side encryption in the admin settings in order to use the encryption module.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "one-time password for server-side-encryption", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Cannot decrypt this file, which is probably a shared file. Please ask the file owner to reshare the file with you.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.", + "Default encryption module" : "Default encryption module", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n", "The share will expire on %s." : "The share will expire on %s.", "Cheers!" : "Cheers!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

", - "Default encryption module" : "Default encryption module", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Encryption app is enabled but your keys are not initialised, please log-out and log-in again", "Encrypt the home storage" : "Encrypt the home storage", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss", "Enabled" : "Enabled", "Disabled" : "Disabled", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Encryption App is enabled but your keys are not initialised, please log-out and log-in again" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/en_GB.json b/apps/encryption/l10n/en_GB.json index 96d7e0034cb0d..95853945714ff 100644 --- a/apps/encryption/l10n/en_GB.json +++ b/apps/encryption/l10n/en_GB.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "The old password was not correct, please try again.", "The current log-in password was not correct, please try again." : "The current log-in password was not correct, please try again.", "Private key password successfully updated." : "Private key password updated successfully.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Please enable server side encryption in the admin settings in order to use the encryption module.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "one-time password for server-side-encryption", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Cannot decrypt this file, which is probably a shared file. Please ask the file owner to reshare the file with you.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you.", + "Default encryption module" : "Default encryption module", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n", "The share will expire on %s." : "The share will expire on %s.", "Cheers!" : "Cheers!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

", - "Default encryption module" : "Default encryption module", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Encryption app is enabled but your keys are not initialised, please log-out and log-in again", "Encrypt the home storage" : "Encrypt the home storage", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss", "Enabled" : "Enabled", "Disabled" : "Disabled", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Encryption App is enabled but your keys are not initialised, please log-out and log-in again" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es.js b/apps/encryption/l10n/es.js index 73693248a6592..c9a217f6ce4fa 100644 --- a/apps/encryption/l10n/es.js +++ b/apps/encryption/l10n/es.js @@ -1,41 +1,40 @@ OC.L10N.register( "encryption", { - "Missing recovery key password" : "Falta contraseña de recuperación", + "Missing recovery key password" : "Falta la contraseña de recuperación", "Please repeat the recovery key password" : "Por favor, repita la contraseña de recuperación", "Repeated recovery key password does not match the provided recovery key password" : "La contraseña de recuperación reintroducida no coincide con la contraseña de recuperación proporcionada", "Recovery key successfully enabled" : "Se ha habilitado la recuperación de archivos", - "Could not enable recovery key. Please check your recovery key password!" : "No se pudo habilitar la contraseña de recuperación. Por favor, ¡compruebe su contraseña de recuperación!", + "Could not enable recovery key. Please check your recovery key password!" : "No se ha podido habilitar la contraseña de recuperación. Por favor, ¡compruebe su contraseña de recuperación!", "Recovery key successfully disabled" : "Clave de recuperación deshabilitada", - "Could not disable recovery key. Please check your recovery key password!" : "No se pudo deshabilitar la clave de recuperación. Por favor, ¡compruebe su contraseña!", + "Could not disable recovery key. Please check your recovery key password!" : "No se ha podido deshabilitar la clave de recuperación. Por favor, ¡compruebe su clave de recuperación!", "Missing parameters" : "Faltan parámetros", - "Please provide the old recovery password" : "Por favor, ingrese su antigua contraseña de recuperación", + "Please provide the old recovery password" : "Por favor, introduzca su antigua contraseña de recuperación", "Please provide a new recovery password" : "Por favor, provea una nueva contraseña de recuperación", "Please repeat the new recovery password" : "Por favor, repita su nueva contraseña de recuperación", "Password successfully changed." : "Su contraseña ha sido cambiada", - "Could not change the password. Maybe the old password was not correct." : "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.", + "Could not change the password. Maybe the old password was not correct." : "No se ha podido cambiar la contraseña. Compruebe que la contraseña actual sea correcta.", "Recovery Key disabled" : "Desactivada la clave de recuperación", "Recovery Key enabled" : "Recuperación de clave habilitada", - "Could not enable the recovery key, please try again or contact your administrator" : "No se pudo habilitar la clave de recuperación, por favor vuelva a intentarlo o póngase en contacto con su administrador", - "Could not update the private key password." : "No se pudo actualizar la contraseña de la clave privada.", + "Could not enable the recovery key, please try again or contact your administrator" : "No se ha podido habilitar la clave de recuperación, por favor vuelva a intentarlo o póngase en contacto con su administrador", + "Could not update the private key password." : "No se ha podido actualizar la contraseña de la clave privada.", "The old password was not correct, please try again." : "La antigua contraseña no es correcta, por favor inténtelo de nuevo.", "The current log-in password was not correct, please try again." : "La contraseña de inicio de sesión actual no es correcta, por favor inténtelo de nuevo.", "Private key password successfully updated." : "Contraseña de clave privada actualizada con éxito.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesita migrar sus claves de cifrado desde el antiguo modelo de cifrado (ownCloud <= 8.0) al nuevo. Por favor ejecute 'occ encryption:migrate' o contáctese con su administrador.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La clave privada no es válida para la app de cifrado. Por favor, actualice la contraseña de su clave privada en sus ajustes personales para recuperar el acceso a sus archivos cifrados.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de cifrado esta activada, pero sus credenciales no han sido iniciadas. Por favor cierre sesión e inicie sesión nuevamente.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor active el cifrado en el lado del servidor en los ajustes de administración para poder usar el módulo de cifrado.", - "Encryption app is enabled and ready" : "La app de cifrado esta habilitada y preparada", + "Encryption app is enabled and ready" : "La app de cifrado está habilitada y preparada", "Bad Signature" : "Firma errónea", "Missing Signature" : "No se encuentra la firma", "one-time password for server-side-encryption" : "Contraseña de un solo uso para el cifrado en el lado servidor", - "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted.", - "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No se puede leer este archivo, probablemente sea un archivo compartido. Consulte con el propietario del mismo y que lo vuelva a compartir con usted.", + "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No ha sido posible descifrar este archivo - probablemente se trate de un archivo compartido. Solicita al propietario del mismo que vuelva a compartirlo contigo.", + "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No se puede leer este archivo, probablemente sea un archivo compartido. Pida al propietario del mismo que lo vuelva a compartir contigo.", + "Default encryption module" : "Módulo de cifrado por defecto", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha activado el cifrado de datos en servidor. Tus archivos han sido cifrados usando la contraseña '%s'.\n\nPor favor, inicia tu sesión desde la interfaz web, ves a la sección 'módulo de cifrado básico' de tu área de ajustes personales y actualiza la contraseña de cifrado. Para ello, deberás introducir esta contraseña en el campo 'contraseña de acceso antigua' junto con tu actual contraseña de acceso.\n\n", "The share will expire on %s." : "El objeto dejará de ser compartido el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha activado el cifrado de datos en servidor. Tus archivos han sido cifrados usando la contraseña %s.

Por favor, inicia tu sesión desde la interfaz web, ves a la sección 'módulo de cifrado básico' de tu área de ajustes personales y actualiza la contraseña de cifrado. Para ello, deberás introducir esta contraseña en el campo 'contraseña de acceso antigua' junto con tu actual contraseña de acceso.

", - "Default encryption module" : "Módulo de cifrado por defecto", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La app de cifrado está habilitada pero sus claves no se han inicializado, por favor, cierre la sesión y vuelva a iniciarla de nuevo.", "Encrypt the home storage" : "Encriptar el almacenamiento personal", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Al activar esta opción se encriptarán todos los archivos almacenados en la memoria principal, de lo contrario serán cifrados sólo los archivos de almacenamiento externo", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción le permitirá volver a tener acceso a sus archivos cifrados en caso de pérdida de contraseña", "Enabled" : "Habilitar", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La app de cifrado está habilitada pero sus claves no se han inicializado, por favor, cierre la sesión y vuelva a iniciarla de nuevo." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesita migrar sus claves de cifrado desde el antiguo modelo de cifrado (ownCloud <= 8.0) al nuevo. Por favor ejecute 'occ encryption:migrate' o contáctese con su administrador." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es.json b/apps/encryption/l10n/es.json index e19a5bbaa88c4..f6545188ac985 100644 --- a/apps/encryption/l10n/es.json +++ b/apps/encryption/l10n/es.json @@ -1,39 +1,38 @@ { "translations": { - "Missing recovery key password" : "Falta contraseña de recuperación", + "Missing recovery key password" : "Falta la contraseña de recuperación", "Please repeat the recovery key password" : "Por favor, repita la contraseña de recuperación", "Repeated recovery key password does not match the provided recovery key password" : "La contraseña de recuperación reintroducida no coincide con la contraseña de recuperación proporcionada", "Recovery key successfully enabled" : "Se ha habilitado la recuperación de archivos", - "Could not enable recovery key. Please check your recovery key password!" : "No se pudo habilitar la contraseña de recuperación. Por favor, ¡compruebe su contraseña de recuperación!", + "Could not enable recovery key. Please check your recovery key password!" : "No se ha podido habilitar la contraseña de recuperación. Por favor, ¡compruebe su contraseña de recuperación!", "Recovery key successfully disabled" : "Clave de recuperación deshabilitada", - "Could not disable recovery key. Please check your recovery key password!" : "No se pudo deshabilitar la clave de recuperación. Por favor, ¡compruebe su contraseña!", + "Could not disable recovery key. Please check your recovery key password!" : "No se ha podido deshabilitar la clave de recuperación. Por favor, ¡compruebe su clave de recuperación!", "Missing parameters" : "Faltan parámetros", - "Please provide the old recovery password" : "Por favor, ingrese su antigua contraseña de recuperación", + "Please provide the old recovery password" : "Por favor, introduzca su antigua contraseña de recuperación", "Please provide a new recovery password" : "Por favor, provea una nueva contraseña de recuperación", "Please repeat the new recovery password" : "Por favor, repita su nueva contraseña de recuperación", "Password successfully changed." : "Su contraseña ha sido cambiada", - "Could not change the password. Maybe the old password was not correct." : "No se pudo cambiar la contraseña. Compruebe que la contraseña actual sea correcta.", + "Could not change the password. Maybe the old password was not correct." : "No se ha podido cambiar la contraseña. Compruebe que la contraseña actual sea correcta.", "Recovery Key disabled" : "Desactivada la clave de recuperación", "Recovery Key enabled" : "Recuperación de clave habilitada", - "Could not enable the recovery key, please try again or contact your administrator" : "No se pudo habilitar la clave de recuperación, por favor vuelva a intentarlo o póngase en contacto con su administrador", - "Could not update the private key password." : "No se pudo actualizar la contraseña de la clave privada.", + "Could not enable the recovery key, please try again or contact your administrator" : "No se ha podido habilitar la clave de recuperación, por favor vuelva a intentarlo o póngase en contacto con su administrador", + "Could not update the private key password." : "No se ha podido actualizar la contraseña de la clave privada.", "The old password was not correct, please try again." : "La antigua contraseña no es correcta, por favor inténtelo de nuevo.", "The current log-in password was not correct, please try again." : "La contraseña de inicio de sesión actual no es correcta, por favor inténtelo de nuevo.", "Private key password successfully updated." : "Contraseña de clave privada actualizada con éxito.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesita migrar sus claves de cifrado desde el antiguo modelo de cifrado (ownCloud <= 8.0) al nuevo. Por favor ejecute 'occ encryption:migrate' o contáctese con su administrador.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La clave privada no es válida para la app de cifrado. Por favor, actualice la contraseña de su clave privada en sus ajustes personales para recuperar el acceso a sus archivos cifrados.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de cifrado esta activada, pero sus credenciales no han sido iniciadas. Por favor cierre sesión e inicie sesión nuevamente.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor active el cifrado en el lado del servidor en los ajustes de administración para poder usar el módulo de cifrado.", - "Encryption app is enabled and ready" : "La app de cifrado esta habilitada y preparada", + "Encryption app is enabled and ready" : "La app de cifrado está habilitada y preparada", "Bad Signature" : "Firma errónea", "Missing Signature" : "No se encuentra la firma", "one-time password for server-side-encryption" : "Contraseña de un solo uso para el cifrado en el lado servidor", - "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No fue posible descifrar este archivo, probablemente se trate de un archivo compartido. Solicite al propietario del mismo que vuelva a compartirlo con usted.", - "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No se puede leer este archivo, probablemente sea un archivo compartido. Consulte con el propietario del mismo y que lo vuelva a compartir con usted.", + "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No ha sido posible descifrar este archivo - probablemente se trate de un archivo compartido. Solicita al propietario del mismo que vuelva a compartirlo contigo.", + "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No se puede leer este archivo, probablemente sea un archivo compartido. Pida al propietario del mismo que lo vuelva a compartir contigo.", + "Default encryption module" : "Módulo de cifrado por defecto", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha activado el cifrado de datos en servidor. Tus archivos han sido cifrados usando la contraseña '%s'.\n\nPor favor, inicia tu sesión desde la interfaz web, ves a la sección 'módulo de cifrado básico' de tu área de ajustes personales y actualiza la contraseña de cifrado. Para ello, deberás introducir esta contraseña en el campo 'contraseña de acceso antigua' junto con tu actual contraseña de acceso.\n\n", "The share will expire on %s." : "El objeto dejará de ser compartido el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha activado el cifrado de datos en servidor. Tus archivos han sido cifrados usando la contraseña %s.

Por favor, inicia tu sesión desde la interfaz web, ves a la sección 'módulo de cifrado básico' de tu área de ajustes personales y actualiza la contraseña de cifrado. Para ello, deberás introducir esta contraseña en el campo 'contraseña de acceso antigua' junto con tu actual contraseña de acceso.

", - "Default encryption module" : "Módulo de cifrado por defecto", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La app de cifrado está habilitada pero sus claves no se han inicializado, por favor, cierre la sesión y vuelva a iniciarla de nuevo.", "Encrypt the home storage" : "Encriptar el almacenamiento personal", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Al activar esta opción se encriptarán todos los archivos almacenados en la memoria principal, de lo contrario serán cifrados sólo los archivos de almacenamiento externo", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción le permitirá volver a tener acceso a sus archivos cifrados en caso de pérdida de contraseña", "Enabled" : "Habilitar", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La app de cifrado está habilitada pero sus claves no se han inicializado, por favor, cierre la sesión y vuelva a iniciarla de nuevo." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesita migrar sus claves de cifrado desde el antiguo modelo de cifrado (ownCloud <= 8.0) al nuevo. Por favor ejecute 'occ encryption:migrate' o contáctese con su administrador." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es_419.js b/apps/encryption/l10n/es_419.js index 424b1f9313f56..baf3b97c01815 100644 --- a/apps/encryption/l10n/es_419.js +++ b/apps/encryption/l10n/es_419.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es_419.json b/apps/encryption/l10n/es_419.json index dabe0c4c41ffd..d30ca40cc33d7 100644 --- a/apps/encryption/l10n/es_419.json +++ b/apps/encryption/l10n/es_419.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es_AR.js b/apps/encryption/l10n/es_AR.js index 6b383a6eb8f40..2a37f05407468 100644 --- a/apps/encryption/l10n/es_AR.js +++ b/apps/encryption/l10n/es_AR.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, favor de volverlo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Usted necesita migrar sus llaves de la encripción anterior (ownCloud <=8.0) a la nueva. Favor de ejecutar 'occ encryption:migrate' o contacte a su adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encriptación privada es inválida para la aplicación de encriptación. Favor de actualizar la contraseña de su llave privada en sus configuraciones personales para recuperar el acceso a sus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero sus llaves no han sido inicializadas. Favor de cerrar sesión e iniciar sesión de nuevo. ", "Encryption app is enabled and ready" : "La aplicación de encripción se cuentra habilitada y lista", @@ -30,11 +29,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Favor de solicitar al dueño del archivo que lo vuelva a compartir con usted.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compatido. Favor de solicitar al dueño que vuelva a compartirlo con usted. ", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Sus archivos fueron encriptados usando la contraseña '%s'\n\nFavor de iniciar sesión en la interface web, vaya a la sección \"módulo de encripción básica\" de sus configuraciones personales y actualice su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y su contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Sus archivos fueron encriptados usando la contraseña %s.

Favor de iniciar sesisón en la interface web, vaya a la sección \"módulo de encripción básica\" de sus configuraciones personales y actualice su contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y su contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero sus llaves no han sido inicializadas, favor de salir y volver a entrar a la sesion", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -59,6 +58,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción le permitirá volver a tener acceso a sus archivos encriptados en caso de perder la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, favor de cerrar la sesión y volver a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Usted necesita migrar sus llaves de la encripción anterior (ownCloud <=8.0) a la nueva. Favor de ejecutar 'occ encryption:migrate' o contacte a su adminstrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es_AR.json b/apps/encryption/l10n/es_AR.json index 5943f572ec4ed..16fd83ec706cc 100644 --- a/apps/encryption/l10n/es_AR.json +++ b/apps/encryption/l10n/es_AR.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, favor de volverlo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Usted necesita migrar sus llaves de la encripción anterior (ownCloud <=8.0) a la nueva. Favor de ejecutar 'occ encryption:migrate' o contacte a su adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encriptación privada es inválida para la aplicación de encriptación. Favor de actualizar la contraseña de su llave privada en sus configuraciones personales para recuperar el acceso a sus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero sus llaves no han sido inicializadas. Favor de cerrar sesión e iniciar sesión de nuevo. ", "Encryption app is enabled and ready" : "La aplicación de encripción se cuentra habilitada y lista", @@ -28,11 +27,11 @@ "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Favor de solicitar al dueño del archivo que lo vuelva a compartir con usted.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compatido. Favor de solicitar al dueño que vuelva a compartirlo con usted. ", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Sus archivos fueron encriptados usando la contraseña '%s'\n\nFavor de iniciar sesión en la interface web, vaya a la sección \"módulo de encripción básica\" de sus configuraciones personales y actualice su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y su contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Sus archivos fueron encriptados usando la contraseña %s.

Favor de iniciar sesisón en la interface web, vaya a la sección \"módulo de encripción básica\" de sus configuraciones personales y actualice su contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y su contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero sus llaves no han sido inicializadas, favor de salir y volver a entrar a la sesion", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -57,6 +56,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción le permitirá volver a tener acceso a sus archivos encriptados en caso de perder la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, favor de cerrar la sesión y volver a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Usted necesita migrar sus llaves de la encripción anterior (ownCloud <=8.0) a la nueva. Favor de ejecutar 'occ encryption:migrate' o contacte a su adminstrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es_CL.js b/apps/encryption/l10n/es_CL.js index 424b1f9313f56..baf3b97c01815 100644 --- a/apps/encryption/l10n/es_CL.js +++ b/apps/encryption/l10n/es_CL.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es_CL.json b/apps/encryption/l10n/es_CL.json index dabe0c4c41ffd..d30ca40cc33d7 100644 --- a/apps/encryption/l10n/es_CL.json +++ b/apps/encryption/l10n/es_CL.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es_CO.js b/apps/encryption/l10n/es_CO.js index 424b1f9313f56..baf3b97c01815 100644 --- a/apps/encryption/l10n/es_CO.js +++ b/apps/encryption/l10n/es_CO.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es_CO.json b/apps/encryption/l10n/es_CO.json index dabe0c4c41ffd..d30ca40cc33d7 100644 --- a/apps/encryption/l10n/es_CO.json +++ b/apps/encryption/l10n/es_CO.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es_CR.js b/apps/encryption/l10n/es_CR.js index 424b1f9313f56..baf3b97c01815 100644 --- a/apps/encryption/l10n/es_CR.js +++ b/apps/encryption/l10n/es_CR.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es_CR.json b/apps/encryption/l10n/es_CR.json index dabe0c4c41ffd..d30ca40cc33d7 100644 --- a/apps/encryption/l10n/es_CR.json +++ b/apps/encryption/l10n/es_CR.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es_DO.js b/apps/encryption/l10n/es_DO.js index 424b1f9313f56..baf3b97c01815 100644 --- a/apps/encryption/l10n/es_DO.js +++ b/apps/encryption/l10n/es_DO.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es_DO.json b/apps/encryption/l10n/es_DO.json index dabe0c4c41ffd..d30ca40cc33d7 100644 --- a/apps/encryption/l10n/es_DO.json +++ b/apps/encryption/l10n/es_DO.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es_EC.js b/apps/encryption/l10n/es_EC.js index 424b1f9313f56..baf3b97c01815 100644 --- a/apps/encryption/l10n/es_EC.js +++ b/apps/encryption/l10n/es_EC.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es_EC.json b/apps/encryption/l10n/es_EC.json index dabe0c4c41ffd..d30ca40cc33d7 100644 --- a/apps/encryption/l10n/es_EC.json +++ b/apps/encryption/l10n/es_EC.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es_GT.js b/apps/encryption/l10n/es_GT.js index 424b1f9313f56..baf3b97c01815 100644 --- a/apps/encryption/l10n/es_GT.js +++ b/apps/encryption/l10n/es_GT.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es_GT.json b/apps/encryption/l10n/es_GT.json index dabe0c4c41ffd..d30ca40cc33d7 100644 --- a/apps/encryption/l10n/es_GT.json +++ b/apps/encryption/l10n/es_GT.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es_HN.js b/apps/encryption/l10n/es_HN.js index 424b1f9313f56..baf3b97c01815 100644 --- a/apps/encryption/l10n/es_HN.js +++ b/apps/encryption/l10n/es_HN.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es_HN.json b/apps/encryption/l10n/es_HN.json index dabe0c4c41ffd..d30ca40cc33d7 100644 --- a/apps/encryption/l10n/es_HN.json +++ b/apps/encryption/l10n/es_HN.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es_MX.js b/apps/encryption/l10n/es_MX.js index 424b1f9313f56..baf3b97c01815 100644 --- a/apps/encryption/l10n/es_MX.js +++ b/apps/encryption/l10n/es_MX.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es_MX.json b/apps/encryption/l10n/es_MX.json index dabe0c4c41ffd..d30ca40cc33d7 100644 --- a/apps/encryption/l10n/es_MX.json +++ b/apps/encryption/l10n/es_MX.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es_NI.js b/apps/encryption/l10n/es_NI.js index 424b1f9313f56..baf3b97c01815 100644 --- a/apps/encryption/l10n/es_NI.js +++ b/apps/encryption/l10n/es_NI.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es_NI.json b/apps/encryption/l10n/es_NI.json index dabe0c4c41ffd..d30ca40cc33d7 100644 --- a/apps/encryption/l10n/es_NI.json +++ b/apps/encryption/l10n/es_NI.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es_PA.js b/apps/encryption/l10n/es_PA.js index 424b1f9313f56..baf3b97c01815 100644 --- a/apps/encryption/l10n/es_PA.js +++ b/apps/encryption/l10n/es_PA.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es_PA.json b/apps/encryption/l10n/es_PA.json index dabe0c4c41ffd..d30ca40cc33d7 100644 --- a/apps/encryption/l10n/es_PA.json +++ b/apps/encryption/l10n/es_PA.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es_PE.js b/apps/encryption/l10n/es_PE.js index 424b1f9313f56..baf3b97c01815 100644 --- a/apps/encryption/l10n/es_PE.js +++ b/apps/encryption/l10n/es_PE.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es_PE.json b/apps/encryption/l10n/es_PE.json index dabe0c4c41ffd..d30ca40cc33d7 100644 --- a/apps/encryption/l10n/es_PE.json +++ b/apps/encryption/l10n/es_PE.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es_PR.js b/apps/encryption/l10n/es_PR.js index 424b1f9313f56..baf3b97c01815 100644 --- a/apps/encryption/l10n/es_PR.js +++ b/apps/encryption/l10n/es_PR.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es_PR.json b/apps/encryption/l10n/es_PR.json index dabe0c4c41ffd..d30ca40cc33d7 100644 --- a/apps/encryption/l10n/es_PR.json +++ b/apps/encryption/l10n/es_PR.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es_PY.js b/apps/encryption/l10n/es_PY.js index 424b1f9313f56..baf3b97c01815 100644 --- a/apps/encryption/l10n/es_PY.js +++ b/apps/encryption/l10n/es_PY.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es_PY.json b/apps/encryption/l10n/es_PY.json index dabe0c4c41ffd..d30ca40cc33d7 100644 --- a/apps/encryption/l10n/es_PY.json +++ b/apps/encryption/l10n/es_PY.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es_SV.js b/apps/encryption/l10n/es_SV.js index 424b1f9313f56..baf3b97c01815 100644 --- a/apps/encryption/l10n/es_SV.js +++ b/apps/encryption/l10n/es_SV.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es_SV.json b/apps/encryption/l10n/es_SV.json index dabe0c4c41ffd..d30ca40cc33d7 100644 --- a/apps/encryption/l10n/es_SV.json +++ b/apps/encryption/l10n/es_SV.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/es_UY.js b/apps/encryption/l10n/es_UY.js index 424b1f9313f56..baf3b97c01815 100644 --- a/apps/encryption/l10n/es_UY.js +++ b/apps/encryption/l10n/es_UY.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/es_UY.json b/apps/encryption/l10n/es_UY.json index dabe0c4c41ffd..d30ca40cc33d7 100644 --- a/apps/encryption/l10n/es_UY.json +++ b/apps/encryption/l10n/es_UY.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La contraseña anterior no es correcta, favor de intentar de nuevo. ", "The current log-in password was not correct, please try again." : "La contraseña actual para iniciar sesión fue incorrecta, por favor vuelvelo a intentar. ", "Private key password successfully updated." : "Contraseña de llave privada actualizada exitosamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "La llave de encripción privada es inválida para la aplicación de encripción. Por favor actualiza la contraseña de tu llave privada en tus configuraciones personales para recuperar el acceso a tus archivos encriptados. ", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "La aplicación de encripción está habilitada, pero tus llaves no han sido inicializadas. Por favor cierra sesión e inicia sesión de nuevo. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor activa el encriptado del lado del servidor en los ajustes de administración para usar el módulo de encripción.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Contraseña de una-sola-vez para la encripción del lado del servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible decriptar este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño del archivo que lo vuelva a compartir contigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "No es posible leer este archivo, posiblemente sea un archivo compartido. Por favor solicita al dueño que vuelva a compartirlo contigo.", + "Default encryption module" : "Módulo de encripción predeterminado", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hola,\n\nel administrador ha habilitado la encripción de lado del servidor. Tus archivos fueron encriptados usando la contraseña '%s'\n\nPor favor inicia sesión en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza su contraseña de encripción ingresando esta contraseña en el campo 'contraseña de inicio de sesión anterior' y tu contraseña de inicio de sesión actual. \n", "The share will expire on %s." : "El elemento compartido expirará el %s.", "Cheers!" : "¡Saludos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hola,

el administrador ha habilitado la encripción del lado del servidor. Tus archivos fueron encriptados usando la contraseña %s.

Por favor inicia sesisón en la interface web, ve a la sección \"módulo de encripción básica\" de tus configuraciones personales y actualiza tu contraseña de encripción ingresando esta contraseña en el campo \"contraseña de inicio de sesión anterior\" y tu contraseña de inicio de sesión actual.

", - "Default encryption module" : "Módulo de encripción predeterminado", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción esta habilitada pero tus llaves no han sido inicializadas, por favor sal y vuelve a entrar a tu sesión", "Encrypt the home storage" : "Encriptar el almacenamiento de inicio", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Habilitar esta opción encripta todos los archivos almacenados en el almacenamiento principal, de otro modo, sólo los archivos en el almacenamiento externo serán encriptados", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Habilitar esta opción te permitirá volver a tener acceso a tus archivos encriptados en caso de que pierdas la contraseña", "Enabled" : "Habilitado", "Disabled" : "Deshabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "La aplicación de encripción está habilitada pero tus llaves no han sido establecidas, por favor cierra la sesión y vuelve a iniciarla." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Necesitas migar tus llaves de encripción de la encripción anterior (ownCloud <=8.0) a la nueva. Por favor ejecuta 'occ encryption:migrate' o contacta a tu adminstrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/et_EE.js b/apps/encryption/l10n/et_EE.js index f06eb5bf29cdd..9352a4baa6e2d 100644 --- a/apps/encryption/l10n/et_EE.js +++ b/apps/encryption/l10n/et_EE.js @@ -34,7 +34,6 @@ OC.L10N.register( "New recovery key password" : "Uus taastevõtme parool", "Repeat new recovery key password" : "Korda uut taastevõtme parooli", "Change Password" : "Muuda parooli", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse.", "Your private key password no longer matches your log-in password." : "Sinu provaatvõtme parool ei kattu enam sinu sisselogimise parooliga.", "Set your old private key password to your current log-in password:" : "Pane oma vana privaatvõtme parooliks oma praegune sisselogimise parool.", " If you don't remember your old password you can ask your administrator to recover your files." : "Kui sa ei mäleta oma vana parooli, siis palu oma süsteemihalduril taastada ligipääs failidele.", diff --git a/apps/encryption/l10n/et_EE.json b/apps/encryption/l10n/et_EE.json index 6e642b8d35958..3083de351f6d4 100644 --- a/apps/encryption/l10n/et_EE.json +++ b/apps/encryption/l10n/et_EE.json @@ -32,7 +32,6 @@ "New recovery key password" : "Uus taastevõtme parool", "Repeat new recovery key password" : "Korda uut taastevõtme parooli", "Change Password" : "Muuda parooli", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse.", "Your private key password no longer matches your log-in password." : "Sinu provaatvõtme parool ei kattu enam sinu sisselogimise parooliga.", "Set your old private key password to your current log-in password:" : "Pane oma vana privaatvõtme parooliks oma praegune sisselogimise parool.", " If you don't remember your old password you can ask your administrator to recover your files." : "Kui sa ei mäleta oma vana parooli, siis palu oma süsteemihalduril taastada ligipääs failidele.", diff --git a/apps/encryption/l10n/eu.js b/apps/encryption/l10n/eu.js index 8a256e2de163c..80bf2f1d444f1 100644 --- a/apps/encryption/l10n/eu.js +++ b/apps/encryption/l10n/eu.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Pasahitz zaharra ez da egokia. Mesedez, saiatu berriro.", "The current log-in password was not correct, please try again." : "Oraingo pasahitza ez da egokia. Mesedez, saiatu berriro.", "Private key password successfully updated." : "Gako pasahitz pribatu behar bezala eguneratu da.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Zure enkriptatze gakoak enkriptatze zaharretik (ownCloud <=8.0) berrira migratubehar duzu. 'occ encryption:migrate' exekuta ezazu mesedez, edo zure administratzailearekin kontaktuan jar zaitez", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Enkriptazio aplikaziorako gako pribatu desegokia. Zure gako pribatuaren pasahitza eguneratuezarpen pertsonaletan, enkriptatutako fitxategiak berriz atzitu nahi badituzu", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Enkriptazioa app-a gaituta dago, baina zure gakoak ez dira hasieratu. Saiotikirten eta berriz sartu, mesedez", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Enkriptazio modulua erabili ahal izateko zerbitzariaren aldean enkriptazioagaitu administrazio ezarpenetan", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "aldi bateko pasahitzak zerbitzari-aldeko enkriptaziorako", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Ezin izan da fitxategi hau deszifratu, ziurrenik elkarbanatutako fitxategi bat da. Mesdez, eskatu fitxategiaren jabeari fitxategia zurekin berriz elkarbana dezan.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Ezin da fitxategi hau irakurri, ziur aski partekatutako fitxategia izango da. Fitxategiaren jabeari berriz partekatzeko eska iezaiozu", + "Default encryption module" : "Defektuzko enkriptazio modulua", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Kaixo\n\nadministradoreak zerbitzari-aldeko enkriptazioa gaitu du. Zure fitxategiak '%s' pasahitza erabiliz enkriptatuko dira.\n\nWeb interfazea saioa hasi, 'oinarrizko enkripazio modulua' atalera joan zaitez eta pasahitza eguneratu. Hortarako pasahitz zaharra 'pasahitz zaharra' atalean sartu eta zure oraingo pasahitza", "The share will expire on %s." : "Elkarbanaketa %s-n iraungiko da.", "Cheers!" : "Ongi izan!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Kaixo

administradoreak zerbitzari-aldeko enkriptazioa gaitu du. Zure fitxategiak '%s' pasahitza erabiliz enkriptatuko dira.\n\nWeb interfazea saioa hasi, 'oinarrizko enkripazio modulua' atalera joan zaitez eta pasahitza eguneratu. Hortarako pasahitz zaharra 'pasahitz zaharra' atalean sartu eta zure oraingo pasahitza", - "Default encryption module" : "Defektuzko enkriptazio modulua", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Enkriptazio app-a gaituta dago baina zure gakoak ez dira hasieratu, mesedez saiotik irteneta berriz sar zaitez", "Encrypt the home storage" : "Etxe-biltegia enkriptatu", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Aukera hau gaituz gero biltegi orokorreko fitxategi guztiak enkriptatuko dirabestela kanpo biltegian daudenak bakarrik enkriptatuko dira", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Aukera hau gaituz zure enkriptatutako fitxategiak berreskuratu ahal izango dituzu pasahitza galtzekotan", "Enabled" : "Gaitua", "Disabled" : "Ez-gaitua", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Enkriptazio aplikazioa gaituta dago baina zure gakoak ez daude konfiguratuta, mesedez saioa bukatu eta berriro hasi" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Zure enkriptatze gakoak enkriptatze zaharretik (ownCloud <=8.0) berrira migratubehar duzu. 'occ encryption:migrate' exekuta ezazu mesedez, edo zure administratzailearekin kontaktuan jar zaitez" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/eu.json b/apps/encryption/l10n/eu.json index e684651f8372f..13f92f6d6fa25 100644 --- a/apps/encryption/l10n/eu.json +++ b/apps/encryption/l10n/eu.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Pasahitz zaharra ez da egokia. Mesedez, saiatu berriro.", "The current log-in password was not correct, please try again." : "Oraingo pasahitza ez da egokia. Mesedez, saiatu berriro.", "Private key password successfully updated." : "Gako pasahitz pribatu behar bezala eguneratu da.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Zure enkriptatze gakoak enkriptatze zaharretik (ownCloud <=8.0) berrira migratubehar duzu. 'occ encryption:migrate' exekuta ezazu mesedez, edo zure administratzailearekin kontaktuan jar zaitez", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Enkriptazio aplikaziorako gako pribatu desegokia. Zure gako pribatuaren pasahitza eguneratuezarpen pertsonaletan, enkriptatutako fitxategiak berriz atzitu nahi badituzu", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Enkriptazioa app-a gaituta dago, baina zure gakoak ez dira hasieratu. Saiotikirten eta berriz sartu, mesedez", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Enkriptazio modulua erabili ahal izateko zerbitzariaren aldean enkriptazioagaitu administrazio ezarpenetan", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "aldi bateko pasahitzak zerbitzari-aldeko enkriptaziorako", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Ezin izan da fitxategi hau deszifratu, ziurrenik elkarbanatutako fitxategi bat da. Mesdez, eskatu fitxategiaren jabeari fitxategia zurekin berriz elkarbana dezan.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Ezin da fitxategi hau irakurri, ziur aski partekatutako fitxategia izango da. Fitxategiaren jabeari berriz partekatzeko eska iezaiozu", + "Default encryption module" : "Defektuzko enkriptazio modulua", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Kaixo\n\nadministradoreak zerbitzari-aldeko enkriptazioa gaitu du. Zure fitxategiak '%s' pasahitza erabiliz enkriptatuko dira.\n\nWeb interfazea saioa hasi, 'oinarrizko enkripazio modulua' atalera joan zaitez eta pasahitza eguneratu. Hortarako pasahitz zaharra 'pasahitz zaharra' atalean sartu eta zure oraingo pasahitza", "The share will expire on %s." : "Elkarbanaketa %s-n iraungiko da.", "Cheers!" : "Ongi izan!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Kaixo

administradoreak zerbitzari-aldeko enkriptazioa gaitu du. Zure fitxategiak '%s' pasahitza erabiliz enkriptatuko dira.\n\nWeb interfazea saioa hasi, 'oinarrizko enkripazio modulua' atalera joan zaitez eta pasahitza eguneratu. Hortarako pasahitz zaharra 'pasahitz zaharra' atalean sartu eta zure oraingo pasahitza", - "Default encryption module" : "Defektuzko enkriptazio modulua", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Enkriptazio app-a gaituta dago baina zure gakoak ez dira hasieratu, mesedez saiotik irteneta berriz sar zaitez", "Encrypt the home storage" : "Etxe-biltegia enkriptatu", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Aukera hau gaituz gero biltegi orokorreko fitxategi guztiak enkriptatuko dirabestela kanpo biltegian daudenak bakarrik enkriptatuko dira", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Aukera hau gaituz zure enkriptatutako fitxategiak berreskuratu ahal izango dituzu pasahitza galtzekotan", "Enabled" : "Gaitua", "Disabled" : "Ez-gaitua", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Enkriptazio aplikazioa gaituta dago baina zure gakoak ez daude konfiguratuta, mesedez saioa bukatu eta berriro hasi" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Zure enkriptatze gakoak enkriptatze zaharretik (ownCloud <=8.0) berrira migratubehar duzu. 'occ encryption:migrate' exekuta ezazu mesedez, edo zure administratzailearekin kontaktuan jar zaitez" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/fa.js b/apps/encryption/l10n/fa.js index 85277db61d9d3..c4759a799e800 100644 --- a/apps/encryption/l10n/fa.js +++ b/apps/encryption/l10n/fa.js @@ -19,7 +19,6 @@ OC.L10N.register( "Could not update the private key password." : "امکان بروزرسانی رمزعبور کلید خصوصی وجود ندارد.", "The old password was not correct, please try again." : "رمزعبور قدیمی اشتباه است، لطفا مجددا تلاش کنید.", "Private key password successfully updated." : "رمزعبور کلید خصوصی با موفقیت به روز شد.", - "Encryption App is enabled and ready" : "برنامه رمزگذاری فعال و آماده است", "The share will expire on %s." : "اشتراک‌گذاری در %s منقضی خواهد شد.", "Cheers!" : "سلامتی!", "Enable recovery key" : "فعال‌سازی کلید بازیابی", @@ -31,7 +30,6 @@ OC.L10N.register( "New recovery key password" : "رمزعبور جدید کلید بازیابی", "Repeat new recovery key password" : "تکرار رمزعبور جدید کلید بازیابی", "Change Password" : "تغییر رمزعبور", - "basic encryption module" : "ماژول پایه رمزگذاری", " If you don't remember your old password you can ask your administrator to recover your files." : "اگر رمزعبور قدیمی را فراموش کرده اید میتوانید از مدیر خود برای بازیابی فایل هایتان درخواست نمایید.", "Old log-in password" : "رمزعبور قدیمی", "Current log-in password" : "رمزعبور فعلی", diff --git a/apps/encryption/l10n/fa.json b/apps/encryption/l10n/fa.json index 1749d0b065a64..a9adbebb31b87 100644 --- a/apps/encryption/l10n/fa.json +++ b/apps/encryption/l10n/fa.json @@ -17,7 +17,6 @@ "Could not update the private key password." : "امکان بروزرسانی رمزعبور کلید خصوصی وجود ندارد.", "The old password was not correct, please try again." : "رمزعبور قدیمی اشتباه است، لطفا مجددا تلاش کنید.", "Private key password successfully updated." : "رمزعبور کلید خصوصی با موفقیت به روز شد.", - "Encryption App is enabled and ready" : "برنامه رمزگذاری فعال و آماده است", "The share will expire on %s." : "اشتراک‌گذاری در %s منقضی خواهد شد.", "Cheers!" : "سلامتی!", "Enable recovery key" : "فعال‌سازی کلید بازیابی", @@ -29,7 +28,6 @@ "New recovery key password" : "رمزعبور جدید کلید بازیابی", "Repeat new recovery key password" : "تکرار رمزعبور جدید کلید بازیابی", "Change Password" : "تغییر رمزعبور", - "basic encryption module" : "ماژول پایه رمزگذاری", " If you don't remember your old password you can ask your administrator to recover your files." : "اگر رمزعبور قدیمی را فراموش کرده اید میتوانید از مدیر خود برای بازیابی فایل هایتان درخواست نمایید.", "Old log-in password" : "رمزعبور قدیمی", "Current log-in password" : "رمزعبور فعلی", diff --git a/apps/encryption/l10n/fi.js b/apps/encryption/l10n/fi.js index 6bbc1e9be1c8b..29892f47b55e4 100644 --- a/apps/encryption/l10n/fi.js +++ b/apps/encryption/l10n/fi.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Vanha salasana oli väärin, yritä uudelleen.", "The current log-in password was not correct, please try again." : "Nykyinen kirjautumiseen käytettävä salasana oli väärin, yritä uudelleen.", "Private key password successfully updated." : "Yksityisen avaimen salasana päivitettiin onnistuneesti.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Salausavaimet tulee siirtää vanhasta salaustavasta (ownCloud <= 8.0) uuteen salaustapaan. Suorita 'occ encryption:migrate' tai ota yhteys ylläpitoon", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Salaussovelluksen salausavain on virheellinen. Ole hyvä ja päivitä salausavain henkilökohtaisissa asetuksissasi jotta voit taas avata salauskirjoitetut tiedostosi.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Salaussovellus on käytössä, mutta salausavaimia ei ole alustettu. Ole hyvä ja kirjaudu sisään uudelleen.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Ota käyttöön palvelinpuolen salaus ylläpidon asetuksista, jotta salausmoduuli on jatkossa käytettävissä.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "kertakäyttöinen salasana palvelinpään salausta varten", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tämän tiedoston salauksen purkaminen ei onnistu. Kyseessä on luultavasti jaettu tiedosto. Pyydä tiedoston omistajaa jakamaan tiedosto kanssasi uudelleen.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tiedostoa ei voi lukea, se on luultavasti jaettu tiedosto. Pyydä tiedoston omistajaa jakamaan tiedosto uudelleen kanssasi.", + "Default encryption module" : "Oletus salausmoduuli", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hei,\n\nYlläpiäjä on ottanut käyttöön palvelimen salauksen. Tiedostosi salattiin salasanalla '%s'.\n\nOle hyvä ja kirjaudu palveluun verkkokäyttöliittymän kautta, siirry henkilökohtaisten asetustesi kohtaan \"perussalausmoduuli\" ja päivitä salaukseen käytettävä salasanasi syöttämällä yllä mainittu salasana \"vanha kirjautumissalasana\"-kenttään ja nykyinen kirjautumissalasanasi.\n\n", "The share will expire on %s." : "Jakaminen päättyy %s.", "Cheers!" : "Kiitos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hei,

Ylläpiäjä on ottanut käyttöön palvelimen salauksen. Tiedostosi salattiin salasanalla %s.

Ole hyvä ja kirjaudu palveluun verkkokäyttöliittymän kautta, siirry henkilökohtaisten asetustesi kohtaan \"perussalausmoduuli\" ja päivitä salaukseen käytettävä salasanasi syöttämällä yllä mainittu salasana \"vanha kirjautumissalasana\"-kenttään ja nykyinen kirjautumissalasanasi.

", - "Default encryption module" : "Oletus salausmoduuli", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Salaussovellus on aktivoitu, mutta avaimia ei ole alustettu, kirjaudu uudelleen sisään", "Encrypt the home storage" : "Salaa oma kotitila", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Tämän valinnan ollessa valittuna salataan kaikki päätallennustilaan tallennetut tiedostot. Muussa tapauksessa ainoastaan ulkoisessa tallennustilassa sijaitsevat tiedostot salataan.", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Tämän valinnan käyttäminen mahdollistaa pääsyn salattuihin tiedostoihisi, jos salasana unohtuu", "Enabled" : "Käytössä", "Disabled" : "Ei käytössä", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Salaussovellus on käytössä, mutta salausavaimia ei ole alustettu. Ole hyvä ja kirjaudu sisään uudelleen." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Salausavaimet tulee siirtää vanhasta salaustavasta (ownCloud <= 8.0) uuteen salaustapaan. Suorita 'occ encryption:migrate' tai ota yhteys ylläpitoon" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/fi.json b/apps/encryption/l10n/fi.json index 2780134aa7a8b..59c53b62b1149 100644 --- a/apps/encryption/l10n/fi.json +++ b/apps/encryption/l10n/fi.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Vanha salasana oli väärin, yritä uudelleen.", "The current log-in password was not correct, please try again." : "Nykyinen kirjautumiseen käytettävä salasana oli väärin, yritä uudelleen.", "Private key password successfully updated." : "Yksityisen avaimen salasana päivitettiin onnistuneesti.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Salausavaimet tulee siirtää vanhasta salaustavasta (ownCloud <= 8.0) uuteen salaustapaan. Suorita 'occ encryption:migrate' tai ota yhteys ylläpitoon", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Salaussovelluksen salausavain on virheellinen. Ole hyvä ja päivitä salausavain henkilökohtaisissa asetuksissasi jotta voit taas avata salauskirjoitetut tiedostosi.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Salaussovellus on käytössä, mutta salausavaimia ei ole alustettu. Ole hyvä ja kirjaudu sisään uudelleen.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Ota käyttöön palvelinpuolen salaus ylläpidon asetuksista, jotta salausmoduuli on jatkossa käytettävissä.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "kertakäyttöinen salasana palvelinpään salausta varten", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tämän tiedoston salauksen purkaminen ei onnistu. Kyseessä on luultavasti jaettu tiedosto. Pyydä tiedoston omistajaa jakamaan tiedosto kanssasi uudelleen.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tiedostoa ei voi lukea, se on luultavasti jaettu tiedosto. Pyydä tiedoston omistajaa jakamaan tiedosto uudelleen kanssasi.", + "Default encryption module" : "Oletus salausmoduuli", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hei,\n\nYlläpiäjä on ottanut käyttöön palvelimen salauksen. Tiedostosi salattiin salasanalla '%s'.\n\nOle hyvä ja kirjaudu palveluun verkkokäyttöliittymän kautta, siirry henkilökohtaisten asetustesi kohtaan \"perussalausmoduuli\" ja päivitä salaukseen käytettävä salasanasi syöttämällä yllä mainittu salasana \"vanha kirjautumissalasana\"-kenttään ja nykyinen kirjautumissalasanasi.\n\n", "The share will expire on %s." : "Jakaminen päättyy %s.", "Cheers!" : "Kiitos!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hei,

Ylläpiäjä on ottanut käyttöön palvelimen salauksen. Tiedostosi salattiin salasanalla %s.

Ole hyvä ja kirjaudu palveluun verkkokäyttöliittymän kautta, siirry henkilökohtaisten asetustesi kohtaan \"perussalausmoduuli\" ja päivitä salaukseen käytettävä salasanasi syöttämällä yllä mainittu salasana \"vanha kirjautumissalasana\"-kenttään ja nykyinen kirjautumissalasanasi.

", - "Default encryption module" : "Oletus salausmoduuli", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Salaussovellus on aktivoitu, mutta avaimia ei ole alustettu, kirjaudu uudelleen sisään", "Encrypt the home storage" : "Salaa oma kotitila", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Tämän valinnan ollessa valittuna salataan kaikki päätallennustilaan tallennetut tiedostot. Muussa tapauksessa ainoastaan ulkoisessa tallennustilassa sijaitsevat tiedostot salataan.", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Tämän valinnan käyttäminen mahdollistaa pääsyn salattuihin tiedostoihisi, jos salasana unohtuu", "Enabled" : "Käytössä", "Disabled" : "Ei käytössä", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Salaussovellus on käytössä, mutta salausavaimia ei ole alustettu. Ole hyvä ja kirjaudu sisään uudelleen." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Salausavaimet tulee siirtää vanhasta salaustavasta (ownCloud <= 8.0) uuteen salaustapaan. Suorita 'occ encryption:migrate' tai ota yhteys ylläpitoon" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/fr.js b/apps/encryption/l10n/fr.js index 241215553cfaa..c3c673a8a9edd 100644 --- a/apps/encryption/l10n/fr.js +++ b/apps/encryption/l10n/fr.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "L'ancien mot de passe est incorrect. Veuillez réessayer.", "The current log-in password was not correct, please try again." : "Le mot de passe de connexion actuel n'est pas correct, veuillez réessayer.", "Private key password successfully updated." : "Mot de passe de la clef privée mis à jour avec succès.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Vous devez migrer vos clés de chiffrement de l'ancienne version (ownCloud <= 8.0) vers la nouvelle. Veuillez exécuter 'occ encryption:migrate' ou contacter votre administrateur", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Clé privée invalide pour l'application de chiffrement. Veuillez mettre à jour le mot de passe de la clef privée dans vos paramètres personnels pour récupérer l'accès à vos fichiers chiffrés.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "L'application de chiffrement est activée mais vos clefs ne sont pas initialisées. Veuillez vous déconnecter et ensuite vous reconnecter.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Veuillez activer le chiffrement côté serveur dans les paramètres d'administration pour utiliser le module de cryptage.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "Mot de passe à usage unique pour le chiffrement côté serveur", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossible de déchiffrer ce fichier : il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire du fichier de le partager à nouveau avec vous.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossible de lire ce fichier, il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire du fichier de le repartager avec vous. ", + "Default encryption module" : "Module de chiffrement par défaut", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Bonjour,\n\nL'administrateur a activé le chiffrement sur le serveur. Vos fichiers ont été chiffrés avec le mot de passe suivant :\n\n%s\n\nVeuillez suivre ces instructions :\n\n1. Connectez-vous à l'interface web et trouvez la section \"Module de chiffrement de base d'\" dans vos paramètres personnels;\n\n2. Entrez le mot de passe fourni ci-dessus dans le champ \"Ancien mot de passe de connexion\";\n\n3. Entrez le mot de passe que vous utilisez actuellement pour vous connecter dans le champ \"Actuel mot de passe de connexion\";\n\n4. Validez en cliquant sur le bouton \"Mettre à jour le mot de passe de votre clef privée\".\n", "The share will expire on %s." : "Le partage expirera le %s.", "Cheers!" : "À bientôt !", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Bonjour,\n

\nL'administrateur a activé le chiffrement sur le serveur. Vos fichiers ont été chiffrés avec le mot de passe suivant :\n\n

%s

\n\n

\nVeuillez suivre ces instructions :\n

    \n
  1. Connectez-vous à l'interface web et trouvez la section \"Module de chiffrement de base d'\" dans vos paramètres personnels;
  2. \n
  3. Entrez le mot de passe fourni ci-dessus dans le champ \"Ancien mot de passe de connexion\";
  4. \n
  5. Entrez le mot de passe que vous utilisez actuellement pour vous connecter dans le champ \"Actuel mot de passe de connexion\";
  6. \n
  7. Validez en cliquant sur le bouton \"Mettre à jour le mot de passe de votre clef privée\".
  8. \n
\n

", - "Default encryption module" : "Module de chiffrement par défaut", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "L'application de chiffrement est activée mais vos clefs ne sont pas initialisées. Veuillez vous déconnecter et ensuite vous reconnecter.", "Encrypt the home storage" : "Chiffrer l'espace de stockage principal", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "L'activation de cette option chiffre tous les fichiers du stockage principal, sinon seuls les espaces de stockage externes seront chiffrés", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Activer cette option vous permettra d'obtenir à nouveau l'accès à vos fichiers chiffrés en cas de perte de mot de passe", "Enabled" : "Activé", "Disabled" : "Désactivé", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "L'application de chiffrement est activée mais vos clefs ne sont pas initialisées. Veuillez vous déconnecter et ensuite vous reconnecter." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Vous devez migrer vos clés de chiffrement de l'ancienne version (ownCloud <= 8.0) vers la nouvelle. Veuillez exécuter 'occ encryption:migrate' ou contacter votre administrateur" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/encryption/l10n/fr.json b/apps/encryption/l10n/fr.json index 881db20f32808..9f0d72e39e930 100644 --- a/apps/encryption/l10n/fr.json +++ b/apps/encryption/l10n/fr.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "L'ancien mot de passe est incorrect. Veuillez réessayer.", "The current log-in password was not correct, please try again." : "Le mot de passe de connexion actuel n'est pas correct, veuillez réessayer.", "Private key password successfully updated." : "Mot de passe de la clef privée mis à jour avec succès.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Vous devez migrer vos clés de chiffrement de l'ancienne version (ownCloud <= 8.0) vers la nouvelle. Veuillez exécuter 'occ encryption:migrate' ou contacter votre administrateur", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Clé privée invalide pour l'application de chiffrement. Veuillez mettre à jour le mot de passe de la clef privée dans vos paramètres personnels pour récupérer l'accès à vos fichiers chiffrés.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "L'application de chiffrement est activée mais vos clefs ne sont pas initialisées. Veuillez vous déconnecter et ensuite vous reconnecter.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Veuillez activer le chiffrement côté serveur dans les paramètres d'administration pour utiliser le module de cryptage.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "Mot de passe à usage unique pour le chiffrement côté serveur", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossible de déchiffrer ce fichier : il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire du fichier de le partager à nouveau avec vous.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossible de lire ce fichier, il s'agit probablement d'un fichier partagé. Veuillez demander au propriétaire du fichier de le repartager avec vous. ", + "Default encryption module" : "Module de chiffrement par défaut", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Bonjour,\n\nL'administrateur a activé le chiffrement sur le serveur. Vos fichiers ont été chiffrés avec le mot de passe suivant :\n\n%s\n\nVeuillez suivre ces instructions :\n\n1. Connectez-vous à l'interface web et trouvez la section \"Module de chiffrement de base d'\" dans vos paramètres personnels;\n\n2. Entrez le mot de passe fourni ci-dessus dans le champ \"Ancien mot de passe de connexion\";\n\n3. Entrez le mot de passe que vous utilisez actuellement pour vous connecter dans le champ \"Actuel mot de passe de connexion\";\n\n4. Validez en cliquant sur le bouton \"Mettre à jour le mot de passe de votre clef privée\".\n", "The share will expire on %s." : "Le partage expirera le %s.", "Cheers!" : "À bientôt !", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Bonjour,\n

\nL'administrateur a activé le chiffrement sur le serveur. Vos fichiers ont été chiffrés avec le mot de passe suivant :\n\n

%s

\n\n

\nVeuillez suivre ces instructions :\n

    \n
  1. Connectez-vous à l'interface web et trouvez la section \"Module de chiffrement de base d'\" dans vos paramètres personnels;
  2. \n
  3. Entrez le mot de passe fourni ci-dessus dans le champ \"Ancien mot de passe de connexion\";
  4. \n
  5. Entrez le mot de passe que vous utilisez actuellement pour vous connecter dans le champ \"Actuel mot de passe de connexion\";
  6. \n
  7. Validez en cliquant sur le bouton \"Mettre à jour le mot de passe de votre clef privée\".
  8. \n
\n

", - "Default encryption module" : "Module de chiffrement par défaut", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "L'application de chiffrement est activée mais vos clefs ne sont pas initialisées. Veuillez vous déconnecter et ensuite vous reconnecter.", "Encrypt the home storage" : "Chiffrer l'espace de stockage principal", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "L'activation de cette option chiffre tous les fichiers du stockage principal, sinon seuls les espaces de stockage externes seront chiffrés", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Activer cette option vous permettra d'obtenir à nouveau l'accès à vos fichiers chiffrés en cas de perte de mot de passe", "Enabled" : "Activé", "Disabled" : "Désactivé", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "L'application de chiffrement est activée mais vos clefs ne sont pas initialisées. Veuillez vous déconnecter et ensuite vous reconnecter." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Vous devez migrer vos clés de chiffrement de l'ancienne version (ownCloud <= 8.0) vers la nouvelle. Veuillez exécuter 'occ encryption:migrate' ou contacter votre administrateur" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/he.js b/apps/encryption/l10n/he.js index 9c35ac54d2b9a..f04600c03268f 100644 --- a/apps/encryption/l10n/he.js +++ b/apps/encryption/l10n/he.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "הסיסמא הישנה לא נכונה, יש לנסות שנית.", "The current log-in password was not correct, please try again." : "סיסמת ההתחברות הנוכחית אינה נכונה, יש לנסות שנית.", "Private key password successfully updated." : "סיסמת מפתח אישי עודכנה בהצלחה.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "יש צורך להמיר את מפתחות ההצפנה מהצופן הישן (ownCloud <= 8.0) לצופן החדש. יש להריץ 'occ encryption:migrate' או לפנות למנהל שלך", "Bad Signature" : "חתימה שגויה", "Missing Signature" : "חתימה חסרה", "one-time password for server-side-encryption" : "סיסמא חד פעמית עבור הצפנת צד השרת", @@ -53,6 +52,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "הפעלת אפשרות זו תאפשר לך לקבל מחדש גישה לקבצים המוצפנים שלך במקרה שסיסמא נשכחת", "Enabled" : "מופעל", "Disabled" : "מנוטרל", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "יישום הצפנה מאופשר אבל המפתחות שלך לא אותחלו, יש להתנתק ולהתחבר מחדש" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "יש צורך להמיר את מפתחות ההצפנה מהצופן הישן (ownCloud <= 8.0) לצופן החדש. יש להריץ 'occ encryption:migrate' או לפנות למנהל שלך" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/he.json b/apps/encryption/l10n/he.json index 8557342716133..219d047bbd488 100644 --- a/apps/encryption/l10n/he.json +++ b/apps/encryption/l10n/he.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "הסיסמא הישנה לא נכונה, יש לנסות שנית.", "The current log-in password was not correct, please try again." : "סיסמת ההתחברות הנוכחית אינה נכונה, יש לנסות שנית.", "Private key password successfully updated." : "סיסמת מפתח אישי עודכנה בהצלחה.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "יש צורך להמיר את מפתחות ההצפנה מהצופן הישן (ownCloud <= 8.0) לצופן החדש. יש להריץ 'occ encryption:migrate' או לפנות למנהל שלך", "Bad Signature" : "חתימה שגויה", "Missing Signature" : "חתימה חסרה", "one-time password for server-side-encryption" : "סיסמא חד פעמית עבור הצפנת צד השרת", @@ -51,6 +50,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "הפעלת אפשרות זו תאפשר לך לקבל מחדש גישה לקבצים המוצפנים שלך במקרה שסיסמא נשכחת", "Enabled" : "מופעל", "Disabled" : "מנוטרל", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "יישום הצפנה מאופשר אבל המפתחות שלך לא אותחלו, יש להתנתק ולהתחבר מחדש" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "יש צורך להמיר את מפתחות ההצפנה מהצופן הישן (ownCloud <= 8.0) לצופן החדש. יש להריץ 'occ encryption:migrate' או לפנות למנהל שלך" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/hu.js b/apps/encryption/l10n/hu.js index 648aab24cbc1a..c38840e3e0a82 100644 --- a/apps/encryption/l10n/hu.js +++ b/apps/encryption/l10n/hu.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "A régi jelszó nem volt helyes, kérlek próbáld újra.", "The current log-in password was not correct, please try again." : "Az aktuális bejelentkezési jelszó nem volt helyes, kérlek próbáld újra.", "Private key password successfully updated." : "A személyes kulcsának jelszava frissítésre került.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Migrálni kell a titkosítási kulcsaidat a rég titkosításról (ownCloud <= 8.0) az újra. Kérlek futtasd az 'occ encryption:migrate' parancsot, vagy lépj kapcsolatba az adminisztrátorral", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "A titkosító alkalmazás privát kulcsa érvénytelen. A titkosított fájljaidhoz való hozzáféréshez frissítsd a privát kulcsod jelszavát a személyes beállításoknál.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "A fájlok titkosítása engedélyezve van, de az Ön titkos kulcsai nincsenek beállítva. Ezért kérlek, hogy jelentkezz ki, és lépj be újra!", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Kérem engedélyezze a szerver oldali titkosítást az adminisztrátor beállítasokban ahhoz, hogy a titkosítás modult tudja használni.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "szerver-oldali titkosítás egyszer használható jelszava", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "A fájlt nem sikerült visszafejteni, valószínűleg ez egy megosztott fájl. Kérje meg a fájl tulajdonosát, hogy újra ossza meg veled ezt az állományt!", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Ez a fájl nem olvasható, valószínűleg ez egy megosztott fájl. Kérd meg a tulajdonosát, hogy ossza meg veled újra ezt a fájlt.", + "Default encryption module" : "Alapértelmezett titkosítási modul", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Szia!\n\nAz adminisztrátor bekapcsolta a szerver-oldali titkosítást. A fájljaid ezzel a jelszóval lettek titkosítva: '%s'.\n\nKérlek jelentkezz be a webes felületre és a személyes beállítások 'alap titkosítási modul' szekcióban frissítsd a titkosítási jelszavad, úgy hogy megadod a 'régi bejelentkezési jelszó' mezőben ezt a jelszót, majd az aktuális bejelentkezési jelszavad.\n\n", "The share will expire on %s." : "A megosztás lejár ekkor %s", "Cheers!" : "Üdv.", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Szia!

Az adminisztrátor bekapcsolta a szerver-oldali titkosítást. A fájljaid ezzel a jelszóval lettek titkosítva: %s.

Kérlek jelentkezz be a webes felületre és a személyes beállítások 'alap titkosítási modul' szekcióban frissítsd a titkosítási jelszavad, úgy hogy megadod a 'régi bejelentkezési jelszó' mezőben ezt a jelszót, majd az aktuális bejelentkezési jelszavad.

", - "Default encryption module" : "Alapértelmezett titkosítási modul", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "A titkosító alkalmazás engedélyezve van, de a kulcsaid még nincsenek inicializálva. Kérlek lépj ki, majd lépj be újra", "Encrypt the home storage" : "Helyi tároló titkosítása", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "A lehetőség engedélyezésekor minden fájlt titkosít a fő tárolóban, egyébként csak a külső tárolókon lévő fájlok lesznek titkosítva", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Ez az opció lehetővé teszi, hogy a titkosított fájlok tartalmát visszanyerjük abban az esetben, ha elfelejti a jelszavát", "Enabled" : "Bekapcsolva", "Disabled" : "Kikapcsolva", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "A fájlok titkosítása engedélyezve van, de az Ön titkos kulcsai nincsenek beállítva. Ezért kérlek, hogy jelentkezz ki, és lépj be újra!" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Migrálni kell a titkosítási kulcsaidat a rég titkosításról (ownCloud <= 8.0) az újra. Kérlek futtasd az 'occ encryption:migrate' parancsot, vagy lépj kapcsolatba az adminisztrátorral" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/hu.json b/apps/encryption/l10n/hu.json index 5230fc4ba2677..4a6b824ca2a98 100644 --- a/apps/encryption/l10n/hu.json +++ b/apps/encryption/l10n/hu.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "A régi jelszó nem volt helyes, kérlek próbáld újra.", "The current log-in password was not correct, please try again." : "Az aktuális bejelentkezési jelszó nem volt helyes, kérlek próbáld újra.", "Private key password successfully updated." : "A személyes kulcsának jelszava frissítésre került.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Migrálni kell a titkosítási kulcsaidat a rég titkosításról (ownCloud <= 8.0) az újra. Kérlek futtasd az 'occ encryption:migrate' parancsot, vagy lépj kapcsolatba az adminisztrátorral", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "A titkosító alkalmazás privát kulcsa érvénytelen. A titkosított fájljaidhoz való hozzáféréshez frissítsd a privát kulcsod jelszavát a személyes beállításoknál.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "A fájlok titkosítása engedélyezve van, de az Ön titkos kulcsai nincsenek beállítva. Ezért kérlek, hogy jelentkezz ki, és lépj be újra!", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Kérem engedélyezze a szerver oldali titkosítást az adminisztrátor beállítasokban ahhoz, hogy a titkosítás modult tudja használni.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "szerver-oldali titkosítás egyszer használható jelszava", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "A fájlt nem sikerült visszafejteni, valószínűleg ez egy megosztott fájl. Kérje meg a fájl tulajdonosát, hogy újra ossza meg veled ezt az állományt!", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Ez a fájl nem olvasható, valószínűleg ez egy megosztott fájl. Kérd meg a tulajdonosát, hogy ossza meg veled újra ezt a fájlt.", + "Default encryption module" : "Alapértelmezett titkosítási modul", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Szia!\n\nAz adminisztrátor bekapcsolta a szerver-oldali titkosítást. A fájljaid ezzel a jelszóval lettek titkosítva: '%s'.\n\nKérlek jelentkezz be a webes felületre és a személyes beállítások 'alap titkosítási modul' szekcióban frissítsd a titkosítási jelszavad, úgy hogy megadod a 'régi bejelentkezési jelszó' mezőben ezt a jelszót, majd az aktuális bejelentkezési jelszavad.\n\n", "The share will expire on %s." : "A megosztás lejár ekkor %s", "Cheers!" : "Üdv.", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Szia!

Az adminisztrátor bekapcsolta a szerver-oldali titkosítást. A fájljaid ezzel a jelszóval lettek titkosítva: %s.

Kérlek jelentkezz be a webes felületre és a személyes beállítások 'alap titkosítási modul' szekcióban frissítsd a titkosítási jelszavad, úgy hogy megadod a 'régi bejelentkezési jelszó' mezőben ezt a jelszót, majd az aktuális bejelentkezési jelszavad.

", - "Default encryption module" : "Alapértelmezett titkosítási modul", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "A titkosító alkalmazás engedélyezve van, de a kulcsaid még nincsenek inicializálva. Kérlek lépj ki, majd lépj be újra", "Encrypt the home storage" : "Helyi tároló titkosítása", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "A lehetőség engedélyezésekor minden fájlt titkosít a fő tárolóban, egyébként csak a külső tárolókon lévő fájlok lesznek titkosítva", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Ez az opció lehetővé teszi, hogy a titkosított fájlok tartalmát visszanyerjük abban az esetben, ha elfelejti a jelszavát", "Enabled" : "Bekapcsolva", "Disabled" : "Kikapcsolva", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "A fájlok titkosítása engedélyezve van, de az Ön titkos kulcsai nincsenek beállítva. Ezért kérlek, hogy jelentkezz ki, és lépj be újra!" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Migrálni kell a titkosítási kulcsaidat a rég titkosításról (ownCloud <= 8.0) az újra. Kérlek futtasd az 'occ encryption:migrate' parancsot, vagy lépj kapcsolatba az adminisztrátorral" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/id.js b/apps/encryption/l10n/id.js index 2c6ec486a3c46..d9eb8ee2c2bcf 100644 --- a/apps/encryption/l10n/id.js +++ b/apps/encryption/l10n/id.js @@ -1,64 +1,63 @@ OC.L10N.register( "encryption", { - "Missing recovery key password" : "Sandi kunci pemuliahan tidak ada", - "Please repeat the recovery key password" : "Silakan ulangi sandi kunci pemulihan", - "Repeated recovery key password does not match the provided recovery key password" : "Sandi kunci pemulihan yang diulangi tidak cocok dengan sandi kunci pemulihan yang diberikan", + "Missing recovery key password" : "Kata sandi kunci pemuliahan tidak ada", + "Please repeat the recovery key password" : "Silakan ulangi kata sandi kunci pemulihan", + "Repeated recovery key password does not match the provided recovery key password" : "Kata sandi kunci pemulihan yang diulangi tidak cocok dengan kata sandi kunci pemulihan yang diberikan", "Recovery key successfully enabled" : "Kunci pemulihan berhasil diaktifkan", - "Could not enable recovery key. Please check your recovery key password!" : "Tidak dapat mengaktifkan kunci pemulihan. Silakan periksa sandi kunci pemulihan Anda!", + "Could not enable recovery key. Please check your recovery key password!" : "Tidak dapat mengaktifkan kunci pemulihan. Silakan periksa kata sandi kunci pemulihan Anda!", "Recovery key successfully disabled" : "Kunci pemulihan berhasil dinonaktifkan", - "Could not disable recovery key. Please check your recovery key password!" : "Tidak dapat menonaktifkan kunci pemulihan. Silakan periksa sandi kunci pemulihan Anda!", + "Could not disable recovery key. Please check your recovery key password!" : "Tidak dapat menonaktifkan kunci pemulihan. Silakan periksa kata sandi kunci pemulihan Anda!", "Missing parameters" : "Parameter salah", - "Please provide the old recovery password" : "Mohon berikan sandi pemulihan lama", - "Please provide a new recovery password" : "Mohon berikan sandi pemulihan baru", + "Please provide the old recovery password" : "Mohon berikan kata sandi pemulihan lama", + "Please provide a new recovery password" : "Mohon berikan kata sandi pemulihan baru", "Please repeat the new recovery password" : "Silakan ulangi sandi pemulihan baru", - "Password successfully changed." : "Sandi berhasil diubah", - "Could not change the password. Maybe the old password was not correct." : "Tidak dapat mengubah sandi. Kemungkinan sandi lama yang dimasukkan salah.", + "Password successfully changed." : "Kata sandi berhasil diubah", + "Could not change the password. Maybe the old password was not correct." : "Tidak dapat mengubah kata sandi. Kemungkinan kata sandi lama yang dimasukkan salah.", "Recovery Key disabled" : "Kunci Pemulihan dinonaktifkan", "Recovery Key enabled" : "Kunci Pemulihan diaktifkan", "Could not enable the recovery key, please try again or contact your administrator" : "Tidak dapat mengaktifkan kunci pemulihan, silakan coba lagi atau hubungi administrator Anda", - "Could not update the private key password." : "Tidak dapat memperbarui sandi kunci private.", - "The old password was not correct, please try again." : "Sandi lama salah, mohon coba lagi.", - "The current log-in password was not correct, please try again." : "Sandi masuk saat ini salah, mohon coba lagi.", + "Could not update the private key password." : "Tidak dapat memperbarui kata sandi kunci private.", + "The old password was not correct, please try again." : "Kata sandi lama salah, mohon coba lagi.", + "The current log-in password was not correct, please try again." : "Kata sandi masuk saat ini salah, mohon coba lagi.", "Private key password successfully updated." : "Sandi kunci privat berhasil diperbarui.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Anda perlu mengganti kunci enkripsi Anda dari enkripsi lama (ownCloud <= 8.0) ke yang baru. Mohon jalankan 'occ encryption:migrate' atau hubungi administrator Anda", - "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Kunci privat tidak sah untuk aplikasi enkripsi. Silakan perbarui sandi kunci privat anda pada pengaturan pribadi untuk memulihkan akses ke berkas anda yang dienkripsi.", + "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Kunci privat tidak sah untuk aplikasi enkripsi. Silakan perbarui kata sandi kunci privat anda pada pengaturan pribadi untuk memulihkan akses ke berkas anda yang dienkripsi.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Apl Enkripsi telah aktif, tapi kunci anda tidak diinisialisasikan. Harap keluar-log dan masuk-log kembali.", "Encryption app is enabled and ready" : "Apl enkripsi aktif dan siap", "Bad Signature" : "Tanda salah", "Missing Signature" : "Tanda hilang", - "one-time password for server-side-encryption" : "Sandi sekali pakai untuk server-side-encryption", + "one-time password for server-side-encryption" : "Kata sandi sekali pakai untuk server-side-encryption", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tidak dapat mendekripsi berkas ini, mungkin ini adalah berkas bersama. Silakan meminta pemilik berkas ini untuk membagikan kembali dengan Anda.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tidak dapat membaca berkas ini, kemungkinan merupakan berkas berbagi. Silakan minta pemilik berkas untuk membagikan ulang kepada Anda.", - "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hai,\n\nadmin mengaktifkan server-side-encryption. Berkas-berkas Anda dienkripsi menggunakan sandi '%s'.\n\nSilakan masuk di antarmuka web, pergi ke bagian 'modul enkripsi dasar' pada pengaturan pribadi Anda dan perbarui sandi enkripsi Anda dengan memasukkan sandi ini kedalam kolom 'sandi masuk yang lama' dan sandi-masuk saat ini.\n\n", + "Default encryption module" : "Modul bawaan enkripsi", + "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hai,\n\nadmin mengaktifkan server-side-encryption. Berkas-berkas Anda dienkripsi menggunakan kata sandi '%s'.\n\nSilakan masuk di antarmuka web, pergi ke bagian 'modul enkripsi dasar' pada pengaturan pribadi Anda dan perbarui kata sandi enkripsi Anda dengan memasukkan kata sandi ini kedalam kolom 'kata sandi masuk yang lama' dan kata sandi-masuk saat ini.\n\n", "The share will expire on %s." : "Pembagian akan berakhir pada %s.", "Cheers!" : "Horee!", - "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hai,

admin mengaktifkan server-side-encryption. Berkas-berkas Anda dienkripsi menggunakan sandi %s.

Silakan masuk di antarmuka web, pergi ke bagian 'modul enkripsi dasar' pada pengaturan pribadi Anda dan perbarui sandi enkripsi Anda dengan memasukkan sandi ini kedalam kolom 'sandi masuk yang lama' dan sandi masuk yang baru.

", - "Default encryption module" : "Modul bawaan enkripsi", + "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hai,

admin mengaktifkan server-side-encryption. Berkas-berkas Anda dienkripsi menggunakan kata sandi %s.

Silakan masuk di antarmuka web, pergi ke bagian 'modul enkripsi dasar' pada pengaturan pribadi Anda dan perbarui kata sandi enkripsi Anda dengan memasukkan kata sandi ini kedalam kolom 'kata sandi masuk yang lama' dan kata sandi masuk yang baru.

", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikasi enkripsi telah diaktifkan tetapi kunci tidak terinisialisasi, silakan log-out dan log-in lagi", "Encrypt the home storage" : "Enkripsi penyimpanan rumah", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Mengaktifkan opsi ini akan mengenkripsi semua berkas yang disimpan pada penyimpanan utama, jika tidak diaktifkan maka hanya berkas pada penyimpanan eksternal saja yang akan dienkripsi.", "Enable recovery key" : "Aktifkan kunci pemulihan", "Disable recovery key" : "Nonaktifkan kunci pemulihan", - "The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password." : "Kunci pemulihan adalah kunci enkripsi tambahan yang digunakan untuk mengenkripsi berkas. Kunci pemulihan memungkinkan untuk memulihkan berkas-berkas pengguna ketika pengguna tersebut melupakan sandi mereka.", - "Recovery key password" : "Sandi kunci pemulihan", - "Repeat recovery key password" : "Ulangi sandi kunci pemulihan", - "Change recovery key password:" : "Ubah sandi kunci pemulihan:", - "Old recovery key password" : "Sandi kunci pemulihan lama", - "New recovery key password" : "Sandi kunci pemulihan baru", + "The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password." : "Kunci pemulihan adalah kunci enkripsi tambahan yang digunakan untuk mengenkripsi berkas. Kunci pemulihan memungkinkan untuk memulihkan berkas-berkas pengguna ketika pengguna tersebut melupakan kata sandi mereka.", + "Recovery key password" : "Kata sandi kunci pemulihan", + "Repeat recovery key password" : "Ulangi kata sandi kunci pemulihan", + "Change recovery key password:" : "Ubah kata sandi kunci pemulihan:", + "Old recovery key password" : "Kata sandi kunci pemulihan lama", + "New recovery key password" : "Kata sandi kunci pemulihan baru", "Repeat new recovery key password" : "Ulangi sandi kunci pemulihan baru", "Change Password" : "Ubah Sandi", "Basic encryption module" : "Modul enkripsi dasar", - "Your private key password no longer matches your log-in password." : "Sandi kunci private Anda tidak lagi cocok dengan sandi masuk Anda.", - "Set your old private key password to your current log-in password:" : "Setel sandi kunci private Anda untuk sandi masuk Anda saat ini:", - " If you don't remember your old password you can ask your administrator to recover your files." : "Jika Anda tidak ingat sandi lama, Anda dapat meminta administrator Anda untuk memulihkan berkas.", - "Old log-in password" : "Sandi masuk yang lama", - "Current log-in password" : "Sandi masuk saat ini", - "Update Private Key Password" : "Perbarui Sandi Kunci Private", - "Enable password recovery:" : "Aktifkan sandi pemulihan:", - "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Mengaktifkan opsi ini memungkinkan Anda untuk mendapatkan kembali akses ke berkas terenkripsi Anda dalam kasus kehilangan sandi", + "Your private key password no longer matches your log-in password." : "Kata sandi kunci private Anda tidak lagi cocok dengan kata sandi masuk Anda.", + "Set your old private key password to your current log-in password:" : "Setel kata sandi kunci private Anda untuk kata sandi masuk Anda saat ini:", + " If you don't remember your old password you can ask your administrator to recover your files." : "Jika Anda tidak ingat kata sandi lama, Anda dapat meminta administrator Anda untuk memulihkan berkas.", + "Old log-in password" : "Kata sandi masuk yang lama", + "Current log-in password" : "Kata sandi masuk saat ini", + "Update Private Key Password" : "Perbarui Kata Sandi Kunci Private", + "Enable password recovery:" : "Aktifkan kata sandi pemulihan:", + "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Mengaktifkan opsi ini memungkinkan Anda untuk mendapatkan kembali akses ke berkas terenkripsi Anda dalam kasus kehilangan kata sandi", "Enabled" : "Diaktifkan", "Disabled" : "Dinonaktifkan", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikasi Enskripsi telah diaktifkan tetapi kunci tidak diinisialisasi, silakan log-out dan log-in lagi" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Anda perlu mengganti kunci enkripsi Anda dari enkripsi lama (ownCloud <= 8.0) ke yang baru. Mohon jalankan 'occ encryption:migrate' atau hubungi administrator Anda" }, "nplurals=1; plural=0;"); diff --git a/apps/encryption/l10n/id.json b/apps/encryption/l10n/id.json index aa2dabe33470e..dfab4de7ce13f 100644 --- a/apps/encryption/l10n/id.json +++ b/apps/encryption/l10n/id.json @@ -1,62 +1,61 @@ { "translations": { - "Missing recovery key password" : "Sandi kunci pemuliahan tidak ada", - "Please repeat the recovery key password" : "Silakan ulangi sandi kunci pemulihan", - "Repeated recovery key password does not match the provided recovery key password" : "Sandi kunci pemulihan yang diulangi tidak cocok dengan sandi kunci pemulihan yang diberikan", + "Missing recovery key password" : "Kata sandi kunci pemuliahan tidak ada", + "Please repeat the recovery key password" : "Silakan ulangi kata sandi kunci pemulihan", + "Repeated recovery key password does not match the provided recovery key password" : "Kata sandi kunci pemulihan yang diulangi tidak cocok dengan kata sandi kunci pemulihan yang diberikan", "Recovery key successfully enabled" : "Kunci pemulihan berhasil diaktifkan", - "Could not enable recovery key. Please check your recovery key password!" : "Tidak dapat mengaktifkan kunci pemulihan. Silakan periksa sandi kunci pemulihan Anda!", + "Could not enable recovery key. Please check your recovery key password!" : "Tidak dapat mengaktifkan kunci pemulihan. Silakan periksa kata sandi kunci pemulihan Anda!", "Recovery key successfully disabled" : "Kunci pemulihan berhasil dinonaktifkan", - "Could not disable recovery key. Please check your recovery key password!" : "Tidak dapat menonaktifkan kunci pemulihan. Silakan periksa sandi kunci pemulihan Anda!", + "Could not disable recovery key. Please check your recovery key password!" : "Tidak dapat menonaktifkan kunci pemulihan. Silakan periksa kata sandi kunci pemulihan Anda!", "Missing parameters" : "Parameter salah", - "Please provide the old recovery password" : "Mohon berikan sandi pemulihan lama", - "Please provide a new recovery password" : "Mohon berikan sandi pemulihan baru", + "Please provide the old recovery password" : "Mohon berikan kata sandi pemulihan lama", + "Please provide a new recovery password" : "Mohon berikan kata sandi pemulihan baru", "Please repeat the new recovery password" : "Silakan ulangi sandi pemulihan baru", - "Password successfully changed." : "Sandi berhasil diubah", - "Could not change the password. Maybe the old password was not correct." : "Tidak dapat mengubah sandi. Kemungkinan sandi lama yang dimasukkan salah.", + "Password successfully changed." : "Kata sandi berhasil diubah", + "Could not change the password. Maybe the old password was not correct." : "Tidak dapat mengubah kata sandi. Kemungkinan kata sandi lama yang dimasukkan salah.", "Recovery Key disabled" : "Kunci Pemulihan dinonaktifkan", "Recovery Key enabled" : "Kunci Pemulihan diaktifkan", "Could not enable the recovery key, please try again or contact your administrator" : "Tidak dapat mengaktifkan kunci pemulihan, silakan coba lagi atau hubungi administrator Anda", - "Could not update the private key password." : "Tidak dapat memperbarui sandi kunci private.", - "The old password was not correct, please try again." : "Sandi lama salah, mohon coba lagi.", - "The current log-in password was not correct, please try again." : "Sandi masuk saat ini salah, mohon coba lagi.", + "Could not update the private key password." : "Tidak dapat memperbarui kata sandi kunci private.", + "The old password was not correct, please try again." : "Kata sandi lama salah, mohon coba lagi.", + "The current log-in password was not correct, please try again." : "Kata sandi masuk saat ini salah, mohon coba lagi.", "Private key password successfully updated." : "Sandi kunci privat berhasil diperbarui.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Anda perlu mengganti kunci enkripsi Anda dari enkripsi lama (ownCloud <= 8.0) ke yang baru. Mohon jalankan 'occ encryption:migrate' atau hubungi administrator Anda", - "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Kunci privat tidak sah untuk aplikasi enkripsi. Silakan perbarui sandi kunci privat anda pada pengaturan pribadi untuk memulihkan akses ke berkas anda yang dienkripsi.", + "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Kunci privat tidak sah untuk aplikasi enkripsi. Silakan perbarui kata sandi kunci privat anda pada pengaturan pribadi untuk memulihkan akses ke berkas anda yang dienkripsi.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Apl Enkripsi telah aktif, tapi kunci anda tidak diinisialisasikan. Harap keluar-log dan masuk-log kembali.", "Encryption app is enabled and ready" : "Apl enkripsi aktif dan siap", "Bad Signature" : "Tanda salah", "Missing Signature" : "Tanda hilang", - "one-time password for server-side-encryption" : "Sandi sekali pakai untuk server-side-encryption", + "one-time password for server-side-encryption" : "Kata sandi sekali pakai untuk server-side-encryption", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tidak dapat mendekripsi berkas ini, mungkin ini adalah berkas bersama. Silakan meminta pemilik berkas ini untuk membagikan kembali dengan Anda.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tidak dapat membaca berkas ini, kemungkinan merupakan berkas berbagi. Silakan minta pemilik berkas untuk membagikan ulang kepada Anda.", - "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hai,\n\nadmin mengaktifkan server-side-encryption. Berkas-berkas Anda dienkripsi menggunakan sandi '%s'.\n\nSilakan masuk di antarmuka web, pergi ke bagian 'modul enkripsi dasar' pada pengaturan pribadi Anda dan perbarui sandi enkripsi Anda dengan memasukkan sandi ini kedalam kolom 'sandi masuk yang lama' dan sandi-masuk saat ini.\n\n", + "Default encryption module" : "Modul bawaan enkripsi", + "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hai,\n\nadmin mengaktifkan server-side-encryption. Berkas-berkas Anda dienkripsi menggunakan kata sandi '%s'.\n\nSilakan masuk di antarmuka web, pergi ke bagian 'modul enkripsi dasar' pada pengaturan pribadi Anda dan perbarui kata sandi enkripsi Anda dengan memasukkan kata sandi ini kedalam kolom 'kata sandi masuk yang lama' dan kata sandi-masuk saat ini.\n\n", "The share will expire on %s." : "Pembagian akan berakhir pada %s.", "Cheers!" : "Horee!", - "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hai,

admin mengaktifkan server-side-encryption. Berkas-berkas Anda dienkripsi menggunakan sandi %s.

Silakan masuk di antarmuka web, pergi ke bagian 'modul enkripsi dasar' pada pengaturan pribadi Anda dan perbarui sandi enkripsi Anda dengan memasukkan sandi ini kedalam kolom 'sandi masuk yang lama' dan sandi masuk yang baru.

", - "Default encryption module" : "Modul bawaan enkripsi", + "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hai,

admin mengaktifkan server-side-encryption. Berkas-berkas Anda dienkripsi menggunakan kata sandi %s.

Silakan masuk di antarmuka web, pergi ke bagian 'modul enkripsi dasar' pada pengaturan pribadi Anda dan perbarui kata sandi enkripsi Anda dengan memasukkan kata sandi ini kedalam kolom 'kata sandi masuk yang lama' dan kata sandi masuk yang baru.

", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikasi enkripsi telah diaktifkan tetapi kunci tidak terinisialisasi, silakan log-out dan log-in lagi", "Encrypt the home storage" : "Enkripsi penyimpanan rumah", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Mengaktifkan opsi ini akan mengenkripsi semua berkas yang disimpan pada penyimpanan utama, jika tidak diaktifkan maka hanya berkas pada penyimpanan eksternal saja yang akan dienkripsi.", "Enable recovery key" : "Aktifkan kunci pemulihan", "Disable recovery key" : "Nonaktifkan kunci pemulihan", - "The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password." : "Kunci pemulihan adalah kunci enkripsi tambahan yang digunakan untuk mengenkripsi berkas. Kunci pemulihan memungkinkan untuk memulihkan berkas-berkas pengguna ketika pengguna tersebut melupakan sandi mereka.", - "Recovery key password" : "Sandi kunci pemulihan", - "Repeat recovery key password" : "Ulangi sandi kunci pemulihan", - "Change recovery key password:" : "Ubah sandi kunci pemulihan:", - "Old recovery key password" : "Sandi kunci pemulihan lama", - "New recovery key password" : "Sandi kunci pemulihan baru", + "The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password." : "Kunci pemulihan adalah kunci enkripsi tambahan yang digunakan untuk mengenkripsi berkas. Kunci pemulihan memungkinkan untuk memulihkan berkas-berkas pengguna ketika pengguna tersebut melupakan kata sandi mereka.", + "Recovery key password" : "Kata sandi kunci pemulihan", + "Repeat recovery key password" : "Ulangi kata sandi kunci pemulihan", + "Change recovery key password:" : "Ubah kata sandi kunci pemulihan:", + "Old recovery key password" : "Kata sandi kunci pemulihan lama", + "New recovery key password" : "Kata sandi kunci pemulihan baru", "Repeat new recovery key password" : "Ulangi sandi kunci pemulihan baru", "Change Password" : "Ubah Sandi", "Basic encryption module" : "Modul enkripsi dasar", - "Your private key password no longer matches your log-in password." : "Sandi kunci private Anda tidak lagi cocok dengan sandi masuk Anda.", - "Set your old private key password to your current log-in password:" : "Setel sandi kunci private Anda untuk sandi masuk Anda saat ini:", - " If you don't remember your old password you can ask your administrator to recover your files." : "Jika Anda tidak ingat sandi lama, Anda dapat meminta administrator Anda untuk memulihkan berkas.", - "Old log-in password" : "Sandi masuk yang lama", - "Current log-in password" : "Sandi masuk saat ini", - "Update Private Key Password" : "Perbarui Sandi Kunci Private", - "Enable password recovery:" : "Aktifkan sandi pemulihan:", - "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Mengaktifkan opsi ini memungkinkan Anda untuk mendapatkan kembali akses ke berkas terenkripsi Anda dalam kasus kehilangan sandi", + "Your private key password no longer matches your log-in password." : "Kata sandi kunci private Anda tidak lagi cocok dengan kata sandi masuk Anda.", + "Set your old private key password to your current log-in password:" : "Setel kata sandi kunci private Anda untuk kata sandi masuk Anda saat ini:", + " If you don't remember your old password you can ask your administrator to recover your files." : "Jika Anda tidak ingat kata sandi lama, Anda dapat meminta administrator Anda untuk memulihkan berkas.", + "Old log-in password" : "Kata sandi masuk yang lama", + "Current log-in password" : "Kata sandi masuk saat ini", + "Update Private Key Password" : "Perbarui Kata Sandi Kunci Private", + "Enable password recovery:" : "Aktifkan kata sandi pemulihan:", + "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Mengaktifkan opsi ini memungkinkan Anda untuk mendapatkan kembali akses ke berkas terenkripsi Anda dalam kasus kehilangan kata sandi", "Enabled" : "Diaktifkan", "Disabled" : "Dinonaktifkan", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikasi Enskripsi telah diaktifkan tetapi kunci tidak diinisialisasi, silakan log-out dan log-in lagi" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Anda perlu mengganti kunci enkripsi Anda dari enkripsi lama (ownCloud <= 8.0) ke yang baru. Mohon jalankan 'occ encryption:migrate' atau hubungi administrator Anda" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/encryption/l10n/is.js b/apps/encryption/l10n/is.js index daf9deb66f0f1..15397ca57072b 100644 --- a/apps/encryption/l10n/is.js +++ b/apps/encryption/l10n/is.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Gamla lykilorðið var ekki rétt, reyndu aftur.", "The current log-in password was not correct, please try again." : "Núgildandi innskráningarlykilorð var ekki rétt, reyndu aftur.", "Private key password successfully updated." : "Tókst að uppfæra lykilorð einkalykils.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Þú verður að yfirfæra dulritunarlyklana þína úr gömlu dulrituninni (ownCloud <= 8.0) yfir í þá nýju. Keyrðu 'occ encryption:migrate' eða hafðu samband við kerfisstjórann þinn", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Ógildur einkalykill fyrir dulritunarforrit. Uppfærðu einkalykilorðið í stillingunum þínum til að fá aftur aðgang að dulrituðu skránum þínum.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Dulritunarforritið er virkt en dulritunarlyklarnir þínir eru ekki tilbúnir til notkunar, skráðu þig út og svo aftur inn.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Virkjaðu dulritun á vefþjóninum í kerfisstjórnunarstillingunum svo hægt sé að nota dulritunareininguna.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "eins-skiptis lykilorð fyrir dulritun á þjóni", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Get ekki afkóðað þessa skrá, hugsanlega er þetta deild skrá. Biddu eiganda skrárinnar að deila henni aftur til þín.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Get ekki lesið þessa skrá, hugsanlega er þetta deild skrá. Biddu eiganda skrárinnar að deila henni aftur til þín.", + "Default encryption module" : "Sjálfgefin dulritunareining", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hæ,\n\nkerfisstjórinn virkjaði dulritun á vefþjóni. Skrárnar þínar voru dulritaðar með lykilorðinu '%s'.\n\nSkráðu þig inn í vefviðmótinu, farðu í hlutann 'Grunn-dulritunareining' (basic encryption module) í persónulegu stillingunum þínum og uppfærðu dulritunarlykilorðið þitt með því að setja þetta lykilorð inn í reitinn 'Gamla innskráningarlykilorðið' ásamt núverandi innskráningarlykilorði.\n\n", "The share will expire on %s." : "Gildistími deilingar rennur út %s.", "Cheers!" : "Til hamingju!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hæ,

kerfisstjórinn virkjaði dulritun á vefþjóni. Skrárnar þínar voru dulritaðar með lykilorðinu %s.

Skráðu þig inn í vefviðmótinu, farðu í hlutann 'Grunn-dulritunareining' (basic encryption module) í persónulegu stillingunum þínum og uppfærðu dulritunarlykilorðið þitt með því að setja þetta lykilorð inn í reitinn 'Gamla innskráningarlykilorðið' ásamt núverandi innskráningarlykilorði.

", - "Default encryption module" : "Sjálfgefin dulritunareining", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Dulritunarforritið er virkt en dulritunarlyklarnir þínir eru ekki tilbúnir til notkunar, skráðu þig út og svo aftur inn", "Encrypt the home storage" : "Dulrita heimamöppuna", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Ef þessi kostur er virkur verða allar skrár í aðalgeymslu dulritaðar, annars verða einungis skrár í ytri gagnageymslum dulritaðar", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Ef þessi kostur er virkur gerir það þér kleift að endurheimta aðgang að skránum þínum ef þú tapar lykilorðinu", "Enabled" : "Virkt", "Disabled" : "Óvirkt", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Dulritunarforritið er virkt en dulritunarlyklarnir þínir eru ekki tilbúnir til notkunar, skráðu þig út og svo aftur inn" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Þú verður að yfirfæra dulritunarlyklana þína úr gömlu dulrituninni (ownCloud <= 8.0) yfir í þá nýju. Keyrðu 'occ encryption:migrate' eða hafðu samband við kerfisstjórann þinn" }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/encryption/l10n/is.json b/apps/encryption/l10n/is.json index 2404e944edc96..29564257e9430 100644 --- a/apps/encryption/l10n/is.json +++ b/apps/encryption/l10n/is.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Gamla lykilorðið var ekki rétt, reyndu aftur.", "The current log-in password was not correct, please try again." : "Núgildandi innskráningarlykilorð var ekki rétt, reyndu aftur.", "Private key password successfully updated." : "Tókst að uppfæra lykilorð einkalykils.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Þú verður að yfirfæra dulritunarlyklana þína úr gömlu dulrituninni (ownCloud <= 8.0) yfir í þá nýju. Keyrðu 'occ encryption:migrate' eða hafðu samband við kerfisstjórann þinn", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Ógildur einkalykill fyrir dulritunarforrit. Uppfærðu einkalykilorðið í stillingunum þínum til að fá aftur aðgang að dulrituðu skránum þínum.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Dulritunarforritið er virkt en dulritunarlyklarnir þínir eru ekki tilbúnir til notkunar, skráðu þig út og svo aftur inn.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Virkjaðu dulritun á vefþjóninum í kerfisstjórnunarstillingunum svo hægt sé að nota dulritunareininguna.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "eins-skiptis lykilorð fyrir dulritun á þjóni", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Get ekki afkóðað þessa skrá, hugsanlega er þetta deild skrá. Biddu eiganda skrárinnar að deila henni aftur til þín.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Get ekki lesið þessa skrá, hugsanlega er þetta deild skrá. Biddu eiganda skrárinnar að deila henni aftur til þín.", + "Default encryption module" : "Sjálfgefin dulritunareining", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hæ,\n\nkerfisstjórinn virkjaði dulritun á vefþjóni. Skrárnar þínar voru dulritaðar með lykilorðinu '%s'.\n\nSkráðu þig inn í vefviðmótinu, farðu í hlutann 'Grunn-dulritunareining' (basic encryption module) í persónulegu stillingunum þínum og uppfærðu dulritunarlykilorðið þitt með því að setja þetta lykilorð inn í reitinn 'Gamla innskráningarlykilorðið' ásamt núverandi innskráningarlykilorði.\n\n", "The share will expire on %s." : "Gildistími deilingar rennur út %s.", "Cheers!" : "Til hamingju!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hæ,

kerfisstjórinn virkjaði dulritun á vefþjóni. Skrárnar þínar voru dulritaðar með lykilorðinu %s.

Skráðu þig inn í vefviðmótinu, farðu í hlutann 'Grunn-dulritunareining' (basic encryption module) í persónulegu stillingunum þínum og uppfærðu dulritunarlykilorðið þitt með því að setja þetta lykilorð inn í reitinn 'Gamla innskráningarlykilorðið' ásamt núverandi innskráningarlykilorði.

", - "Default encryption module" : "Sjálfgefin dulritunareining", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Dulritunarforritið er virkt en dulritunarlyklarnir þínir eru ekki tilbúnir til notkunar, skráðu þig út og svo aftur inn", "Encrypt the home storage" : "Dulrita heimamöppuna", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Ef þessi kostur er virkur verða allar skrár í aðalgeymslu dulritaðar, annars verða einungis skrár í ytri gagnageymslum dulritaðar", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Ef þessi kostur er virkur gerir það þér kleift að endurheimta aðgang að skránum þínum ef þú tapar lykilorðinu", "Enabled" : "Virkt", "Disabled" : "Óvirkt", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Dulritunarforritið er virkt en dulritunarlyklarnir þínir eru ekki tilbúnir til notkunar, skráðu þig út og svo aftur inn" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Þú verður að yfirfæra dulritunarlyklana þína úr gömlu dulrituninni (ownCloud <= 8.0) yfir í þá nýju. Keyrðu 'occ encryption:migrate' eða hafðu samband við kerfisstjórann þinn" },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" } \ No newline at end of file diff --git a/apps/encryption/l10n/it.js b/apps/encryption/l10n/it.js index f11ca0b8c829e..d2e77cae1345c 100644 --- a/apps/encryption/l10n/it.js +++ b/apps/encryption/l10n/it.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "La vecchia password non era corretta, prova di nuovo.", "The current log-in password was not correct, please try again." : "La password di accesso attuale non era corretta, prova ancora.", "Private key password successfully updated." : "Password della chiave privata aggiornata correttamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Devi migrare le tue chiavi di cifratura dalla vecchia cifratura (ownCloud <= 8.0) alla nuova. Esegui 'occ encryption:migrate' o contatta il tuo amministratore", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Chiave privata non valida per l'applicazione di cifratura. Aggiorna la password della chiave privata nelle impostazioni personali per ripristinare l'accesso ai tuoi file cifrati.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate. Disconnettiti ed effettua nuovamente l'accesso.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Abilita la cifratura lato server nelle impostazioni di amministrazione per utilizzare il modulo di cifratura.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "password monouso per la cifratura lato server", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossibile decifrare questo file, probabilmente è un file condiviso. Chiedi al proprietario del file di condividere nuovamente il file con te.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossibile leggere questo file, probabilmente è un file condiviso. Chiedi al proprietario del file di condividere nuovamente il file con te.", + "Default encryption module" : "Modulo di cifratura predefinito", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Ciao,\n\nl'amministratore ha abilitato la cifratura lato server. I tuoi file sono stati\ncifrati utilizzando la password '%s'.\n\nAccedi all'interfaccia web, vai alla sezione 'modulo di cifratura base di' dalle nelle tue impostazioni personali e aggiorna la tua password di cifratura digitando la password nel campo 'vecchia password di accesso' e la tua nuova password.\n\n", "The share will expire on %s." : "La condivisione scadrà il %s.", "Cheers!" : "Saluti!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Ciao,

l'amministratore ha abilitato la cifratura lato server. I tuoi file sono stati cifrati utilizzando la password %s.

Accedi all'interfaccia web, vai alla sezione \"modulo di cifratura base di\" dalle nelle tue impostazioni personali e aggiorna la tua password di cifratura digitando la password nel campo \"vecchia password di accesso\" e la tua nuova password.", - "Default encryption module" : "Modulo di cifratura predefinito", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate, disconnettiti ed effettua nuovamente l'accesso", "Encrypt the home storage" : "Cifra l'archiviazione principale", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "L'abilitazione di questa opzione cifra tutti i file memorizzati sull'archiviazione principale, altrimenti saranno cifrati solo i file sull'archiviazione esterna.", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "L'abilitazione di questa opzione ti consentirà di accedere nuovamente ai file cifrati in caso di perdita della password", "Enabled" : "Abilitata", "Disabled" : "Disabilitata", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate, disconnettiti ed effettua nuovamente l'accesso" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Devi migrare le tue chiavi di cifratura dalla vecchia cifratura (ownCloud <= 8.0) alla nuova. Esegui 'occ encryption:migrate' o contatta il tuo amministratore" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/it.json b/apps/encryption/l10n/it.json index 95f3627999ee8..fd2641d87ec8c 100644 --- a/apps/encryption/l10n/it.json +++ b/apps/encryption/l10n/it.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "La vecchia password non era corretta, prova di nuovo.", "The current log-in password was not correct, please try again." : "La password di accesso attuale non era corretta, prova ancora.", "Private key password successfully updated." : "Password della chiave privata aggiornata correttamente.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Devi migrare le tue chiavi di cifratura dalla vecchia cifratura (ownCloud <= 8.0) alla nuova. Esegui 'occ encryption:migrate' o contatta il tuo amministratore", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Chiave privata non valida per l'applicazione di cifratura. Aggiorna la password della chiave privata nelle impostazioni personali per ripristinare l'accesso ai tuoi file cifrati.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate. Disconnettiti ed effettua nuovamente l'accesso.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Abilita la cifratura lato server nelle impostazioni di amministrazione per utilizzare il modulo di cifratura.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "password monouso per la cifratura lato server", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossibile decifrare questo file, probabilmente è un file condiviso. Chiedi al proprietario del file di condividere nuovamente il file con te.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Impossibile leggere questo file, probabilmente è un file condiviso. Chiedi al proprietario del file di condividere nuovamente il file con te.", + "Default encryption module" : "Modulo di cifratura predefinito", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Ciao,\n\nl'amministratore ha abilitato la cifratura lato server. I tuoi file sono stati\ncifrati utilizzando la password '%s'.\n\nAccedi all'interfaccia web, vai alla sezione 'modulo di cifratura base di' dalle nelle tue impostazioni personali e aggiorna la tua password di cifratura digitando la password nel campo 'vecchia password di accesso' e la tua nuova password.\n\n", "The share will expire on %s." : "La condivisione scadrà il %s.", "Cheers!" : "Saluti!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Ciao,

l'amministratore ha abilitato la cifratura lato server. I tuoi file sono stati cifrati utilizzando la password %s.

Accedi all'interfaccia web, vai alla sezione \"modulo di cifratura base di\" dalle nelle tue impostazioni personali e aggiorna la tua password di cifratura digitando la password nel campo \"vecchia password di accesso\" e la tua nuova password.", - "Default encryption module" : "Modulo di cifratura predefinito", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate, disconnettiti ed effettua nuovamente l'accesso", "Encrypt the home storage" : "Cifra l'archiviazione principale", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "L'abilitazione di questa opzione cifra tutti i file memorizzati sull'archiviazione principale, altrimenti saranno cifrati solo i file sull'archiviazione esterna.", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "L'abilitazione di questa opzione ti consentirà di accedere nuovamente ai file cifrati in caso di perdita della password", "Enabled" : "Abilitata", "Disabled" : "Disabilitata", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate, disconnettiti ed effettua nuovamente l'accesso" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Devi migrare le tue chiavi di cifratura dalla vecchia cifratura (ownCloud <= 8.0) alla nuova. Esegui 'occ encryption:migrate' o contatta il tuo amministratore" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/ja.js b/apps/encryption/l10n/ja.js index 5584b0910cfcb..0725e8b0f0bed 100644 --- a/apps/encryption/l10n/ja.js +++ b/apps/encryption/l10n/ja.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "古いパスワードが一致しませんでした。もう一度入力してください。", "The current log-in password was not correct, please try again." : "ログインパスワードが一致しませんでした。もう一度入力してください。", "Private key password successfully updated." : "秘密鍵のパスワードが正常に更新されました。", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "古い暗号化(ownCloud 8.0以前)から新しい方へ、暗号化キーを移行する必要があります。'occ encryption:migrate'を実行するか、管理者に問い合わせてください。", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "暗号化アプリの無効なプライベートキーです。あなたの暗号化されたファイルへアクセスするために、個人設定からプライベートキーのパスワードを更新してください。", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください", "Please enable server side encryption in the admin settings in order to use the encryption module." : "暗号化モジュールを利用する場合は、管理者設定でサーバーサイド暗号化を有効にしてください。", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "サーバーサイド暗号化のワンタイムパスワード", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを読み取ることができません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。", + "Default encryption module" : "デフォルトの暗号化モジュール", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "こんにちは\n\n管理者がサーバーサイド暗号化を有効にしました。'%s'というパスワードであなたのファイルが暗号化されました。\n\nWeb画面からログインして、個人設定画面の'基本暗号化モジュール' セクションにいき、暗号化パスワードの更新をお願いします。 '旧ログインパスワード'部分に上記パスワードを入力し、現在のログインパスワードで更新します。\n", "The share will expire on %s." : "共有は %s で有効期限が切れます。", "Cheers!" : "それでは!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "こんにちは、

管理者がサーバーサイド暗号化を有効にしました。%sというパスワードであなたのファイルが暗号化されました。

Web画面からログインして、個人設定画面の\"基本暗号化モジュール\"のセクションにいき、暗号化パスワードの更新をお願いします。 \"旧ログインパスワード”部分に上記パスワードを入力し、現在のログインパスワードで更新します。

", - "Default encryption module" : "デフォルトの暗号化モジュール", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください", "Encrypt the home storage" : "メインストレージ暗号化", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "このオプションを有効にすると、外部ストレージ接続ストレージだけが暗号化されるのではなく、メインストレージのファイル全てが暗号化されます。", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "このオプションを有効にすると、パスワードを紛失した場合も、暗号化されたファイルに再度アクセスすることができるようになります。", "Enabled" : "有効", "Disabled" : "無効", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "古い暗号化(ownCloud 8.0以前)から新しい方へ、暗号化キーを移行する必要があります。'occ encryption:migrate'を実行するか、管理者に問い合わせてください。" }, "nplurals=1; plural=0;"); diff --git a/apps/encryption/l10n/ja.json b/apps/encryption/l10n/ja.json index 7803524626563..b07d3b5a0ec64 100644 --- a/apps/encryption/l10n/ja.json +++ b/apps/encryption/l10n/ja.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "古いパスワードが一致しませんでした。もう一度入力してください。", "The current log-in password was not correct, please try again." : "ログインパスワードが一致しませんでした。もう一度入力してください。", "Private key password successfully updated." : "秘密鍵のパスワードが正常に更新されました。", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "古い暗号化(ownCloud 8.0以前)から新しい方へ、暗号化キーを移行する必要があります。'occ encryption:migrate'を実行するか、管理者に問い合わせてください。", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "暗号化アプリの無効なプライベートキーです。あなたの暗号化されたファイルへアクセスするために、個人設定からプライベートキーのパスワードを更新してください。", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください", "Please enable server side encryption in the admin settings in order to use the encryption module." : "暗号化モジュールを利用する場合は、管理者設定でサーバーサイド暗号化を有効にしてください。", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "サーバーサイド暗号化のワンタイムパスワード", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを復号化できません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "このファイルを読み取ることができません、共有ファイルの可能性があります。ファイルの所有者にお願いして、ファイルを共有しなおしてもらってください。", + "Default encryption module" : "デフォルトの暗号化モジュール", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "こんにちは\n\n管理者がサーバーサイド暗号化を有効にしました。'%s'というパスワードであなたのファイルが暗号化されました。\n\nWeb画面からログインして、個人設定画面の'基本暗号化モジュール' セクションにいき、暗号化パスワードの更新をお願いします。 '旧ログインパスワード'部分に上記パスワードを入力し、現在のログインパスワードで更新します。\n", "The share will expire on %s." : "共有は %s で有効期限が切れます。", "Cheers!" : "それでは!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "こんにちは、

管理者がサーバーサイド暗号化を有効にしました。%sというパスワードであなたのファイルが暗号化されました。

Web画面からログインして、個人設定画面の\"基本暗号化モジュール\"のセクションにいき、暗号化パスワードの更新をお願いします。 \"旧ログインパスワード”部分に上記パスワードを入力し、現在のログインパスワードで更新します。

", - "Default encryption module" : "デフォルトの暗号化モジュール", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください", "Encrypt the home storage" : "メインストレージ暗号化", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "このオプションを有効にすると、外部ストレージ接続ストレージだけが暗号化されるのではなく、メインストレージのファイル全てが暗号化されます。", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "このオプションを有効にすると、パスワードを紛失した場合も、暗号化されたファイルに再度アクセスすることができるようになります。", "Enabled" : "有効", "Disabled" : "無効", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "古い暗号化(ownCloud 8.0以前)から新しい方へ、暗号化キーを移行する必要があります。'occ encryption:migrate'を実行するか、管理者に問い合わせてください。" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/encryption/l10n/ka_GE.js b/apps/encryption/l10n/ka_GE.js index ef47980c1430b..535c4ad1ed648 100644 --- a/apps/encryption/l10n/ka_GE.js +++ b/apps/encryption/l10n/ka_GE.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "ძველი პაროლი არ იყო სწორი, გთხოვთ სცადოთ ახლიდან.", "The current log-in password was not correct, please try again." : "ამჟამინდელი ლოგინის პაროლი არ იყო სწორი, გთხოვთ სცადოთ ახლიდან.", "Private key password successfully updated." : "პირადი გასაღების პაროლი წარმატებით განახლდა.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "საჭიროა შიფრაციის ძველი გასაღებების მიგრაცია (ownCloud <= 8.0) ახალებზე. გთხოვთ გაუშვათ 'occ encryption:migrate' ან დაუკავშირდეთ ადმინისტრატორს", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "შიფრაციის აპლიკაციისთვის არასწორი პირადი გასაღები. დაშიფრული ფაილებისადმი წვდომის აღსადგენად, გთხოვთ განაახლოთ თქვენი პირადი გასაღების პაროლი პირად პარამეტრებში.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "შიფრაციის აპლიკაცია მოქმედია, თუმცა თქვენი გასაღებები არაა ინიციალიზირებული. გთხოვთ გახვიდეთ და ახლიდან გაიაროთ ავტორიზაცია.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "შიფრაციის მოდულის გამოსაყენებლად გთხოვთ ადმინისტრატორის პარამეტრებიდან აამოქმედოთ შიფრაცია სერვერულ მხარეს.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "ერთჯერადი პაროლი სერვერული მხარის შიფრაციისთვის", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "ამ ფაილის გაშიფვრა ვერ ხერხდება, ალბათ ის გაზიარებული ფაილია. გთხოვთ სთხოვოთ ფაილის მფლობელს ახლიდან გააზიაროს ის თქვენთან.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "ამ ფაილის წაკითხვა არ ხერხდება, ალბათ ის გაზიარებული ფაილია. გთხოვთ სთხოვოთ ფაილის მფლობელს ახლიდან გააზიაროს ის თქვენთან.", + "Default encryption module" : "საწყისი შიფრაციის მოდული", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "გამარჯობა,\n\nადმინისტრატორმა აამოქმედა სერვერული მხარის შიფრაცია. თქვენი ფაილების შიფრაცია მოხდა პაროლით '%s'.\n\nგთხოვთ ვებ-ინტერფეისში გაიაროთ ავტორიზაცია, პირად პარამეტრებში გადახვიდეთ სექციაზე 'მარტივი შიფრაციის მოდული' და განაახლოთ შიფრაციის პაროლი, 'ძველი ლოგინის პაროლისა' და ამჟამინდელი ლოგინის პაროლის შეყვანით.\n\n", "The share will expire on %s." : "გაზიარება გაუქმდება %s-ზე.", "Cheers!" : "წარმატებები!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "გამარჯობა,

ადმინისტრატორმა აამოქმედა სერვერული მხარის შიფრაცია. თქვენი ფაილების შიფრაცია მოხდა პაროლით %s.

გთხოვთ ვებ-ინტერფეისში გაიაროთ ავტორიზაცია, პირად პარამეტრებში გადახვიდეთ სექციაზე 'მარტივი შიფრაციის მოდული' და განაახლოთ შიფრაციის პაროლი, 'ძველი ლოგინის პაროლისა' და ამჟამინდელი ლოგინის პაროლის შეყვანით.

", - "Default encryption module" : "საწყისი შიფრაციის მოდული", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "შიფრაციის აპლიკაცია მოქმედია, მაგრამ თქვენი გასაღებები არაა ინციალიზირებული, გთხოვთ გახვიდეთ და ახლიდან გაიაროთ ავტორიზაცია", "Encrypt the home storage" : "სახლის საცავის შიფრაცია", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "ამ არჩევნის ამოქმედება დაშიფრავს ყველა ფაილს, რომელიც განთავსებულია მთავარ საცავში, სხვა შემთხვევაში დაიშიფრება მოხოლოდ ექსტერნალურ საცავში არსებული ფაილები", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "ამ არჩევნის ამოქმედება, პაროლის დაკარგვის შემთხვევაში, საშუალებას მოგცემთ ახლიდან მოიპოვოთ წვდომა თქვენს დაშიფრულ ფაილებზე", "Enabled" : "მოქმედია", "Disabled" : "არაა მოქმედი", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "შიფრაციის აპლიკაცია მოქმედია, თუმცა თქვენი გასაღებები არაა ინიციალიზირებული, გთხოვთ გახვიდეთ და ახლიდან გაიაროთ ავტორიზაცია." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "საჭიროა შიფრაციის ძველი გასაღებების მიგრაცია (ownCloud <= 8.0) ახალებზე. გთხოვთ გაუშვათ 'occ encryption:migrate' ან დაუკავშირდეთ ადმინისტრატორს" }, "nplurals=1; plural=0;"); diff --git a/apps/encryption/l10n/ka_GE.json b/apps/encryption/l10n/ka_GE.json index 65ec50e3a86e2..f3a2550f115af 100644 --- a/apps/encryption/l10n/ka_GE.json +++ b/apps/encryption/l10n/ka_GE.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "ძველი პაროლი არ იყო სწორი, გთხოვთ სცადოთ ახლიდან.", "The current log-in password was not correct, please try again." : "ამჟამინდელი ლოგინის პაროლი არ იყო სწორი, გთხოვთ სცადოთ ახლიდან.", "Private key password successfully updated." : "პირადი გასაღების პაროლი წარმატებით განახლდა.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "საჭიროა შიფრაციის ძველი გასაღებების მიგრაცია (ownCloud <= 8.0) ახალებზე. გთხოვთ გაუშვათ 'occ encryption:migrate' ან დაუკავშირდეთ ადმინისტრატორს", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "შიფრაციის აპლიკაციისთვის არასწორი პირადი გასაღები. დაშიფრული ფაილებისადმი წვდომის აღსადგენად, გთხოვთ განაახლოთ თქვენი პირადი გასაღების პაროლი პირად პარამეტრებში.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "შიფრაციის აპლიკაცია მოქმედია, თუმცა თქვენი გასაღებები არაა ინიციალიზირებული. გთხოვთ გახვიდეთ და ახლიდან გაიაროთ ავტორიზაცია.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "შიფრაციის მოდულის გამოსაყენებლად გთხოვთ ადმინისტრატორის პარამეტრებიდან აამოქმედოთ შიფრაცია სერვერულ მხარეს.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "ერთჯერადი პაროლი სერვერული მხარის შიფრაციისთვის", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "ამ ფაილის გაშიფვრა ვერ ხერხდება, ალბათ ის გაზიარებული ფაილია. გთხოვთ სთხოვოთ ფაილის მფლობელს ახლიდან გააზიაროს ის თქვენთან.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "ამ ფაილის წაკითხვა არ ხერხდება, ალბათ ის გაზიარებული ფაილია. გთხოვთ სთხოვოთ ფაილის მფლობელს ახლიდან გააზიაროს ის თქვენთან.", + "Default encryption module" : "საწყისი შიფრაციის მოდული", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "გამარჯობა,\n\nადმინისტრატორმა აამოქმედა სერვერული მხარის შიფრაცია. თქვენი ფაილების შიფრაცია მოხდა პაროლით '%s'.\n\nგთხოვთ ვებ-ინტერფეისში გაიაროთ ავტორიზაცია, პირად პარამეტრებში გადახვიდეთ სექციაზე 'მარტივი შიფრაციის მოდული' და განაახლოთ შიფრაციის პაროლი, 'ძველი ლოგინის პაროლისა' და ამჟამინდელი ლოგინის პაროლის შეყვანით.\n\n", "The share will expire on %s." : "გაზიარება გაუქმდება %s-ზე.", "Cheers!" : "წარმატებები!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "გამარჯობა,

ადმინისტრატორმა აამოქმედა სერვერული მხარის შიფრაცია. თქვენი ფაილების შიფრაცია მოხდა პაროლით %s.

გთხოვთ ვებ-ინტერფეისში გაიაროთ ავტორიზაცია, პირად პარამეტრებში გადახვიდეთ სექციაზე 'მარტივი შიფრაციის მოდული' და განაახლოთ შიფრაციის პაროლი, 'ძველი ლოგინის პაროლისა' და ამჟამინდელი ლოგინის პაროლის შეყვანით.

", - "Default encryption module" : "საწყისი შიფრაციის მოდული", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "შიფრაციის აპლიკაცია მოქმედია, მაგრამ თქვენი გასაღებები არაა ინციალიზირებული, გთხოვთ გახვიდეთ და ახლიდან გაიაროთ ავტორიზაცია", "Encrypt the home storage" : "სახლის საცავის შიფრაცია", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "ამ არჩევნის ამოქმედება დაშიფრავს ყველა ფაილს, რომელიც განთავსებულია მთავარ საცავში, სხვა შემთხვევაში დაიშიფრება მოხოლოდ ექსტერნალურ საცავში არსებული ფაილები", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "ამ არჩევნის ამოქმედება, პაროლის დაკარგვის შემთხვევაში, საშუალებას მოგცემთ ახლიდან მოიპოვოთ წვდომა თქვენს დაშიფრულ ფაილებზე", "Enabled" : "მოქმედია", "Disabled" : "არაა მოქმედი", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "შიფრაციის აპლიკაცია მოქმედია, თუმცა თქვენი გასაღებები არაა ინიციალიზირებული, გთხოვთ გახვიდეთ და ახლიდან გაიაროთ ავტორიზაცია." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "საჭიროა შიფრაციის ძველი გასაღებების მიგრაცია (ownCloud <= 8.0) ახალებზე. გთხოვთ გაუშვათ 'occ encryption:migrate' ან დაუკავშირდეთ ადმინისტრატორს" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/encryption/l10n/ko.js b/apps/encryption/l10n/ko.js index 486ac2021520d..dad0c8a44073e 100644 --- a/apps/encryption/l10n/ko.js +++ b/apps/encryption/l10n/ko.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "이전 암호가 잘못되었습니다. 다시 시도하십시오.", "The current log-in password was not correct, please try again." : "현재 로그인 암호가 잘못되었습니다. 다시 시도하십시오.", "Private key password successfully updated." : "개인 키 암호가 성공적으로 업데이트 되었습니다.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "과거에 사용하였던(ownCloud <= 8.0) 암호화된 데이터에서 키를 이전해야 합니다. 'occ encryption:migrate'를 실행하거나 시스템 관리자에게 연락하십시오 ", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "암호화 앱의 개인 키가 잘못되었습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 업데이트해야 합니다.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "암호화 앱이 활성화되었으나 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "암호화 모듈을 사용하기 위해 관리자 설정에서 서버 측 암호화 기능을 활성화 시켜주세요", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "서버 측 암호화용 일회용 암호", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "이 파일을 복호화할 수 없습니다. 공유된 파일일 수도 있습니다. 파일 소유자에게 공유를 다시 요청하십시오.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "이 파일을 읽을 수 없습니다. 공유된 파일이라면 파일 소유자에게 연락하여 다시 공유해 달라고 요청하십시오.", + "Default encryption module" : "기본 암호화 모듈", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "안녕하세요,\n\n시스템 관리자가 서버 측 암호화를 활성화했습니다. 저장된 파일이 암호 '%s'으(로) 암호화되었습니다.\n\n웹 인터페이스에 로그인하여 개인 설정의 '기본 암호화 모듈'로 이동한 다음, '이전 로그인 암호' 필드에 위 암호를 입력하고 현재 로그인 암호로 변경하여 암호화 암호를 업데이트하십시오.\n\n", "The share will expire on %s." : "이 공유는 %s에 만료됩니다.", "Cheers!" : "감사합니다!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "안녕하세요,

시스템 관리자가 서버 측 암호화를 활성화했습니다. 저장된 파일이 암호 %s으(로) 암호화되었습니다.

웹 인터페이스에 로그인하여 개인 설정의 '기본 암호화 모듈'로 이동한 다음, '이전 로그인 암호' 필드에 위 암호를 입력하고 현재 로그인 암호로 변경하여 암호화 암호를 업데이트하십시오.

", - "Default encryption module" : "기본 암호화 모듈", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "암호화 앱이 활성화되어 있지만 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오", "Encrypt the home storage" : "홈 저장소 암호화", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "이 옵션을 사용하면 주 저장소에 있는 모드 파일을 암호화하며, 사용하지 않으면 외부 저장소의 파일만 암호화합니다", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "이 옵션을 사용하면 암호를 잊었을 때 암호화된 파일에 다시 접근할 수 있습니다", "Enabled" : "활성화", "Disabled" : "비활성화", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "암호화 앱이 활성화되어 있지만 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "과거에 사용하였던(ownCloud <= 8.0) 암호화된 데이터에서 키를 이전해야 합니다. 'occ encryption:migrate'를 실행하거나 시스템 관리자에게 연락하십시오 " }, "nplurals=1; plural=0;"); diff --git a/apps/encryption/l10n/ko.json b/apps/encryption/l10n/ko.json index bc32939343f10..a6f294215d5fc 100644 --- a/apps/encryption/l10n/ko.json +++ b/apps/encryption/l10n/ko.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "이전 암호가 잘못되었습니다. 다시 시도하십시오.", "The current log-in password was not correct, please try again." : "현재 로그인 암호가 잘못되었습니다. 다시 시도하십시오.", "Private key password successfully updated." : "개인 키 암호가 성공적으로 업데이트 되었습니다.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "과거에 사용하였던(ownCloud <= 8.0) 암호화된 데이터에서 키를 이전해야 합니다. 'occ encryption:migrate'를 실행하거나 시스템 관리자에게 연락하십시오 ", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "암호화 앱의 개인 키가 잘못되었습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 업데이트해야 합니다.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "암호화 앱이 활성화되었으나 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "암호화 모듈을 사용하기 위해 관리자 설정에서 서버 측 암호화 기능을 활성화 시켜주세요", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "서버 측 암호화용 일회용 암호", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "이 파일을 복호화할 수 없습니다. 공유된 파일일 수도 있습니다. 파일 소유자에게 공유를 다시 요청하십시오.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "이 파일을 읽을 수 없습니다. 공유된 파일이라면 파일 소유자에게 연락하여 다시 공유해 달라고 요청하십시오.", + "Default encryption module" : "기본 암호화 모듈", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "안녕하세요,\n\n시스템 관리자가 서버 측 암호화를 활성화했습니다. 저장된 파일이 암호 '%s'으(로) 암호화되었습니다.\n\n웹 인터페이스에 로그인하여 개인 설정의 '기본 암호화 모듈'로 이동한 다음, '이전 로그인 암호' 필드에 위 암호를 입력하고 현재 로그인 암호로 변경하여 암호화 암호를 업데이트하십시오.\n\n", "The share will expire on %s." : "이 공유는 %s에 만료됩니다.", "Cheers!" : "감사합니다!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "안녕하세요,

시스템 관리자가 서버 측 암호화를 활성화했습니다. 저장된 파일이 암호 %s으(로) 암호화되었습니다.

웹 인터페이스에 로그인하여 개인 설정의 '기본 암호화 모듈'로 이동한 다음, '이전 로그인 암호' 필드에 위 암호를 입력하고 현재 로그인 암호로 변경하여 암호화 암호를 업데이트하십시오.

", - "Default encryption module" : "기본 암호화 모듈", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "암호화 앱이 활성화되어 있지만 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오", "Encrypt the home storage" : "홈 저장소 암호화", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "이 옵션을 사용하면 주 저장소에 있는 모드 파일을 암호화하며, 사용하지 않으면 외부 저장소의 파일만 암호화합니다", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "이 옵션을 사용하면 암호를 잊었을 때 암호화된 파일에 다시 접근할 수 있습니다", "Enabled" : "활성화", "Disabled" : "비활성화", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "암호화 앱이 활성화되어 있지만 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "과거에 사용하였던(ownCloud <= 8.0) 암호화된 데이터에서 키를 이전해야 합니다. 'occ encryption:migrate'를 실행하거나 시스템 관리자에게 연락하십시오 " },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/encryption/l10n/lt_LT.js b/apps/encryption/l10n/lt_LT.js index a825224cf324d..7ac21150f4702 100644 --- a/apps/encryption/l10n/lt_LT.js +++ b/apps/encryption/l10n/lt_LT.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Neteisingas senas slaptažodis, prašome bandyti dar kartą.", "The current log-in password was not correct, please try again." : "Esamas prisijungimo slaptažodis buvo neteisingas, prašome bandyti dar kartą.", "Private key password successfully updated." : "Privataus rakto slaptažodis sėkmingai atnaujintas.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Jūs turite atlikti šifravimo raktų migraciją iš senojo (ownCloud <= 8.0) į naująjį. Prašome terminale įvykdyti \"occ encryption:migrate\" arba susisiekti su sistemos administratoriumi", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Šifravimo įskiepis neatpažįsta privataus rakto. Atnaujinkite slaptažodį skirtą privačiam raktui naudoti, kurį rasite asmeninių nustatymų skiltyje, skirtoje atstatyti prieigą prie šifruotų failų.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Šifravimo įskiepis veikia, tačiau privatus ir atkūrimo raktas nebuvo panaudotas. Pabandykite prisijungti iš naujo.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Administratoriaus nustatymuose įgalinkite šifravimą, jei norite naudoti šifravimo modulį.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "vienkartinis slaptažodis skirtas šifravimui", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Nepavyksta iššifruoti šio failo, tikriausiai, tai yra bendrinamas failas. Paprašykite failo savininko iš naujo pradėti bendrinti su jumis šį failą.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Nepavyksta perskaityti šio failo, tikriausiai, tai yra bendrinamas failas. Paprašykite failo savininko iš naujo pradėti bendrinti su jumis šį failą.", + "Default encryption module" : "Numatytasis šifravimo modulis", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Sveiki,\n\nAdministratorius įjungė šifravimą sistemoje. Jūsų failai buvo užšifruoti naudojantis šiuo slaptažodžiu: \"%s\".\n\nPrisijunkite prie sistemos, atidarykite nustatymus, pasirinkite skiltį \"Šifravimo įskiepis\" ir atnaujinkite savo šifravimui skirtą slaptažodį pasinaudodami šiuo ir savo prisijungimo slaptažodžiu.\n\n", "The share will expire on %s." : "Bendrinimo laikas pasibaigs %s.", "Cheers!" : "Sveikinimai!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Sveiki,

Administratorius įjungė šifravimą sistemoje. Jūsų failai buvo užšifruoti naudojantis šiuo slaptažodžiu: %s.

Prisijunkite prie sistemos, atidarykite nustatymus, pasirinkite skiltį \"Šifravimo įskiepis\" ir atnaujinkite savo šifravimui skirtą slaptažodį pasinaudodami šiuo ir savo prisijungimo slaptažodžiu.

", - "Default encryption module" : "Numatytasis šifravimo modulis", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Šifravimo įskiepis veikia, tačiau privatus ir atkūrimo raktas nebuvo panaudotas. Pabandykite prisijungti iš naujo", "Encrypt the home storage" : "Šifruoti visą saugyklą", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Ši parinktis užšifruos visus duomenis, esančius visoje saugykloje. Jei pasirinkimas šioje skiltyje liks išjungtas, tada duomenys, esantys išorinėje saugykloje bus užšifruoti.", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Šios parinkties įjungimas leis jums iš naujo gauti prieigą prie savo užšifruotų duomenų tuo atveju, jei prarasite slaptažodį", "Enabled" : "Įjungta", "Disabled" : "Išjungta", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Šifravimo programėlė yra įjungta, tačiau jūsų raktai nėra inicijuoti. Prašome atsijungti ir vėl prisijungti" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Jūs turite atlikti savo šifravimo raktų perkėlimą iš senojo šifravimo (ownCloud <= 8.0) į naująjį. Prašome terminale įvykdyti \"occ encryption:migrate\" arba susisiekti su sistemos administratoriumi" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/encryption/l10n/lt_LT.json b/apps/encryption/l10n/lt_LT.json index 13aaaacaafbb4..3a148b6d8ca47 100644 --- a/apps/encryption/l10n/lt_LT.json +++ b/apps/encryption/l10n/lt_LT.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Neteisingas senas slaptažodis, prašome bandyti dar kartą.", "The current log-in password was not correct, please try again." : "Esamas prisijungimo slaptažodis buvo neteisingas, prašome bandyti dar kartą.", "Private key password successfully updated." : "Privataus rakto slaptažodis sėkmingai atnaujintas.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Jūs turite atlikti šifravimo raktų migraciją iš senojo (ownCloud <= 8.0) į naująjį. Prašome terminale įvykdyti \"occ encryption:migrate\" arba susisiekti su sistemos administratoriumi", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Šifravimo įskiepis neatpažįsta privataus rakto. Atnaujinkite slaptažodį skirtą privačiam raktui naudoti, kurį rasite asmeninių nustatymų skiltyje, skirtoje atstatyti prieigą prie šifruotų failų.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Šifravimo įskiepis veikia, tačiau privatus ir atkūrimo raktas nebuvo panaudotas. Pabandykite prisijungti iš naujo.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Administratoriaus nustatymuose įgalinkite šifravimą, jei norite naudoti šifravimo modulį.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "vienkartinis slaptažodis skirtas šifravimui", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Nepavyksta iššifruoti šio failo, tikriausiai, tai yra bendrinamas failas. Paprašykite failo savininko iš naujo pradėti bendrinti su jumis šį failą.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Nepavyksta perskaityti šio failo, tikriausiai, tai yra bendrinamas failas. Paprašykite failo savininko iš naujo pradėti bendrinti su jumis šį failą.", + "Default encryption module" : "Numatytasis šifravimo modulis", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Sveiki,\n\nAdministratorius įjungė šifravimą sistemoje. Jūsų failai buvo užšifruoti naudojantis šiuo slaptažodžiu: \"%s\".\n\nPrisijunkite prie sistemos, atidarykite nustatymus, pasirinkite skiltį \"Šifravimo įskiepis\" ir atnaujinkite savo šifravimui skirtą slaptažodį pasinaudodami šiuo ir savo prisijungimo slaptažodžiu.\n\n", "The share will expire on %s." : "Bendrinimo laikas pasibaigs %s.", "Cheers!" : "Sveikinimai!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Sveiki,

Administratorius įjungė šifravimą sistemoje. Jūsų failai buvo užšifruoti naudojantis šiuo slaptažodžiu: %s.

Prisijunkite prie sistemos, atidarykite nustatymus, pasirinkite skiltį \"Šifravimo įskiepis\" ir atnaujinkite savo šifravimui skirtą slaptažodį pasinaudodami šiuo ir savo prisijungimo slaptažodžiu.

", - "Default encryption module" : "Numatytasis šifravimo modulis", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Šifravimo įskiepis veikia, tačiau privatus ir atkūrimo raktas nebuvo panaudotas. Pabandykite prisijungti iš naujo", "Encrypt the home storage" : "Šifruoti visą saugyklą", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Ši parinktis užšifruos visus duomenis, esančius visoje saugykloje. Jei pasirinkimas šioje skiltyje liks išjungtas, tada duomenys, esantys išorinėje saugykloje bus užšifruoti.", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Šios parinkties įjungimas leis jums iš naujo gauti prieigą prie savo užšifruotų duomenų tuo atveju, jei prarasite slaptažodį", "Enabled" : "Įjungta", "Disabled" : "Išjungta", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Šifravimo programėlė yra įjungta, tačiau jūsų raktai nėra inicijuoti. Prašome atsijungti ir vėl prisijungti" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Jūs turite atlikti savo šifravimo raktų perkėlimą iš senojo šifravimo (ownCloud <= 8.0) į naująjį. Prašome terminale įvykdyti \"occ encryption:migrate\" arba susisiekti su sistemos administratoriumi" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/apps/encryption/l10n/nb.js b/apps/encryption/l10n/nb.js index 5d987ce182b3c..d1f88a3f8f778 100644 --- a/apps/encryption/l10n/nb.js +++ b/apps/encryption/l10n/nb.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Det gamle passordet var feil. Prøv igjen.", "The current log-in password was not correct, please try again." : "Det nåværende innloggingspassordet var feil. Prøv igjen.", "Private key password successfully updated." : "Passord for privat nøkkel ble oppdatert.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Du må migrere krypteringsnøklene din fra den gamle krypteringen (ownCloud <= 8.0) til den nye. Kjør 'occ encryption:migrate' eller kontakt en administrator", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Ugyldig privat nøkkel for Krypteringsappen. Oppdater passordet for din private nøkkel i dine personlige innstillinger for å gjenopprette tilgang til de krypterte filene dine.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Program for kryptering er aktivert, men nøklene dine er ikke satt opp. Logg ut og inn igjen.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Skru på kryptering på tjenersiden i innstillingene for å bruke krypteringsmodulen.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "engangspassord for kryptering på tjenersiden", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Kan ikke dekryptere denne filen. Dette er sannsynligvis en delt fil. Spør eieren av filen om å dele den med deg på nytt.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Kan ikke lese denne filen, som sannsynligvis er en delt fil. Be eieren av filen om å dele den med deg på nytt.", + "Default encryption module" : "Standard krypteringsmodul", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hei,\n\nAdministratoren har aktivert kryptering på tjenersiden. Filene dine har blitt kryptert med passordet '%s'.\n\nlogg inn på vev-grensesnittet, gå til seksjonen 'grunnleggende krypteringsmodul' i dine personlige innstillinger og oppdater krypteringspassordet ditt ved å legge inn dette passordet i feltet 'gammelt påloggingspassord' sammen med ditt nåværende påloggingspassord.\n", "The share will expire on %s." : "Delingen vil opphøre %s.", "Cheers!" : "Ha det!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hei,

Administratoren har skrudd på kryptering på tjenersiden. Filene dine er blitt kryptert med passordet %s.

Logg inn på vev-grensesnittet, gå til seksjonen \"grunnleggende krypteringsmodul\" i dine personlige innstillinger og oppdater krypteringspassordet ditt ved å legge inn dette passordet i feltet \"gammelt påloggingspassord\" sammen med ditt nåværende påloggingspassord.

", - "Default encryption module" : "Standard krypteringsmodul", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Program for kryptering er aktivert men nøklene dine er ikke satt opp. Logg ut og inn igjen.", "Encrypt the home storage" : "Krypter hjemmelageret", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Aktivering av dette valget krypterer alle filer som er lagret på hovedlageret. Ellers vil kun filer på eksterne lagre bli kryptert.", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Aktivering av dette valget tillater deg å gjenerobre tilgang til dine krypterte filer i tilfelle du mister passordet ditt.", "Enabled" : "Aktiv", "Disabled" : "Inaktiv", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Program for kryptering er aktivert men nøklene dine er ikke satt opp. Logg ut og inn igjen." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Du må migrere krypteringsnøklene din fra den gamle krypteringen (ownCloud <= 8.0) til den nye. Kjør 'occ encryption:migrate' eller kontakt en administrator" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/nb.json b/apps/encryption/l10n/nb.json index 419eeaf1c1eb4..a0ae90b54c6ff 100644 --- a/apps/encryption/l10n/nb.json +++ b/apps/encryption/l10n/nb.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Det gamle passordet var feil. Prøv igjen.", "The current log-in password was not correct, please try again." : "Det nåværende innloggingspassordet var feil. Prøv igjen.", "Private key password successfully updated." : "Passord for privat nøkkel ble oppdatert.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Du må migrere krypteringsnøklene din fra den gamle krypteringen (ownCloud <= 8.0) til den nye. Kjør 'occ encryption:migrate' eller kontakt en administrator", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Ugyldig privat nøkkel for Krypteringsappen. Oppdater passordet for din private nøkkel i dine personlige innstillinger for å gjenopprette tilgang til de krypterte filene dine.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Program for kryptering er aktivert, men nøklene dine er ikke satt opp. Logg ut og inn igjen.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Skru på kryptering på tjenersiden i innstillingene for å bruke krypteringsmodulen.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "engangspassord for kryptering på tjenersiden", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Kan ikke dekryptere denne filen. Dette er sannsynligvis en delt fil. Spør eieren av filen om å dele den med deg på nytt.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Kan ikke lese denne filen, som sannsynligvis er en delt fil. Be eieren av filen om å dele den med deg på nytt.", + "Default encryption module" : "Standard krypteringsmodul", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hei,\n\nAdministratoren har aktivert kryptering på tjenersiden. Filene dine har blitt kryptert med passordet '%s'.\n\nlogg inn på vev-grensesnittet, gå til seksjonen 'grunnleggende krypteringsmodul' i dine personlige innstillinger og oppdater krypteringspassordet ditt ved å legge inn dette passordet i feltet 'gammelt påloggingspassord' sammen med ditt nåværende påloggingspassord.\n", "The share will expire on %s." : "Delingen vil opphøre %s.", "Cheers!" : "Ha det!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hei,

Administratoren har skrudd på kryptering på tjenersiden. Filene dine er blitt kryptert med passordet %s.

Logg inn på vev-grensesnittet, gå til seksjonen \"grunnleggende krypteringsmodul\" i dine personlige innstillinger og oppdater krypteringspassordet ditt ved å legge inn dette passordet i feltet \"gammelt påloggingspassord\" sammen med ditt nåværende påloggingspassord.

", - "Default encryption module" : "Standard krypteringsmodul", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Program for kryptering er aktivert men nøklene dine er ikke satt opp. Logg ut og inn igjen.", "Encrypt the home storage" : "Krypter hjemmelageret", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Aktivering av dette valget krypterer alle filer som er lagret på hovedlageret. Ellers vil kun filer på eksterne lagre bli kryptert.", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Aktivering av dette valget tillater deg å gjenerobre tilgang til dine krypterte filer i tilfelle du mister passordet ditt.", "Enabled" : "Aktiv", "Disabled" : "Inaktiv", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Program for kryptering er aktivert men nøklene dine er ikke satt opp. Logg ut og inn igjen." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Du må migrere krypteringsnøklene din fra den gamle krypteringen (ownCloud <= 8.0) til den nye. Kjør 'occ encryption:migrate' eller kontakt en administrator" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/nl.js b/apps/encryption/l10n/nl.js index 1dc6bfad79573..26f1ca1c3085b 100644 --- a/apps/encryption/l10n/nl.js +++ b/apps/encryption/l10n/nl.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Het oude wachtwoord was onjuist, probeer het opnieuw.", "The current log-in password was not correct, please try again." : "Het huidige inlogwachtwoord was niet juist, probeer het opnieuw.", "Private key password successfully updated." : "Privésleutel succesvol bijgewerkt.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Je moet je cryptosleutels van de oude versleuteling (ownCloud <= 8.0) migreren naar de nieuwe. Start 'occ encryption:migrate' of neem contact op met je beheerder", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Ongeldige privésleutel voor de crypto app. Werk het privésleutel wachtwoord bij in je persoonlijke instellingen om opnieuw toegang te krijgen tot je versleutelde bestanden.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Crypto app is ingeschakeld, maar je sleutels werden niet geïnitialiseerd. Log uit en log daarna opnieuw in.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Activeer de server-encryptie in de beheerdersinstellingen om de encryptiemodule te kunnen gebruiken.", @@ -31,14 +30,14 @@ OC.L10N.register( "one-time password for server-side-encryption" : "eenmalig wachtwoord voor server-side versleuteling", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Kan dit bestand niet ontcijferen, waarschijnlijk is het een gedeeld bestand, Vraag de eigenaar om het bestand opnieuw met je te delen.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Kan dit bestand niet lezen, waarschijnlijk is het een gedeeld bestand. Vraag de eigenaar om het bestand opnieuw met je te delen.", + "Default encryption module" : "Standaard cryptomodule", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hallo daar,\n\nde beheerder heeft server-side versleuteling ingeschakeld. Je bestanden werden versleuteld met het wachtwoord '%s'.\n\nLogin op de webinterface, ga naar 'basis cryptomodule' in je persoonlijke instellingen en pas je cryptowachtwoord aan door dit wachtwoord in het 'oude inlog wachtwoord' veld in te vullen alsmede in je huidige inlogwachtwoord.\n", "The share will expire on %s." : "De share vervalt op %s.", "Cheers!" : "Proficiat!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hallo daar,

de beheerder heeft server-side versleuteling ingeschakeld. Je bestanden werden versleuteld met het wachtwoord %s.

Login op de webinterface, ga naar 'basis cryptomodule' in je persoonlijke instellingen en pas je cryptowachtwoord aan door dit wachtwoord in het \"oude inlog wachtwoord\" veld in te vullen alsmede in je huidige inlogwachtwoord.

", - "Default encryption module" : "Standaard cryptomodule", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Crypto app is ingeschakeld, maar je sleutels werden niet geïnitialiseerd. Log uit en log daarna opnieuw in.", "Encrypt the home storage" : "Versleutel de eigen serveropslag", - "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Het inschakelen van deze optie zorgt voor versleutelen van alle bestanden op do hoofdopslag, anders worden alleen bestanden op externe opslag versleuteld", + "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Het inschakelen van deze optie zorgt voor versleutelen van alle bestanden op de hoofdopslag, anders worden alleen bestanden op externe opslag versleuteld", "Enable recovery key" : "Activeer herstelsleutel", "Disable recovery key" : "Deactiveer herstelsleutel", "The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password." : "De herstelsleutel is een extra cryptografische sleutel die wordt gebruikt om bestanden te versleutelen. Die maakt het mogelijk bestanden te herstellen als de gebruiker zijn of haar wachtwoord vergeet.", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Het activeren van deze optie maakt het mogelijk om je versleutelde bestanden te benaderen als je wachtwoord kwijt is", "Enabled" : "Ingeschakeld", "Disabled" : "Uitgeschakeld", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Crypto app is ingeschakeld, maar je sleutels werden niet geïnitialiseerd. Log uit en log daarna opnieuw in." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Je moet je cryptosleutels van de oude versleuteling (ownCloud <= 8.0) migreren naar de nieuwe. Start 'occ encryption:migrate' of neem contact op met je beheerder" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/nl.json b/apps/encryption/l10n/nl.json index abdb576761186..435cda5810b8a 100644 --- a/apps/encryption/l10n/nl.json +++ b/apps/encryption/l10n/nl.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Het oude wachtwoord was onjuist, probeer het opnieuw.", "The current log-in password was not correct, please try again." : "Het huidige inlogwachtwoord was niet juist, probeer het opnieuw.", "Private key password successfully updated." : "Privésleutel succesvol bijgewerkt.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Je moet je cryptosleutels van de oude versleuteling (ownCloud <= 8.0) migreren naar de nieuwe. Start 'occ encryption:migrate' of neem contact op met je beheerder", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Ongeldige privésleutel voor de crypto app. Werk het privésleutel wachtwoord bij in je persoonlijke instellingen om opnieuw toegang te krijgen tot je versleutelde bestanden.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Crypto app is ingeschakeld, maar je sleutels werden niet geïnitialiseerd. Log uit en log daarna opnieuw in.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Activeer de server-encryptie in de beheerdersinstellingen om de encryptiemodule te kunnen gebruiken.", @@ -29,14 +28,14 @@ "one-time password for server-side-encryption" : "eenmalig wachtwoord voor server-side versleuteling", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Kan dit bestand niet ontcijferen, waarschijnlijk is het een gedeeld bestand, Vraag de eigenaar om het bestand opnieuw met je te delen.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Kan dit bestand niet lezen, waarschijnlijk is het een gedeeld bestand. Vraag de eigenaar om het bestand opnieuw met je te delen.", + "Default encryption module" : "Standaard cryptomodule", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hallo daar,\n\nde beheerder heeft server-side versleuteling ingeschakeld. Je bestanden werden versleuteld met het wachtwoord '%s'.\n\nLogin op de webinterface, ga naar 'basis cryptomodule' in je persoonlijke instellingen en pas je cryptowachtwoord aan door dit wachtwoord in het 'oude inlog wachtwoord' veld in te vullen alsmede in je huidige inlogwachtwoord.\n", "The share will expire on %s." : "De share vervalt op %s.", "Cheers!" : "Proficiat!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hallo daar,

de beheerder heeft server-side versleuteling ingeschakeld. Je bestanden werden versleuteld met het wachtwoord %s.

Login op de webinterface, ga naar 'basis cryptomodule' in je persoonlijke instellingen en pas je cryptowachtwoord aan door dit wachtwoord in het \"oude inlog wachtwoord\" veld in te vullen alsmede in je huidige inlogwachtwoord.

", - "Default encryption module" : "Standaard cryptomodule", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Crypto app is ingeschakeld, maar je sleutels werden niet geïnitialiseerd. Log uit en log daarna opnieuw in.", "Encrypt the home storage" : "Versleutel de eigen serveropslag", - "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Het inschakelen van deze optie zorgt voor versleutelen van alle bestanden op do hoofdopslag, anders worden alleen bestanden op externe opslag versleuteld", + "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Het inschakelen van deze optie zorgt voor versleutelen van alle bestanden op de hoofdopslag, anders worden alleen bestanden op externe opslag versleuteld", "Enable recovery key" : "Activeer herstelsleutel", "Disable recovery key" : "Deactiveer herstelsleutel", "The recovery key is an extra encryption key that is used to encrypt files. It allows recovery of a user's files if the user forgets his or her password." : "De herstelsleutel is een extra cryptografische sleutel die wordt gebruikt om bestanden te versleutelen. Die maakt het mogelijk bestanden te herstellen als de gebruiker zijn of haar wachtwoord vergeet.", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Het activeren van deze optie maakt het mogelijk om je versleutelde bestanden te benaderen als je wachtwoord kwijt is", "Enabled" : "Ingeschakeld", "Disabled" : "Uitgeschakeld", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Crypto app is ingeschakeld, maar je sleutels werden niet geïnitialiseerd. Log uit en log daarna opnieuw in." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Je moet je cryptosleutels van de oude versleuteling (ownCloud <= 8.0) migreren naar de nieuwe. Start 'occ encryption:migrate' of neem contact op met je beheerder" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/pl.js b/apps/encryption/l10n/pl.js index e6ac09a398905..b5acec8d1e85f 100644 --- a/apps/encryption/l10n/pl.js +++ b/apps/encryption/l10n/pl.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Stare hasło nie było poprawne. Spróbuj jeszcze raz.", "The current log-in password was not correct, please try again." : "Obecne hasło logowania nie było poprawne. Spróbuj ponownie.", "Private key password successfully updated." : "Pomyślnie zaktualizowano hasło klucza prywatnego.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Musisz przenieść swoje klucze szyfrowania ze starego sposobu szyfrowania (Nextcloud <= 8,0) na nowy. Proszę uruchomić 'occ encryption:migrate' lub skontaktować się z administratorem", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Nieprawidłowy klucz prywatny do szyfrowania aplikacji. Należy zaktualizować hasło klucza prywatnego w ustawieniach osobistych, aby odzyskać dostęp do zaszyfrowanych plików.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Aplikacja szyfrująca jest włączona, ale Twoje klucze nie są zainicjowane. Proszę się wylogować i zalogować ponownie.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Aby móc korzystać z modułu szyfrowania trzeba włączyć w panelu administratora szyfrowanie po stronie serwera. ", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "jednorazowe hasło do serwera szyfrowania strony", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Nie można odszyfrować tego pliku, prawdopodobnie jest to plik udostępniony. Poproś właściciela pliku o ponowne udostępnianie pliku Tobie.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Nie można odczytać tego pliku, prawdopodobnie plik nie jest współdzielony. Proszę zwrócić się do właściciela pliku, aby udostępnił go dla Ciebie.", + "Default encryption module" : "Domyślny moduł szyfrujący", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hej tam,\n\nadmin włączył szyfrowanie po stronie serwera. Twoje pliki zostały zaszyfrowane przy użyciu hasła '%s'.\n\nProszę zalogować się do interfejsu internetowego, przejdź do sekcji Nextcloud podstawowy moduł szyfrowania, następnie osobiste ustawienia i zaktualizuj hasło szyfrowania wpisując aktualny login, w polu stare hasło logowania wpisz stare hasło, a następnie aktualne hasło.\n\n", "The share will expire on %s." : "Ten zasób wygaśnie %s", "Cheers!" : "Dzięki!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hej tam,

admin włączył szyfrowanie po stronie serwera. Twoje pliki zostały zaszyfrowane przy użyciu hasła %s.

Proszę zalogować się do interfejsu internetowego, przejdź do sekcji Nextcloud podstawowy moduł szyfrowania, następnie osobiste ustawienia i zaktualizuj hasło szyfrowania wpisując aktualny login, w polu stare hasło logowania wpisz stare hasło, a następnie aktualne hasło.

", - "Default encryption module" : "Domyślny moduł szyfrujący", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Szyfrowanie w aplikacji jest włączone, ale klucze nie są zainicjowane. Prosimy wylogować się i ponownie zalogować się.", "Encrypt the home storage" : "Szyfrowanie przechowywanie w domu", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Włączenie tej opcji spowoduje szyfrowanie wszystkich plików zapisanych na pamięci wewnętrznej. W innym wypadku szyfrowane będą tylko pliki na pamięci zewnętrznej.", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Włączenie tej opcji umożliwia otrzymać dostęp do zaszyfrowanych plików w przypadku utraty hasła", "Enabled" : "Włączone", "Disabled" : "Wyłączone", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikacja szyfrująca jest aktywna, ale Twoje klucze nie zostały zainicjowane, proszę wyloguj się i zaloguj ponownie." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Musisz przenieść swoje klucze szyfrowania ze starego sposobu szyfrowania (Nextcloud <= 8,0) na nowy. Proszę uruchomić 'occ encryption:migrate' lub skontaktować się z administratorem" }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/encryption/l10n/pl.json b/apps/encryption/l10n/pl.json index 06771089d3aae..cf0af345cc246 100644 --- a/apps/encryption/l10n/pl.json +++ b/apps/encryption/l10n/pl.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Stare hasło nie było poprawne. Spróbuj jeszcze raz.", "The current log-in password was not correct, please try again." : "Obecne hasło logowania nie było poprawne. Spróbuj ponownie.", "Private key password successfully updated." : "Pomyślnie zaktualizowano hasło klucza prywatnego.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Musisz przenieść swoje klucze szyfrowania ze starego sposobu szyfrowania (Nextcloud <= 8,0) na nowy. Proszę uruchomić 'occ encryption:migrate' lub skontaktować się z administratorem", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Nieprawidłowy klucz prywatny do szyfrowania aplikacji. Należy zaktualizować hasło klucza prywatnego w ustawieniach osobistych, aby odzyskać dostęp do zaszyfrowanych plików.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Aplikacja szyfrująca jest włączona, ale Twoje klucze nie są zainicjowane. Proszę się wylogować i zalogować ponownie.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Aby móc korzystać z modułu szyfrowania trzeba włączyć w panelu administratora szyfrowanie po stronie serwera. ", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "jednorazowe hasło do serwera szyfrowania strony", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Nie można odszyfrować tego pliku, prawdopodobnie jest to plik udostępniony. Poproś właściciela pliku o ponowne udostępnianie pliku Tobie.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Nie można odczytać tego pliku, prawdopodobnie plik nie jest współdzielony. Proszę zwrócić się do właściciela pliku, aby udostępnił go dla Ciebie.", + "Default encryption module" : "Domyślny moduł szyfrujący", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hej tam,\n\nadmin włączył szyfrowanie po stronie serwera. Twoje pliki zostały zaszyfrowane przy użyciu hasła '%s'.\n\nProszę zalogować się do interfejsu internetowego, przejdź do sekcji Nextcloud podstawowy moduł szyfrowania, następnie osobiste ustawienia i zaktualizuj hasło szyfrowania wpisując aktualny login, w polu stare hasło logowania wpisz stare hasło, a następnie aktualne hasło.\n\n", "The share will expire on %s." : "Ten zasób wygaśnie %s", "Cheers!" : "Dzięki!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hej tam,

admin włączył szyfrowanie po stronie serwera. Twoje pliki zostały zaszyfrowane przy użyciu hasła %s.

Proszę zalogować się do interfejsu internetowego, przejdź do sekcji Nextcloud podstawowy moduł szyfrowania, następnie osobiste ustawienia i zaktualizuj hasło szyfrowania wpisując aktualny login, w polu stare hasło logowania wpisz stare hasło, a następnie aktualne hasło.

", - "Default encryption module" : "Domyślny moduł szyfrujący", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Szyfrowanie w aplikacji jest włączone, ale klucze nie są zainicjowane. Prosimy wylogować się i ponownie zalogować się.", "Encrypt the home storage" : "Szyfrowanie przechowywanie w domu", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Włączenie tej opcji spowoduje szyfrowanie wszystkich plików zapisanych na pamięci wewnętrznej. W innym wypadku szyfrowane będą tylko pliki na pamięci zewnętrznej.", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Włączenie tej opcji umożliwia otrzymać dostęp do zaszyfrowanych plików w przypadku utraty hasła", "Enabled" : "Włączone", "Disabled" : "Wyłączone", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikacja szyfrująca jest aktywna, ale Twoje klucze nie zostały zainicjowane, proszę wyloguj się i zaloguj ponownie." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Musisz przenieść swoje klucze szyfrowania ze starego sposobu szyfrowania (Nextcloud <= 8,0) na nowy. Proszę uruchomić 'occ encryption:migrate' lub skontaktować się z administratorem" },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" } \ No newline at end of file diff --git a/apps/encryption/l10n/pt_BR.js b/apps/encryption/l10n/pt_BR.js index f57244b6d6672..14af8aeadcb16 100644 --- a/apps/encryption/l10n/pt_BR.js +++ b/apps/encryption/l10n/pt_BR.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "A senha antiga não estava correta, por favor tente novamente.", "The current log-in password was not correct, please try again." : "A senha atual de acesso não estava correta, por favor tente novamente.", "Private key password successfully updated." : "Senha de chave privada atualizada com sucesso.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Você precisa migrar suas chaves de criptografia a partir da antiga criptografia (ownCloud <= 8,0) para a nova. Por favor, execute 'occ encryption:migrate' ou contate o administrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Chave privada inválida para o aplicativo de criptografia. Atualize a senha da sua chave privada nas configurações pessoais para recuperar o acesso aos seus arquivos criptografados.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "O aplicativo de criptografia está habilitado mas suas chaves não foram inicializadas. Por favor, saia e entre novamente.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Habilite a criptografia do lado do servidor em configurações administrativas a fim de usar o módulo de criptografia.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "senha de uso único para criptografia do lado do servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Este arquivo não pode ser descriptografado pois provavelmente é um arquivo compartilhado. Por favor, peça ao dono do arquivo para recompartilhá-lo com você.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Não foi possível ler este arquivo pois provavelmente é um arquivo compartilhado. Por favor, peça ao dono do arquivo para recompartilhá-lo com você.", + "Default encryption module" : "Módulo de criptografia padrão", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Olá,\n\nO administrador habilitou a criptografia do lado do servidor. Os seus arquivos foram criptografados usando a senha '%s'.\n\nPor favor faça o login na interface web, vá para a seção 'módulo de criptografia básico' das suas definições pessoais e atualize sua senha de criptografia, inserindo esta senha no campo 'senha antiga de log-in' e sua senha de login atual.\n\n", "The share will expire on %s." : "O compartilhamento irá expirar em %s.", "Cheers!" : "Saudações!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Olá,

o administrador habilitou a criptografia do lado do servidor. Os seus arquivos foram criptografados usando a senha %s.

Por favor, faça o login na interface web, vá para a seção 'módulo de criptografia básico' das suas definições pessoais e atualize sua senha de criptografia, inserindo esta senha no campo 'senha antiga de log-in' e sua senha de login atual.

", - "Default encryption module" : "Módulo de criptografia padrão", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "O aplicativo de criptografia está habilitado, mas suas chaves não foram inicializadas. Por favor, saia e entre novamente.", "Encrypt the home storage" : "Criptografar a pasta de armazenamento home", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Ativar essa opção irá criptografar todos os arquivos do armazenamento principal, caso contrário, apenas arquivos no armazenamento externo serão criptografados", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Ativar essa opção vai permitir que você obtenha novamente acesso aos seus arquivos criptografados em caso de perda de senha", "Enabled" : "Habilitado", "Disabled" : "Desabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "O aplicativo de criptografia está habilitado, mas as chaves não estão inicializadas. Por favor, saia e entre novamente" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Você precisa migrar suas chaves de criptografia a partir da antiga criptografia (ownCloud <= 8,0) para a nova. Por favor, execute 'occ encryption:migrate' ou contate o administrador" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/encryption/l10n/pt_BR.json b/apps/encryption/l10n/pt_BR.json index 300ebf055d96d..79ab93667a57c 100644 --- a/apps/encryption/l10n/pt_BR.json +++ b/apps/encryption/l10n/pt_BR.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "A senha antiga não estava correta, por favor tente novamente.", "The current log-in password was not correct, please try again." : "A senha atual de acesso não estava correta, por favor tente novamente.", "Private key password successfully updated." : "Senha de chave privada atualizada com sucesso.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Você precisa migrar suas chaves de criptografia a partir da antiga criptografia (ownCloud <= 8,0) para a nova. Por favor, execute 'occ encryption:migrate' ou contate o administrador", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Chave privada inválida para o aplicativo de criptografia. Atualize a senha da sua chave privada nas configurações pessoais para recuperar o acesso aos seus arquivos criptografados.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "O aplicativo de criptografia está habilitado mas suas chaves não foram inicializadas. Por favor, saia e entre novamente.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Habilite a criptografia do lado do servidor em configurações administrativas a fim de usar o módulo de criptografia.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "senha de uso único para criptografia do lado do servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Este arquivo não pode ser descriptografado pois provavelmente é um arquivo compartilhado. Por favor, peça ao dono do arquivo para recompartilhá-lo com você.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Não foi possível ler este arquivo pois provavelmente é um arquivo compartilhado. Por favor, peça ao dono do arquivo para recompartilhá-lo com você.", + "Default encryption module" : "Módulo de criptografia padrão", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Olá,\n\nO administrador habilitou a criptografia do lado do servidor. Os seus arquivos foram criptografados usando a senha '%s'.\n\nPor favor faça o login na interface web, vá para a seção 'módulo de criptografia básico' das suas definições pessoais e atualize sua senha de criptografia, inserindo esta senha no campo 'senha antiga de log-in' e sua senha de login atual.\n\n", "The share will expire on %s." : "O compartilhamento irá expirar em %s.", "Cheers!" : "Saudações!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Olá,

o administrador habilitou a criptografia do lado do servidor. Os seus arquivos foram criptografados usando a senha %s.

Por favor, faça o login na interface web, vá para a seção 'módulo de criptografia básico' das suas definições pessoais e atualize sua senha de criptografia, inserindo esta senha no campo 'senha antiga de log-in' e sua senha de login atual.

", - "Default encryption module" : "Módulo de criptografia padrão", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "O aplicativo de criptografia está habilitado, mas suas chaves não foram inicializadas. Por favor, saia e entre novamente.", "Encrypt the home storage" : "Criptografar a pasta de armazenamento home", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Ativar essa opção irá criptografar todos os arquivos do armazenamento principal, caso contrário, apenas arquivos no armazenamento externo serão criptografados", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Ativar essa opção vai permitir que você obtenha novamente acesso aos seus arquivos criptografados em caso de perda de senha", "Enabled" : "Habilitado", "Disabled" : "Desabilitado", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "O aplicativo de criptografia está habilitado, mas as chaves não estão inicializadas. Por favor, saia e entre novamente" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Você precisa migrar suas chaves de criptografia a partir da antiga criptografia (ownCloud <= 8,0) para a nova. Por favor, execute 'occ encryption:migrate' ou contate o administrador" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/pt_PT.js b/apps/encryption/l10n/pt_PT.js index 417076ae5143b..69f9e0baaed46 100644 --- a/apps/encryption/l10n/pt_PT.js +++ b/apps/encryption/l10n/pt_PT.js @@ -21,16 +21,21 @@ OC.L10N.register( "The old password was not correct, please try again." : "A palavra-passe antiga não estava correta, por favor, tente de novo.", "The current log-in password was not correct, please try again." : "A palavra-passe de iniciar a sessão atual não estava correta, por favor, tente de novo.", "Private key password successfully updated." : "A palavra-passe da chave privada foi atualizada com sucesso. ", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Precisa de migrar as suas chaves de encriptação da encriptação antiga (ownCloud <= 8.0) para a nova. Por favor, execute 'occ encryption:migrate' ou contacte o seu administrador", + "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Chave privada inválida para a aplicação de cifra. Por favor actualize a sua chave privada nas definições pessoais para recuperar acesso aos seus ficheiros cifrados.", + "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Aplicação de cifra está activa, mas as suas chaves não estão inicializaras. Por favor, faça logout e autentique-se novamente.", + "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor active cifragem no servidor nas definições de administrador para usar o módulo de cifra.", + "Encryption app is enabled and ready" : "Aplicação de cifra activa e pronta a usar", "Bad Signature" : "Má Assinatura", "Missing Signature" : "Assinatura em Falta", "one-time password for server-side-encryption" : "palavra-passe de utilização única para a encriptação do lado do servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Não é possível desencriptar este ficheiro, provavelmente é um ficheiro partilhado. Por favor, peça ao proprietário do ficheiro para voltar a partilhar o ficheiro consigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Não é possível ler este ficheiro, provavelmente isto é um ficheiro compartilhado. Por favor, peça ao dono do ficheiro para voltar a partilhar o ficheiro consigo.", + "Default encryption module" : "Módulo de cifra padrão", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Olá,\n\no administrador ativou a encriptação do lado do servidor. Os teus ficheiros foram encriptados usando a palavra-passe '%s'.\n\nPor favor, faz login via browser, vai à secção 'Módulo de encriptação básica' nas tuas definições pessoais e atualiza a tua palavra-passe de encriptação ao introduzir esta palavra-passe no campo 'palavra-passe antiga' e também a tua palavra-passe atual.\n\n", "The share will expire on %s." : "Esta partilha irá expirar em %s.", "Cheers!" : "Parabéns!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Olá,

o administrador ativou a encriptação do lado do servidor. Os teus ficheiros foram encriptados usando a palavra-passe %s.

Por favor, faz login via browser, vai à secção 'Módulo de encriptação básica' nas tuas definições pessoais e atualiza a tua palavra-passe de encriptação ao introduzir esta palavra-passe no campo 'palavra-passe antiga' e também a tua palavra-passe atual.

", + "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Aplicação de cifra está activa, mas as suas chaves não estão inicializaras. Por favor, faça logout e autentique-se novamente.", "Encrypt the home storage" : "Encriptar o armazenamento do início", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Ativando esta opção todos os ficheiros armazenados no armazenamento principal serão encriptados, senão serão encriptados todos os ficheiros no armazenamento externo", "Enable recovery key" : "Ativar a chave de recuperação", @@ -43,6 +48,7 @@ OC.L10N.register( "New recovery key password" : "Nova palavra-passe da chave de recuperação", "Repeat new recovery key password" : "Repetir palavra-passe da chave de recuperação", "Change Password" : "Alterar Palavra-passe", + "Basic encryption module" : "Módulo de cifra básica", "Your private key password no longer matches your log-in password." : "A palavra-passe da sua chave privada já não coincide com a palavra-passe da sua sessão.", "Set your old private key password to your current log-in password:" : "Defina a sua palavra-passe antiga da chave privada para a sua palavra-passe atual da sessão:", " If you don't remember your old password you can ask your administrator to recover your files." : "Se não se lembra da palavra-passe antiga pode pedir ao seu administrador para recuperar os seus ficheiros. ", @@ -53,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Ao ativar esta opção, irá fazer com que volte a obter o acesso aos seus ficheiros encriptados, se perder a palavra-passe", "Enabled" : "Ativada", "Disabled" : "Desativada", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "A Aplicação de Encriptação está ativada, mas as suas chaves não inicializaram. Por favor, termine a sessão e inicie-a novamente" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Precisa de migrar as suas chaves de encriptação da encriptação antiga (ownCloud <= 8.0) para a nova. Por favor, execute 'occ encryption:migrate' ou contacte o seu administrador" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/pt_PT.json b/apps/encryption/l10n/pt_PT.json index 3759d4859ab2f..d4c48019961f3 100644 --- a/apps/encryption/l10n/pt_PT.json +++ b/apps/encryption/l10n/pt_PT.json @@ -19,16 +19,21 @@ "The old password was not correct, please try again." : "A palavra-passe antiga não estava correta, por favor, tente de novo.", "The current log-in password was not correct, please try again." : "A palavra-passe de iniciar a sessão atual não estava correta, por favor, tente de novo.", "Private key password successfully updated." : "A palavra-passe da chave privada foi atualizada com sucesso. ", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Precisa de migrar as suas chaves de encriptação da encriptação antiga (ownCloud <= 8.0) para a nova. Por favor, execute 'occ encryption:migrate' ou contacte o seu administrador", + "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Chave privada inválida para a aplicação de cifra. Por favor actualize a sua chave privada nas definições pessoais para recuperar acesso aos seus ficheiros cifrados.", + "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Aplicação de cifra está activa, mas as suas chaves não estão inicializaras. Por favor, faça logout e autentique-se novamente.", + "Please enable server side encryption in the admin settings in order to use the encryption module." : "Por favor active cifragem no servidor nas definições de administrador para usar o módulo de cifra.", + "Encryption app is enabled and ready" : "Aplicação de cifra activa e pronta a usar", "Bad Signature" : "Má Assinatura", "Missing Signature" : "Assinatura em Falta", "one-time password for server-side-encryption" : "palavra-passe de utilização única para a encriptação do lado do servidor", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Não é possível desencriptar este ficheiro, provavelmente é um ficheiro partilhado. Por favor, peça ao proprietário do ficheiro para voltar a partilhar o ficheiro consigo.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Não é possível ler este ficheiro, provavelmente isto é um ficheiro compartilhado. Por favor, peça ao dono do ficheiro para voltar a partilhar o ficheiro consigo.", + "Default encryption module" : "Módulo de cifra padrão", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Olá,\n\no administrador ativou a encriptação do lado do servidor. Os teus ficheiros foram encriptados usando a palavra-passe '%s'.\n\nPor favor, faz login via browser, vai à secção 'Módulo de encriptação básica' nas tuas definições pessoais e atualiza a tua palavra-passe de encriptação ao introduzir esta palavra-passe no campo 'palavra-passe antiga' e também a tua palavra-passe atual.\n\n", "The share will expire on %s." : "Esta partilha irá expirar em %s.", "Cheers!" : "Parabéns!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Olá,

o administrador ativou a encriptação do lado do servidor. Os teus ficheiros foram encriptados usando a palavra-passe %s.

Por favor, faz login via browser, vai à secção 'Módulo de encriptação básica' nas tuas definições pessoais e atualiza a tua palavra-passe de encriptação ao introduzir esta palavra-passe no campo 'palavra-passe antiga' e também a tua palavra-passe atual.

", + "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Aplicação de cifra está activa, mas as suas chaves não estão inicializaras. Por favor, faça logout e autentique-se novamente.", "Encrypt the home storage" : "Encriptar o armazenamento do início", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Ativando esta opção todos os ficheiros armazenados no armazenamento principal serão encriptados, senão serão encriptados todos os ficheiros no armazenamento externo", "Enable recovery key" : "Ativar a chave de recuperação", @@ -41,6 +46,7 @@ "New recovery key password" : "Nova palavra-passe da chave de recuperação", "Repeat new recovery key password" : "Repetir palavra-passe da chave de recuperação", "Change Password" : "Alterar Palavra-passe", + "Basic encryption module" : "Módulo de cifra básica", "Your private key password no longer matches your log-in password." : "A palavra-passe da sua chave privada já não coincide com a palavra-passe da sua sessão.", "Set your old private key password to your current log-in password:" : "Defina a sua palavra-passe antiga da chave privada para a sua palavra-passe atual da sessão:", " If you don't remember your old password you can ask your administrator to recover your files." : "Se não se lembra da palavra-passe antiga pode pedir ao seu administrador para recuperar os seus ficheiros. ", @@ -51,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Ao ativar esta opção, irá fazer com que volte a obter o acesso aos seus ficheiros encriptados, se perder a palavra-passe", "Enabled" : "Ativada", "Disabled" : "Desativada", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "A Aplicação de Encriptação está ativada, mas as suas chaves não inicializaram. Por favor, termine a sessão e inicie-a novamente" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Precisa de migrar as suas chaves de encriptação da encriptação antiga (ownCloud <= 8.0) para a nova. Por favor, execute 'occ encryption:migrate' ou contacte o seu administrador" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/ro.js b/apps/encryption/l10n/ro.js index 061fc0b604498..6d47fc4053605 100644 --- a/apps/encryption/l10n/ro.js +++ b/apps/encryption/l10n/ro.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Parola veche nu este cea corectă, încearcă din nou.", "The current log-in password was not correct, please try again." : "Parola curentă de autentificare nu este corectă, încearcă din nou.", "Private key password successfully updated." : "Parola cheii private a fost actualizată cu succes.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Este necesar să migrezi cheile de criptare de la vechiul algoritm (ownCloud <= 8.0) la cel nou. Rulează 'occ encryption:migrate' sau contactează-ți administratorul.", "Bad Signature" : "Semnătură greșită", "Missing Signature" : "Semnătură lipsă", "The share will expire on %s." : "Partajarea va expira în data de %s.", @@ -35,7 +34,6 @@ OC.L10N.register( "New recovery key password" : "Parola nouă a cheii de recuperare", "Repeat new recovery key password" : "Repetă parola nouă a cheii de recuperare", "Change Password" : "Schimbă parola", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplicația de criptare este activată dar cheile nu sunt inițializate, te rugăm reautentifică-te", "Your private key password no longer matches your log-in password." : "Parola cheii tale private nu se mai potrivește cu parola pentru autentificare.", "Old log-in password" : "Parola veche pentru autentificare", "Current log-in password" : "Parola curentă pentru autentificare", @@ -43,6 +41,7 @@ OC.L10N.register( "Enable password recovery:" : "Activează recuperarea parolei:", "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Activarea acestei opțiuni îți va permite să redobândești accesul la fișierele tale criptate în cazul pierderii parolei", "Enabled" : "Activat", - "Disabled" : "Dezactivat" + "Disabled" : "Dezactivat", + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Este necesar să migrezi cheile de criptare de la vechiul algoritm (ownCloud <= 8.0) la cel nou. Rulează 'occ encryption:migrate' sau contactează-ți administratorul." }, "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"); diff --git a/apps/encryption/l10n/ro.json b/apps/encryption/l10n/ro.json index 5c548ea34db3a..4af0082a23fa1 100644 --- a/apps/encryption/l10n/ro.json +++ b/apps/encryption/l10n/ro.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Parola veche nu este cea corectă, încearcă din nou.", "The current log-in password was not correct, please try again." : "Parola curentă de autentificare nu este corectă, încearcă din nou.", "Private key password successfully updated." : "Parola cheii private a fost actualizată cu succes.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Este necesar să migrezi cheile de criptare de la vechiul algoritm (ownCloud <= 8.0) la cel nou. Rulează 'occ encryption:migrate' sau contactează-ți administratorul.", "Bad Signature" : "Semnătură greșită", "Missing Signature" : "Semnătură lipsă", "The share will expire on %s." : "Partajarea va expira în data de %s.", @@ -33,7 +32,6 @@ "New recovery key password" : "Parola nouă a cheii de recuperare", "Repeat new recovery key password" : "Repetă parola nouă a cheii de recuperare", "Change Password" : "Schimbă parola", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplicația de criptare este activată dar cheile nu sunt inițializate, te rugăm reautentifică-te", "Your private key password no longer matches your log-in password." : "Parola cheii tale private nu se mai potrivește cu parola pentru autentificare.", "Old log-in password" : "Parola veche pentru autentificare", "Current log-in password" : "Parola curentă pentru autentificare", @@ -41,6 +39,7 @@ "Enable password recovery:" : "Activează recuperarea parolei:", "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Activarea acestei opțiuni îți va permite să redobândești accesul la fișierele tale criptate în cazul pierderii parolei", "Enabled" : "Activat", - "Disabled" : "Dezactivat" + "Disabled" : "Dezactivat", + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Este necesar să migrezi cheile de criptare de la vechiul algoritm (ownCloud <= 8.0) la cel nou. Rulează 'occ encryption:migrate' sau contactează-ți administratorul." },"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/apps/encryption/l10n/ru.js b/apps/encryption/l10n/ru.js index c21f28fc2dfa1..6611a5a9b4a98 100644 --- a/apps/encryption/l10n/ru.js +++ b/apps/encryption/l10n/ru.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Указан неверный старый пароль, повторите попытку.", "The current log-in password was not correct, please try again." : "Текущий пароль для учётной записи введён неверно, пожалуйста повторите попытку.", "Private key password successfully updated." : "Пароль закрытого ключа успешно обновлён.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Вам необходимо произвести конвертацию ключей шифрования из старого формата (ownCloud <= 8.0) в новый. Используйте команду «occ encryption:migrate» или обратитесь к администратору.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Закрытый ключ приложения шифрования недействителен. Обновите закрытый ключ в личных настройках, чтобы восстановить доступ к зашифрованным файлам.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Приложение шифрования активно, но ваши ключи не инициализированы. Выйдите из системы и войдите заново.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Для использования модуля шифрования включите шифрование на стороне сервера в меню «Настройки» -> «Администрирование» -> «Шифрование».", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "одноразовый пароль для шифрования на стороне сервера", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Не удалось расшифровать файл, возможно это опубликованный файл. Попросите владельца файла повторно открыть к нему доступ.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Не удается прочитать файл, возможно это публичный файл. Пожалуйста попросите владельца открыть доступ снова.", + "Default encryption module" : "Модуль шифрования по-умолчанию", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Привет,\n\nадминистратор включил шифрование на стороне сервера. Ваши файлы были зашифрованы с использованием пароля «%s».\n\nПожалуйста войдите в веб-приложение, в разделе «простой модуль шифрования» в личных настройках вам нужно обновить пароль шифрования, указав этот пароль в поле \"старый пароль\".\n", "The share will expire on %s." : "Доступ будет закрыт %s", "Cheers!" : "Всего наилучшего!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Привет,

администратор включил шифрование на стороне сервера. Ваши файлы были зашифрованы с помощью пароля %s.

Пожалуйста войдите в веб-приложение, в разделе «простой модуль шифрования» в личных настройках вам нужно обновить пароль шифрования, указав этот пароль в поле \"старый пароль\".

", - "Default encryption module" : "Модуль шифрования по-умолчанию", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Приложение шифрования активно, но ваши ключи не инициализированы, выйдите из системы и войдите заново", "Encrypt the home storage" : "Шифровать домашнюю директорию", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "При включении данного параметра будут зашифрованы все файлы, хранящиеся в основном хранилище. В противном случае шифруются только файлы на внешних хранилищах.", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Включение этой опции позволит вам получить доступ к своим зашифрованным файлам в случае утери пароля", "Enabled" : "Включено", "Disabled" : "Отключено", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Приложение шифрования активно, но ваши ключи не инициализированы. Выйдите из системы и войдите заново" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Вам необходимо произвести конвертацию ключей шифрования из старого формата (ownCloud <= 8.0) в новый. Используйте команду «occ encryption:migrate» или обратитесь к администратору." }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/apps/encryption/l10n/ru.json b/apps/encryption/l10n/ru.json index 581a1bb7d773e..e0caf68a5e5a8 100644 --- a/apps/encryption/l10n/ru.json +++ b/apps/encryption/l10n/ru.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Указан неверный старый пароль, повторите попытку.", "The current log-in password was not correct, please try again." : "Текущий пароль для учётной записи введён неверно, пожалуйста повторите попытку.", "Private key password successfully updated." : "Пароль закрытого ключа успешно обновлён.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Вам необходимо произвести конвертацию ключей шифрования из старого формата (ownCloud <= 8.0) в новый. Используйте команду «occ encryption:migrate» или обратитесь к администратору.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Закрытый ключ приложения шифрования недействителен. Обновите закрытый ключ в личных настройках, чтобы восстановить доступ к зашифрованным файлам.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Приложение шифрования активно, но ваши ключи не инициализированы. Выйдите из системы и войдите заново.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Для использования модуля шифрования включите шифрование на стороне сервера в меню «Настройки» -> «Администрирование» -> «Шифрование».", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "одноразовый пароль для шифрования на стороне сервера", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Не удалось расшифровать файл, возможно это опубликованный файл. Попросите владельца файла повторно открыть к нему доступ.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Не удается прочитать файл, возможно это публичный файл. Пожалуйста попросите владельца открыть доступ снова.", + "Default encryption module" : "Модуль шифрования по-умолчанию", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Привет,\n\nадминистратор включил шифрование на стороне сервера. Ваши файлы были зашифрованы с использованием пароля «%s».\n\nПожалуйста войдите в веб-приложение, в разделе «простой модуль шифрования» в личных настройках вам нужно обновить пароль шифрования, указав этот пароль в поле \"старый пароль\".\n", "The share will expire on %s." : "Доступ будет закрыт %s", "Cheers!" : "Всего наилучшего!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Привет,

администратор включил шифрование на стороне сервера. Ваши файлы были зашифрованы с помощью пароля %s.

Пожалуйста войдите в веб-приложение, в разделе «простой модуль шифрования» в личных настройках вам нужно обновить пароль шифрования, указав этот пароль в поле \"старый пароль\".

", - "Default encryption module" : "Модуль шифрования по-умолчанию", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Приложение шифрования активно, но ваши ключи не инициализированы, выйдите из системы и войдите заново", "Encrypt the home storage" : "Шифровать домашнюю директорию", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "При включении данного параметра будут зашифрованы все файлы, хранящиеся в основном хранилище. В противном случае шифруются только файлы на внешних хранилищах.", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Включение этой опции позволит вам получить доступ к своим зашифрованным файлам в случае утери пароля", "Enabled" : "Включено", "Disabled" : "Отключено", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Приложение шифрования активно, но ваши ключи не инициализированы. Выйдите из системы и войдите заново" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Вам необходимо произвести конвертацию ключей шифрования из старого формата (ownCloud <= 8.0) в новый. Используйте команду «occ encryption:migrate» или обратитесь к администратору." },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } \ No newline at end of file diff --git a/apps/encryption/l10n/sk.js b/apps/encryption/l10n/sk.js index 1fe170ebd1ba5..dc8840f495d6f 100644 --- a/apps/encryption/l10n/sk.js +++ b/apps/encryption/l10n/sk.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Staré heslo nebolo zadané správne, prosím skúste to ešte raz.", "The current log-in password was not correct, please try again." : "Toto heslo nebolo správne, prosím skúste to ešte raz.", "Private key password successfully updated." : "Heslo súkromného kľúča je úspešne aktualizované.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Musíte migrovať vaše šifrovacie kľúče zo starého šifrovania (ownCloud <= 8,0) na nové. Spustite „occ encryption:migrate“ alebo sa obráťte na správcu", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Neplatný súkromný kľúč pre šifrovanie. Aktualizujte prosím heslo vášho súkromného kľúča v osobných nastaveniach pre obnovenie prístupu k vaším šifrovaným súborom.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Aplikácia na šifrovanie je povolená, ale vaše kľúče nie sú inicializované. Odhláste sa a prihláste sa znova.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Ak chcete použiť šifrovací modul, povoľte šifrovanie na strane servera v nastaveniach administrátora.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "jednorazové heslo na šifrovanie na strane servera", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tento súbor nie je možné rozšifrovať, môže ísť o súbor sprístupnený iným používateľom. Požiadajte majiteľa súboru, aby vám ho sprístupnil ešte raz.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tento súbor nie je možné prečítať, môže ísť o súbor sprístupnený iným používateľom. Požiadajte majiteľa súboru, aby vám ho sprístupnil ešte raz.", + "Default encryption module" : "Predvolený šifrovací modul", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Dobrý deň,\n\nAdministrátor povolil šifrovanie na strane servera. Vaše súbory boli zašifrované pomocou hesla '%s'.\n\nPrihláste sa prosím cez webový prehliadač, choďte do sekcie základného šifrovacieho modulu v osobných nastaveniach a zadajte horeuvedené heslo do políčka 'staré prihlasovacie heslo' a vaše súčasné prihlasovacie heslo.\n\n", "The share will expire on %s." : "Sprístupnenie vyprší %s.", "Cheers!" : "Pekný deň!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Dobrý deň,

Administrátor povolil šifrovanie na strane servera. Vaše súbory boli zašifrované pomocou hesla %s.

Prihláste sa prosím cez webový prehliadač, choďte do sekcie základného šifrovacieho modulu v osobných nastaveniach a zadajte horeuvedené heslo do políčka 'staré prihlasovacie heslo' a vaše súčasné prihlasovacie heslo.

", - "Default encryption module" : "Predvolený šifrovací modul", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikácia pre šifrovanie je povolená, ale vaše kľúče nie sú inicializované. Odhláste sa a znovu sa prihláste.", "Encrypt the home storage" : "Šifrovať domáce úložisko", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Zapnutím tejto voľby zašifrujete všetky súbory v hlavnom úložisku, v opačnom prípade zašifrujete iba súbory na externom úložisku.", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Povolenie Vám umožní znovu získať prístup k Vašim zašifrovaným súborom, ak stratíte heslo", "Enabled" : "Povolené", "Disabled" : "Zakázané", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikácia na šifrovanie je zapnutá, ale vaše kľúče nie sú inicializované. Odhláste sa a znovu sa prihláste." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Musíte migrovať vaše šifrovacie kľúče zo starého šifrovania (ownCloud <= 8,0) na nové. Spustite „occ encryption:migrate“ alebo sa obráťte na správcu" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/encryption/l10n/sk.json b/apps/encryption/l10n/sk.json index fc68f078c6132..6bd2cab2cc2a5 100644 --- a/apps/encryption/l10n/sk.json +++ b/apps/encryption/l10n/sk.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Staré heslo nebolo zadané správne, prosím skúste to ešte raz.", "The current log-in password was not correct, please try again." : "Toto heslo nebolo správne, prosím skúste to ešte raz.", "Private key password successfully updated." : "Heslo súkromného kľúča je úspešne aktualizované.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Musíte migrovať vaše šifrovacie kľúče zo starého šifrovania (ownCloud <= 8,0) na nové. Spustite „occ encryption:migrate“ alebo sa obráťte na správcu", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Neplatný súkromný kľúč pre šifrovanie. Aktualizujte prosím heslo vášho súkromného kľúča v osobných nastaveniach pre obnovenie prístupu k vaším šifrovaným súborom.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Aplikácia na šifrovanie je povolená, ale vaše kľúče nie sú inicializované. Odhláste sa a prihláste sa znova.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Ak chcete použiť šifrovací modul, povoľte šifrovanie na strane servera v nastaveniach administrátora.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "jednorazové heslo na šifrovanie na strane servera", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tento súbor nie je možné rozšifrovať, môže ísť o súbor sprístupnený iným používateľom. Požiadajte majiteľa súboru, aby vám ho sprístupnil ešte raz.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Tento súbor nie je možné prečítať, môže ísť o súbor sprístupnený iným používateľom. Požiadajte majiteľa súboru, aby vám ho sprístupnil ešte raz.", + "Default encryption module" : "Predvolený šifrovací modul", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Dobrý deň,\n\nAdministrátor povolil šifrovanie na strane servera. Vaše súbory boli zašifrované pomocou hesla '%s'.\n\nPrihláste sa prosím cez webový prehliadač, choďte do sekcie základného šifrovacieho modulu v osobných nastaveniach a zadajte horeuvedené heslo do políčka 'staré prihlasovacie heslo' a vaše súčasné prihlasovacie heslo.\n\n", "The share will expire on %s." : "Sprístupnenie vyprší %s.", "Cheers!" : "Pekný deň!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Dobrý deň,

Administrátor povolil šifrovanie na strane servera. Vaše súbory boli zašifrované pomocou hesla %s.

Prihláste sa prosím cez webový prehliadač, choďte do sekcie základného šifrovacieho modulu v osobných nastaveniach a zadajte horeuvedené heslo do políčka 'staré prihlasovacie heslo' a vaše súčasné prihlasovacie heslo.

", - "Default encryption module" : "Predvolený šifrovací modul", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikácia pre šifrovanie je povolená, ale vaše kľúče nie sú inicializované. Odhláste sa a znovu sa prihláste.", "Encrypt the home storage" : "Šifrovať domáce úložisko", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Zapnutím tejto voľby zašifrujete všetky súbory v hlavnom úložisku, v opačnom prípade zašifrujete iba súbory na externom úložisku.", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Povolenie Vám umožní znovu získať prístup k Vašim zašifrovaným súborom, ak stratíte heslo", "Enabled" : "Povolené", "Disabled" : "Zakázané", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikácia na šifrovanie je zapnutá, ale vaše kľúče nie sú inicializované. Odhláste sa a znovu sa prihláste." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Musíte migrovať vaše šifrovacie kľúče zo starého šifrovania (ownCloud <= 8,0) na nové. Spustite „occ encryption:migrate“ alebo sa obráťte na správcu" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/encryption/l10n/sl.js b/apps/encryption/l10n/sl.js index 21755b0fecd8e..6e786bc7878b9 100644 --- a/apps/encryption/l10n/sl.js +++ b/apps/encryption/l10n/sl.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Staro geslo ni vpisano pravilno. Poskusite znova.", "The current log-in password was not correct, please try again." : "Trenutno geslo za prijavo ni vpisano pravilno. Poskusite znova.", "Private key password successfully updated." : "Zasebni ključ za geslo je uspešno posodobljen.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Preseliti je treba šifrirne ključe iz starega sistema (ownCloud <= 8.0) na novega. Zaženite ukaz 'occ encryption:migrate' ali pa stopite v stik s skrbnikom sistema.", "Bad Signature" : "Neustrezen podpis", "Missing Signature" : "Manjkajoč podpis", "one-time password for server-side-encryption" : "enkratno geslo za šifriranje na strani strežnika", @@ -53,6 +52,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Nastavitev te možnosti omogoča ponovno pridobitev dostopa do šifriranih datotek, v primeru, da boste geslo pozabili.", "Enabled" : "Omogočeno", "Disabled" : "Onemogočeno", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Program za šifriranje je omogočen, vendar ni začet. Odjavite se in nato ponovno prijavite." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Preseliti je treba šifrirne ključe iz starega sistema (ownCloud <= 8.0) na novega. Zaženite ukaz 'occ encryption:migrate' ali pa stopite v stik s skrbnikom sistema." }, "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); diff --git a/apps/encryption/l10n/sl.json b/apps/encryption/l10n/sl.json index 3751d34d8ee9b..874720c423344 100644 --- a/apps/encryption/l10n/sl.json +++ b/apps/encryption/l10n/sl.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Staro geslo ni vpisano pravilno. Poskusite znova.", "The current log-in password was not correct, please try again." : "Trenutno geslo za prijavo ni vpisano pravilno. Poskusite znova.", "Private key password successfully updated." : "Zasebni ključ za geslo je uspešno posodobljen.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Preseliti je treba šifrirne ključe iz starega sistema (ownCloud <= 8.0) na novega. Zaženite ukaz 'occ encryption:migrate' ali pa stopite v stik s skrbnikom sistema.", "Bad Signature" : "Neustrezen podpis", "Missing Signature" : "Manjkajoč podpis", "one-time password for server-side-encryption" : "enkratno geslo za šifriranje na strani strežnika", @@ -51,6 +50,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Nastavitev te možnosti omogoča ponovno pridobitev dostopa do šifriranih datotek, v primeru, da boste geslo pozabili.", "Enabled" : "Omogočeno", "Disabled" : "Onemogočeno", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Program za šifriranje je omogočen, vendar ni začet. Odjavite se in nato ponovno prijavite." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Preseliti je treba šifrirne ključe iz starega sistema (ownCloud <= 8.0) na novega. Zaženite ukaz 'occ encryption:migrate' ali pa stopite v stik s skrbnikom sistema." },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" } \ No newline at end of file diff --git a/apps/encryption/l10n/sq.js b/apps/encryption/l10n/sq.js index 269a81a253328..ff03264d326f7 100644 --- a/apps/encryption/l10n/sq.js +++ b/apps/encryption/l10n/sq.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Fjalëkalimi i vjetër s’qe i saktë, ju lutemi, riprovoni.", "The current log-in password was not correct, please try again." : "Fjalëkalimi i tanishëm i hyrjeve s’qe i saktë, ju lutemi, riprovoni.", "Private key password successfully updated." : "Fjalëkalimi për kyçin privat u përditësua me sukses.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Lypset të kaloni kyçet tuaj të fshehtëzimeve nga versioni i vjetër i fshehtëzimeve (ownCloud <= 8.0) te i riu. Ju lutemi, ekzekutoni run 'occ encryption:migrate' ose lidhuni me përgjegjësin tuaj", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Kyç privat i pavlefshëm për aplikacionin e fshehtëzimeve. Ju lutemi, përditësoni fjalëkalimin tuaj të kyçit privat te rregullimet tuaja personale që të rimerrni hyrje te kartelat tuaja të fshehtëzuara.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Aplikacioni i Enkriptimit është i aktivizuar, por kyçet tuaj s’janë vënë në punë, ju lutemi, dilni dhe rihyni përsëri", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Ju lutem aktivizoni ekriptimin në anën e serverit në konfigurimet e administratorit në mënyrë që të përdorni modulin e enkriptimit.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "fjalëkalim vetëm për një herë, për fshehtëzim-më-anë-shërbyesi", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Nuk shfshehtëzohet dot kjo kartelë, ndoshta është kartelë e ndarë me të tjerët. Ju lutemi, kërkojini të zotit të kartelës ta rindajë kartelën me ju.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "S’lexohet dot kjo kartelë, ndoshta është kartelë e ndarë me të tjerët. Ju lutemi, kërkojini të zotit të kartelës ta rindajë kartelën me ju.", + "Default encryption module" : "Modul i parazgjedhur fshehtëzimi", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Njatjeta,\n\npërgjegjësi aktivizoi fshehtëzim më anë shërbyesi. Kartelat tuaja qenë fshehtëzuar duke përdorur fjalëkalimin '%s'.\n\nJu lutemi, bëni hyrjen te ndërfaqja web, kaloni te ndarja 'modul i thjeshtëpër fshehtëzime' e rregullimeve tuaja personale dhe përditësoni fjalëkalimin tuaj për fshehtëzime duke dhënë këtë fjalëkalim te fusha 'old log-in password' dhe fjalëkalimin tuaj të tanishëm për hyrjet.\n\n", "The share will expire on %s." : "Ndarja do të skadojë më %s.", "Cheers!" : "Gëzuar!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Njatjeta,

përgjegjësi aktivizoi fshehtëzim më anë shërbyesi. Kartelat tuaja qenë fshehtëzuar duke përdorur fjalëkalimin %s.

Ju lutemi, bëni hyrjen te ndërfaqja web, kaloni te ndarja \"modul i thjeshtëpër fshehtëzime\" e rregullimeve tuaja personale dhe përditësoni fjalëkalimin tuaj për fshehtëzime duke dhënë këtë fjalëkalim te fusha \"old log-in password\" dhe fjalëkalimin tuaj të tanishëm për hyrjet.

", - "Default encryption module" : "Modul i parazgjedhur fshehtëzimi", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikacioni i fshehtëzimeve është i aktivizuar, por kyçet tuaj s’janë vënë në punë, ju lutemi, dilni dhe ribëni hyrjen", "Encrypt the home storage" : "Fshehtëzo depozitën bazë", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Aktivizimi i kësaj mundësie fshehtëzon krejt kartelat e depozituara në depon bazë, përndryshe do të fshehtëzohen vetëm kartelat në depozitën e jashtme", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Aktivizimi i kësaj mundësie do t’ju lejojë të rifitoni hyrje te kartelat tuaja të fshehtëzuara në rast humbjeje fjalëkalimi", "Enabled" : "E aktivizuar", "Disabled" : "E çaktivizuar", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikacioni i fshehtëzimeve është i aktivizuar, por kyçet tuaj s’janë vënë në punë, ju lutemi, dilni dhe ribëni hyrjen" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Lypset të kaloni kyçet tuaj të fshehtëzimeve nga versioni i vjetër i fshehtëzimeve (ownCloud <= 8.0) te i riu. Ju lutemi, ekzekutoni run 'occ encryption:migrate' ose lidhuni me përgjegjësin tuaj" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/sq.json b/apps/encryption/l10n/sq.json index fdba9f18dc081..63f3f325a3c60 100644 --- a/apps/encryption/l10n/sq.json +++ b/apps/encryption/l10n/sq.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Fjalëkalimi i vjetër s’qe i saktë, ju lutemi, riprovoni.", "The current log-in password was not correct, please try again." : "Fjalëkalimi i tanishëm i hyrjeve s’qe i saktë, ju lutemi, riprovoni.", "Private key password successfully updated." : "Fjalëkalimi për kyçin privat u përditësua me sukses.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Lypset të kaloni kyçet tuaj të fshehtëzimeve nga versioni i vjetër i fshehtëzimeve (ownCloud <= 8.0) te i riu. Ju lutemi, ekzekutoni run 'occ encryption:migrate' ose lidhuni me përgjegjësin tuaj", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Kyç privat i pavlefshëm për aplikacionin e fshehtëzimeve. Ju lutemi, përditësoni fjalëkalimin tuaj të kyçit privat te rregullimet tuaja personale që të rimerrni hyrje te kartelat tuaja të fshehtëzuara.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Aplikacioni i Enkriptimit është i aktivizuar, por kyçet tuaj s’janë vënë në punë, ju lutemi, dilni dhe rihyni përsëri", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Ju lutem aktivizoni ekriptimin në anën e serverit në konfigurimet e administratorit në mënyrë që të përdorni modulin e enkriptimit.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "fjalëkalim vetëm për një herë, për fshehtëzim-më-anë-shërbyesi", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Nuk shfshehtëzohet dot kjo kartelë, ndoshta është kartelë e ndarë me të tjerët. Ju lutemi, kërkojini të zotit të kartelës ta rindajë kartelën me ju.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "S’lexohet dot kjo kartelë, ndoshta është kartelë e ndarë me të tjerët. Ju lutemi, kërkojini të zotit të kartelës ta rindajë kartelën me ju.", + "Default encryption module" : "Modul i parazgjedhur fshehtëzimi", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Njatjeta,\n\npërgjegjësi aktivizoi fshehtëzim më anë shërbyesi. Kartelat tuaja qenë fshehtëzuar duke përdorur fjalëkalimin '%s'.\n\nJu lutemi, bëni hyrjen te ndërfaqja web, kaloni te ndarja 'modul i thjeshtëpër fshehtëzime' e rregullimeve tuaja personale dhe përditësoni fjalëkalimin tuaj për fshehtëzime duke dhënë këtë fjalëkalim te fusha 'old log-in password' dhe fjalëkalimin tuaj të tanishëm për hyrjet.\n\n", "The share will expire on %s." : "Ndarja do të skadojë më %s.", "Cheers!" : "Gëzuar!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Njatjeta,

përgjegjësi aktivizoi fshehtëzim më anë shërbyesi. Kartelat tuaja qenë fshehtëzuar duke përdorur fjalëkalimin %s.

Ju lutemi, bëni hyrjen te ndërfaqja web, kaloni te ndarja \"modul i thjeshtëpër fshehtëzime\" e rregullimeve tuaja personale dhe përditësoni fjalëkalimin tuaj për fshehtëzime duke dhënë këtë fjalëkalim te fusha \"old log-in password\" dhe fjalëkalimin tuaj të tanishëm për hyrjet.

", - "Default encryption module" : "Modul i parazgjedhur fshehtëzimi", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikacioni i fshehtëzimeve është i aktivizuar, por kyçet tuaj s’janë vënë në punë, ju lutemi, dilni dhe ribëni hyrjen", "Encrypt the home storage" : "Fshehtëzo depozitën bazë", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Aktivizimi i kësaj mundësie fshehtëzon krejt kartelat e depozituara në depon bazë, përndryshe do të fshehtëzohen vetëm kartelat në depozitën e jashtme", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Aktivizimi i kësaj mundësie do t’ju lejojë të rifitoni hyrje te kartelat tuaja të fshehtëzuara në rast humbjeje fjalëkalimi", "Enabled" : "E aktivizuar", "Disabled" : "E çaktivizuar", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Aplikacioni i fshehtëzimeve është i aktivizuar, por kyçet tuaj s’janë vënë në punë, ju lutemi, dilni dhe ribëni hyrjen" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Lypset të kaloni kyçet tuaj të fshehtëzimeve nga versioni i vjetër i fshehtëzimeve (ownCloud <= 8.0) te i riu. Ju lutemi, ekzekutoni run 'occ encryption:migrate' ose lidhuni me përgjegjësin tuaj" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/sr.js b/apps/encryption/l10n/sr.js index ac03e3cc74468..bcd4f9e0bc60f 100644 --- a/apps/encryption/l10n/sr.js +++ b/apps/encryption/l10n/sr.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Стара лозинка није исправна. Покушајте поново.", "The current log-in password was not correct, please try again." : "Тренутна лозинка за пријаву није исправна. Покушајте поново.", "Private key password successfully updated." : "Лозинка личног кључа је успешно ажурирана.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Морате да пребаците старе шифрарске кључеве (оунКлауд <= 8.0) у нове. Покрените 'occ encryption:migrate' или контактирајте администратора.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Неисправан лични кључ за шифровање. Ажурирајте лозинку личног кључа у поставкама да повратите приступ шифрованим фајловима.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Апликација за шифровање је укључена али кључеви још нису иницијализовани. Одјавите се и поново се пријавите.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Укључите шифровање на страни сервера у администраторским поставкама да бисте користили модул за шифровање.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "једнократна лозинка за шифровање на страни сервера", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Не могу да дешифрујем фајл. Вероватно је то дељен фајл. Затражите од власника да га поново подели.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Не могу да читам фајл. Вероватно је дељен. Питајте власника да га поново подели.", + "Default encryption module" : "Подразумевани модул за шифровање", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Поштовање,\n\nадминистратор је укључио шифровање на серверској страни. Ваши фајлови су шифровани лозинком „%s“.\n\nПријавите се на веб сучеље, идите на одељак 'основни модул за шифровање' у личним поставкама и ажурирајте своју лозинку за шифровање уношењем ове лозинке у поље „стара лозинка за пријаву“ и своју тренутну лозинку за пријављивање.\n", "The share will expire on %s." : "Дељење истиче %s.", "Cheers!" : "Здраво!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Поштовање,

администратор је укључио шифровање на серверској страни. Ваши фајлови су шифровани лозинком %s.

Пријавите се на веб сучеље, идите на одељак 'основни модул за шифровање' у личним поставкама и ажурирајте своју лозинку за шифровање тако што унесете ову лозинку у поље 'стара лозинка за пријаву' и своју тренутну лозинку за пријављивање.

", - "Default encryption module" : "Подразумевани модул за шифровање", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Апликација за шифровање је укључена али кључеви још нису иницијализовани. Одјавите се и поново се пријавите.", "Encrypt the home storage" : "Шифровање главног складишта", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Укључивање ове опције ће шифровати све фајлове на главном складишту. У супротном ће само фајлови на спољашњем складишту бити шифровани", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Укључивање ове опције омогућиће поновно добијање приступа вашим шифрованим фајловима у случају губитка лозинке", "Enabled" : "укључено", "Disabled" : "искључено", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Апликација шифровања је укључена али ваши кључеви нису иницијализовани. Одјавите се и поново се пријавите." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Морате да пребаците старе шифрарске кључеве (оунКлауд <= 8.0) у нове. Покрените 'occ encryption:migrate' или контактирајте администратора." }, "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/apps/encryption/l10n/sr.json b/apps/encryption/l10n/sr.json index eec6b6e158fbf..3b78ed5b7c72b 100644 --- a/apps/encryption/l10n/sr.json +++ b/apps/encryption/l10n/sr.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Стара лозинка није исправна. Покушајте поново.", "The current log-in password was not correct, please try again." : "Тренутна лозинка за пријаву није исправна. Покушајте поново.", "Private key password successfully updated." : "Лозинка личног кључа је успешно ажурирана.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Морате да пребаците старе шифрарске кључеве (оунКлауд <= 8.0) у нове. Покрените 'occ encryption:migrate' или контактирајте администратора.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Неисправан лични кључ за шифровање. Ажурирајте лозинку личног кључа у поставкама да повратите приступ шифрованим фајловима.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Апликација за шифровање је укључена али кључеви још нису иницијализовани. Одјавите се и поново се пријавите.", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Укључите шифровање на страни сервера у администраторским поставкама да бисте користили модул за шифровање.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "једнократна лозинка за шифровање на страни сервера", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Не могу да дешифрујем фајл. Вероватно је то дељен фајл. Затражите од власника да га поново подели.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Не могу да читам фајл. Вероватно је дељен. Питајте власника да га поново подели.", + "Default encryption module" : "Подразумевани модул за шифровање", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Поштовање,\n\nадминистратор је укључио шифровање на серверској страни. Ваши фајлови су шифровани лозинком „%s“.\n\nПријавите се на веб сучеље, идите на одељак 'основни модул за шифровање' у личним поставкама и ажурирајте своју лозинку за шифровање уношењем ове лозинке у поље „стара лозинка за пријаву“ и своју тренутну лозинку за пријављивање.\n", "The share will expire on %s." : "Дељење истиче %s.", "Cheers!" : "Здраво!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Поштовање,

администратор је укључио шифровање на серверској страни. Ваши фајлови су шифровани лозинком %s.

Пријавите се на веб сучеље, идите на одељак 'основни модул за шифровање' у личним поставкама и ажурирајте своју лозинку за шифровање тако што унесете ову лозинку у поље 'стара лозинка за пријаву' и своју тренутну лозинку за пријављивање.

", - "Default encryption module" : "Подразумевани модул за шифровање", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Апликација за шифровање је укључена али кључеви још нису иницијализовани. Одјавите се и поново се пријавите.", "Encrypt the home storage" : "Шифровање главног складишта", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Укључивање ове опције ће шифровати све фајлове на главном складишту. У супротном ће само фајлови на спољашњем складишту бити шифровани", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Укључивање ове опције омогућиће поновно добијање приступа вашим шифрованим фајловима у случају губитка лозинке", "Enabled" : "укључено", "Disabled" : "искључено", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Апликација шифровања је укључена али ваши кључеви нису иницијализовани. Одјавите се и поново се пријавите." + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Морате да пребаците старе шифрарске кључеве (оунКлауд <= 8.0) у нове. Покрените 'occ encryption:migrate' или контактирајте администратора." },"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);" } \ No newline at end of file diff --git a/apps/encryption/l10n/sv.js b/apps/encryption/l10n/sv.js index 8dcc2af9d0325..ce3f5f7af126a 100644 --- a/apps/encryption/l10n/sv.js +++ b/apps/encryption/l10n/sv.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Det gamla lösenordet var inte korrekt. Vänligen försök igen.", "The current log-in password was not correct, please try again." : "Det nuvarande inloggningslösenordet var inte korrekt. Vänligen försök igen.", "Private key password successfully updated." : "Den privata nyckelns lösenord uppdaterades.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Du behöver migrera dina krypteringsnycklar från den gamla krypteringen (ownCloud <= 8.0) till den nya. Kör 'occ encryption:migrate' eller kontakta din administratör", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Ogiltig privat nyckel för krypteringsappen. Uppdatera din privata nyckels lösenord i dina personliga inställningar för att återställa tillgång till dina krypterade filer.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Krypteringsappen är aktiverad men dina nycklar är inte aktiverade. Logga ut och in igen så aktiveras dem. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Aktivera kryptering på servern i administratörsinställningarna för att använda krypteringsmodulen.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "engångslösenord för kryptering på serversidan", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Kan ej dekryptera denna fil, förmodligen är det en delad fil. Be ägaren av filen att dela den med dig.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Filen kan inte läsas, troligtvis är det en delad fil. Be ägaren av filen att dela den med dig igen.", + "Default encryption module" : "Krypteringsfunktion", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hallå där, \n\nAdministratören aktiverade serverkryptering. Alla dina filer har blivit krypterade med lösenordet: %s\n\nGå till i din profil för att ändra krypteringslösenordet till ditt egna lösenord. Ange lösenordet ovan som \"Gammalt lösenord\" och ange sedan ditt egna lösenord.\n\n", "The share will expire on %s." : "Utdelningen kommer att upphöra %s.", "Cheers!" : "Ha de fint!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hallå där,
Administratören aktiverade serverkryptering. Alla dina filer har blivit krypterade med lösenordet: %s.
Gå till i din profil för att ändra krypteringslösenordet till ditt egna lösenord. Ange lösenordet ovan som \"Gammalt lösenord\" och ange sedan ditt egna lösenord.
", - "Default encryption module" : "Krypteringsfunktion", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Krypteringsappen är aktiverad men dina krypteringsnycklar har inte aktiverats, logga ut och logga in igen.", "Encrypt the home storage" : "Kryptera alla filer i molnet", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Aktivering av det här alternativet krypterar alla filer som är lagrade på huvudlagringsplatsen, annars kommer bara filer på extern lagringsplats att krypteras", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Genom att aktivera detta alternativ kommer du kunna återfå tillgång till dina krypterade filer om du skulle förlora/glömma ditt lösenord", "Enabled" : "Aktiverad", "Disabled" : "Inaktiverad", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Krypteringsprogrammet är aktiverat men dina nycklar är inte initierade. Vänligen logga ut och in igen" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Du behöver migrera dina krypteringsnycklar från den gamla krypteringen (ownCloud <= 8.0) till den nya. Kör 'occ encryption:migrate' eller kontakta din administratör" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/encryption/l10n/sv.json b/apps/encryption/l10n/sv.json index 1cf3e56e44da4..6b870af0178dd 100644 --- a/apps/encryption/l10n/sv.json +++ b/apps/encryption/l10n/sv.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Det gamla lösenordet var inte korrekt. Vänligen försök igen.", "The current log-in password was not correct, please try again." : "Det nuvarande inloggningslösenordet var inte korrekt. Vänligen försök igen.", "Private key password successfully updated." : "Den privata nyckelns lösenord uppdaterades.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Du behöver migrera dina krypteringsnycklar från den gamla krypteringen (ownCloud <= 8.0) till den nya. Kör 'occ encryption:migrate' eller kontakta din administratör", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Ogiltig privat nyckel för krypteringsappen. Uppdatera din privata nyckels lösenord i dina personliga inställningar för att återställa tillgång till dina krypterade filer.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Krypteringsappen är aktiverad men dina nycklar är inte aktiverade. Logga ut och in igen så aktiveras dem. ", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Aktivera kryptering på servern i administratörsinställningarna för att använda krypteringsmodulen.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "engångslösenord för kryptering på serversidan", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Kan ej dekryptera denna fil, förmodligen är det en delad fil. Be ägaren av filen att dela den med dig.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Filen kan inte läsas, troligtvis är det en delad fil. Be ägaren av filen att dela den med dig igen.", + "Default encryption module" : "Krypteringsfunktion", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Hallå där, \n\nAdministratören aktiverade serverkryptering. Alla dina filer har blivit krypterade med lösenordet: %s\n\nGå till i din profil för att ändra krypteringslösenordet till ditt egna lösenord. Ange lösenordet ovan som \"Gammalt lösenord\" och ange sedan ditt egna lösenord.\n\n", "The share will expire on %s." : "Utdelningen kommer att upphöra %s.", "Cheers!" : "Ha de fint!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Hallå där,
Administratören aktiverade serverkryptering. Alla dina filer har blivit krypterade med lösenordet: %s.
Gå till i din profil för att ändra krypteringslösenordet till ditt egna lösenord. Ange lösenordet ovan som \"Gammalt lösenord\" och ange sedan ditt egna lösenord.
", - "Default encryption module" : "Krypteringsfunktion", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Krypteringsappen är aktiverad men dina krypteringsnycklar har inte aktiverats, logga ut och logga in igen.", "Encrypt the home storage" : "Kryptera alla filer i molnet", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Aktivering av det här alternativet krypterar alla filer som är lagrade på huvudlagringsplatsen, annars kommer bara filer på extern lagringsplats att krypteras", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Genom att aktivera detta alternativ kommer du kunna återfå tillgång till dina krypterade filer om du skulle förlora/glömma ditt lösenord", "Enabled" : "Aktiverad", "Disabled" : "Inaktiverad", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Krypteringsprogrammet är aktiverat men dina nycklar är inte initierade. Vänligen logga ut och in igen" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Du behöver migrera dina krypteringsnycklar från den gamla krypteringen (ownCloud <= 8.0) till den nya. Kör 'occ encryption:migrate' eller kontakta din administratör" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/th.js b/apps/encryption/l10n/th.js index 5597ac4f16608..922de60af681a 100644 --- a/apps/encryption/l10n/th.js +++ b/apps/encryption/l10n/th.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "รหัสผ่านเดิมไม่ถูกต้องโปรดลองอีกครั้ง", "The current log-in password was not correct, please try again." : "รหัสผ่านเข้าสู่ระบบในปัจจุบันไม่ถูกต้องโปรดลองอีกครั้ง", "Private key password successfully updated." : "อัพเดทรหัส Private key เรียบร้อยแล้ว", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "คุณจำเป็นต้องย้ายรหัสการเข้ารหัสลับของคุณจากการเข้ารหัสเก่า (ownCloud ที่มีเวอร์ชันต่ำกว่าหรือเท่ากับ 8.0) ไปเวอร์ชันใหม่ โปรดเรียกใช้ 'occ encryption:migrate' หรือติดต่อผู้ดูแลระบบ", "Bad Signature" : "ลายเซ็นไม่ดี", "Missing Signature" : "ลายเซ็นขาดหายไป", "one-time password for server-side-encryption" : "รหัสผ่านเพียงครั้งเดียว สำหรับเข้ารหัสฝั่งเซิร์ฟเวอร์", @@ -53,6 +52,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "การเปิดใช้งานตัวเลือกนี้จะช่วยให้คุณได้รับการเข้าถึงไฟล์ที่มีการเข้ารหัสของคุณในกรณีที่คุณลืมรหัสผ่าน", "Enabled" : "เปิดการใช้งาน", "Disabled" : "ปิดการใช้งาน", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "การเข้ารหัสแอพฯ ถูกเปิดใช้งานแต่รหัสของคุณยังไม่ได้เริ่มต้นใช้ โปรดออกและเข้าสู่ระบบอีกครั้ง" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "คุณจำเป็นต้องย้ายรหัสการเข้ารหัสลับของคุณจากการเข้ารหัสเก่า (ownCloud ที่มีเวอร์ชันต่ำกว่าหรือเท่ากับ 8.0) ไปเวอร์ชันใหม่ โปรดเรียกใช้ 'occ encryption:migrate' หรือติดต่อผู้ดูแลระบบ" }, "nplurals=1; plural=0;"); diff --git a/apps/encryption/l10n/th.json b/apps/encryption/l10n/th.json index df509b53a7a4e..f0f701fb98a94 100644 --- a/apps/encryption/l10n/th.json +++ b/apps/encryption/l10n/th.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "รหัสผ่านเดิมไม่ถูกต้องโปรดลองอีกครั้ง", "The current log-in password was not correct, please try again." : "รหัสผ่านเข้าสู่ระบบในปัจจุบันไม่ถูกต้องโปรดลองอีกครั้ง", "Private key password successfully updated." : "อัพเดทรหัส Private key เรียบร้อยแล้ว", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "คุณจำเป็นต้องย้ายรหัสการเข้ารหัสลับของคุณจากการเข้ารหัสเก่า (ownCloud ที่มีเวอร์ชันต่ำกว่าหรือเท่ากับ 8.0) ไปเวอร์ชันใหม่ โปรดเรียกใช้ 'occ encryption:migrate' หรือติดต่อผู้ดูแลระบบ", "Bad Signature" : "ลายเซ็นไม่ดี", "Missing Signature" : "ลายเซ็นขาดหายไป", "one-time password for server-side-encryption" : "รหัสผ่านเพียงครั้งเดียว สำหรับเข้ารหัสฝั่งเซิร์ฟเวอร์", @@ -51,6 +50,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "การเปิดใช้งานตัวเลือกนี้จะช่วยให้คุณได้รับการเข้าถึงไฟล์ที่มีการเข้ารหัสของคุณในกรณีที่คุณลืมรหัสผ่าน", "Enabled" : "เปิดการใช้งาน", "Disabled" : "ปิดการใช้งาน", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "การเข้ารหัสแอพฯ ถูกเปิดใช้งานแต่รหัสของคุณยังไม่ได้เริ่มต้นใช้ โปรดออกและเข้าสู่ระบบอีกครั้ง" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "คุณจำเป็นต้องย้ายรหัสการเข้ารหัสลับของคุณจากการเข้ารหัสเก่า (ownCloud ที่มีเวอร์ชันต่ำกว่าหรือเท่ากับ 8.0) ไปเวอร์ชันใหม่ โปรดเรียกใช้ 'occ encryption:migrate' หรือติดต่อผู้ดูแลระบบ" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/encryption/l10n/tr.js b/apps/encryption/l10n/tr.js index b6cdc84356f53..cbb835e750855 100644 --- a/apps/encryption/l10n/tr.js +++ b/apps/encryption/l10n/tr.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "Eski parola doğru değil, lütfen yeniden deneyin.", "The current log-in password was not correct, please try again." : "Geçerli oturum açma parolası doğru değil, lütfen yeniden deneyin.", "Private key password successfully updated." : "Özel anahtar parolası güncellendi.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Eski şifreleme anahtarlarınızın eski şifrelemeden (ownCloud <= 8.0) yenisine aktarılması gerekiyor. Lütfen 'occ encryption:migrate' komutunu çalıştırın ya da sistem yöneticiniz ile görüşün", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Şifreleme uygulaması özel anahtarı geçersiz. Şifrelenmiş dosyalarınıza erişebilmek için kişisel ayarlarınızdaki özel anahtar parolanızı güncelleyin.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Şifreleme Uygulaması etkin ancak anahtarlarınız hazırlanmamış. Lütfen oturumunuzu kapatıp yeniden açın", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Şifreleme modülünü kullanabilmek için yönetici ayarlarından sunucu tarafında şifreleme seçeneğini etkinleştirin.", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "sunucu tarafında şifreleme için tek kullanımlık parola", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Bu dosya büyük olasılıkla paylaşılıyor olduğundan şifresi çözülemiyor. Lütfen dosya sahibi ile görüşerek sizinle yeniden paylaşmasını isteyin.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Bu dosya büyük olasılıkla paylaşılıyor olduğundan okunamıyor. Lütfen dosya sahibi ile görüşerek sizinle yeniden paylaşmasını isteyin.", + "Default encryption module" : "Varsayılan şifreleme modülü", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Selam,\n\nSistem yöneticisi sunucu tarafında şifrelemeyi etkinleştirdi. Dosyalarınız '%s' parolası kullanılarak şifrelendi.\n\nLütfen web arayüzünde oturum açın ve kişisel ayarlarınızdan 'temel şifreleme modülü'ne giderek 'eski oturum açma parolası' alanına bu parolayı ve geçerli oturum açma parolanızı yazarak şifreleme parolanızı güncelleyin.\n\n", "The share will expire on %s." : "Bu paylaşım %s tarihinde sona erecek.", "Cheers!" : "Hoşçakalın!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Selam,

Sistem yöneticisi sunucu tarafında şifrelemeyi etkinleştirdi. Dosyalarınız %s parolası kullanılarak şifrelendi.

Lütfen web arayüzünde oturum açın ve kişisel ayarlarınızdan 'temel şifreleme modülü'ne giderek 'eski oturum açma parolası' alanına bu parolayı ve geçerli oturum açma parolanızı yazarak şifreleme parolanızı güncelleyin.

", - "Default encryption module" : "Varsayılan şifreleme modülü", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Şifreleme uygulaması etkin ancak anahtarlarınız hazırlanmamış. Lütfen oturumunuzu kapatıp yeniden açın.", "Encrypt the home storage" : "Ana depolama şifrelensin", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Bu seçenek etkinleştirildiğinde, ana depolama alanındaki tüm dosyalar şifrelenir. Devre dışı bırakıldığında yalnız dış depolama alanındaki dosyalar şifrelenir", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Bu seçenek etkinleştirildiğinde, parolayı unutursanız şifrelenmiş dosyalarınıza yeniden erişim izni elde edebilirsiniz", "Enabled" : "Etkin", "Disabled" : "Devre Dışı", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Şifreleme Uygulaması etkin ancak anahtarlarınız hazırlanmamış. Lütfen oturumunuzu kapatıp yeniden açın" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Eski şifreleme anahtarlarınızın eski şifrelemeden (ownCloud <= 8.0) yenisine aktarılması gerekiyor. Lütfen 'occ encryption:migrate' komutunu çalıştırın ya da sistem yöneticiniz ile görüşün" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/encryption/l10n/tr.json b/apps/encryption/l10n/tr.json index f0d646f93e4d6..6588816fa3f3b 100644 --- a/apps/encryption/l10n/tr.json +++ b/apps/encryption/l10n/tr.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "Eski parola doğru değil, lütfen yeniden deneyin.", "The current log-in password was not correct, please try again." : "Geçerli oturum açma parolası doğru değil, lütfen yeniden deneyin.", "Private key password successfully updated." : "Özel anahtar parolası güncellendi.", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Eski şifreleme anahtarlarınızın eski şifrelemeden (ownCloud <= 8.0) yenisine aktarılması gerekiyor. Lütfen 'occ encryption:migrate' komutunu çalıştırın ya da sistem yöneticiniz ile görüşün", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "Şifreleme uygulaması özel anahtarı geçersiz. Şifrelenmiş dosyalarınıza erişebilmek için kişisel ayarlarınızdaki özel anahtar parolanızı güncelleyin.", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "Şifreleme Uygulaması etkin ancak anahtarlarınız hazırlanmamış. Lütfen oturumunuzu kapatıp yeniden açın", "Please enable server side encryption in the admin settings in order to use the encryption module." : "Şifreleme modülünü kullanabilmek için yönetici ayarlarından sunucu tarafında şifreleme seçeneğini etkinleştirin.", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "sunucu tarafında şifreleme için tek kullanımlık parola", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Bu dosya büyük olasılıkla paylaşılıyor olduğundan şifresi çözülemiyor. Lütfen dosya sahibi ile görüşerek sizinle yeniden paylaşmasını isteyin.", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "Bu dosya büyük olasılıkla paylaşılıyor olduğundan okunamıyor. Lütfen dosya sahibi ile görüşerek sizinle yeniden paylaşmasını isteyin.", + "Default encryption module" : "Varsayılan şifreleme modülü", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "Selam,\n\nSistem yöneticisi sunucu tarafında şifrelemeyi etkinleştirdi. Dosyalarınız '%s' parolası kullanılarak şifrelendi.\n\nLütfen web arayüzünde oturum açın ve kişisel ayarlarınızdan 'temel şifreleme modülü'ne giderek 'eski oturum açma parolası' alanına bu parolayı ve geçerli oturum açma parolanızı yazarak şifreleme parolanızı güncelleyin.\n\n", "The share will expire on %s." : "Bu paylaşım %s tarihinde sona erecek.", "Cheers!" : "Hoşçakalın!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "Selam,

Sistem yöneticisi sunucu tarafında şifrelemeyi etkinleştirdi. Dosyalarınız %s parolası kullanılarak şifrelendi.

Lütfen web arayüzünde oturum açın ve kişisel ayarlarınızdan 'temel şifreleme modülü'ne giderek 'eski oturum açma parolası' alanına bu parolayı ve geçerli oturum açma parolanızı yazarak şifreleme parolanızı güncelleyin.

", - "Default encryption module" : "Varsayılan şifreleme modülü", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "Şifreleme uygulaması etkin ancak anahtarlarınız hazırlanmamış. Lütfen oturumunuzu kapatıp yeniden açın.", "Encrypt the home storage" : "Ana depolama şifrelensin", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "Bu seçenek etkinleştirildiğinde, ana depolama alanındaki tüm dosyalar şifrelenir. Devre dışı bırakıldığında yalnız dış depolama alanındaki dosyalar şifrelenir", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "Bu seçenek etkinleştirildiğinde, parolayı unutursanız şifrelenmiş dosyalarınıza yeniden erişim izni elde edebilirsiniz", "Enabled" : "Etkin", "Disabled" : "Devre Dışı", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Şifreleme Uygulaması etkin ancak anahtarlarınız hazırlanmamış. Lütfen oturumunuzu kapatıp yeniden açın" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "Eski şifreleme anahtarlarınızın eski şifrelemeden (ownCloud <= 8.0) yenisine aktarılması gerekiyor. Lütfen 'occ encryption:migrate' komutunu çalıştırın ya da sistem yöneticiniz ile görüşün" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/encryption/l10n/uk.js b/apps/encryption/l10n/uk.js index b6023715cec68..3c256d336dc0d 100644 --- a/apps/encryption/l10n/uk.js +++ b/apps/encryption/l10n/uk.js @@ -34,7 +34,6 @@ OC.L10N.register( "New recovery key password" : "Новий пароль ключа відновлення", "Repeat new recovery key password" : "Повторіть новий пароль ключа відновлення", "Change Password" : "Змінити Пароль", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Доданок шифрування ввімкнено, але ваші ключі не ініціалізовано, вийдіть та зайдіть знову", "Your private key password no longer matches your log-in password." : "Пароль вашого закритого ключа більше не відповідає паролю від вашого облікового запису.", "Set your old private key password to your current log-in password:" : "Замініть старий пароль від закритого ключа на новий пароль входу:", " If you don't remember your old password you can ask your administrator to recover your files." : "Якщо ви не пам'ятаєте ваш старий пароль, ви можете звернутися до адміністратора щоб його відновити.", diff --git a/apps/encryption/l10n/uk.json b/apps/encryption/l10n/uk.json index c19c3591a5628..05b5108588e1a 100644 --- a/apps/encryption/l10n/uk.json +++ b/apps/encryption/l10n/uk.json @@ -32,7 +32,6 @@ "New recovery key password" : "Новий пароль ключа відновлення", "Repeat new recovery key password" : "Повторіть новий пароль ключа відновлення", "Change Password" : "Змінити Пароль", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "Доданок шифрування ввімкнено, але ваші ключі не ініціалізовано, вийдіть та зайдіть знову", "Your private key password no longer matches your log-in password." : "Пароль вашого закритого ключа більше не відповідає паролю від вашого облікового запису.", "Set your old private key password to your current log-in password:" : "Замініть старий пароль від закритого ключа на новий пароль входу:", " If you don't remember your old password you can ask your administrator to recover your files." : "Якщо ви не пам'ятаєте ваш старий пароль, ви можете звернутися до адміністратора щоб його відновити.", diff --git a/apps/encryption/l10n/zh_CN.js b/apps/encryption/l10n/zh_CN.js index 7683288e8df80..fb1a4377fa35a 100644 --- a/apps/encryption/l10n/zh_CN.js +++ b/apps/encryption/l10n/zh_CN.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "原始密码错误,请重试。", "The current log-in password was not correct, please try again." : "当前登录密码不正确,请重试。", "Private key password successfully updated." : "私钥密码成功更新。", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "您需要从旧版本 (ownCloud <= 8.0) 迁移您的加密密钥. 请运行 'occ encryption:migrate' 或联系您的管理员.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "无效的加密应用程序私钥。请在您的个人设置中更新您的私钥密码,以恢复对加密文件的访问。", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "加密应用被启用了,但是你的加密密钥没有初始化。请重新登出登录系统一次。", "Please enable server side encryption in the admin settings in order to use the encryption module." : "请启用管理员设置中的服务器端加密,以使用加密模块。", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "用于服务器端加密的一次性密码", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : " 无法解密这个文件(或许这是一个共享文件?),请询问文件所有者重新与您分享这个文件。", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "无法读取此文件,可能这是一个共享文件。请让文件所有者重新共享该文件。", + "Default encryption module" : "默认加密模块", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "您好,\n管理员已启用服务器端加密,您的文件已使用密码 '%s' 加密。\n\n请登陆网页界面,进入个人设置中的“基础加密模块”部分,在“旧登陆密码”处输入上述密码并输入您的当前登陆密码,即可更新加密密码。\n", "The share will expire on %s." : "此分享将在 %s 过期。", "Cheers!" : "干杯!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "您好,

管理员已启用服务器端加密,您的文件已使用密码 %s 加密。

\n请登陆网页界面,进入个人设置中的“基础加密模块”部分,在“旧登陆密码”处输入上述密码并输入您的当前登陆密码,即可更新加密密码。

", - "Default encryption module" : "默认加密模块", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "加密应用程序已启用,但您的密钥未初始化,请注销并再次登录", "Encrypt the home storage" : "加密主目录储存", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "启用此选项将加密存储在主存储上的所有文件,否则只会加密外部存储上的文件.", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "启用该项将允许你在密码丢失后取回您的加密文件", "Enabled" : "开启", "Disabled" : "禁用", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "加密应用被启用了,但是你的加密密钥没有初始化,请重新登出登录系统一次。" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "您需要从旧版本 (ownCloud <= 8.0) 迁移您的加密密钥. 请运行 'occ encryption:migrate' 或联系您的管理员." }, "nplurals=1; plural=0;"); diff --git a/apps/encryption/l10n/zh_CN.json b/apps/encryption/l10n/zh_CN.json index fc2ad5fcabb7c..6bc612f20d572 100644 --- a/apps/encryption/l10n/zh_CN.json +++ b/apps/encryption/l10n/zh_CN.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "原始密码错误,请重试。", "The current log-in password was not correct, please try again." : "当前登录密码不正确,请重试。", "Private key password successfully updated." : "私钥密码成功更新。", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "您需要从旧版本 (ownCloud <= 8.0) 迁移您的加密密钥. 请运行 'occ encryption:migrate' 或联系您的管理员.", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "无效的加密应用程序私钥。请在您的个人设置中更新您的私钥密码,以恢复对加密文件的访问。", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "加密应用被启用了,但是你的加密密钥没有初始化。请重新登出登录系统一次。", "Please enable server side encryption in the admin settings in order to use the encryption module." : "请启用管理员设置中的服务器端加密,以使用加密模块。", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "用于服务器端加密的一次性密码", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : " 无法解密这个文件(或许这是一个共享文件?),请询问文件所有者重新与您分享这个文件。", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "无法读取此文件,可能这是一个共享文件。请让文件所有者重新共享该文件。", + "Default encryption module" : "默认加密模块", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "您好,\n管理员已启用服务器端加密,您的文件已使用密码 '%s' 加密。\n\n请登陆网页界面,进入个人设置中的“基础加密模块”部分,在“旧登陆密码”处输入上述密码并输入您的当前登陆密码,即可更新加密密码。\n", "The share will expire on %s." : "此分享将在 %s 过期。", "Cheers!" : "干杯!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "您好,

管理员已启用服务器端加密,您的文件已使用密码 %s 加密。

\n请登陆网页界面,进入个人设置中的“基础加密模块”部分,在“旧登陆密码”处输入上述密码并输入您的当前登陆密码,即可更新加密密码。

", - "Default encryption module" : "默认加密模块", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "加密应用程序已启用,但您的密钥未初始化,请注销并再次登录", "Encrypt the home storage" : "加密主目录储存", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "启用此选项将加密存储在主存储上的所有文件,否则只会加密外部存储上的文件.", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "启用该项将允许你在密码丢失后取回您的加密文件", "Enabled" : "开启", "Disabled" : "禁用", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "加密应用被启用了,但是你的加密密钥没有初始化,请重新登出登录系统一次。" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "您需要从旧版本 (ownCloud <= 8.0) 迁移您的加密密钥. 请运行 'occ encryption:migrate' 或联系您的管理员." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/encryption/l10n/zh_TW.js b/apps/encryption/l10n/zh_TW.js index 93fe93de7260c..1309fe52b41fc 100644 --- a/apps/encryption/l10n/zh_TW.js +++ b/apps/encryption/l10n/zh_TW.js @@ -21,7 +21,6 @@ OC.L10N.register( "The old password was not correct, please try again." : "舊密碼不正確,請再試一次", "The current log-in password was not correct, please try again." : "目前登入的密碼不正確,請再試一次", "Private key password successfully updated." : "私人金鑰密碼已成功更新。", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "您需要搬移您的加密鑰匙從舊版的加密 (ownCloud <= 8.0) 到新版,請執行 'occ encryption:migrate' 或是聯絡系統管理員", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "無效的加密應用程序私鑰。請在您的個人設定中更新您的私鑰密碼,以恢復對加密文件的訪問。", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "已啟用加密應用,但是你的加密密鑰沒有初始化。請重新登出並登入系統一次。", "Please enable server side encryption in the admin settings in order to use the encryption module." : "請啟用管理員設定中的伺服器端加密,以使用加密模組。", @@ -31,11 +30,11 @@ OC.L10N.register( "one-time password for server-side-encryption" : "一次性密碼用於伺服器端的加密", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "無法解密這個檔案,也許這是分享的檔案。請詢問檔案所有人重新分享檔案給您。", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "無法檢視這個檔案,或許這是分享的檔案,請詢問這個檔案的擁有者並請他重新分享給您。", + "Default encryption module" : "預設加密模組", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "嗨,請看這裡,\n\n系管理員啟用了伺服器端的加密功能,您的檔案將會使用密碼 '%s' 加密\n\n請從網頁登入,到 'basic encryption module' 設置您的個人設定並透過更新加密密碼,將這個組密碼設定在 'old log-in password' 以及您的目前登入密碼\n", "The share will expire on %s." : "這個分享將會於 %s 過期", "Cheers!" : "太棒了!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "嗨,請看這裡,

系管理員啟用了伺服器端的加密功能,您的檔案將會使用密碼 '%s' 加密,請從網頁登入,到 'basic encryption module' 設置您的個人設定並透過更新加密密碼,將這個組密碼設定在 'old log-in password' 以及您的目前登入密碼

", - "Default encryption module" : "預設加密模組", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "已啟用加密應用,但是你的加密密鑰沒有初始化。請重新登出並登入系統一次。", "Encrypt the home storage" : "加密家目錄空間", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "請啟用這個功能以用來加密主要儲存空間的檔案,否則只有再外部儲存的檔案會加密", @@ -60,6 +59,6 @@ OC.L10N.register( "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "啟用這個選項將會允許您因忘記密碼但需要存取您的加密檔案", "Enabled" : "已啓用", "Disabled" : "已停用", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "檔案加密已啓用,但是您的金鑰尚未初始化,請重新登入一次" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "您需要搬移您的加密鑰匙從舊版的加密 (ownCloud <= 8.0) 到新版,請執行 'occ encryption:migrate' 或是聯絡系統管理員" }, "nplurals=1; plural=0;"); diff --git a/apps/encryption/l10n/zh_TW.json b/apps/encryption/l10n/zh_TW.json index 545a78efdda7d..6da4c325cefbd 100644 --- a/apps/encryption/l10n/zh_TW.json +++ b/apps/encryption/l10n/zh_TW.json @@ -19,7 +19,6 @@ "The old password was not correct, please try again." : "舊密碼不正確,請再試一次", "The current log-in password was not correct, please try again." : "目前登入的密碼不正確,請再試一次", "Private key password successfully updated." : "私人金鑰密碼已成功更新。", - "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "您需要搬移您的加密鑰匙從舊版的加密 (ownCloud <= 8.0) 到新版,請執行 'occ encryption:migrate' 或是聯絡系統管理員", "Invalid private key for encryption app. Please update your private key password in your personal settings to recover access to your encrypted files." : "無效的加密應用程序私鑰。請在您的個人設定中更新您的私鑰密碼,以恢復對加密文件的訪問。", "Encryption App is enabled, but your keys are not initialized. Please log-out and log-in again." : "已啟用加密應用,但是你的加密密鑰沒有初始化。請重新登出並登入系統一次。", "Please enable server side encryption in the admin settings in order to use the encryption module." : "請啟用管理員設定中的伺服器端加密,以使用加密模組。", @@ -29,11 +28,11 @@ "one-time password for server-side-encryption" : "一次性密碼用於伺服器端的加密", "Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "無法解密這個檔案,也許這是分享的檔案。請詢問檔案所有人重新分享檔案給您。", "Can not read this file, probably this is a shared file. Please ask the file owner to reshare the file with you." : "無法檢視這個檔案,或許這是分享的檔案,請詢問這個檔案的擁有者並請他重新分享給您。", + "Default encryption module" : "預設加密模組", "Hey there,\n\nthe admin enabled server-side-encryption. Your files were encrypted using the password '%s'.\n\nPlease login to the web interface, go to the section 'basic encryption module' of your personal settings and update your encryption password by entering this password into the 'old log-in password' field and your current login-password.\n\n" : "嗨,請看這裡,\n\n系管理員啟用了伺服器端的加密功能,您的檔案將會使用密碼 '%s' 加密\n\n請從網頁登入,到 'basic encryption module' 設置您的個人設定並透過更新加密密碼,將這個組密碼設定在 'old log-in password' 以及您的目前登入密碼\n", "The share will expire on %s." : "這個分享將會於 %s 過期", "Cheers!" : "太棒了!", "Hey there,

the admin enabled server-side-encryption. Your files were encrypted using the password %s.

Please login to the web interface, go to the section \"basic encryption module\" of your personal settings and update your encryption password by entering this password into the \"old log-in password\" field and your current login-password.

" : "嗨,請看這裡,

系管理員啟用了伺服器端的加密功能,您的檔案將會使用密碼 '%s' 加密,請從網頁登入,到 'basic encryption module' 設置您的個人設定並透過更新加密密碼,將這個組密碼設定在 'old log-in password' 以及您的目前登入密碼

", - "Default encryption module" : "預設加密模組", "Encryption app is enabled but your keys are not initialized, please log-out and log-in again" : "已啟用加密應用,但是你的加密密鑰沒有初始化。請重新登出並登入系統一次。", "Encrypt the home storage" : "加密家目錄空間", "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" : "請啟用這個功能以用來加密主要儲存空間的檔案,否則只有再外部儲存的檔案會加密", @@ -58,6 +57,6 @@ "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" : "啟用這個選項將會允許您因忘記密碼但需要存取您的加密檔案", "Enabled" : "已啓用", "Disabled" : "已停用", - "Encryption App is enabled but your keys are not initialized, please log-out and log-in again" : "檔案加密已啓用,但是您的金鑰尚未初始化,請重新登入一次" + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please run 'occ encryption:migrate' or contact your administrator" : "您需要搬移您的加密鑰匙從舊版的加密 (ownCloud <= 8.0) 到新版,請執行 'occ encryption:migrate' 或是聯絡系統管理員" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/ast.js b/apps/federatedfilesharing/l10n/ast.js index 3b5affabbb9bf..627546a87608e 100644 --- a/apps/federatedfilesharing/l10n/ast.js +++ b/apps/federatedfilesharing/l10n/ast.js @@ -1,9 +1,35 @@ OC.L10N.register( "federatedfilesharing", { - "Invalid Federated Cloud ID" : "Inválidu ID de Ñube Federada", - "Sharing %s failed, because this item is already shared with %s" : "Compartir %s falló, porque esti elementu yá ta compartiéndose con %s", + "Federated sharing" : "Compartición federada", + "Do you want to add the remote share {name} from {owner}@{remote}?" : "¿Quies amestar la compartición remota {name} de {owner}@{remote}?", + "Remote share" : "Compartición remota", + "Remote share password" : "Contraseña de compartición remota", + "Cancel" : "Encaboxar", + "Add remote share" : "Amestar compartición remota", + "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.", + "Invalid Federated Cloud ID" : "ID non válida de ñube federada", + "Server to server sharing is not enabled on this server" : "Nun s'habilitó la compartición sirvidor a sirvidor nesti sirvidor", + "Couldn't establish a federated share." : "Nun pud afitase una compartición federada.", + "Couldn't establish a federated share, maybe the password was wrong." : "Nun pudo afitase una compartición federada, quiciabes la contraseña tubiere mal.", + "Sharing %s failed, because this item is already shared with %s" : "Falló la compartición de %s porque esti elementu yá ta compartíu con %s", "Not allowed to create a federated share with the same user" : "Nun s'almite crear un recursu compartíu federáu col mesmu usuariu", - "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Compartir %s falló, nun pudo atopase %s, pue qu'el servidor nun seya anguaño algamable." + "File is already shared with %s" : "El ficheru yá ta compartíu con %s", + "Could not find share" : "Nun pudo alcontrase la compartición", + "Accept" : "Aceutar", + "Decline" : "Refugar", + "Federated Cloud Sharing" : "Compartición de ñube federada", + "Open documentation" : "Abrir documentación", + "Federated Cloud" : "Ñube federada", + "Your Federated Cloud ID:" : "La to ID de ñube federada:", + "HTML Code:" : "Códigu HTML:", + "The mountpoint name contains invalid characters." : "El nome del puntu de montaxe contién caráuteres non válidos.", + "Not allowed to create a federated share with the owner." : "Nun se permite'l crear una compartición federada col dueñu.", + "Storage not valid" : "Almacenamientu non válidu", + "Couldn't add remote share" : "Nun pudo amestase la compartición remota" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/ast.json b/apps/federatedfilesharing/l10n/ast.json index e5eb10cf14ee1..0ae8f91148d0d 100644 --- a/apps/federatedfilesharing/l10n/ast.json +++ b/apps/federatedfilesharing/l10n/ast.json @@ -1,7 +1,33 @@ { "translations": { - "Invalid Federated Cloud ID" : "Inválidu ID de Ñube Federada", - "Sharing %s failed, because this item is already shared with %s" : "Compartir %s falló, porque esti elementu yá ta compartiéndose con %s", + "Federated sharing" : "Compartición federada", + "Do you want to add the remote share {name} from {owner}@{remote}?" : "¿Quies amestar la compartición remota {name} de {owner}@{remote}?", + "Remote share" : "Compartición remota", + "Remote share password" : "Contraseña de compartición remota", + "Cancel" : "Encaboxar", + "Add remote share" : "Amestar compartición remota", + "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.", + "Invalid Federated Cloud ID" : "ID non válida de ñube federada", + "Server to server sharing is not enabled on this server" : "Nun s'habilitó la compartición sirvidor a sirvidor nesti sirvidor", + "Couldn't establish a federated share." : "Nun pud afitase una compartición federada.", + "Couldn't establish a federated share, maybe the password was wrong." : "Nun pudo afitase una compartición federada, quiciabes la contraseña tubiere mal.", + "Sharing %s failed, because this item is already shared with %s" : "Falló la compartición de %s porque esti elementu yá ta compartíu con %s", "Not allowed to create a federated share with the same user" : "Nun s'almite crear un recursu compartíu federáu col mesmu usuariu", - "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "Compartir %s falló, nun pudo atopase %s, pue qu'el servidor nun seya anguaño algamable." + "File is already shared with %s" : "El ficheru yá ta compartíu con %s", + "Could not find share" : "Nun pudo alcontrase la compartición", + "Accept" : "Aceutar", + "Decline" : "Refugar", + "Federated Cloud Sharing" : "Compartición de ñube federada", + "Open documentation" : "Abrir documentación", + "Federated Cloud" : "Ñube federada", + "Your Federated Cloud ID:" : "La to ID de ñube federada:", + "HTML Code:" : "Códigu HTML:", + "The mountpoint name contains invalid characters." : "El nome del puntu de montaxe contién caráuteres non válidos.", + "Not allowed to create a federated share with the owner." : "Nun se permite'l crear una compartición federada col dueñu.", + "Storage not valid" : "Almacenamientu non válidu", + "Couldn't add remote share" : "Nun pudo amestase la compartición remota" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/bg.js b/apps/federatedfilesharing/l10n/bg.js new file mode 100644 index 0000000000000..cfe8703ba9167 --- /dev/null +++ b/apps/federatedfilesharing/l10n/bg.js @@ -0,0 +1,34 @@ +OC.L10N.register( + "federatedfilesharing", + { + "Federated sharing" : "Федерално споделяне", + "Do you want to add the remote share {name} from {owner}@{remote}?" : "Искате ли да добавите отдалечено споделяне {name} от {owner}@{remote}?", + "Remote share" : "Отдалечено споделяне", + "Remote share password" : "Парола за отдалечено споделяне", + "Cancel" : "Отказ", + "Add remote share" : "Добави отдалечено споделяне", + "Copy" : "Копиране", + "Copied!" : "Копирано!", + "Not supported!" : "Не се поддържа!", + "Press ⌘-C to copy." : "За копиране натиснете ⌘-C", + "Press Ctrl-C to copy." : "За копиране натиснете Ctrl-C", + "Invalid Federated Cloud ID" : "Невалидно Федерално Cloud ID", + "Server to server sharing is not enabled on this server" : "Споделяне между сървъри не е разрешено на този сървър.", + "Couldn't establish a federated share." : "Неуспешно осъществяване на федерално споделяне", + "Couldn't establish a federated share, maybe the password was wrong." : "Неуспешно осъществяване на федерално споделяне, можеби паролата е грепна.", + "Sharing %s failed, because this item is already shared with %s" : "Неуспешно споделяне на %s, защото съдържанието е вече споделено с %s.", + "Not allowed to create a federated share with the same user" : "Не е позволено създаване на федерално споделяне със същият потребител", + "File is already shared with %s" : "Файлът е вече споделен с %s", + "Accept" : "Приемам", + "Open documentation" : "Отвори документацията", + "Allow users on this server to send shares to other servers" : "Позволи на потребители от този сървър да споделят папки с други сървъри", + "Allow users on this server to receive shares from other servers" : "Позволи на потребители на този сървър да получават споделени папки от други сървъри", + "HTML Code:" : "HTML код:", + "The mountpoint name contains invalid characters." : "Името на mountpoint-a съдържа невалидни символи.", + "Not allowed to create a federated share with the owner." : "Не е позволено създаване на федерално споделяне със собственика.", + "Invalid or untrusted SSL certificate" : "Невалиден или ненадежден SSL сертификат", + "Could not authenticate to remote share, password might be wrong" : "Неуспешно удостоверяване на отдалеченото споделяне, възможно е паролата да е грешна", + "Storage not valid" : "Невалидно хранилище", + "Couldn't add remote share" : "Неуспешно добавяне на отдалечена споделена директория." +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/bg.json b/apps/federatedfilesharing/l10n/bg.json new file mode 100644 index 0000000000000..36714a6d4f29c --- /dev/null +++ b/apps/federatedfilesharing/l10n/bg.json @@ -0,0 +1,32 @@ +{ "translations": { + "Federated sharing" : "Федерално споделяне", + "Do you want to add the remote share {name} from {owner}@{remote}?" : "Искате ли да добавите отдалечено споделяне {name} от {owner}@{remote}?", + "Remote share" : "Отдалечено споделяне", + "Remote share password" : "Парола за отдалечено споделяне", + "Cancel" : "Отказ", + "Add remote share" : "Добави отдалечено споделяне", + "Copy" : "Копиране", + "Copied!" : "Копирано!", + "Not supported!" : "Не се поддържа!", + "Press ⌘-C to copy." : "За копиране натиснете ⌘-C", + "Press Ctrl-C to copy." : "За копиране натиснете Ctrl-C", + "Invalid Federated Cloud ID" : "Невалидно Федерално Cloud ID", + "Server to server sharing is not enabled on this server" : "Споделяне между сървъри не е разрешено на този сървър.", + "Couldn't establish a federated share." : "Неуспешно осъществяване на федерално споделяне", + "Couldn't establish a federated share, maybe the password was wrong." : "Неуспешно осъществяване на федерално споделяне, можеби паролата е грепна.", + "Sharing %s failed, because this item is already shared with %s" : "Неуспешно споделяне на %s, защото съдържанието е вече споделено с %s.", + "Not allowed to create a federated share with the same user" : "Не е позволено създаване на федерално споделяне със същият потребител", + "File is already shared with %s" : "Файлът е вече споделен с %s", + "Accept" : "Приемам", + "Open documentation" : "Отвори документацията", + "Allow users on this server to send shares to other servers" : "Позволи на потребители от този сървър да споделят папки с други сървъри", + "Allow users on this server to receive shares from other servers" : "Позволи на потребители на този сървър да получават споделени папки от други сървъри", + "HTML Code:" : "HTML код:", + "The mountpoint name contains invalid characters." : "Името на mountpoint-a съдържа невалидни символи.", + "Not allowed to create a federated share with the owner." : "Не е позволено създаване на федерално споделяне със собственика.", + "Invalid or untrusted SSL certificate" : "Невалиден или ненадежден SSL сертификат", + "Could not authenticate to remote share, password might be wrong" : "Неуспешно удостоверяване на отдалеченото споделяне, възможно е паролата да е грешна", + "Storage not valid" : "Невалидно хранилище", + "Couldn't add remote share" : "Неуспешно добавяне на отдалечена споделена директория." +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/ca.js b/apps/federatedfilesharing/l10n/ca.js index 6f17c20b08e34..896a59d92c139 100644 --- a/apps/federatedfilesharing/l10n/ca.js +++ b/apps/federatedfilesharing/l10n/ca.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "No s'ha pogut establir una part federada.", "Couldn't establish a federated share, maybe the password was wrong." : "No s'ha pogut establir una acció compartida federada, potser la contrasenya ha estat incorrecta.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "S'ha enviat la sol·licitud de participació federada, rebràs una invitació. Comproveu les vostres notificacions.", - "The mountpoint name contains invalid characters." : "El nom del punt de muntatge conté caràcters no vàlids.", - "Not allowed to create a federated share with the owner." : "No es permet crear una compartida federada amb el propietari.", - "Invalid or untrusted SSL certificate" : "El certificat SSL és invàlid o no és fiable", - "Could not authenticate to remote share, password might be wrong" : "No s'ha pogut autenticar per compartir de manera remota, la contrasenya podria estar equivocada", - "Storage not valid" : "Emmagatzemament no vàlid", - "Federated share added" : "S'ha afegit una part federada", - "Couldn't add remote share" : "No s'ha pogut afegir una compartició remota", "Sharing %s failed, because this item is already shared with %s" : "Ha fallat en compartir %s, perquè l'element ja està compartit amb %s", "Not allowed to create a federated share with the same user" : "No està permés crear una compartició federada amb el mateix usuari", "File is already shared with %s" : "El fitxer ja està compartit amb %s", @@ -38,6 +31,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Compartiu amb mi a través de la meva #Nextcloud Federated Cloud Id, vegeu%s", "Share with me through my #Nextcloud Federated Cloud ID" : "Compartiu amb mi a través de la meva #Nextcloud Federated Cloud ID", "Sharing" : "Compartir", + "Federated file sharing" : "Compartició federada d'arxius", "Federated Cloud Sharing" : "Compartició federada de núvol", "Open documentation" : "Obre la documentació", "Adjust how people can share between servers." : "Ajusteu com les persones poden compartir entre servidors.", @@ -52,7 +46,13 @@ OC.L10N.register( "Add to your website" : "Afegeix a la teva pàgina web", "Share with me via Nextcloud" : "Comparteix amb mi a través de Nextcloud", "HTML Code:" : "Codi HTML:", - "Search global and public address book for users and let local users publish their data" : "Busqueu llibreta d'adreces global i pública per als usuaris i deixeu que els usuaris locals publiquin les seves dades", - "Share it:" : "Comparteix-lo:" + "The mountpoint name contains invalid characters." : "El nom del punt de muntatge conté caràcters no vàlids.", + "Not allowed to create a federated share with the owner." : "No es permet crear una compartida federada amb el propietari.", + "Invalid or untrusted SSL certificate" : "El certificat SSL és invàlid o no és fiable", + "Could not authenticate to remote share, password might be wrong" : "No s'ha pogut autenticar per compartir de manera remota, la contrasenya podria estar equivocada", + "Storage not valid" : "Emmagatzemament no vàlid", + "Federated share added" : "S'ha afegit una part federada", + "Couldn't add remote share" : "No s'ha pogut afegir una compartició remota", + "Search global and public address book for users and let local users publish their data" : "Busqueu llibreta d'adreces global i pública per als usuaris i deixeu que els usuaris locals publiquin les seves dades" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/ca.json b/apps/federatedfilesharing/l10n/ca.json index 61f816eb2da47..6863153c673a5 100644 --- a/apps/federatedfilesharing/l10n/ca.json +++ b/apps/federatedfilesharing/l10n/ca.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "No s'ha pogut establir una part federada.", "Couldn't establish a federated share, maybe the password was wrong." : "No s'ha pogut establir una acció compartida federada, potser la contrasenya ha estat incorrecta.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "S'ha enviat la sol·licitud de participació federada, rebràs una invitació. Comproveu les vostres notificacions.", - "The mountpoint name contains invalid characters." : "El nom del punt de muntatge conté caràcters no vàlids.", - "Not allowed to create a federated share with the owner." : "No es permet crear una compartida federada amb el propietari.", - "Invalid or untrusted SSL certificate" : "El certificat SSL és invàlid o no és fiable", - "Could not authenticate to remote share, password might be wrong" : "No s'ha pogut autenticar per compartir de manera remota, la contrasenya podria estar equivocada", - "Storage not valid" : "Emmagatzemament no vàlid", - "Federated share added" : "S'ha afegit una part federada", - "Couldn't add remote share" : "No s'ha pogut afegir una compartició remota", "Sharing %s failed, because this item is already shared with %s" : "Ha fallat en compartir %s, perquè l'element ja està compartit amb %s", "Not allowed to create a federated share with the same user" : "No està permés crear una compartició federada amb el mateix usuari", "File is already shared with %s" : "El fitxer ja està compartit amb %s", @@ -36,6 +29,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Compartiu amb mi a través de la meva #Nextcloud Federated Cloud Id, vegeu%s", "Share with me through my #Nextcloud Federated Cloud ID" : "Compartiu amb mi a través de la meva #Nextcloud Federated Cloud ID", "Sharing" : "Compartir", + "Federated file sharing" : "Compartició federada d'arxius", "Federated Cloud Sharing" : "Compartició federada de núvol", "Open documentation" : "Obre la documentació", "Adjust how people can share between servers." : "Ajusteu com les persones poden compartir entre servidors.", @@ -50,7 +44,13 @@ "Add to your website" : "Afegeix a la teva pàgina web", "Share with me via Nextcloud" : "Comparteix amb mi a través de Nextcloud", "HTML Code:" : "Codi HTML:", - "Search global and public address book for users and let local users publish their data" : "Busqueu llibreta d'adreces global i pública per als usuaris i deixeu que els usuaris locals publiquin les seves dades", - "Share it:" : "Comparteix-lo:" + "The mountpoint name contains invalid characters." : "El nom del punt de muntatge conté caràcters no vàlids.", + "Not allowed to create a federated share with the owner." : "No es permet crear una compartida federada amb el propietari.", + "Invalid or untrusted SSL certificate" : "El certificat SSL és invàlid o no és fiable", + "Could not authenticate to remote share, password might be wrong" : "No s'ha pogut autenticar per compartir de manera remota, la contrasenya podria estar equivocada", + "Storage not valid" : "Emmagatzemament no vàlid", + "Federated share added" : "S'ha afegit una part federada", + "Couldn't add remote share" : "No s'ha pogut afegir una compartició remota", + "Search global and public address book for users and let local users publish their data" : "Busqueu llibreta d'adreces global i pública per als usuaris i deixeu que els usuaris locals publiquin les seves dades" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/cs.js b/apps/federatedfilesharing/l10n/cs.js index d36be2a86afa1..51e53113f0cee 100644 --- a/apps/federatedfilesharing/l10n/cs.js +++ b/apps/federatedfilesharing/l10n/cs.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "Nepodařilo se ustavit spojené sdílení.", "Couldn't establish a federated share, maybe the password was wrong." : "Nepodařilo se ustavit propojené sdílení, heslo může být nesprávné.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Požadavek na spojené sdílení byl odeslán, obdržíte pozvánku. Zkontrolujte vaše upozornění.", - "The mountpoint name contains invalid characters." : "Jméno přípojného bodu obsahuje neplatné znaky.", - "Not allowed to create a federated share with the owner." : "ONení povoleno s autorem vytvořit propojené sdílení.", - "Invalid or untrusted SSL certificate" : "Neplatný nebo nedůvěryhodný SSL certifikát", - "Could not authenticate to remote share, password might be wrong" : "Autentizace ke vzdálenému sdílení selhala, heslo může být nesprávné", - "Storage not valid" : "Úložiště není platné", - "Federated share added" : "Propojené sdílení bylo přidáno", - "Couldn't add remote share" : "Nepodařilo se přidat propojené sdílení", "Sharing %s failed, because this item is already shared with %s" : "Sdílení položky %s selhalo, protože položka již je s uživatelem %s sdílena", "Not allowed to create a federated share with the same user" : "Není povoleno vytvořit propojené sdílení s tím samým uživatelem", "File is already shared with %s" : "Soubor je již sdílen s %s", @@ -38,6 +31,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Sdílej se mnou pomocí mého #Nextcloud sdruženého cloud ID, více na %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Sdílej se mnou pomocí mého #Nextcloud sdruženého cloud ID", "Sharing" : "Sdílení", + "Federated file sharing" : "Federované sdílení souborů", "Federated Cloud Sharing" : "Propojené cloudové sdílení", "Open documentation" : "Otevřít dokumentaci", "Adjust how people can share between servers." : "Upravte, jak mohou lidé mezi servery sdílet.", @@ -52,7 +46,13 @@ OC.L10N.register( "Add to your website" : "Přidat na svou webovou stránku", "Share with me via Nextcloud" : "Sdíleno se mnou přes Nextcloud", "HTML Code:" : "HTML kód:", - "Search global and public address book for users and let local users publish their data" : "Hledat uživatele v globálním a veřejném adresáři a dovolit místním uživatelům publikovat jejich údaje", - "Share it:" : "Sdílet:" + "The mountpoint name contains invalid characters." : "Jméno přípojného bodu obsahuje neplatné znaky.", + "Not allowed to create a federated share with the owner." : "ONení povoleno s autorem vytvořit propojené sdílení.", + "Invalid or untrusted SSL certificate" : "Neplatný nebo nedůvěryhodný SSL certifikát", + "Could not authenticate to remote share, password might be wrong" : "Autentizace ke vzdálenému sdílení selhala, heslo může být nesprávné", + "Storage not valid" : "Úložiště není platné", + "Federated share added" : "Propojené sdílení bylo přidáno", + "Couldn't add remote share" : "Nepodařilo se přidat propojené sdílení", + "Search global and public address book for users and let local users publish their data" : "Hledat uživatele v globálním a veřejném adresáři a dovolit místním uživatelům publikovat jejich údaje" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/federatedfilesharing/l10n/cs.json b/apps/federatedfilesharing/l10n/cs.json index 889a9634f6e29..f17d7bb2371a5 100644 --- a/apps/federatedfilesharing/l10n/cs.json +++ b/apps/federatedfilesharing/l10n/cs.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "Nepodařilo se ustavit spojené sdílení.", "Couldn't establish a federated share, maybe the password was wrong." : "Nepodařilo se ustavit propojené sdílení, heslo může být nesprávné.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Požadavek na spojené sdílení byl odeslán, obdržíte pozvánku. Zkontrolujte vaše upozornění.", - "The mountpoint name contains invalid characters." : "Jméno přípojného bodu obsahuje neplatné znaky.", - "Not allowed to create a federated share with the owner." : "ONení povoleno s autorem vytvořit propojené sdílení.", - "Invalid or untrusted SSL certificate" : "Neplatný nebo nedůvěryhodný SSL certifikát", - "Could not authenticate to remote share, password might be wrong" : "Autentizace ke vzdálenému sdílení selhala, heslo může být nesprávné", - "Storage not valid" : "Úložiště není platné", - "Federated share added" : "Propojené sdílení bylo přidáno", - "Couldn't add remote share" : "Nepodařilo se přidat propojené sdílení", "Sharing %s failed, because this item is already shared with %s" : "Sdílení položky %s selhalo, protože položka již je s uživatelem %s sdílena", "Not allowed to create a federated share with the same user" : "Není povoleno vytvořit propojené sdílení s tím samým uživatelem", "File is already shared with %s" : "Soubor je již sdílen s %s", @@ -36,6 +29,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Sdílej se mnou pomocí mého #Nextcloud sdruženého cloud ID, více na %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Sdílej se mnou pomocí mého #Nextcloud sdruženého cloud ID", "Sharing" : "Sdílení", + "Federated file sharing" : "Federované sdílení souborů", "Federated Cloud Sharing" : "Propojené cloudové sdílení", "Open documentation" : "Otevřít dokumentaci", "Adjust how people can share between servers." : "Upravte, jak mohou lidé mezi servery sdílet.", @@ -50,7 +44,13 @@ "Add to your website" : "Přidat na svou webovou stránku", "Share with me via Nextcloud" : "Sdíleno se mnou přes Nextcloud", "HTML Code:" : "HTML kód:", - "Search global and public address book for users and let local users publish their data" : "Hledat uživatele v globálním a veřejném adresáři a dovolit místním uživatelům publikovat jejich údaje", - "Share it:" : "Sdílet:" + "The mountpoint name contains invalid characters." : "Jméno přípojného bodu obsahuje neplatné znaky.", + "Not allowed to create a federated share with the owner." : "ONení povoleno s autorem vytvořit propojené sdílení.", + "Invalid or untrusted SSL certificate" : "Neplatný nebo nedůvěryhodný SSL certifikát", + "Could not authenticate to remote share, password might be wrong" : "Autentizace ke vzdálenému sdílení selhala, heslo může být nesprávné", + "Storage not valid" : "Úložiště není platné", + "Federated share added" : "Propojené sdílení bylo přidáno", + "Couldn't add remote share" : "Nepodařilo se přidat propojené sdílení", + "Search global and public address book for users and let local users publish their data" : "Hledat uživatele v globálním a veřejném adresáři a dovolit místním uživatelům publikovat jejich údaje" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/da.js b/apps/federatedfilesharing/l10n/da.js index fb7ce6a0704fd..5743716fa607a 100644 --- a/apps/federatedfilesharing/l10n/da.js +++ b/apps/federatedfilesharing/l10n/da.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "Kunne ikke skabe forbindelse til føderal deling ", "Couldn't establish a federated share, maybe the password was wrong." : "Kunne ikke skabe forbindelse til føderal deling, måske var passwordet forkert.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Føderal deling anmodning sendt, du vil modtage en invitation. Tjek dine notifikationer.", - "The mountpoint name contains invalid characters." : "Monteringspunktets navn indeholder ugyldige tegn.", - "Not allowed to create a federated share with the owner." : "Det er ikke tilladt at danne et datafællesskab med ejeren.", - "Invalid or untrusted SSL certificate" : "Ugyldigt eller upålideligt SSL-certifikat", - "Could not authenticate to remote share, password might be wrong" : "Kunne ikke godkende fjerndelingen - kodeordet er muilgvis forkert", - "Storage not valid" : "Lagerplads er ikke gyldig", - "Federated share added" : "Datafællesskabsdeling tilføjet", - "Couldn't add remote share" : "Kunne ikke tliføje den ekstern deling", "Sharing %s failed, because this item is already shared with %s" : "Der skete en fejl ved deling af %s, objektet er allerede delt med %s", "Not allowed to create a federated share with the same user" : "Det er ikke tilladt at danne et datafællesskab med samme bruger", "File is already shared with %s" : "Filen deles allerede med %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Tilføj til dit websted", "Share with me via Nextcloud" : "Del med mig gennem Nextcloud", "HTML Code:" : "HTMLkode:", - "Search global and public address book for users and let local users publish their data" : "Søg global og offentlig adresse bog for brugere og lad lokale brugere offentliggøre deres data", - "Share it:" : "Del:" + "The mountpoint name contains invalid characters." : "Monteringspunktets navn indeholder ugyldige tegn.", + "Not allowed to create a federated share with the owner." : "Det er ikke tilladt at danne et datafællesskab med ejeren.", + "Invalid or untrusted SSL certificate" : "Ugyldigt eller upålideligt SSL-certifikat", + "Could not authenticate to remote share, password might be wrong" : "Kunne ikke godkende fjerndelingen - kodeordet er muilgvis forkert", + "Storage not valid" : "Lagerplads er ikke gyldig", + "Federated share added" : "Datafællesskabsdeling tilføjet", + "Couldn't add remote share" : "Kunne ikke tliføje den ekstern deling", + "Search global and public address book for users and let local users publish their data" : "Søg global og offentlig adresse bog for brugere og lad lokale brugere offentliggøre deres data" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/da.json b/apps/federatedfilesharing/l10n/da.json index df5eaa6a7662c..9c34d16842b10 100644 --- a/apps/federatedfilesharing/l10n/da.json +++ b/apps/federatedfilesharing/l10n/da.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "Kunne ikke skabe forbindelse til føderal deling ", "Couldn't establish a federated share, maybe the password was wrong." : "Kunne ikke skabe forbindelse til føderal deling, måske var passwordet forkert.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Føderal deling anmodning sendt, du vil modtage en invitation. Tjek dine notifikationer.", - "The mountpoint name contains invalid characters." : "Monteringspunktets navn indeholder ugyldige tegn.", - "Not allowed to create a federated share with the owner." : "Det er ikke tilladt at danne et datafællesskab med ejeren.", - "Invalid or untrusted SSL certificate" : "Ugyldigt eller upålideligt SSL-certifikat", - "Could not authenticate to remote share, password might be wrong" : "Kunne ikke godkende fjerndelingen - kodeordet er muilgvis forkert", - "Storage not valid" : "Lagerplads er ikke gyldig", - "Federated share added" : "Datafællesskabsdeling tilføjet", - "Couldn't add remote share" : "Kunne ikke tliføje den ekstern deling", "Sharing %s failed, because this item is already shared with %s" : "Der skete en fejl ved deling af %s, objektet er allerede delt med %s", "Not allowed to create a federated share with the same user" : "Det er ikke tilladt at danne et datafællesskab med samme bruger", "File is already shared with %s" : "Filen deles allerede med %s", @@ -50,7 +43,13 @@ "Add to your website" : "Tilføj til dit websted", "Share with me via Nextcloud" : "Del med mig gennem Nextcloud", "HTML Code:" : "HTMLkode:", - "Search global and public address book for users and let local users publish their data" : "Søg global og offentlig adresse bog for brugere og lad lokale brugere offentliggøre deres data", - "Share it:" : "Del:" + "The mountpoint name contains invalid characters." : "Monteringspunktets navn indeholder ugyldige tegn.", + "Not allowed to create a federated share with the owner." : "Det er ikke tilladt at danne et datafællesskab med ejeren.", + "Invalid or untrusted SSL certificate" : "Ugyldigt eller upålideligt SSL-certifikat", + "Could not authenticate to remote share, password might be wrong" : "Kunne ikke godkende fjerndelingen - kodeordet er muilgvis forkert", + "Storage not valid" : "Lagerplads er ikke gyldig", + "Federated share added" : "Datafællesskabsdeling tilføjet", + "Couldn't add remote share" : "Kunne ikke tliføje den ekstern deling", + "Search global and public address book for users and let local users publish their data" : "Søg global og offentlig adresse bog for brugere og lad lokale brugere offentliggøre deres data" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/de.js b/apps/federatedfilesharing/l10n/de.js index 13dc0a0bfe69c..6295f462b2189 100644 --- a/apps/federatedfilesharing/l10n/de.js +++ b/apps/federatedfilesharing/l10n/de.js @@ -17,13 +17,7 @@ OC.L10N.register( "Couldn't establish a federated share." : "Federated-Share konnte nicht aufgebaut werden", "Couldn't establish a federated share, maybe the password was wrong." : "Federated-Share konnte nicht aufgebaut werden, da eventuell das Passwort falsch ist.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Anfrage zum Federated-Share war erfolgreich. Du erhälst eine Einladung. Bitte prüfe deine Benachrichtigungen. ", - "The mountpoint name contains invalid characters." : "Der Name des Einhängepunktes enthält ungültige Zeichen.", - "Not allowed to create a federated share with the owner." : "Das Erstellen einer Federated Cloud Freigabe mit dem Benutzer ist nicht erlaubt.", - "Invalid or untrusted SSL certificate" : "Ungültiges oder nicht vertrauenswürdiges SSL-Zertifikat", - "Could not authenticate to remote share, password might be wrong" : "Die Authentifizierung an der entfernten Freigabe konnte nicht erfolgen, das Passwort könnte falsch sein", - "Storage not valid" : "Speicher ungültig", - "Federated share added" : "Federated-Share hinzugefügt ", - "Couldn't add remote share" : "Remotefreigabe konnte nicht hinzu gefügt werden", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Federated-Share konnte nicht aufgebaut werden, da der Zielserver eine zu alte Version verwendet (Nextcloud <=9).", "Sharing %s failed, because this item is already shared with %s" : "Freigabe von %s fehlgeschlagen, da dieses Objekt schon mit %s geteilt wird", "Not allowed to create a federated share with the same user" : "Das Erstellen einer Federated Cloud Freigabe mit dem gleichen Benutzer ist nicht erlaubt", "File is already shared with %s" : "Datei wird bereits mit %s geteilt", @@ -38,6 +32,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Über meine #Nextcloud Federated-Cloud-ID teilen, siehe %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Teile mit mir über meine #Nextcloud Federated-Cloud-ID", "Sharing" : "Teilen", + "Federated file sharing" : "Federated Datei-Freigabe", "Federated Cloud Sharing" : "Federated-Cloud-Sharing", "Open documentation" : "Dokumentation öffnen", "Adjust how people can share between servers." : "Definiere wie die Benutzer Inhalte mit anderen Servern teilen können.", @@ -52,7 +47,13 @@ OC.L10N.register( "Add to your website" : "Zu deiner Webseite hinzufügen", "Share with me via Nextcloud" : "Teile mit mir über Nextcloud", "HTML Code:" : "HTML-Code:", - "Search global and public address book for users and let local users publish their data" : "Globales und öffentliches Adressbuch nach Benutzern durchsuchen und lokale Benutzer ihre Daten veröffentlichen lassen", - "Share it:" : "Zum Teilen:" + "The mountpoint name contains invalid characters." : "Der Name des Einhängepunktes enthält ungültige Zeichen.", + "Not allowed to create a federated share with the owner." : "Das Erstellen einer Federated Cloud Freigabe mit dem Benutzer ist nicht erlaubt.", + "Invalid or untrusted SSL certificate" : "Ungültiges oder nicht vertrauenswürdiges SSL-Zertifikat", + "Could not authenticate to remote share, password might be wrong" : "Die Authentifizierung an der entfernten Freigabe konnte nicht erfolgen, das Passwort könnte falsch sein", + "Storage not valid" : "Speicher ungültig", + "Federated share added" : "Federated-Share hinzugefügt ", + "Couldn't add remote share" : "Remotefreigabe konnte nicht hinzu gefügt werden", + "Search global and public address book for users and let local users publish their data" : "Globales und öffentliches Adressbuch nach Benutzern durchsuchen und lokale Benutzer ihre Daten veröffentlichen lassen" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/de.json b/apps/federatedfilesharing/l10n/de.json index 319d4ea59f031..1f6cb7a605beb 100644 --- a/apps/federatedfilesharing/l10n/de.json +++ b/apps/federatedfilesharing/l10n/de.json @@ -15,13 +15,7 @@ "Couldn't establish a federated share." : "Federated-Share konnte nicht aufgebaut werden", "Couldn't establish a federated share, maybe the password was wrong." : "Federated-Share konnte nicht aufgebaut werden, da eventuell das Passwort falsch ist.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Anfrage zum Federated-Share war erfolgreich. Du erhälst eine Einladung. Bitte prüfe deine Benachrichtigungen. ", - "The mountpoint name contains invalid characters." : "Der Name des Einhängepunktes enthält ungültige Zeichen.", - "Not allowed to create a federated share with the owner." : "Das Erstellen einer Federated Cloud Freigabe mit dem Benutzer ist nicht erlaubt.", - "Invalid or untrusted SSL certificate" : "Ungültiges oder nicht vertrauenswürdiges SSL-Zertifikat", - "Could not authenticate to remote share, password might be wrong" : "Die Authentifizierung an der entfernten Freigabe konnte nicht erfolgen, das Passwort könnte falsch sein", - "Storage not valid" : "Speicher ungültig", - "Federated share added" : "Federated-Share hinzugefügt ", - "Couldn't add remote share" : "Remotefreigabe konnte nicht hinzu gefügt werden", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Federated-Share konnte nicht aufgebaut werden, da der Zielserver eine zu alte Version verwendet (Nextcloud <=9).", "Sharing %s failed, because this item is already shared with %s" : "Freigabe von %s fehlgeschlagen, da dieses Objekt schon mit %s geteilt wird", "Not allowed to create a federated share with the same user" : "Das Erstellen einer Federated Cloud Freigabe mit dem gleichen Benutzer ist nicht erlaubt", "File is already shared with %s" : "Datei wird bereits mit %s geteilt", @@ -36,6 +30,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Über meine #Nextcloud Federated-Cloud-ID teilen, siehe %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Teile mit mir über meine #Nextcloud Federated-Cloud-ID", "Sharing" : "Teilen", + "Federated file sharing" : "Federated Datei-Freigabe", "Federated Cloud Sharing" : "Federated-Cloud-Sharing", "Open documentation" : "Dokumentation öffnen", "Adjust how people can share between servers." : "Definiere wie die Benutzer Inhalte mit anderen Servern teilen können.", @@ -50,7 +45,13 @@ "Add to your website" : "Zu deiner Webseite hinzufügen", "Share with me via Nextcloud" : "Teile mit mir über Nextcloud", "HTML Code:" : "HTML-Code:", - "Search global and public address book for users and let local users publish their data" : "Globales und öffentliches Adressbuch nach Benutzern durchsuchen und lokale Benutzer ihre Daten veröffentlichen lassen", - "Share it:" : "Zum Teilen:" + "The mountpoint name contains invalid characters." : "Der Name des Einhängepunktes enthält ungültige Zeichen.", + "Not allowed to create a federated share with the owner." : "Das Erstellen einer Federated Cloud Freigabe mit dem Benutzer ist nicht erlaubt.", + "Invalid or untrusted SSL certificate" : "Ungültiges oder nicht vertrauenswürdiges SSL-Zertifikat", + "Could not authenticate to remote share, password might be wrong" : "Die Authentifizierung an der entfernten Freigabe konnte nicht erfolgen, das Passwort könnte falsch sein", + "Storage not valid" : "Speicher ungültig", + "Federated share added" : "Federated-Share hinzugefügt ", + "Couldn't add remote share" : "Remotefreigabe konnte nicht hinzu gefügt werden", + "Search global and public address book for users and let local users publish their data" : "Globales und öffentliches Adressbuch nach Benutzern durchsuchen und lokale Benutzer ihre Daten veröffentlichen lassen" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/de_DE.js b/apps/federatedfilesharing/l10n/de_DE.js index 3e46ff14aa409..c5004d64bbbcf 100644 --- a/apps/federatedfilesharing/l10n/de_DE.js +++ b/apps/federatedfilesharing/l10n/de_DE.js @@ -17,13 +17,7 @@ OC.L10N.register( "Couldn't establish a federated share." : "Federated-Share konnte nicht aufgebaut werden", "Couldn't establish a federated share, maybe the password was wrong." : "Federated-Share konnte nicht aufgebaut werden, da eventuell das Passwort falsch ist.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Anfrage zum Federated-Share war erfolgreich. Sie erhalten eine Einladung. Bitte prüfen Sie Ihre Benachrichtigungen. ", - "The mountpoint name contains invalid characters." : "Der Name des Einhängepunktes enthält ungültige Zeichen.", - "Not allowed to create a federated share with the owner." : "Das Erstellen einer Federated Cloud Freigabe mit dem Benutzer ist nicht erlaubt.", - "Invalid or untrusted SSL certificate" : "Ungültiges oder nicht vertrauenswürdiges SSL-Zertifikat", - "Could not authenticate to remote share, password might be wrong" : "Die Authentifizierung an der entfernten Freigabe konnte nicht erfolgen, das Passwort könnte falsch sein", - "Storage not valid" : "Speicher ungültig", - "Federated share added" : "Federated-Share hinzugefügt ", - "Couldn't add remote share" : "Remotefreigabe konnte nicht hinzu gefügt werden", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Federated-Share konnte nicht aufgebaut werden, da der Zielserver eine zu alte Version verwendet (Nextcloud <=9).", "Sharing %s failed, because this item is already shared with %s" : "Die Freigabe von %s ist fehlgeschlagen, da dieses Objekt schon mit %s geteilt wird", "Not allowed to create a federated share with the same user" : "Das Erstellen einer Federated Cloud Freigabe mit dem gleichen Benutzer ist nicht erlaubt", "File is already shared with %s" : "Datei wird bereits geteilt mit %s", @@ -38,6 +32,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Teilen Sie mit mir über meine #Nextcloud Federated-Cloud-ID, siehe %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Teilen Sie mit mir über meine #Nextcloud Federated-Cloud-ID", "Sharing" : "Teilen", + "Federated file sharing" : "Federated Datei-Freigabe", "Federated Cloud Sharing" : "Federated-Cloud-Sharing", "Open documentation" : "Dokumentation öffnen", "Adjust how people can share between servers." : "Definiere wie die Benutzer Inhalte mit anderen Servern teilen können.", @@ -52,7 +47,13 @@ OC.L10N.register( "Add to your website" : "Zu Ihrer Web-Seite hinzufügen", "Share with me via Nextcloud" : "Teilen Sie mit mir über Nextcloud", "HTML Code:" : "HTML-Code:", - "Search global and public address book for users and let local users publish their data" : "Globales und öffentliches Adressbuch nach Benutzern durchsuchen und lokale Benutzer ihre Daten veröffentlichen lassen", - "Share it:" : "Teilen:" + "The mountpoint name contains invalid characters." : "Der Name des Einhängepunktes enthält ungültige Zeichen.", + "Not allowed to create a federated share with the owner." : "Das Erstellen einer Federated Cloud Freigabe mit dem Benutzer ist nicht erlaubt.", + "Invalid or untrusted SSL certificate" : "Ungültiges oder nicht vertrauenswürdiges SSL-Zertifikat", + "Could not authenticate to remote share, password might be wrong" : "Die Authentifizierung an der entfernten Freigabe konnte nicht erfolgen, das Passwort könnte falsch sein", + "Storage not valid" : "Speicher ungültig", + "Federated share added" : "Federated-Share hinzugefügt ", + "Couldn't add remote share" : "Remotefreigabe konnte nicht hinzu gefügt werden", + "Search global and public address book for users and let local users publish their data" : "Globales und öffentliches Adressbuch nach Benutzern durchsuchen und lokale Benutzer ihre Daten veröffentlichen lassen" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/de_DE.json b/apps/federatedfilesharing/l10n/de_DE.json index 0e9ca7f10eb33..1e26ed0195da5 100644 --- a/apps/federatedfilesharing/l10n/de_DE.json +++ b/apps/federatedfilesharing/l10n/de_DE.json @@ -15,13 +15,7 @@ "Couldn't establish a federated share." : "Federated-Share konnte nicht aufgebaut werden", "Couldn't establish a federated share, maybe the password was wrong." : "Federated-Share konnte nicht aufgebaut werden, da eventuell das Passwort falsch ist.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Anfrage zum Federated-Share war erfolgreich. Sie erhalten eine Einladung. Bitte prüfen Sie Ihre Benachrichtigungen. ", - "The mountpoint name contains invalid characters." : "Der Name des Einhängepunktes enthält ungültige Zeichen.", - "Not allowed to create a federated share with the owner." : "Das Erstellen einer Federated Cloud Freigabe mit dem Benutzer ist nicht erlaubt.", - "Invalid or untrusted SSL certificate" : "Ungültiges oder nicht vertrauenswürdiges SSL-Zertifikat", - "Could not authenticate to remote share, password might be wrong" : "Die Authentifizierung an der entfernten Freigabe konnte nicht erfolgen, das Passwort könnte falsch sein", - "Storage not valid" : "Speicher ungültig", - "Federated share added" : "Federated-Share hinzugefügt ", - "Couldn't add remote share" : "Remotefreigabe konnte nicht hinzu gefügt werden", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Federated-Share konnte nicht aufgebaut werden, da der Zielserver eine zu alte Version verwendet (Nextcloud <=9).", "Sharing %s failed, because this item is already shared with %s" : "Die Freigabe von %s ist fehlgeschlagen, da dieses Objekt schon mit %s geteilt wird", "Not allowed to create a federated share with the same user" : "Das Erstellen einer Federated Cloud Freigabe mit dem gleichen Benutzer ist nicht erlaubt", "File is already shared with %s" : "Datei wird bereits geteilt mit %s", @@ -36,6 +30,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Teilen Sie mit mir über meine #Nextcloud Federated-Cloud-ID, siehe %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Teilen Sie mit mir über meine #Nextcloud Federated-Cloud-ID", "Sharing" : "Teilen", + "Federated file sharing" : "Federated Datei-Freigabe", "Federated Cloud Sharing" : "Federated-Cloud-Sharing", "Open documentation" : "Dokumentation öffnen", "Adjust how people can share between servers." : "Definiere wie die Benutzer Inhalte mit anderen Servern teilen können.", @@ -50,7 +45,13 @@ "Add to your website" : "Zu Ihrer Web-Seite hinzufügen", "Share with me via Nextcloud" : "Teilen Sie mit mir über Nextcloud", "HTML Code:" : "HTML-Code:", - "Search global and public address book for users and let local users publish their data" : "Globales und öffentliches Adressbuch nach Benutzern durchsuchen und lokale Benutzer ihre Daten veröffentlichen lassen", - "Share it:" : "Teilen:" + "The mountpoint name contains invalid characters." : "Der Name des Einhängepunktes enthält ungültige Zeichen.", + "Not allowed to create a federated share with the owner." : "Das Erstellen einer Federated Cloud Freigabe mit dem Benutzer ist nicht erlaubt.", + "Invalid or untrusted SSL certificate" : "Ungültiges oder nicht vertrauenswürdiges SSL-Zertifikat", + "Could not authenticate to remote share, password might be wrong" : "Die Authentifizierung an der entfernten Freigabe konnte nicht erfolgen, das Passwort könnte falsch sein", + "Storage not valid" : "Speicher ungültig", + "Federated share added" : "Federated-Share hinzugefügt ", + "Couldn't add remote share" : "Remotefreigabe konnte nicht hinzu gefügt werden", + "Search global and public address book for users and let local users publish their data" : "Globales und öffentliches Adressbuch nach Benutzern durchsuchen und lokale Benutzer ihre Daten veröffentlichen lassen" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/el.js b/apps/federatedfilesharing/l10n/el.js index b26fe8f5fd99c..b91909c02043b 100644 --- a/apps/federatedfilesharing/l10n/el.js +++ b/apps/federatedfilesharing/l10n/el.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "Αδυναμία επίτευξης ομόσπονδου κοινόχρηστου φακέλου", "Couldn't establish a federated share, maybe the password was wrong." : "Δεν μπόρεσε να γίνει ένας federated διαμοιρασμός, μπορεί να ήταν λάθος το συνθηματικό", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Το αίτημα για Federate διαμοιρασμό εστάλη, θα λάβεις μια πρόσκληση. Έλεγξε τις ειδοποιήσεις.", - "The mountpoint name contains invalid characters." : "Το σημείο προσάρτησης περιέχει μη έγκυρους χαρακτήρες.", - "Not allowed to create a federated share with the owner." : "Δεν επιτρέπεται η δημιουργία federated διαμοιρασμού με τον ιδιοκτήτη", - "Invalid or untrusted SSL certificate" : "Μη έγκυρο ή μη έμπιστο πιστοποιητικό SSL", - "Could not authenticate to remote share, password might be wrong" : "Αδυναμία πιστοποίησης απομακρυσμένου κοινόχρηστου, το συνθηματικό μπορεί να είναι εσφαλμένο", - "Storage not valid" : "Μη έγκυρος αποθηκευτικός χώρος", - "Federated share added" : "O Federated διαμοιρασμός προστέθηκε", - "Couldn't add remote share" : "Αδυναμία προσθήκης απομακρυσμένου κοινόχρηστου φακέλου", "Sharing %s failed, because this item is already shared with %s" : "Ο διαμοιρασμός του %s απέτυχε, γιατί το αντικείμενο είναι διαμοιρασμένο ήδη με τον χρήστη %s", "Not allowed to create a federated share with the same user" : "Δεν επιτρέπεται η δημιουργία federated διαμοιρασμού με τον ίδιο χρήστη", "File is already shared with %s" : "Το αρχείο είναι ήδη κοινόχρηστο με %s", @@ -48,7 +41,13 @@ OC.L10N.register( "Add to your website" : "Προσθήκη στην ιστοσελίδα σας", "Share with me via Nextcloud" : "Διαμοιραστείτε με εμένα μέσω του Nextcloud", "HTML Code:" : "Κώδικας HTML:", - "Search global and public address book for users and let local users publish their data" : "Αναζήτηση σε γενικό και δημόσιο βιβλίο διευθύνσεων για χρήστες και επιτρέψτε τους τοπικούς χρήστες να δημοσιεύουν τα δεδομένα τους", - "Share it:" : "Μοιραστείτε το:" + "The mountpoint name contains invalid characters." : "Το σημείο προσάρτησης περιέχει μη έγκυρους χαρακτήρες.", + "Not allowed to create a federated share with the owner." : "Δεν επιτρέπεται η δημιουργία federated διαμοιρασμού με τον ιδιοκτήτη", + "Invalid or untrusted SSL certificate" : "Μη έγκυρο ή μη έμπιστο πιστοποιητικό SSL", + "Could not authenticate to remote share, password might be wrong" : "Αδυναμία πιστοποίησης απομακρυσμένου κοινόχρηστου, το συνθηματικό μπορεί να είναι εσφαλμένο", + "Storage not valid" : "Μη έγκυρος αποθηκευτικός χώρος", + "Federated share added" : "O Federated διαμοιρασμός προστέθηκε", + "Couldn't add remote share" : "Αδυναμία προσθήκης απομακρυσμένου κοινόχρηστου φακέλου", + "Search global and public address book for users and let local users publish their data" : "Αναζήτηση σε γενικό και δημόσιο βιβλίο διευθύνσεων για χρήστες και επιτρέψτε τους τοπικούς χρήστες να δημοσιεύουν τα δεδομένα τους" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/el.json b/apps/federatedfilesharing/l10n/el.json index 6ca2ed6c36d2b..3d4dc00a0475d 100644 --- a/apps/federatedfilesharing/l10n/el.json +++ b/apps/federatedfilesharing/l10n/el.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "Αδυναμία επίτευξης ομόσπονδου κοινόχρηστου φακέλου", "Couldn't establish a federated share, maybe the password was wrong." : "Δεν μπόρεσε να γίνει ένας federated διαμοιρασμός, μπορεί να ήταν λάθος το συνθηματικό", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Το αίτημα για Federate διαμοιρασμό εστάλη, θα λάβεις μια πρόσκληση. Έλεγξε τις ειδοποιήσεις.", - "The mountpoint name contains invalid characters." : "Το σημείο προσάρτησης περιέχει μη έγκυρους χαρακτήρες.", - "Not allowed to create a federated share with the owner." : "Δεν επιτρέπεται η δημιουργία federated διαμοιρασμού με τον ιδιοκτήτη", - "Invalid or untrusted SSL certificate" : "Μη έγκυρο ή μη έμπιστο πιστοποιητικό SSL", - "Could not authenticate to remote share, password might be wrong" : "Αδυναμία πιστοποίησης απομακρυσμένου κοινόχρηστου, το συνθηματικό μπορεί να είναι εσφαλμένο", - "Storage not valid" : "Μη έγκυρος αποθηκευτικός χώρος", - "Federated share added" : "O Federated διαμοιρασμός προστέθηκε", - "Couldn't add remote share" : "Αδυναμία προσθήκης απομακρυσμένου κοινόχρηστου φακέλου", "Sharing %s failed, because this item is already shared with %s" : "Ο διαμοιρασμός του %s απέτυχε, γιατί το αντικείμενο είναι διαμοιρασμένο ήδη με τον χρήστη %s", "Not allowed to create a federated share with the same user" : "Δεν επιτρέπεται η δημιουργία federated διαμοιρασμού με τον ίδιο χρήστη", "File is already shared with %s" : "Το αρχείο είναι ήδη κοινόχρηστο με %s", @@ -46,7 +39,13 @@ "Add to your website" : "Προσθήκη στην ιστοσελίδα σας", "Share with me via Nextcloud" : "Διαμοιραστείτε με εμένα μέσω του Nextcloud", "HTML Code:" : "Κώδικας HTML:", - "Search global and public address book for users and let local users publish their data" : "Αναζήτηση σε γενικό και δημόσιο βιβλίο διευθύνσεων για χρήστες και επιτρέψτε τους τοπικούς χρήστες να δημοσιεύουν τα δεδομένα τους", - "Share it:" : "Μοιραστείτε το:" + "The mountpoint name contains invalid characters." : "Το σημείο προσάρτησης περιέχει μη έγκυρους χαρακτήρες.", + "Not allowed to create a federated share with the owner." : "Δεν επιτρέπεται η δημιουργία federated διαμοιρασμού με τον ιδιοκτήτη", + "Invalid or untrusted SSL certificate" : "Μη έγκυρο ή μη έμπιστο πιστοποιητικό SSL", + "Could not authenticate to remote share, password might be wrong" : "Αδυναμία πιστοποίησης απομακρυσμένου κοινόχρηστου, το συνθηματικό μπορεί να είναι εσφαλμένο", + "Storage not valid" : "Μη έγκυρος αποθηκευτικός χώρος", + "Federated share added" : "O Federated διαμοιρασμός προστέθηκε", + "Couldn't add remote share" : "Αδυναμία προσθήκης απομακρυσμένου κοινόχρηστου φακέλου", + "Search global and public address book for users and let local users publish their data" : "Αναζήτηση σε γενικό και δημόσιο βιβλίο διευθύνσεων για χρήστες και επιτρέψτε τους τοπικούς χρήστες να δημοσιεύουν τα δεδομένα τους" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/en_GB.js b/apps/federatedfilesharing/l10n/en_GB.js index 20cb933a410aa..1f76e082c18ab 100644 --- a/apps/federatedfilesharing/l10n/en_GB.js +++ b/apps/federatedfilesharing/l10n/en_GB.js @@ -17,13 +17,7 @@ OC.L10N.register( "Couldn't establish a federated share." : "Couldn't establish a federated share.", "Couldn't establish a federated share, maybe the password was wrong." : "Couldn't establish a federated share, maybe the password was wrong.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Federated Share request sent, you will receive an invitation. Check your notifications.", - "The mountpoint name contains invalid characters." : "The mountpoint name contains invalid characters.", - "Not allowed to create a federated share with the owner." : "Not allowed to create a federated share with the owner.", - "Invalid or untrusted SSL certificate" : "Invalid or untrusted SSL certificate", - "Could not authenticate to remote share, password might be wrong" : "Could not authenticate to remote share, password might be wrong", - "Storage not valid" : "Storage not valid", - "Federated share added" : "Federated share added", - "Couldn't add remote share" : "Couldn't add remote share", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9).", "Sharing %s failed, because this item is already shared with %s" : "Sharing %s failed, because this item is already shared with %s", "Not allowed to create a federated share with the same user" : "Not allowed to create a federated share with the same user", "File is already shared with %s" : "File is already shared with %s", @@ -38,6 +32,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Share with me through my #Nextcloud Federated Cloud ID, see %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Share with me through my #Nextcloud Federated Cloud ID", "Sharing" : "Sharing", + "Federated file sharing" : "Federated file sharing", "Federated Cloud Sharing" : "Federated Cloud Sharing", "Open documentation" : "Open documentation", "Adjust how people can share between servers." : "Adjust how people can share between servers.", @@ -52,7 +47,13 @@ OC.L10N.register( "Add to your website" : "Add to your website", "Share with me via Nextcloud" : "Share with me via Nextcloud", "HTML Code:" : "HTML Code:", - "Search global and public address book for users and let local users publish their data" : "Search global and public address book for users and let local users publish their data", - "Share it:" : "Share it:" + "The mountpoint name contains invalid characters." : "The mountpoint name contains invalid characters.", + "Not allowed to create a federated share with the owner." : "Not allowed to create a federated share with the owner.", + "Invalid or untrusted SSL certificate" : "Invalid or untrusted SSL certificate", + "Could not authenticate to remote share, password might be wrong" : "Could not authenticate to remote share, password might be wrong", + "Storage not valid" : "Storage not valid", + "Federated share added" : "Federated share added", + "Couldn't add remote share" : "Couldn't add remote share", + "Search global and public address book for users and let local users publish their data" : "Search global and public address book for users and let local users publish their data" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/en_GB.json b/apps/federatedfilesharing/l10n/en_GB.json index e091a18f471fa..1471472e031f9 100644 --- a/apps/federatedfilesharing/l10n/en_GB.json +++ b/apps/federatedfilesharing/l10n/en_GB.json @@ -15,13 +15,7 @@ "Couldn't establish a federated share." : "Couldn't establish a federated share.", "Couldn't establish a federated share, maybe the password was wrong." : "Couldn't establish a federated share, maybe the password was wrong.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Federated Share request sent, you will receive an invitation. Check your notifications.", - "The mountpoint name contains invalid characters." : "The mountpoint name contains invalid characters.", - "Not allowed to create a federated share with the owner." : "Not allowed to create a federated share with the owner.", - "Invalid or untrusted SSL certificate" : "Invalid or untrusted SSL certificate", - "Could not authenticate to remote share, password might be wrong" : "Could not authenticate to remote share, password might be wrong", - "Storage not valid" : "Storage not valid", - "Federated share added" : "Federated share added", - "Couldn't add remote share" : "Couldn't add remote share", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9).", "Sharing %s failed, because this item is already shared with %s" : "Sharing %s failed, because this item is already shared with %s", "Not allowed to create a federated share with the same user" : "Not allowed to create a federated share with the same user", "File is already shared with %s" : "File is already shared with %s", @@ -36,6 +30,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Share with me through my #Nextcloud Federated Cloud ID, see %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Share with me through my #Nextcloud Federated Cloud ID", "Sharing" : "Sharing", + "Federated file sharing" : "Federated file sharing", "Federated Cloud Sharing" : "Federated Cloud Sharing", "Open documentation" : "Open documentation", "Adjust how people can share between servers." : "Adjust how people can share between servers.", @@ -50,7 +45,13 @@ "Add to your website" : "Add to your website", "Share with me via Nextcloud" : "Share with me via Nextcloud", "HTML Code:" : "HTML Code:", - "Search global and public address book for users and let local users publish their data" : "Search global and public address book for users and let local users publish their data", - "Share it:" : "Share it:" + "The mountpoint name contains invalid characters." : "The mountpoint name contains invalid characters.", + "Not allowed to create a federated share with the owner." : "Not allowed to create a federated share with the owner.", + "Invalid or untrusted SSL certificate" : "Invalid or untrusted SSL certificate", + "Could not authenticate to remote share, password might be wrong" : "Could not authenticate to remote share, password might be wrong", + "Storage not valid" : "Storage not valid", + "Federated share added" : "Federated share added", + "Couldn't add remote share" : "Couldn't add remote share", + "Search global and public address book for users and let local users publish their data" : "Search global and public address book for users and let local users publish their data" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es.js b/apps/federatedfilesharing/l10n/es.js index 9ad5ff7915766..b83a9dd3fd095 100644 --- a/apps/federatedfilesharing/l10n/es.js +++ b/apps/federatedfilesharing/l10n/es.js @@ -17,14 +17,8 @@ OC.L10N.register( "Couldn't establish a federated share." : "No se puede añadir un compartido remoto", "Couldn't establish a federated share, maybe the password was wrong." : "No se pudo establecer un compartido remoto, puede que la contraseña fuera incorrecta.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Petición de recurso compartido federado enviada, recibirás una invitación. Comprueba tus notificaciones.", - "The mountpoint name contains invalid characters." : "El punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No se permite crear un recurso compartido federado con el propietario", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no confiable", - "Could not authenticate to remote share, password might be wrong" : "No se ha podido autenticar para compartir remotamente, quizás esté mal la contraseña", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Recurso compartido federado añadido", - "Couldn't add remote share" : "No se puede añadir un compartido remoto", - "Sharing %s failed, because this item is already shared with %s" : "Se falló al compartir %s, ya que este elemento ya está compartido con %s", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "No se ha podido establecer un compartido federado, parece ser que el servidor a federar es demasiado antiguo (Nextcloud <= 9).", + "Sharing %s failed, because this item is already shared with %s" : "Fallo al compartir %s, ya que este elemento ya está compartido con %s", "Not allowed to create a federated share with the same user" : "No se permite crear un recurso compartido federado con el mismo usuario", "File is already shared with %s" : "El Archivo ya está siendo compartido con %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable or uses a self-signed certificate." : "Error al compartir %s No se pudo hallar %s, quizás haya un problema de conexión con el servidor.", @@ -37,7 +31,8 @@ OC.L10N.register( "Decline" : "Denegar", "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Compartirlo conmigo a través de mi ID de Nube Federada #Nextcloud, ver %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Compartirlo conmigo a través de mi ID de Nube Federada #Nextcloud", - "Sharing" : "Compartiendo", + "Sharing" : "Compartir", + "Federated file sharing" : "Compartir federado", "Federated Cloud Sharing" : "Compartido en Cloud Federado", "Open documentation" : "Documentación abierta", "Adjust how people can share between servers." : "Ajusta cómo la gente puede compartir entre servidores.", @@ -52,7 +47,13 @@ OC.L10N.register( "Add to your website" : "Añadir a su sitio web", "Share with me via Nextcloud" : "Compartirlo conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar libreta de direcciones global y pública para usuarios y permitir a los usuarios locales publicar su información", - "Share it:" : "Compartir:" + "The mountpoint name contains invalid characters." : "El punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No se permite crear un recurso compartido federado con el propietario", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no confiable", + "Could not authenticate to remote share, password might be wrong" : "No se ha podido autenticar para compartir remotamente, quizás esté mal la contraseña", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Recurso compartido federado añadido", + "Couldn't add remote share" : "No se puede añadir un compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar libreta de direcciones global y pública para usuarios y permitir a los usuarios locales publicar su información" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es.json b/apps/federatedfilesharing/l10n/es.json index 31bdea43c986f..b4327dfd41efe 100644 --- a/apps/federatedfilesharing/l10n/es.json +++ b/apps/federatedfilesharing/l10n/es.json @@ -15,14 +15,8 @@ "Couldn't establish a federated share." : "No se puede añadir un compartido remoto", "Couldn't establish a federated share, maybe the password was wrong." : "No se pudo establecer un compartido remoto, puede que la contraseña fuera incorrecta.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Petición de recurso compartido federado enviada, recibirás una invitación. Comprueba tus notificaciones.", - "The mountpoint name contains invalid characters." : "El punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No se permite crear un recurso compartido federado con el propietario", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no confiable", - "Could not authenticate to remote share, password might be wrong" : "No se ha podido autenticar para compartir remotamente, quizás esté mal la contraseña", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Recurso compartido federado añadido", - "Couldn't add remote share" : "No se puede añadir un compartido remoto", - "Sharing %s failed, because this item is already shared with %s" : "Se falló al compartir %s, ya que este elemento ya está compartido con %s", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "No se ha podido establecer un compartido federado, parece ser que el servidor a federar es demasiado antiguo (Nextcloud <= 9).", + "Sharing %s failed, because this item is already shared with %s" : "Fallo al compartir %s, ya que este elemento ya está compartido con %s", "Not allowed to create a federated share with the same user" : "No se permite crear un recurso compartido federado con el mismo usuario", "File is already shared with %s" : "El Archivo ya está siendo compartido con %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable or uses a self-signed certificate." : "Error al compartir %s No se pudo hallar %s, quizás haya un problema de conexión con el servidor.", @@ -35,7 +29,8 @@ "Decline" : "Denegar", "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Compartirlo conmigo a través de mi ID de Nube Federada #Nextcloud, ver %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Compartirlo conmigo a través de mi ID de Nube Federada #Nextcloud", - "Sharing" : "Compartiendo", + "Sharing" : "Compartir", + "Federated file sharing" : "Compartir federado", "Federated Cloud Sharing" : "Compartido en Cloud Federado", "Open documentation" : "Documentación abierta", "Adjust how people can share between servers." : "Ajusta cómo la gente puede compartir entre servidores.", @@ -50,7 +45,13 @@ "Add to your website" : "Añadir a su sitio web", "Share with me via Nextcloud" : "Compartirlo conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar libreta de direcciones global y pública para usuarios y permitir a los usuarios locales publicar su información", - "Share it:" : "Compartir:" + "The mountpoint name contains invalid characters." : "El punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No se permite crear un recurso compartido federado con el propietario", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no confiable", + "Could not authenticate to remote share, password might be wrong" : "No se ha podido autenticar para compartir remotamente, quizás esté mal la contraseña", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Recurso compartido federado añadido", + "Couldn't add remote share" : "No se puede añadir un compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar libreta de direcciones global y pública para usuarios y permitir a los usuarios locales publicar su información" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es_419.js b/apps/federatedfilesharing/l10n/es_419.js index c4be26868c2b3..6b3ea68b723cc 100644 --- a/apps/federatedfilesharing/l10n/es_419.js +++ b/apps/federatedfilesharing/l10n/es_419.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es_419.json b/apps/federatedfilesharing/l10n/es_419.json index 29ee41a77e4f5..11be293241602 100644 --- a/apps/federatedfilesharing/l10n/es_419.json +++ b/apps/federatedfilesharing/l10n/es_419.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -50,7 +43,13 @@ "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es_AR.js b/apps/federatedfilesharing/l10n/es_AR.js index 88386417a7db8..f714c8408e056 100644 --- a/apps/federatedfilesharing/l10n/es_AR.js +++ b/apps/federatedfilesharing/l10n/es_AR.js @@ -16,12 +16,6 @@ OC.L10N.register( "Server to server sharing is not enabled on this server" : "Compartir de servidor a servidor no está habilitado en este servidor", "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido federado. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no confiable", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar mal", - "Storage not valid" : "Almacenamiento inválido", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -49,7 +43,12 @@ OC.L10N.register( "Add to your website" : "Agregar a su sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no confiable", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar mal", + "Storage not valid" : "Almacenamiento inválido", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es_AR.json b/apps/federatedfilesharing/l10n/es_AR.json index a69b2ca9b9c72..b02158962953b 100644 --- a/apps/federatedfilesharing/l10n/es_AR.json +++ b/apps/federatedfilesharing/l10n/es_AR.json @@ -14,12 +14,6 @@ "Server to server sharing is not enabled on this server" : "Compartir de servidor a servidor no está habilitado en este servidor", "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido federado. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no confiable", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar mal", - "Storage not valid" : "Almacenamiento inválido", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -47,7 +41,12 @@ "Add to your website" : "Agregar a su sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no confiable", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar mal", + "Storage not valid" : "Almacenamiento inválido", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es_CL.js b/apps/federatedfilesharing/l10n/es_CL.js index c4be26868c2b3..6b3ea68b723cc 100644 --- a/apps/federatedfilesharing/l10n/es_CL.js +++ b/apps/federatedfilesharing/l10n/es_CL.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es_CL.json b/apps/federatedfilesharing/l10n/es_CL.json index 29ee41a77e4f5..11be293241602 100644 --- a/apps/federatedfilesharing/l10n/es_CL.json +++ b/apps/federatedfilesharing/l10n/es_CL.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -50,7 +43,13 @@ "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es_CO.js b/apps/federatedfilesharing/l10n/es_CO.js index c4be26868c2b3..6b3ea68b723cc 100644 --- a/apps/federatedfilesharing/l10n/es_CO.js +++ b/apps/federatedfilesharing/l10n/es_CO.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es_CO.json b/apps/federatedfilesharing/l10n/es_CO.json index 29ee41a77e4f5..11be293241602 100644 --- a/apps/federatedfilesharing/l10n/es_CO.json +++ b/apps/federatedfilesharing/l10n/es_CO.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -50,7 +43,13 @@ "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es_CR.js b/apps/federatedfilesharing/l10n/es_CR.js index c4be26868c2b3..6b3ea68b723cc 100644 --- a/apps/federatedfilesharing/l10n/es_CR.js +++ b/apps/federatedfilesharing/l10n/es_CR.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es_CR.json b/apps/federatedfilesharing/l10n/es_CR.json index 29ee41a77e4f5..11be293241602 100644 --- a/apps/federatedfilesharing/l10n/es_CR.json +++ b/apps/federatedfilesharing/l10n/es_CR.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -50,7 +43,13 @@ "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es_DO.js b/apps/federatedfilesharing/l10n/es_DO.js index c4be26868c2b3..6b3ea68b723cc 100644 --- a/apps/federatedfilesharing/l10n/es_DO.js +++ b/apps/federatedfilesharing/l10n/es_DO.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es_DO.json b/apps/federatedfilesharing/l10n/es_DO.json index 29ee41a77e4f5..11be293241602 100644 --- a/apps/federatedfilesharing/l10n/es_DO.json +++ b/apps/federatedfilesharing/l10n/es_DO.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -50,7 +43,13 @@ "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es_EC.js b/apps/federatedfilesharing/l10n/es_EC.js index c4be26868c2b3..6b3ea68b723cc 100644 --- a/apps/federatedfilesharing/l10n/es_EC.js +++ b/apps/federatedfilesharing/l10n/es_EC.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es_EC.json b/apps/federatedfilesharing/l10n/es_EC.json index 29ee41a77e4f5..11be293241602 100644 --- a/apps/federatedfilesharing/l10n/es_EC.json +++ b/apps/federatedfilesharing/l10n/es_EC.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -50,7 +43,13 @@ "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es_GT.js b/apps/federatedfilesharing/l10n/es_GT.js index c4be26868c2b3..6b3ea68b723cc 100644 --- a/apps/federatedfilesharing/l10n/es_GT.js +++ b/apps/federatedfilesharing/l10n/es_GT.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es_GT.json b/apps/federatedfilesharing/l10n/es_GT.json index 29ee41a77e4f5..11be293241602 100644 --- a/apps/federatedfilesharing/l10n/es_GT.json +++ b/apps/federatedfilesharing/l10n/es_GT.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -50,7 +43,13 @@ "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es_HN.js b/apps/federatedfilesharing/l10n/es_HN.js index c4be26868c2b3..6b3ea68b723cc 100644 --- a/apps/federatedfilesharing/l10n/es_HN.js +++ b/apps/federatedfilesharing/l10n/es_HN.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es_HN.json b/apps/federatedfilesharing/l10n/es_HN.json index 29ee41a77e4f5..11be293241602 100644 --- a/apps/federatedfilesharing/l10n/es_HN.json +++ b/apps/federatedfilesharing/l10n/es_HN.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -50,7 +43,13 @@ "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es_MX.js b/apps/federatedfilesharing/l10n/es_MX.js index c4be26868c2b3..911ea1914bb86 100644 --- a/apps/federatedfilesharing/l10n/es_MX.js +++ b/apps/federatedfilesharing/l10n/es_MX.js @@ -17,13 +17,7 @@ OC.L10N.register( "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "No fue posible establecer el elemento compartido, parece que el servidor es obsoleto (Nextcloud <=9).", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -38,6 +32,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Compartir conmigo a través de mi ID de Nube Federada #Nextcloud, ver %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Compartir conmigo a través de mi ID de Nube Federada #Nextcloud", "Sharing" : "Compartiendo", + "Federated file sharing" : "Compartir elementos", "Federated Cloud Sharing" : "Compartiendo en la Nube Federada", "Open documentation" : "Abrir documentación", "Adjust how people can share between servers." : "Ajustar cómo las personas pueden compartir entre servidores. ", @@ -52,7 +47,13 @@ OC.L10N.register( "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es_MX.json b/apps/federatedfilesharing/l10n/es_MX.json index 29ee41a77e4f5..f73ed38e39df9 100644 --- a/apps/federatedfilesharing/l10n/es_MX.json +++ b/apps/federatedfilesharing/l10n/es_MX.json @@ -15,13 +15,7 @@ "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "No fue posible establecer el elemento compartido, parece que el servidor es obsoleto (Nextcloud <=9).", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -36,6 +30,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Compartir conmigo a través de mi ID de Nube Federada #Nextcloud, ver %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Compartir conmigo a través de mi ID de Nube Federada #Nextcloud", "Sharing" : "Compartiendo", + "Federated file sharing" : "Compartir elementos", "Federated Cloud Sharing" : "Compartiendo en la Nube Federada", "Open documentation" : "Abrir documentación", "Adjust how people can share between servers." : "Ajustar cómo las personas pueden compartir entre servidores. ", @@ -50,7 +45,13 @@ "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es_NI.js b/apps/federatedfilesharing/l10n/es_NI.js index c4be26868c2b3..6b3ea68b723cc 100644 --- a/apps/federatedfilesharing/l10n/es_NI.js +++ b/apps/federatedfilesharing/l10n/es_NI.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es_NI.json b/apps/federatedfilesharing/l10n/es_NI.json index 29ee41a77e4f5..11be293241602 100644 --- a/apps/federatedfilesharing/l10n/es_NI.json +++ b/apps/federatedfilesharing/l10n/es_NI.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -50,7 +43,13 @@ "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es_PA.js b/apps/federatedfilesharing/l10n/es_PA.js index c4be26868c2b3..6b3ea68b723cc 100644 --- a/apps/federatedfilesharing/l10n/es_PA.js +++ b/apps/federatedfilesharing/l10n/es_PA.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es_PA.json b/apps/federatedfilesharing/l10n/es_PA.json index 29ee41a77e4f5..11be293241602 100644 --- a/apps/federatedfilesharing/l10n/es_PA.json +++ b/apps/federatedfilesharing/l10n/es_PA.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -50,7 +43,13 @@ "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es_PE.js b/apps/federatedfilesharing/l10n/es_PE.js index c4be26868c2b3..6b3ea68b723cc 100644 --- a/apps/federatedfilesharing/l10n/es_PE.js +++ b/apps/federatedfilesharing/l10n/es_PE.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es_PE.json b/apps/federatedfilesharing/l10n/es_PE.json index 29ee41a77e4f5..11be293241602 100644 --- a/apps/federatedfilesharing/l10n/es_PE.json +++ b/apps/federatedfilesharing/l10n/es_PE.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -50,7 +43,13 @@ "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es_PR.js b/apps/federatedfilesharing/l10n/es_PR.js index c4be26868c2b3..6b3ea68b723cc 100644 --- a/apps/federatedfilesharing/l10n/es_PR.js +++ b/apps/federatedfilesharing/l10n/es_PR.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es_PR.json b/apps/federatedfilesharing/l10n/es_PR.json index 29ee41a77e4f5..11be293241602 100644 --- a/apps/federatedfilesharing/l10n/es_PR.json +++ b/apps/federatedfilesharing/l10n/es_PR.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -50,7 +43,13 @@ "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es_PY.js b/apps/federatedfilesharing/l10n/es_PY.js index c4be26868c2b3..6b3ea68b723cc 100644 --- a/apps/federatedfilesharing/l10n/es_PY.js +++ b/apps/federatedfilesharing/l10n/es_PY.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es_PY.json b/apps/federatedfilesharing/l10n/es_PY.json index 29ee41a77e4f5..11be293241602 100644 --- a/apps/federatedfilesharing/l10n/es_PY.json +++ b/apps/federatedfilesharing/l10n/es_PY.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -50,7 +43,13 @@ "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es_SV.js b/apps/federatedfilesharing/l10n/es_SV.js index c4be26868c2b3..6b3ea68b723cc 100644 --- a/apps/federatedfilesharing/l10n/es_SV.js +++ b/apps/federatedfilesharing/l10n/es_SV.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es_SV.json b/apps/federatedfilesharing/l10n/es_SV.json index 29ee41a77e4f5..11be293241602 100644 --- a/apps/federatedfilesharing/l10n/es_SV.json +++ b/apps/federatedfilesharing/l10n/es_SV.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -50,7 +43,13 @@ "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/es_UY.js b/apps/federatedfilesharing/l10n/es_UY.js index c4be26868c2b3..6b3ea68b723cc 100644 --- a/apps/federatedfilesharing/l10n/es_UY.js +++ b/apps/federatedfilesharing/l10n/es_UY.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/es_UY.json b/apps/federatedfilesharing/l10n/es_UY.json index 29ee41a77e4f5..11be293241602 100644 --- a/apps/federatedfilesharing/l10n/es_UY.json +++ b/apps/federatedfilesharing/l10n/es_UY.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "No fue posible establecer el elemento compartido. ", "Couldn't establish a federated share, maybe the password was wrong." : "No fue posible establecer el elemento compartido federado, tal vez la contraseña sea incorrecta. ", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitud de elemento compartido Federado enviada, recibiras una invitación. Verifica tus notificaciones.", - "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", - "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", - "Storage not valid" : "Almacenamiento inválido", - "Federated share added" : "Elemento compartido Federado agregado", - "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", "Sharing %s failed, because this item is already shared with %s" : "Se presentó una falla al compartir %s, porque este elemento ya se encuentra compartido con %s", "Not allowed to create a federated share with the same user" : "No está permitido crear un elelmento compartido federado con el mismo usuario", "File is already shared with %s" : "El archivo ya ha sido compartido con %s", @@ -50,7 +43,13 @@ "Add to your website" : "Agregar a tu sitio web", "Share with me via Nextcloud" : "Compartir conmigo vía Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos", - "Share it:" : "Compartirlo:" + "The mountpoint name contains invalid characters." : "El nombre del punto de montaje contiene caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "No está permitido crear un elemento compartido federado con el dueño. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido o no de confianza", + "Could not authenticate to remote share, password might be wrong" : "No fue posible autenticarse ante el elemento compartido remoto, la contraseña puede estar incorrecta", + "Storage not valid" : "Almacenamiento inválido", + "Federated share added" : "Elemento compartido Federado agregado", + "Couldn't add remote share" : "No fue posible agregar el elemento compartido remoto", + "Search global and public address book for users and let local users publish their data" : "Buscar una libreta de direcciones global y pública para los usuarios y permitir a los usuarios locales publicar sus datos" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/et_EE.js b/apps/federatedfilesharing/l10n/et_EE.js index f9206e537111a..2d9ed0b30dd3e 100644 --- a/apps/federatedfilesharing/l10n/et_EE.js +++ b/apps/federatedfilesharing/l10n/et_EE.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "Liitjagamist ei õnnestunud luua", "Couldn't establish a federated share, maybe the password was wrong." : "Liitjagamist ei õnnestunud luua, ehk oli parool vale.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Liitjagamise päring edastatud, sulle saadetakse kutse. Kontrolli oma teateid.", - "The mountpoint name contains invalid characters." : "Ühenduspunkti nimes on vigaseid märke.", - "Not allowed to create a federated share with the owner." : "Liitjagamise loomine omanikuga ei ole lubatud.", - "Invalid or untrusted SSL certificate" : "Vigane või tundmatu SSL sertifikaat", - "Could not authenticate to remote share, password might be wrong" : "Ei õnnestunud kagujagamist autentida, ehk on parool vale", - "Storage not valid" : "Andmehoidla pole korrektne", - "Federated share added" : "Liitjagamine lisatud", - "Couldn't add remote share" : "Ei suutnud lisada kaugjagamist", "Sharing %s failed, because this item is already shared with %s" : "%s jagamine ebaõnnestus, kuna see üksus on juba jagatud %s", "Not allowed to create a federated share with the same user" : "Liitjagamise loomine sama kasutajaga ei ole lubatud.", "File is already shared with %s" : "Fail on juba jagatud kasutajaga %s", @@ -40,7 +33,7 @@ OC.L10N.register( "Sharing" : "Jagamine", "Federated Cloud Sharing" : "Jagamine liitpilves", "Open documentation" : "Ava dokumentatsioon", - "Adjust how people can share between servers." : "Seadista kuidas inimesed saavad serverite vahel jagada.", + "Adjust how people can share between servers." : "Seadista, kuidas inimesed saavad serverite vahel jagada.", "Allow users on this server to send shares to other servers" : "Luba selle serveri kasutajatel saata faile teistesse serveritesse", "Allow users on this server to receive shares from other servers" : "Luba selle serveri kasutajatel võtta vastu jagamisi teistest serveritest", "Search global and public address book for users" : "Otsi kasutajaid globaalsest ja avalikust aadressiraamatust", @@ -50,9 +43,15 @@ OC.L10N.register( "Your Federated Cloud ID:" : "Sinu liitpilve ID:", "Share it so your friends can share files with you:" : "Jaga seda, et su sõbrad saaksid sinuga faile jagada:", "Add to your website" : "Lisa oma veebisaidile", - "Share with me via Nextcloud" : "Jaga minuga läbi Nextclouddiga", + "Share with me via Nextcloud" : "Jaga minuga läbi Nextcloudi", "HTML Code:" : "HTML kood:", - "Search global and public address book for users and let local users publish their data" : "Otsi kasutajaid globaalsest ja avalikust aadressiraamatust ja luba kohalikel kasutajatel avaldada oma andmeid", - "Share it:" : "Jaga seda:" + "The mountpoint name contains invalid characters." : "Ühenduspunkti nimes on vigaseid märke.", + "Not allowed to create a federated share with the owner." : "Liitjagamise loomine omanikuga ei ole lubatud.", + "Invalid or untrusted SSL certificate" : "Vigane või tundmatu SSL sertifikaat", + "Could not authenticate to remote share, password might be wrong" : "Ei õnnestunud kagujagamist autentida, ehk on parool vale", + "Storage not valid" : "Andmehoidla pole korrektne", + "Federated share added" : "Liitjagamine lisatud", + "Couldn't add remote share" : "Ei suutnud lisada kaugjagamist", + "Search global and public address book for users and let local users publish their data" : "Otsi kasutajaid globaalsest ja avalikust aadressiraamatust ja luba kohalikel kasutajatel avaldada oma andmeid" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/et_EE.json b/apps/federatedfilesharing/l10n/et_EE.json index e669fc92d66b3..1edbb48977936 100644 --- a/apps/federatedfilesharing/l10n/et_EE.json +++ b/apps/federatedfilesharing/l10n/et_EE.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "Liitjagamist ei õnnestunud luua", "Couldn't establish a federated share, maybe the password was wrong." : "Liitjagamist ei õnnestunud luua, ehk oli parool vale.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Liitjagamise päring edastatud, sulle saadetakse kutse. Kontrolli oma teateid.", - "The mountpoint name contains invalid characters." : "Ühenduspunkti nimes on vigaseid märke.", - "Not allowed to create a federated share with the owner." : "Liitjagamise loomine omanikuga ei ole lubatud.", - "Invalid or untrusted SSL certificate" : "Vigane või tundmatu SSL sertifikaat", - "Could not authenticate to remote share, password might be wrong" : "Ei õnnestunud kagujagamist autentida, ehk on parool vale", - "Storage not valid" : "Andmehoidla pole korrektne", - "Federated share added" : "Liitjagamine lisatud", - "Couldn't add remote share" : "Ei suutnud lisada kaugjagamist", "Sharing %s failed, because this item is already shared with %s" : "%s jagamine ebaõnnestus, kuna see üksus on juba jagatud %s", "Not allowed to create a federated share with the same user" : "Liitjagamise loomine sama kasutajaga ei ole lubatud.", "File is already shared with %s" : "Fail on juba jagatud kasutajaga %s", @@ -38,7 +31,7 @@ "Sharing" : "Jagamine", "Federated Cloud Sharing" : "Jagamine liitpilves", "Open documentation" : "Ava dokumentatsioon", - "Adjust how people can share between servers." : "Seadista kuidas inimesed saavad serverite vahel jagada.", + "Adjust how people can share between servers." : "Seadista, kuidas inimesed saavad serverite vahel jagada.", "Allow users on this server to send shares to other servers" : "Luba selle serveri kasutajatel saata faile teistesse serveritesse", "Allow users on this server to receive shares from other servers" : "Luba selle serveri kasutajatel võtta vastu jagamisi teistest serveritest", "Search global and public address book for users" : "Otsi kasutajaid globaalsest ja avalikust aadressiraamatust", @@ -48,9 +41,15 @@ "Your Federated Cloud ID:" : "Sinu liitpilve ID:", "Share it so your friends can share files with you:" : "Jaga seda, et su sõbrad saaksid sinuga faile jagada:", "Add to your website" : "Lisa oma veebisaidile", - "Share with me via Nextcloud" : "Jaga minuga läbi Nextclouddiga", + "Share with me via Nextcloud" : "Jaga minuga läbi Nextcloudi", "HTML Code:" : "HTML kood:", - "Search global and public address book for users and let local users publish their data" : "Otsi kasutajaid globaalsest ja avalikust aadressiraamatust ja luba kohalikel kasutajatel avaldada oma andmeid", - "Share it:" : "Jaga seda:" + "The mountpoint name contains invalid characters." : "Ühenduspunkti nimes on vigaseid märke.", + "Not allowed to create a federated share with the owner." : "Liitjagamise loomine omanikuga ei ole lubatud.", + "Invalid or untrusted SSL certificate" : "Vigane või tundmatu SSL sertifikaat", + "Could not authenticate to remote share, password might be wrong" : "Ei õnnestunud kagujagamist autentida, ehk on parool vale", + "Storage not valid" : "Andmehoidla pole korrektne", + "Federated share added" : "Liitjagamine lisatud", + "Couldn't add remote share" : "Ei suutnud lisada kaugjagamist", + "Search global and public address book for users and let local users publish their data" : "Otsi kasutajaid globaalsest ja avalikust aadressiraamatust ja luba kohalikel kasutajatel avaldada oma andmeid" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/eu.js b/apps/federatedfilesharing/l10n/eu.js index 1a567d9a205e7..516d8c0bc963b 100644 --- a/apps/federatedfilesharing/l10n/eu.js +++ b/apps/federatedfilesharing/l10n/eu.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "Ezin izan da urruneko partekatze federatua gehitu.", "Couldn't establish a federated share, maybe the password was wrong." : "Ezin izan da urruneko partekatze federatua gehitu, agian pasahitza gaizki dago.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Federatutako partekatze eskaera bidali da, gonbidapena jasoko duzu. Notifikazioak begiratu.", - "The mountpoint name contains invalid characters." : "Muntatze puntuaren izenak baliogabeko karaktereak ditu.", - "Not allowed to create a federated share with the owner." : "Ez dago baimenik jabearekin federatutako partekatzea sortzeko.", - "Invalid or untrusted SSL certificate" : "SSL ziurtagiri baliogabea edo fidagaitza", - "Could not authenticate to remote share, password might be wrong" : "Ezin da urruneko partekatzearekin kautotu, pasahitza gaizki egon daiteke", - "Storage not valid" : "Biltegi baliogabea", - "Federated share added" : "Federatutako partekatzea gehituta", - "Couldn't add remote share" : "Ezin izan da urruneko partekatzea gehitu", "Sharing %s failed, because this item is already shared with %s" : "%s elkarbanatzeak huts egin du, dagoeneko %s erabiltzailearekin elkarbanatuta dagoelako", "Not allowed to create a federated share with the same user" : "Ezin da erabiltzaile berdinarekin federatutako partekatzea sortu.", "File is already shared with %s" : "Fitxategia 1%s-rekin partekatua dago iada", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Zure webgunera gehitu", "Share with me via Nextcloud" : "Partekatu nirekin Nextcloud-en bidez", "HTML Code:" : "HTML kodea:", - "Search global and public address book for users and let local users publish their data" : "Helbide liburu global eta publikoetan erabiltzaileak bilatu eta baimendu erabiltzaileei bere datuak publkatzea", - "Share it:" : "Partekatu:" + "The mountpoint name contains invalid characters." : "Muntatze puntuaren izenak baliogabeko karaktereak ditu.", + "Not allowed to create a federated share with the owner." : "Ez dago baimenik jabearekin federatutako partekatzea sortzeko.", + "Invalid or untrusted SSL certificate" : "SSL ziurtagiri baliogabea edo fidagaitza", + "Could not authenticate to remote share, password might be wrong" : "Ezin da urruneko partekatzearekin kautotu, pasahitza gaizki egon daiteke", + "Storage not valid" : "Biltegi baliogabea", + "Federated share added" : "Federatutako partekatzea gehituta", + "Couldn't add remote share" : "Ezin izan da urruneko partekatzea gehitu", + "Search global and public address book for users and let local users publish their data" : "Helbide liburu global eta publikoetan erabiltzaileak bilatu eta baimendu erabiltzaileei bere datuak publkatzea" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/eu.json b/apps/federatedfilesharing/l10n/eu.json index 701a1d878a421..712caa137bcdf 100644 --- a/apps/federatedfilesharing/l10n/eu.json +++ b/apps/federatedfilesharing/l10n/eu.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "Ezin izan da urruneko partekatze federatua gehitu.", "Couldn't establish a federated share, maybe the password was wrong." : "Ezin izan da urruneko partekatze federatua gehitu, agian pasahitza gaizki dago.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Federatutako partekatze eskaera bidali da, gonbidapena jasoko duzu. Notifikazioak begiratu.", - "The mountpoint name contains invalid characters." : "Muntatze puntuaren izenak baliogabeko karaktereak ditu.", - "Not allowed to create a federated share with the owner." : "Ez dago baimenik jabearekin federatutako partekatzea sortzeko.", - "Invalid or untrusted SSL certificate" : "SSL ziurtagiri baliogabea edo fidagaitza", - "Could not authenticate to remote share, password might be wrong" : "Ezin da urruneko partekatzearekin kautotu, pasahitza gaizki egon daiteke", - "Storage not valid" : "Biltegi baliogabea", - "Federated share added" : "Federatutako partekatzea gehituta", - "Couldn't add remote share" : "Ezin izan da urruneko partekatzea gehitu", "Sharing %s failed, because this item is already shared with %s" : "%s elkarbanatzeak huts egin du, dagoeneko %s erabiltzailearekin elkarbanatuta dagoelako", "Not allowed to create a federated share with the same user" : "Ezin da erabiltzaile berdinarekin federatutako partekatzea sortu.", "File is already shared with %s" : "Fitxategia 1%s-rekin partekatua dago iada", @@ -50,7 +43,13 @@ "Add to your website" : "Zure webgunera gehitu", "Share with me via Nextcloud" : "Partekatu nirekin Nextcloud-en bidez", "HTML Code:" : "HTML kodea:", - "Search global and public address book for users and let local users publish their data" : "Helbide liburu global eta publikoetan erabiltzaileak bilatu eta baimendu erabiltzaileei bere datuak publkatzea", - "Share it:" : "Partekatu:" + "The mountpoint name contains invalid characters." : "Muntatze puntuaren izenak baliogabeko karaktereak ditu.", + "Not allowed to create a federated share with the owner." : "Ez dago baimenik jabearekin federatutako partekatzea sortzeko.", + "Invalid or untrusted SSL certificate" : "SSL ziurtagiri baliogabea edo fidagaitza", + "Could not authenticate to remote share, password might be wrong" : "Ezin da urruneko partekatzearekin kautotu, pasahitza gaizki egon daiteke", + "Storage not valid" : "Biltegi baliogabea", + "Federated share added" : "Federatutako partekatzea gehituta", + "Couldn't add remote share" : "Ezin izan da urruneko partekatzea gehitu", + "Search global and public address book for users and let local users publish their data" : "Helbide liburu global eta publikoetan erabiltzaileak bilatu eta baimendu erabiltzaileei bere datuak publkatzea" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/fi.js b/apps/federatedfilesharing/l10n/fi.js index 04916189ac4b1..9e6599814780f 100644 --- a/apps/federatedfilesharing/l10n/fi.js +++ b/apps/federatedfilesharing/l10n/fi.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "Ei voinut muodostaa federoitua jakoa.", "Couldn't establish a federated share, maybe the password was wrong." : "Ei voinut muodostaa federoitua jakoa. Ehkä salasana oli väärin.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Federoidun jakamisen pyyntö lähetetty, saat kutsun. Tarkista ilmoitukset.", - "The mountpoint name contains invalid characters." : "Liitospisteen nimi sisältää virheellisiä merkkejä.", - "Not allowed to create a federated share with the owner." : "Omistajan kanssa ei ole sallittua luoda federoitua jakoa.", - "Invalid or untrusted SSL certificate" : "Virheellinen tai ei-luotettu SSL-varmenne", - "Could not authenticate to remote share, password might be wrong" : "Tunnistautuminen etäjakoa kohtaan epäonnistui. Salasana saattaa olla väärä", - "Storage not valid" : "Tallennustila ei ole kelvollinen", - "Federated share added" : "Federoitu jako lisätty", - "Couldn't add remote share" : "Etäjaon liittäminen epäonnistui", "Sharing %s failed, because this item is already shared with %s" : "Kohteen %s jakaminen epäonnistui, koska kohde on jo jaettu käyttäjälle %s", "Not allowed to create a federated share with the same user" : "Saman käyttäjän kanssa ei ole sallittua luoda federoitua jakoa", "File is already shared with %s" : "Tiedosto on jo jaettu kohteen %s kanssa", @@ -38,8 +31,9 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Jaa kanssani käyttäen #Nextcloud ja federoitua pilvitunnistetta, katso %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Jaa kanssani käyttäen #Nextcloud ja federoitua pilvitunnistetta", "Sharing" : "Jakaminen", + "Federated file sharing" : "Federoitu tiedostojako", "Federated Cloud Sharing" : "Federoitu pilvijakaminen", - "Open documentation" : "Avaa dokumentaatio", + "Open documentation" : "Avaa ohje", "Adjust how people can share between servers." : "Mukauta kuinka ihmiset voivat jakaa palvelinten välillä.", "Allow users on this server to send shares to other servers" : "Salli tämän palvelimen käyttäjien lähettää jakoja muille palvelimille", "Allow users on this server to receive shares from other servers" : "Salli tämän palvelimen käyttäjien vastaanottaa jakoja muilta palvelimilta", @@ -52,7 +46,13 @@ OC.L10N.register( "Add to your website" : "Lisää verkkosivuillesi", "Share with me via Nextcloud" : "Jaa kanssani Nextcloudin kautta", "HTML Code:" : "HTML-koodi:", - "Search global and public address book for users and let local users publish their data" : "Etsi käyttäjiä maailmanlaajuisesta ja julkisesta osoitekirjasta sekä salli paikallisten käyttäjien julkaista omia tietojaan", - "Share it:" : "Jaa se:" + "The mountpoint name contains invalid characters." : "Liitospisteen nimi sisältää virheellisiä merkkejä.", + "Not allowed to create a federated share with the owner." : "Omistajan kanssa ei ole sallittua luoda federoitua jakoa.", + "Invalid or untrusted SSL certificate" : "Virheellinen tai ei-luotettu SSL-varmenne", + "Could not authenticate to remote share, password might be wrong" : "Tunnistautuminen etäjakoa kohtaan epäonnistui. Salasana saattaa olla väärä", + "Storage not valid" : "Tallennustila ei ole kelvollinen", + "Federated share added" : "Federoitu jako lisätty", + "Couldn't add remote share" : "Etäjaon liittäminen epäonnistui", + "Search global and public address book for users and let local users publish their data" : "Etsi käyttäjiä maailmanlaajuisesta ja julkisesta osoitekirjasta sekä salli paikallisten käyttäjien julkaista omia tietojaan" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/fi.json b/apps/federatedfilesharing/l10n/fi.json index 1952efd7506ae..89259e025d97d 100644 --- a/apps/federatedfilesharing/l10n/fi.json +++ b/apps/federatedfilesharing/l10n/fi.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "Ei voinut muodostaa federoitua jakoa.", "Couldn't establish a federated share, maybe the password was wrong." : "Ei voinut muodostaa federoitua jakoa. Ehkä salasana oli väärin.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Federoidun jakamisen pyyntö lähetetty, saat kutsun. Tarkista ilmoitukset.", - "The mountpoint name contains invalid characters." : "Liitospisteen nimi sisältää virheellisiä merkkejä.", - "Not allowed to create a federated share with the owner." : "Omistajan kanssa ei ole sallittua luoda federoitua jakoa.", - "Invalid or untrusted SSL certificate" : "Virheellinen tai ei-luotettu SSL-varmenne", - "Could not authenticate to remote share, password might be wrong" : "Tunnistautuminen etäjakoa kohtaan epäonnistui. Salasana saattaa olla väärä", - "Storage not valid" : "Tallennustila ei ole kelvollinen", - "Federated share added" : "Federoitu jako lisätty", - "Couldn't add remote share" : "Etäjaon liittäminen epäonnistui", "Sharing %s failed, because this item is already shared with %s" : "Kohteen %s jakaminen epäonnistui, koska kohde on jo jaettu käyttäjälle %s", "Not allowed to create a federated share with the same user" : "Saman käyttäjän kanssa ei ole sallittua luoda federoitua jakoa", "File is already shared with %s" : "Tiedosto on jo jaettu kohteen %s kanssa", @@ -36,8 +29,9 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Jaa kanssani käyttäen #Nextcloud ja federoitua pilvitunnistetta, katso %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Jaa kanssani käyttäen #Nextcloud ja federoitua pilvitunnistetta", "Sharing" : "Jakaminen", + "Federated file sharing" : "Federoitu tiedostojako", "Federated Cloud Sharing" : "Federoitu pilvijakaminen", - "Open documentation" : "Avaa dokumentaatio", + "Open documentation" : "Avaa ohje", "Adjust how people can share between servers." : "Mukauta kuinka ihmiset voivat jakaa palvelinten välillä.", "Allow users on this server to send shares to other servers" : "Salli tämän palvelimen käyttäjien lähettää jakoja muille palvelimille", "Allow users on this server to receive shares from other servers" : "Salli tämän palvelimen käyttäjien vastaanottaa jakoja muilta palvelimilta", @@ -50,7 +44,13 @@ "Add to your website" : "Lisää verkkosivuillesi", "Share with me via Nextcloud" : "Jaa kanssani Nextcloudin kautta", "HTML Code:" : "HTML-koodi:", - "Search global and public address book for users and let local users publish their data" : "Etsi käyttäjiä maailmanlaajuisesta ja julkisesta osoitekirjasta sekä salli paikallisten käyttäjien julkaista omia tietojaan", - "Share it:" : "Jaa se:" + "The mountpoint name contains invalid characters." : "Liitospisteen nimi sisältää virheellisiä merkkejä.", + "Not allowed to create a federated share with the owner." : "Omistajan kanssa ei ole sallittua luoda federoitua jakoa.", + "Invalid or untrusted SSL certificate" : "Virheellinen tai ei-luotettu SSL-varmenne", + "Could not authenticate to remote share, password might be wrong" : "Tunnistautuminen etäjakoa kohtaan epäonnistui. Salasana saattaa olla väärä", + "Storage not valid" : "Tallennustila ei ole kelvollinen", + "Federated share added" : "Federoitu jako lisätty", + "Couldn't add remote share" : "Etäjaon liittäminen epäonnistui", + "Search global and public address book for users and let local users publish their data" : "Etsi käyttäjiä maailmanlaajuisesta ja julkisesta osoitekirjasta sekä salli paikallisten käyttäjien julkaista omia tietojaan" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/fr.js b/apps/federatedfilesharing/l10n/fr.js index 8a9d969ebb70c..db9e9ac5ad345 100644 --- a/apps/federatedfilesharing/l10n/fr.js +++ b/apps/federatedfilesharing/l10n/fr.js @@ -17,13 +17,7 @@ OC.L10N.register( "Couldn't establish a federated share." : "Impossible d'établir un partage fédéré.", "Couldn't establish a federated share, maybe the password was wrong." : "Impossible d'établir un partage fédéré, peut-être que le mot de passe est incorrect.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Demande de partage fédéré envoyée, vous allez recevoir une invitation. Vérifiez vos notifications.", - "The mountpoint name contains invalid characters." : "Le nom du point de montage contient des caractères invalides.", - "Not allowed to create a federated share with the owner." : "Vous n'êtes pas autorisé à créer un partage fédéré avec le propriétaire.", - "Invalid or untrusted SSL certificate" : "Certificat SSL invalide ou non approuvé", - "Could not authenticate to remote share, password might be wrong" : "Impossible de se connecter au partage distant, le mot de passe peut-être incorrect", - "Storage not valid" : "Support de stockage non valide", - "Federated share added" : "Partage fédéré ajouté", - "Couldn't add remote share" : "Impossible d'ajouter le partage distant", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Impossible d'établir un partage fédére, il semble que le serveur avec lequel fédérer est trop vieux (Nextcloud <=9)", "Sharing %s failed, because this item is already shared with %s" : "Le partage de %s a échoué car cet élément est déjà partagé avec %s", "Not allowed to create a federated share with the same user" : "Non autorisé à créer un partage fédéré avec le même utilisateur", "File is already shared with %s" : "Le fichier est déjà partagé avec %s", @@ -38,6 +32,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Partagez avec moi grâce à mon identifiant de Cloud Fédéré #Nextcloud %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Partagez avec moi grâce à mon identifiant de Cloud Fédéré #Nextcloud", "Sharing" : "Partage", + "Federated file sharing" : "Partage de fichiers fédéré", "Federated Cloud Sharing" : "Partage Cloud Fédéré", "Open documentation" : "Voir la documentation", "Adjust how people can share between servers." : "Réglez comment les personnes peuvent partager entre les serveurs.", @@ -52,7 +47,13 @@ OC.L10N.register( "Add to your website" : "Ajouter à votre site web", "Share with me via Nextcloud" : "Partagez avec moi via Nextcloud", "HTML Code:" : "Code HTML :", - "Search global and public address book for users and let local users publish their data" : "Rechercher dans le carnet d'adresse global et public pour les utilisateurs et laisser les utilisateurs publier leurs données", - "Share it:" : "Partager :" + "The mountpoint name contains invalid characters." : "Le nom du point de montage contient des caractères invalides.", + "Not allowed to create a federated share with the owner." : "Vous n'êtes pas autorisé à créer un partage fédéré avec le propriétaire.", + "Invalid or untrusted SSL certificate" : "Certificat SSL invalide ou non approuvé", + "Could not authenticate to remote share, password might be wrong" : "Impossible de se connecter au partage distant, le mot de passe peut-être incorrect", + "Storage not valid" : "Support de stockage non valide", + "Federated share added" : "Partage fédéré ajouté", + "Couldn't add remote share" : "Impossible d'ajouter le partage distant", + "Search global and public address book for users and let local users publish their data" : "Rechercher dans le carnet d'adresse global et public pour les utilisateurs et laisser les utilisateurs publier leurs données" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/federatedfilesharing/l10n/fr.json b/apps/federatedfilesharing/l10n/fr.json index 77bae9ca184e3..c634fabf8d1ef 100644 --- a/apps/federatedfilesharing/l10n/fr.json +++ b/apps/federatedfilesharing/l10n/fr.json @@ -15,13 +15,7 @@ "Couldn't establish a federated share." : "Impossible d'établir un partage fédéré.", "Couldn't establish a federated share, maybe the password was wrong." : "Impossible d'établir un partage fédéré, peut-être que le mot de passe est incorrect.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Demande de partage fédéré envoyée, vous allez recevoir une invitation. Vérifiez vos notifications.", - "The mountpoint name contains invalid characters." : "Le nom du point de montage contient des caractères invalides.", - "Not allowed to create a federated share with the owner." : "Vous n'êtes pas autorisé à créer un partage fédéré avec le propriétaire.", - "Invalid or untrusted SSL certificate" : "Certificat SSL invalide ou non approuvé", - "Could not authenticate to remote share, password might be wrong" : "Impossible de se connecter au partage distant, le mot de passe peut-être incorrect", - "Storage not valid" : "Support de stockage non valide", - "Federated share added" : "Partage fédéré ajouté", - "Couldn't add remote share" : "Impossible d'ajouter le partage distant", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Impossible d'établir un partage fédére, il semble que le serveur avec lequel fédérer est trop vieux (Nextcloud <=9)", "Sharing %s failed, because this item is already shared with %s" : "Le partage de %s a échoué car cet élément est déjà partagé avec %s", "Not allowed to create a federated share with the same user" : "Non autorisé à créer un partage fédéré avec le même utilisateur", "File is already shared with %s" : "Le fichier est déjà partagé avec %s", @@ -36,6 +30,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Partagez avec moi grâce à mon identifiant de Cloud Fédéré #Nextcloud %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Partagez avec moi grâce à mon identifiant de Cloud Fédéré #Nextcloud", "Sharing" : "Partage", + "Federated file sharing" : "Partage de fichiers fédéré", "Federated Cloud Sharing" : "Partage Cloud Fédéré", "Open documentation" : "Voir la documentation", "Adjust how people can share between servers." : "Réglez comment les personnes peuvent partager entre les serveurs.", @@ -50,7 +45,13 @@ "Add to your website" : "Ajouter à votre site web", "Share with me via Nextcloud" : "Partagez avec moi via Nextcloud", "HTML Code:" : "Code HTML :", - "Search global and public address book for users and let local users publish their data" : "Rechercher dans le carnet d'adresse global et public pour les utilisateurs et laisser les utilisateurs publier leurs données", - "Share it:" : "Partager :" + "The mountpoint name contains invalid characters." : "Le nom du point de montage contient des caractères invalides.", + "Not allowed to create a federated share with the owner." : "Vous n'êtes pas autorisé à créer un partage fédéré avec le propriétaire.", + "Invalid or untrusted SSL certificate" : "Certificat SSL invalide ou non approuvé", + "Could not authenticate to remote share, password might be wrong" : "Impossible de se connecter au partage distant, le mot de passe peut-être incorrect", + "Storage not valid" : "Support de stockage non valide", + "Federated share added" : "Partage fédéré ajouté", + "Couldn't add remote share" : "Impossible d'ajouter le partage distant", + "Search global and public address book for users and let local users publish their data" : "Rechercher dans le carnet d'adresse global et public pour les utilisateurs et laisser les utilisateurs publier leurs données" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/hu.js b/apps/federatedfilesharing/l10n/hu.js index a99bb21c4f587..cc4483391e6e5 100644 --- a/apps/federatedfilesharing/l10n/hu.js +++ b/apps/federatedfilesharing/l10n/hu.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "Egy egyesített megosztás nem hozható létre.", "Couldn't establish a federated share, maybe the password was wrong." : "Egy egyesített megosztás nem hozható létre, lehet hogy nem megfelelő a jelszó.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Egyesített megosztási kérés elküldve, kapni fogsz egy meghívót. Ellenőrizd az értesítéseidet.", - "The mountpoint name contains invalid characters." : "A csatolási pont neve érvénytelen karaktereket tartalmaz ", - "Not allowed to create a federated share with the owner." : "A tulajdonossal nem lehet egyesített megosztást létrehozni.", - "Invalid or untrusted SSL certificate" : "Érvénytelen vagy nem megbízható az SSL tanúsítvány", - "Could not authenticate to remote share, password might be wrong" : "Nem sikerült az azonosítás a távoli megosztáshoz. Lehet, hogy rossz a jelszó.", - "Storage not valid" : "A tároló nem érvényes", - "Federated share added" : "Egyesített megosztás hozzáadva", - "Couldn't add remote share" : "Távoli megosztás nem adható hozzá", "Sharing %s failed, because this item is already shared with %s" : "%s megosztása nem sikerült, mert ez már meg van osztva vele: %s", "Not allowed to create a federated share with the same user" : "Azonos felhasználóval nem lehet létrehozni egyesített megosztást", "File is already shared with %s" : "Fájl már megosztva vele: %s", @@ -38,6 +31,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Ossza meg velem az #Nextcloud Egyesített Felhő Azonosító segítségével, lásd %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Ossza meg velem az #Nextcloud Egyesített Felhő Azonosító segítségével ", "Sharing" : "Megosztás", + "Federated file sharing" : "Egyesített fájlmegosztás", "Federated Cloud Sharing" : "Megosztás Egyesített Felhőben", "Open documentation" : "Dokumentáció megnyitása", "Adjust how people can share between servers." : "A szerverek közti megosztási lehetőségek beállítása", @@ -52,7 +46,13 @@ OC.L10N.register( "Add to your website" : "Adja hozzá saját weboldalához", "Share with me via Nextcloud" : "Ossza meg velem Nextcloud-on keresztül", "HTML Code:" : "HTML kód:", - "Search global and public address book for users and let local users publish their data" : "A központi és nyilvános névjegyzék keresése a felhasználóknak és a helyi felhasználók is hozzáadhatnak", - "Share it:" : "Oszd meg:" + "The mountpoint name contains invalid characters." : "A csatolási pont neve érvénytelen karaktereket tartalmaz ", + "Not allowed to create a federated share with the owner." : "A tulajdonossal nem lehet egyesített megosztást létrehozni.", + "Invalid or untrusted SSL certificate" : "Érvénytelen vagy nem megbízható az SSL tanúsítvány", + "Could not authenticate to remote share, password might be wrong" : "Nem sikerült az azonosítás a távoli megosztáshoz. Lehet, hogy rossz a jelszó.", + "Storage not valid" : "A tároló nem érvényes", + "Federated share added" : "Egyesített megosztás hozzáadva", + "Couldn't add remote share" : "Távoli megosztás nem adható hozzá", + "Search global and public address book for users and let local users publish their data" : "A központi és nyilvános névjegyzék keresése a felhasználóknak és a helyi felhasználók is hozzáadhatnak" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/hu.json b/apps/federatedfilesharing/l10n/hu.json index e77b17ef7de3a..5b9fa5fac3c73 100644 --- a/apps/federatedfilesharing/l10n/hu.json +++ b/apps/federatedfilesharing/l10n/hu.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "Egy egyesített megosztás nem hozható létre.", "Couldn't establish a federated share, maybe the password was wrong." : "Egy egyesített megosztás nem hozható létre, lehet hogy nem megfelelő a jelszó.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Egyesített megosztási kérés elküldve, kapni fogsz egy meghívót. Ellenőrizd az értesítéseidet.", - "The mountpoint name contains invalid characters." : "A csatolási pont neve érvénytelen karaktereket tartalmaz ", - "Not allowed to create a federated share with the owner." : "A tulajdonossal nem lehet egyesített megosztást létrehozni.", - "Invalid or untrusted SSL certificate" : "Érvénytelen vagy nem megbízható az SSL tanúsítvány", - "Could not authenticate to remote share, password might be wrong" : "Nem sikerült az azonosítás a távoli megosztáshoz. Lehet, hogy rossz a jelszó.", - "Storage not valid" : "A tároló nem érvényes", - "Federated share added" : "Egyesített megosztás hozzáadva", - "Couldn't add remote share" : "Távoli megosztás nem adható hozzá", "Sharing %s failed, because this item is already shared with %s" : "%s megosztása nem sikerült, mert ez már meg van osztva vele: %s", "Not allowed to create a federated share with the same user" : "Azonos felhasználóval nem lehet létrehozni egyesített megosztást", "File is already shared with %s" : "Fájl már megosztva vele: %s", @@ -36,6 +29,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Ossza meg velem az #Nextcloud Egyesített Felhő Azonosító segítségével, lásd %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Ossza meg velem az #Nextcloud Egyesített Felhő Azonosító segítségével ", "Sharing" : "Megosztás", + "Federated file sharing" : "Egyesített fájlmegosztás", "Federated Cloud Sharing" : "Megosztás Egyesített Felhőben", "Open documentation" : "Dokumentáció megnyitása", "Adjust how people can share between servers." : "A szerverek közti megosztási lehetőségek beállítása", @@ -50,7 +44,13 @@ "Add to your website" : "Adja hozzá saját weboldalához", "Share with me via Nextcloud" : "Ossza meg velem Nextcloud-on keresztül", "HTML Code:" : "HTML kód:", - "Search global and public address book for users and let local users publish their data" : "A központi és nyilvános névjegyzék keresése a felhasználóknak és a helyi felhasználók is hozzáadhatnak", - "Share it:" : "Oszd meg:" + "The mountpoint name contains invalid characters." : "A csatolási pont neve érvénytelen karaktereket tartalmaz ", + "Not allowed to create a federated share with the owner." : "A tulajdonossal nem lehet egyesített megosztást létrehozni.", + "Invalid or untrusted SSL certificate" : "Érvénytelen vagy nem megbízható az SSL tanúsítvány", + "Could not authenticate to remote share, password might be wrong" : "Nem sikerült az azonosítás a távoli megosztáshoz. Lehet, hogy rossz a jelszó.", + "Storage not valid" : "A tároló nem érvényes", + "Federated share added" : "Egyesített megosztás hozzáadva", + "Couldn't add remote share" : "Távoli megosztás nem adható hozzá", + "Search global and public address book for users and let local users publish their data" : "A központi és nyilvános névjegyzék keresése a felhasználóknak és a helyi felhasználók is hozzáadhatnak" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/ia.js b/apps/federatedfilesharing/l10n/ia.js index 78fdb02aab0b6..ff58797cd9bc2 100644 --- a/apps/federatedfilesharing/l10n/ia.js +++ b/apps/federatedfilesharing/l10n/ia.js @@ -16,12 +16,6 @@ OC.L10N.register( "Server to server sharing is not enabled on this server" : "Le Compartir de Servitor a Servitor non es activate in iste servitor", "Couldn't establish a federated share." : "Impossibile establir le Compartir Federate.", "Couldn't establish a federated share, maybe the password was wrong." : "Impossibile establir le Compartir Federate, possibilemente le contrasigno esseva incorrecte.", - "The mountpoint name contains invalid characters." : "Le nomine pro le puncto de montage contine characteres non valide.", - "Not allowed to create a federated share with the owner." : "Il non es permittite crear le Compartir Federate con le proprietario.", - "Invalid or untrusted SSL certificate" : "Certificato SSL non valide o non fiduciari", - "Could not authenticate to remote share, password might be wrong" : "Impossibile authenticar al Compartir Remote, le contrasigno debe esser incorrecte", - "Storage not valid" : "Immagazinage non valide", - "Couldn't add remote share" : "Impossibile adder le Compartir Remote", "Sharing %s failed, because this item is already shared with %s" : "Compartir %s falleva, proque iste elemento ja es compartite con %s", "Not allowed to create a federated share with the same user" : "Il non es permittite crear le Compartir Federate con le mesme usator.", "File is already shared with %s" : "File ja es compartite con %s", @@ -45,6 +39,11 @@ OC.L10N.register( "Add to your website" : "Adde a tu sito web", "Share with me via Nextcloud" : "Comparti con me via Nextcloud", "HTML Code:" : "Codice HTML:", - "Share it:" : "Comparti lo:" + "The mountpoint name contains invalid characters." : "Le nomine pro le puncto de montage contine characteres non valide.", + "Not allowed to create a federated share with the owner." : "Il non es permittite crear le Compartir Federate con le proprietario.", + "Invalid or untrusted SSL certificate" : "Certificato SSL non valide o non fiduciari", + "Could not authenticate to remote share, password might be wrong" : "Impossibile authenticar al Compartir Remote, le contrasigno debe esser incorrecte", + "Storage not valid" : "Immagazinage non valide", + "Couldn't add remote share" : "Impossibile adder le Compartir Remote" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/ia.json b/apps/federatedfilesharing/l10n/ia.json index af9b3a6be4954..4e1abc659782c 100644 --- a/apps/federatedfilesharing/l10n/ia.json +++ b/apps/federatedfilesharing/l10n/ia.json @@ -14,12 +14,6 @@ "Server to server sharing is not enabled on this server" : "Le Compartir de Servitor a Servitor non es activate in iste servitor", "Couldn't establish a federated share." : "Impossibile establir le Compartir Federate.", "Couldn't establish a federated share, maybe the password was wrong." : "Impossibile establir le Compartir Federate, possibilemente le contrasigno esseva incorrecte.", - "The mountpoint name contains invalid characters." : "Le nomine pro le puncto de montage contine characteres non valide.", - "Not allowed to create a federated share with the owner." : "Il non es permittite crear le Compartir Federate con le proprietario.", - "Invalid or untrusted SSL certificate" : "Certificato SSL non valide o non fiduciari", - "Could not authenticate to remote share, password might be wrong" : "Impossibile authenticar al Compartir Remote, le contrasigno debe esser incorrecte", - "Storage not valid" : "Immagazinage non valide", - "Couldn't add remote share" : "Impossibile adder le Compartir Remote", "Sharing %s failed, because this item is already shared with %s" : "Compartir %s falleva, proque iste elemento ja es compartite con %s", "Not allowed to create a federated share with the same user" : "Il non es permittite crear le Compartir Federate con le mesme usator.", "File is already shared with %s" : "File ja es compartite con %s", @@ -43,6 +37,11 @@ "Add to your website" : "Adde a tu sito web", "Share with me via Nextcloud" : "Comparti con me via Nextcloud", "HTML Code:" : "Codice HTML:", - "Share it:" : "Comparti lo:" + "The mountpoint name contains invalid characters." : "Le nomine pro le puncto de montage contine characteres non valide.", + "Not allowed to create a federated share with the owner." : "Il non es permittite crear le Compartir Federate con le proprietario.", + "Invalid or untrusted SSL certificate" : "Certificato SSL non valide o non fiduciari", + "Could not authenticate to remote share, password might be wrong" : "Impossibile authenticar al Compartir Remote, le contrasigno debe esser incorrecte", + "Storage not valid" : "Immagazinage non valide", + "Couldn't add remote share" : "Impossibile adder le Compartir Remote" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/id.js b/apps/federatedfilesharing/l10n/id.js index 4760bb17b90f4..e84631467a9fb 100644 --- a/apps/federatedfilesharing/l10n/id.js +++ b/apps/federatedfilesharing/l10n/id.js @@ -4,7 +4,7 @@ OC.L10N.register( "Federated sharing" : "Pembagian terfederasi", "Do you want to add the remote share {name} from {owner}@{remote}?" : "Apakah Anda ingin menambahkan pembagian remote {name} dari {owner}@{remote}?", "Remote share" : "Berbagi remote", - "Remote share password" : "Sandi berbagi remote", + "Remote share password" : "Kata sandi berbagi jarak jauh", "Cancel" : "Batalkan", "Add remote share" : "Tambah berbagi remote", "Copy" : "Salin", @@ -15,13 +15,7 @@ OC.L10N.register( "Invalid Federated Cloud ID" : "Federated Cloud ID tidak sah", "Server to server sharing is not enabled on this server" : "Berbagi server ke server tidak diaktifkan pada server ini", "Couldn't establish a federated share." : "Tidak dapat mendirikan pembagian terfederasi", - "Couldn't establish a federated share, maybe the password was wrong." : "Tidak dapat mendirikan pembagian terfederasi, mungkin sandi salah.", - "The mountpoint name contains invalid characters." : "Nama mount point berisi karakter yang tidak sah.", - "Not allowed to create a federated share with the owner." : "Tidak diizinkan membuat pembagian terfederasi dengan pemilik.", - "Invalid or untrusted SSL certificate" : "Sertifikat SSL tidak sah atau tidak terpercaya", - "Could not authenticate to remote share, password might be wrong" : "Tidak dapat mengautentikasi berbagi remote, kata sandi mungkin salah", - "Storage not valid" : "Penyimpanan tidak sah", - "Couldn't add remote share" : "Tidak dapat menambahkan berbagi remote", + "Couldn't establish a federated share, maybe the password was wrong." : "Tidak dapat mendirikan pembagian terfederasi, mungkin kata sandi salah.", "Sharing %s failed, because this item is already shared with %s" : "Gagal membagkan %s, karena item ini sudah dibagikan dengan %s", "Not allowed to create a federated share with the same user" : "Tidak diizinkan membuat pembagian terfederasi dengan pengguna yang sama", "File is already shared with %s" : "Berkas sudah dibagikan dengan %s", @@ -45,6 +39,11 @@ OC.L10N.register( "Add to your website" : "Tambahkan pada situs web Anda", "Share with me via Nextcloud" : "Dibagikan pada saya via Nextcloud", "HTML Code:" : "Kode HTML:", - "Share it:" : "Bagikan:" + "The mountpoint name contains invalid characters." : "Nama mount point berisi karakter yang tidak sah.", + "Not allowed to create a federated share with the owner." : "Tidak diizinkan membuat pembagian terfederasi dengan pemilik.", + "Invalid or untrusted SSL certificate" : "Sertifikat SSL tidak sah atau tidak terpercaya", + "Could not authenticate to remote share, password might be wrong" : "Tidak dapat mengautentikasi berbagi remote, kata sandi mungkin salah", + "Storage not valid" : "Penyimpanan tidak sah", + "Couldn't add remote share" : "Tidak dapat menambahkan berbagi remote" }, "nplurals=1; plural=0;"); diff --git a/apps/federatedfilesharing/l10n/id.json b/apps/federatedfilesharing/l10n/id.json index 95da03dff5b58..535b218f2ffe6 100644 --- a/apps/federatedfilesharing/l10n/id.json +++ b/apps/federatedfilesharing/l10n/id.json @@ -2,7 +2,7 @@ "Federated sharing" : "Pembagian terfederasi", "Do you want to add the remote share {name} from {owner}@{remote}?" : "Apakah Anda ingin menambahkan pembagian remote {name} dari {owner}@{remote}?", "Remote share" : "Berbagi remote", - "Remote share password" : "Sandi berbagi remote", + "Remote share password" : "Kata sandi berbagi jarak jauh", "Cancel" : "Batalkan", "Add remote share" : "Tambah berbagi remote", "Copy" : "Salin", @@ -13,13 +13,7 @@ "Invalid Federated Cloud ID" : "Federated Cloud ID tidak sah", "Server to server sharing is not enabled on this server" : "Berbagi server ke server tidak diaktifkan pada server ini", "Couldn't establish a federated share." : "Tidak dapat mendirikan pembagian terfederasi", - "Couldn't establish a federated share, maybe the password was wrong." : "Tidak dapat mendirikan pembagian terfederasi, mungkin sandi salah.", - "The mountpoint name contains invalid characters." : "Nama mount point berisi karakter yang tidak sah.", - "Not allowed to create a federated share with the owner." : "Tidak diizinkan membuat pembagian terfederasi dengan pemilik.", - "Invalid or untrusted SSL certificate" : "Sertifikat SSL tidak sah atau tidak terpercaya", - "Could not authenticate to remote share, password might be wrong" : "Tidak dapat mengautentikasi berbagi remote, kata sandi mungkin salah", - "Storage not valid" : "Penyimpanan tidak sah", - "Couldn't add remote share" : "Tidak dapat menambahkan berbagi remote", + "Couldn't establish a federated share, maybe the password was wrong." : "Tidak dapat mendirikan pembagian terfederasi, mungkin kata sandi salah.", "Sharing %s failed, because this item is already shared with %s" : "Gagal membagkan %s, karena item ini sudah dibagikan dengan %s", "Not allowed to create a federated share with the same user" : "Tidak diizinkan membuat pembagian terfederasi dengan pengguna yang sama", "File is already shared with %s" : "Berkas sudah dibagikan dengan %s", @@ -43,6 +37,11 @@ "Add to your website" : "Tambahkan pada situs web Anda", "Share with me via Nextcloud" : "Dibagikan pada saya via Nextcloud", "HTML Code:" : "Kode HTML:", - "Share it:" : "Bagikan:" + "The mountpoint name contains invalid characters." : "Nama mount point berisi karakter yang tidak sah.", + "Not allowed to create a federated share with the owner." : "Tidak diizinkan membuat pembagian terfederasi dengan pemilik.", + "Invalid or untrusted SSL certificate" : "Sertifikat SSL tidak sah atau tidak terpercaya", + "Could not authenticate to remote share, password might be wrong" : "Tidak dapat mengautentikasi berbagi remote, kata sandi mungkin salah", + "Storage not valid" : "Penyimpanan tidak sah", + "Couldn't add remote share" : "Tidak dapat menambahkan berbagi remote" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/is.js b/apps/federatedfilesharing/l10n/is.js index 9a8d78362d6d7..19cd0ecb3fbac 100644 --- a/apps/federatedfilesharing/l10n/is.js +++ b/apps/federatedfilesharing/l10n/is.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "Gat ekki bætt við skýjasambandssameign.", "Couldn't establish a federated share, maybe the password was wrong." : "Gat ekki bætt við skýjasambandssameign, hugsanlega var lykilorðið ekki rétt.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Sendi beiðni um skýjasambandssameign, þú munt fá boðskort. Athugaðu skilaboð til þín.", - "The mountpoint name contains invalid characters." : "Heiti tengipunktsins inniheldur ógilda stafi.", - "Not allowed to create a federated share with the owner." : "Ekki er heimilt að búa til skýjasambandssameign með eigandanum.", - "Invalid or untrusted SSL certificate" : "Ógilt eða vantreyst SSL-skilríki", - "Could not authenticate to remote share, password might be wrong" : "Gat ekki auðkennt á fjartengdri sameign, lykilorð gæti verið rangt", - "Storage not valid" : "Geymslan er ekki gild", - "Federated share added" : "Bætti við skýjasambandssameign", - "Couldn't add remote share" : "Gat ekki bætt við fjartengdri sameign", "Sharing %s failed, because this item is already shared with %s" : "Deiling %s mistókst, því þessu atriði er þegar deilt með %s", "Not allowed to create a federated share with the same user" : "Ekki er heimilt að búa til skýjasambandssameign með sama notanda", "File is already shared with %s" : "Skránni er þegar deilt með %s", @@ -38,6 +31,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Deila með mér í gegnum víðværa skýjasambandsauðkennið mitt #Nextcloud Federated Cloud ID, sjá %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Deila með mér í gegnum víðværa skýjasambandsauðkennið mitt #Nextcloud Federated Cloud ID", "Sharing" : "Deiling", + "Federated file sharing" : "Deiling skráa milli þjóna (skýjasambandssameign)", "Federated Cloud Sharing" : "Deiling með skýjasambandi", "Open documentation" : "Opna hjálparskjöl", "Adjust how people can share between servers." : "Stilltu hvernig fólk getur deilt á milli þjóna.", @@ -52,7 +46,13 @@ OC.L10N.register( "Add to your website" : "Bæta við vefsvæðið þitt", "Share with me via Nextcloud" : "Deila með mér í gegnum Nextcloud", "HTML Code:" : "HTML-kóði:", - "Search global and public address book for users and let local users publish their data" : "Leita að notendum í víðværri og opinberri vistfangaskrá og leyfa staðværum notendum að birta gögnin sín", - "Share it:" : "Deila því:" + "The mountpoint name contains invalid characters." : "Heiti tengipunktsins inniheldur ógilda stafi.", + "Not allowed to create a federated share with the owner." : "Ekki er heimilt að búa til skýjasambandssameign með eigandanum.", + "Invalid or untrusted SSL certificate" : "Ógilt eða vantreyst SSL-skilríki", + "Could not authenticate to remote share, password might be wrong" : "Gat ekki auðkennt á fjartengdri sameign, lykilorð gæti verið rangt", + "Storage not valid" : "Geymslan er ekki gild", + "Federated share added" : "Bætti við skýjasambandssameign", + "Couldn't add remote share" : "Gat ekki bætt við fjartengdri sameign", + "Search global and public address book for users and let local users publish their data" : "Leita að notendum í víðværri og opinberri vistfangaskrá og leyfa staðværum notendum að birta gögnin sín" }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/federatedfilesharing/l10n/is.json b/apps/federatedfilesharing/l10n/is.json index bdd07291ec498..20f59174b2f4b 100644 --- a/apps/federatedfilesharing/l10n/is.json +++ b/apps/federatedfilesharing/l10n/is.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "Gat ekki bætt við skýjasambandssameign.", "Couldn't establish a federated share, maybe the password was wrong." : "Gat ekki bætt við skýjasambandssameign, hugsanlega var lykilorðið ekki rétt.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Sendi beiðni um skýjasambandssameign, þú munt fá boðskort. Athugaðu skilaboð til þín.", - "The mountpoint name contains invalid characters." : "Heiti tengipunktsins inniheldur ógilda stafi.", - "Not allowed to create a federated share with the owner." : "Ekki er heimilt að búa til skýjasambandssameign með eigandanum.", - "Invalid or untrusted SSL certificate" : "Ógilt eða vantreyst SSL-skilríki", - "Could not authenticate to remote share, password might be wrong" : "Gat ekki auðkennt á fjartengdri sameign, lykilorð gæti verið rangt", - "Storage not valid" : "Geymslan er ekki gild", - "Federated share added" : "Bætti við skýjasambandssameign", - "Couldn't add remote share" : "Gat ekki bætt við fjartengdri sameign", "Sharing %s failed, because this item is already shared with %s" : "Deiling %s mistókst, því þessu atriði er þegar deilt með %s", "Not allowed to create a federated share with the same user" : "Ekki er heimilt að búa til skýjasambandssameign með sama notanda", "File is already shared with %s" : "Skránni er þegar deilt með %s", @@ -36,6 +29,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Deila með mér í gegnum víðværa skýjasambandsauðkennið mitt #Nextcloud Federated Cloud ID, sjá %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Deila með mér í gegnum víðværa skýjasambandsauðkennið mitt #Nextcloud Federated Cloud ID", "Sharing" : "Deiling", + "Federated file sharing" : "Deiling skráa milli þjóna (skýjasambandssameign)", "Federated Cloud Sharing" : "Deiling með skýjasambandi", "Open documentation" : "Opna hjálparskjöl", "Adjust how people can share between servers." : "Stilltu hvernig fólk getur deilt á milli þjóna.", @@ -50,7 +44,13 @@ "Add to your website" : "Bæta við vefsvæðið þitt", "Share with me via Nextcloud" : "Deila með mér í gegnum Nextcloud", "HTML Code:" : "HTML-kóði:", - "Search global and public address book for users and let local users publish their data" : "Leita að notendum í víðværri og opinberri vistfangaskrá og leyfa staðværum notendum að birta gögnin sín", - "Share it:" : "Deila því:" + "The mountpoint name contains invalid characters." : "Heiti tengipunktsins inniheldur ógilda stafi.", + "Not allowed to create a federated share with the owner." : "Ekki er heimilt að búa til skýjasambandssameign með eigandanum.", + "Invalid or untrusted SSL certificate" : "Ógilt eða vantreyst SSL-skilríki", + "Could not authenticate to remote share, password might be wrong" : "Gat ekki auðkennt á fjartengdri sameign, lykilorð gæti verið rangt", + "Storage not valid" : "Geymslan er ekki gild", + "Federated share added" : "Bætti við skýjasambandssameign", + "Couldn't add remote share" : "Gat ekki bætt við fjartengdri sameign", + "Search global and public address book for users and let local users publish their data" : "Leita að notendum í víðværri og opinberri vistfangaskrá og leyfa staðværum notendum að birta gögnin sín" },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/it.js b/apps/federatedfilesharing/l10n/it.js index 7ac7a3e96ab07..735add2edd00a 100644 --- a/apps/federatedfilesharing/l10n/it.js +++ b/apps/federatedfilesharing/l10n/it.js @@ -17,13 +17,7 @@ OC.L10N.register( "Couldn't establish a federated share." : "Impossibile stabilire una condivisione federata.", "Couldn't establish a federated share, maybe the password was wrong." : "Impossibile stabilire una condivisione federata, forse la password non è corretta.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Richiesta della condivisione federata inviata, riceverai un invito. Controlla le tue notifiche.", - "The mountpoint name contains invalid characters." : "Il nome del punto di mount contiene caratteri non validi.", - "Not allowed to create a federated share with the owner." : "Non è consentito creare una condivisione federata con il proprietario.", - "Invalid or untrusted SSL certificate" : "Certificato SSL non valido o non attendibile", - "Could not authenticate to remote share, password might be wrong" : "Impossibile autenticarsi sulla condivisione remota, la password potrebbe essere errata", - "Storage not valid" : "Archiviazione non valida", - "Federated share added" : "Condivisione federata aggiunta", - "Couldn't add remote share" : "Impossibile aggiungere la condivisione remota", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Impossibile stabilire una condivisione federata, sembra che il server da federare sia troppo datato (Nextcloud <= 9).", "Sharing %s failed, because this item is already shared with %s" : "Condivisione di %s non riuscita, poiché l'oggetto è già condiviso con %s", "Not allowed to create a federated share with the same user" : "Non è consentito creare una condivisione federata con lo stesso utente", "File is already shared with %s" : "Il file è già condiviso con %s", @@ -38,6 +32,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Condividi con me attraverso il mio ID di cloud federata #Nextcloud, vedi %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Condividi con me attraverso il mio ID di cloud federata #Nextcloud", "Sharing" : "Condivisione", + "Federated file sharing" : "Condivisione file federata", "Federated Cloud Sharing" : "Condivisione cloud federata", "Open documentation" : "Apri la documentazione", "Adjust how people can share between servers." : "Regola come le persone possono condividere tra i server.", @@ -52,7 +47,13 @@ OC.L10N.register( "Add to your website" : "Aggiungi al tuo sito web", "Share with me via Nextcloud" : "Condividi con me tramite Nextcloud", "HTML Code:" : "Codice HTML:", - "Search global and public address book for users and let local users publish their data" : "Cerca utenti nella rubrica globale e pubblica e consenti agli utenti di pubblicare i loro dati", - "Share it:" : "Condividilo:" + "The mountpoint name contains invalid characters." : "Il nome del punto di mount contiene caratteri non validi.", + "Not allowed to create a federated share with the owner." : "Non è consentito creare una condivisione federata con il proprietario.", + "Invalid or untrusted SSL certificate" : "Certificato SSL non valido o non attendibile", + "Could not authenticate to remote share, password might be wrong" : "Impossibile autenticarsi sulla condivisione remota, la password potrebbe essere errata", + "Storage not valid" : "Archiviazione non valida", + "Federated share added" : "Condivisione federata aggiunta", + "Couldn't add remote share" : "Impossibile aggiungere la condivisione remota", + "Search global and public address book for users and let local users publish their data" : "Cerca utenti nella rubrica globale e pubblica e consenti agli utenti di pubblicare i loro dati" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/it.json b/apps/federatedfilesharing/l10n/it.json index c82880e4fc24d..ca823e2ba1610 100644 --- a/apps/federatedfilesharing/l10n/it.json +++ b/apps/federatedfilesharing/l10n/it.json @@ -15,13 +15,7 @@ "Couldn't establish a federated share." : "Impossibile stabilire una condivisione federata.", "Couldn't establish a federated share, maybe the password was wrong." : "Impossibile stabilire una condivisione federata, forse la password non è corretta.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Richiesta della condivisione federata inviata, riceverai un invito. Controlla le tue notifiche.", - "The mountpoint name contains invalid characters." : "Il nome del punto di mount contiene caratteri non validi.", - "Not allowed to create a federated share with the owner." : "Non è consentito creare una condivisione federata con il proprietario.", - "Invalid or untrusted SSL certificate" : "Certificato SSL non valido o non attendibile", - "Could not authenticate to remote share, password might be wrong" : "Impossibile autenticarsi sulla condivisione remota, la password potrebbe essere errata", - "Storage not valid" : "Archiviazione non valida", - "Federated share added" : "Condivisione federata aggiunta", - "Couldn't add remote share" : "Impossibile aggiungere la condivisione remota", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Impossibile stabilire una condivisione federata, sembra che il server da federare sia troppo datato (Nextcloud <= 9).", "Sharing %s failed, because this item is already shared with %s" : "Condivisione di %s non riuscita, poiché l'oggetto è già condiviso con %s", "Not allowed to create a federated share with the same user" : "Non è consentito creare una condivisione federata con lo stesso utente", "File is already shared with %s" : "Il file è già condiviso con %s", @@ -36,6 +30,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Condividi con me attraverso il mio ID di cloud federata #Nextcloud, vedi %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Condividi con me attraverso il mio ID di cloud federata #Nextcloud", "Sharing" : "Condivisione", + "Federated file sharing" : "Condivisione file federata", "Federated Cloud Sharing" : "Condivisione cloud federata", "Open documentation" : "Apri la documentazione", "Adjust how people can share between servers." : "Regola come le persone possono condividere tra i server.", @@ -50,7 +45,13 @@ "Add to your website" : "Aggiungi al tuo sito web", "Share with me via Nextcloud" : "Condividi con me tramite Nextcloud", "HTML Code:" : "Codice HTML:", - "Search global and public address book for users and let local users publish their data" : "Cerca utenti nella rubrica globale e pubblica e consenti agli utenti di pubblicare i loro dati", - "Share it:" : "Condividilo:" + "The mountpoint name contains invalid characters." : "Il nome del punto di mount contiene caratteri non validi.", + "Not allowed to create a federated share with the owner." : "Non è consentito creare una condivisione federata con il proprietario.", + "Invalid or untrusted SSL certificate" : "Certificato SSL non valido o non attendibile", + "Could not authenticate to remote share, password might be wrong" : "Impossibile autenticarsi sulla condivisione remota, la password potrebbe essere errata", + "Storage not valid" : "Archiviazione non valida", + "Federated share added" : "Condivisione federata aggiunta", + "Couldn't add remote share" : "Impossibile aggiungere la condivisione remota", + "Search global and public address book for users and let local users publish their data" : "Cerca utenti nella rubrica globale e pubblica e consenti agli utenti di pubblicare i loro dati" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/ja.js b/apps/federatedfilesharing/l10n/ja.js index f7c7e6e56e30f..47fa2b8d68225 100644 --- a/apps/federatedfilesharing/l10n/ja.js +++ b/apps/federatedfilesharing/l10n/ja.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "クラウド共有を接続できませんでした。", "Couldn't establish a federated share, maybe the password was wrong." : "クラウド共有を接続できませんでした。パスワードが間違っていませんか。", "Federated Share request sent, you will receive an invitation. Check your notifications." : "クラウド共有リクエストが送信されました。招待が受信できます。通知を確認してください。", - "The mountpoint name contains invalid characters." : "マウントポイント名 に不正な文字列が含まれています。", - "Not allowed to create a federated share with the owner." : "その所有者でクラウド共有を作成することは出来ません", - "Invalid or untrusted SSL certificate" : "無効または信頼できないSSL証明書", - "Could not authenticate to remote share, password might be wrong" : "リモート共有が認証できませんでした,パスワードが間違っているかもしれません", - "Storage not valid" : "ストレージが無効です", - "Federated share added" : "クラウド共有が追加されました", - "Couldn't add remote share" : "リモート共有を追加できませんでした", "Sharing %s failed, because this item is already shared with %s" : "%s を共有できませんでした。このアイテムはすでに %s に共有されています。", "Not allowed to create a federated share with the same user" : "同じユーザーでクラウド共有を作成することは出来ません", "File is already shared with %s" : "ファイルは既に %s と共有されています。", @@ -38,6 +31,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "#Nextcloud の「クラウド共有ID」で私と共有できます。こちらを見てください。%s", "Share with me through my #Nextcloud Federated Cloud ID" : "#Nextcloud の「クラウド共有ID」で私と共有できます。", "Sharing" : "共有中", + "Federated file sharing" : "連携共有", "Federated Cloud Sharing" : "統合されたクラウド共有", "Open documentation" : "ドキュメントを開く", "Adjust how people can share between servers." : "サーバー間でどうやって共有するかを調整する", @@ -52,7 +46,13 @@ OC.L10N.register( "Add to your website" : "ウェブサイトに追加", "Share with me via Nextcloud" : "Nextcloud 経由で共有", "HTML Code:" : "HTMLコード:", - "Search global and public address book for users and let local users publish their data" : "グローバルまたはユーザーの公開アドレス帳を検索し、ローカルユーザーのデータを公開する", - "Share it:" : "共有先:" + "The mountpoint name contains invalid characters." : "マウントポイント名 に不正な文字列が含まれています。", + "Not allowed to create a federated share with the owner." : "その所有者でクラウド共有を作成することは出来ません", + "Invalid or untrusted SSL certificate" : "無効または信頼できないSSL証明書", + "Could not authenticate to remote share, password might be wrong" : "リモート共有が認証できませんでした,パスワードが間違っているかもしれません", + "Storage not valid" : "ストレージが無効です", + "Federated share added" : "クラウド共有が追加されました", + "Couldn't add remote share" : "リモート共有を追加できませんでした", + "Search global and public address book for users and let local users publish their data" : "グローバルまたはユーザーの公開アドレス帳を検索し、ローカルユーザーのデータを公開する" }, "nplurals=1; plural=0;"); diff --git a/apps/federatedfilesharing/l10n/ja.json b/apps/federatedfilesharing/l10n/ja.json index 99c6610c92571..6efe57c5ce28b 100644 --- a/apps/federatedfilesharing/l10n/ja.json +++ b/apps/federatedfilesharing/l10n/ja.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "クラウド共有を接続できませんでした。", "Couldn't establish a federated share, maybe the password was wrong." : "クラウド共有を接続できませんでした。パスワードが間違っていませんか。", "Federated Share request sent, you will receive an invitation. Check your notifications." : "クラウド共有リクエストが送信されました。招待が受信できます。通知を確認してください。", - "The mountpoint name contains invalid characters." : "マウントポイント名 に不正な文字列が含まれています。", - "Not allowed to create a federated share with the owner." : "その所有者でクラウド共有を作成することは出来ません", - "Invalid or untrusted SSL certificate" : "無効または信頼できないSSL証明書", - "Could not authenticate to remote share, password might be wrong" : "リモート共有が認証できませんでした,パスワードが間違っているかもしれません", - "Storage not valid" : "ストレージが無効です", - "Federated share added" : "クラウド共有が追加されました", - "Couldn't add remote share" : "リモート共有を追加できませんでした", "Sharing %s failed, because this item is already shared with %s" : "%s を共有できませんでした。このアイテムはすでに %s に共有されています。", "Not allowed to create a federated share with the same user" : "同じユーザーでクラウド共有を作成することは出来ません", "File is already shared with %s" : "ファイルは既に %s と共有されています。", @@ -36,6 +29,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "#Nextcloud の「クラウド共有ID」で私と共有できます。こちらを見てください。%s", "Share with me through my #Nextcloud Federated Cloud ID" : "#Nextcloud の「クラウド共有ID」で私と共有できます。", "Sharing" : "共有中", + "Federated file sharing" : "連携共有", "Federated Cloud Sharing" : "統合されたクラウド共有", "Open documentation" : "ドキュメントを開く", "Adjust how people can share between servers." : "サーバー間でどうやって共有するかを調整する", @@ -50,7 +44,13 @@ "Add to your website" : "ウェブサイトに追加", "Share with me via Nextcloud" : "Nextcloud 経由で共有", "HTML Code:" : "HTMLコード:", - "Search global and public address book for users and let local users publish their data" : "グローバルまたはユーザーの公開アドレス帳を検索し、ローカルユーザーのデータを公開する", - "Share it:" : "共有先:" + "The mountpoint name contains invalid characters." : "マウントポイント名 に不正な文字列が含まれています。", + "Not allowed to create a federated share with the owner." : "その所有者でクラウド共有を作成することは出来ません", + "Invalid or untrusted SSL certificate" : "無効または信頼できないSSL証明書", + "Could not authenticate to remote share, password might be wrong" : "リモート共有が認証できませんでした,パスワードが間違っているかもしれません", + "Storage not valid" : "ストレージが無効です", + "Federated share added" : "クラウド共有が追加されました", + "Couldn't add remote share" : "リモート共有を追加できませんでした", + "Search global and public address book for users and let local users publish their data" : "グローバルまたはユーザーの公開アドレス帳を検索し、ローカルユーザーのデータを公開する" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/ka_GE.js b/apps/federatedfilesharing/l10n/ka_GE.js index bfa3b728cf770..383ae2fc3c9b9 100644 --- a/apps/federatedfilesharing/l10n/ka_GE.js +++ b/apps/federatedfilesharing/l10n/ka_GE.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "ფედერალური გაზიარება ვერ დამყარდა.", "Couldn't establish a federated share, maybe the password was wrong." : "ფედერალური გაზიარება ვერ დამყარდა, შეისაძლოა პაროლი არ იყოს მართებული.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "ფედერალური გაზიარების მოთხოვნა გაიგზავნა, თქვენ მიიღებთ მოწვევას. შეამოწმეთ თქვენი შეტყობინებები.", - "The mountpoint name contains invalid characters." : "დამონტაჟების წერტილის სახელი შეიცავს არასწორ სიმბოლოებს.", - "Not allowed to create a federated share with the owner." : "მფლობელთან ფედერალური გაზიარების შექმნა არაა ნებადართული.", - "Invalid or untrusted SSL certificate" : "არასწორი ან არასანდო SSL სერტიფიკატი", - "Could not authenticate to remote share, password might be wrong" : "დისტანციურ გაზიარებასთან აუტენტიფიკაცია არ მოხერხდა, შესაძლოა პაროლი იყოს არასწორი", - "Storage not valid" : "საცავი არაა სწორი", - "Federated share added" : "ფედერალური გაზიარება დაემატა", - "Couldn't add remote share" : "ფედერალური გაზიარება ვერ დაემატა", "Sharing %s failed, because this item is already shared with %s" : "%s-ს გაზიარება არ მოხერხდა, ეს ობიექტი %s მომხმარებელთან უკვე გაზიარებულია", "Not allowed to create a federated share with the same user" : "იმავე მომხმარებელთან ფედერალური გაზიარება ვერ შეიქმნება", "File is already shared with %s" : "ფაილი უკვე გაზიარებულია მომხმარებელთან %s ", @@ -38,6 +31,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "გააზიარეთ ჩემთან ჩემი #Nextcloud-ის ფედერალური ქლაუდ ID-ის მეშვეობით, იხილეთ %s", "Share with me through my #Nextcloud Federated Cloud ID" : "გააზიარეთ ჩემთან ჩემი #Nextcloud-ის ფედერალური ქლაუდ ID-ის მეშვეობით", "Sharing" : "გაზიარება", + "Federated file sharing" : "ფედერალური ფაილების გაზიარება", "Federated Cloud Sharing" : "ფედერალური ქლაუდ გაზიარება", "Open documentation" : "ღია დოკუმენტაცია", "Adjust how people can share between servers." : "განაგეთ თუ როგორ შეუძლიათ ადამიანებს სერვერებს შორის მოახდინონ გაზიარება.", @@ -52,7 +46,13 @@ OC.L10N.register( "Add to your website" : "საიტზე დამატება", "Share with me via Nextcloud" : "გამიზიარე Nextcloud-ის მეშვეობით", "HTML Code:" : "HTML კოდი:", - "Search global and public address book for users and let local users publish their data" : "მოიძიეთ გლობალური და ღია მისამართების წიგნები მომხმარებლებისთვის და მიეცით უფლება ლოკალურ მომხმარებლებს გააზიარონ საკუთარი მონაცემები", - "Share it:" : "გააზიარე ეს:" + "The mountpoint name contains invalid characters." : "დამონტაჟების წერტილის სახელი შეიცავს არასწორ სიმბოლოებს.", + "Not allowed to create a federated share with the owner." : "მფლობელთან ფედერალური გაზიარების შექმნა არაა ნებადართული.", + "Invalid or untrusted SSL certificate" : "არასწორი ან არასანდო SSL სერტიფიკატი", + "Could not authenticate to remote share, password might be wrong" : "დისტანციურ გაზიარებასთან აუტენტიფიკაცია არ მოხერხდა, შესაძლოა პაროლი იყოს არასწორი", + "Storage not valid" : "საცავი არაა სწორი", + "Federated share added" : "ფედერალური გაზიარება დაემატა", + "Couldn't add remote share" : "ფედერალური გაზიარება ვერ დაემატა", + "Search global and public address book for users and let local users publish their data" : "მოიძიეთ გლობალური და ღია მისამართების წიგნები მომხმარებლებისთვის და მიეცით უფლება ლოკალურ მომხმარებლებს გააზიარონ საკუთარი მონაცემები" }, "nplurals=1; plural=0;"); diff --git a/apps/federatedfilesharing/l10n/ka_GE.json b/apps/federatedfilesharing/l10n/ka_GE.json index 981fd12b0c115..19165fd3155c0 100644 --- a/apps/federatedfilesharing/l10n/ka_GE.json +++ b/apps/federatedfilesharing/l10n/ka_GE.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "ფედერალური გაზიარება ვერ დამყარდა.", "Couldn't establish a federated share, maybe the password was wrong." : "ფედერალური გაზიარება ვერ დამყარდა, შეისაძლოა პაროლი არ იყოს მართებული.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "ფედერალური გაზიარების მოთხოვნა გაიგზავნა, თქვენ მიიღებთ მოწვევას. შეამოწმეთ თქვენი შეტყობინებები.", - "The mountpoint name contains invalid characters." : "დამონტაჟების წერტილის სახელი შეიცავს არასწორ სიმბოლოებს.", - "Not allowed to create a federated share with the owner." : "მფლობელთან ფედერალური გაზიარების შექმნა არაა ნებადართული.", - "Invalid or untrusted SSL certificate" : "არასწორი ან არასანდო SSL სერტიფიკატი", - "Could not authenticate to remote share, password might be wrong" : "დისტანციურ გაზიარებასთან აუტენტიფიკაცია არ მოხერხდა, შესაძლოა პაროლი იყოს არასწორი", - "Storage not valid" : "საცავი არაა სწორი", - "Federated share added" : "ფედერალური გაზიარება დაემატა", - "Couldn't add remote share" : "ფედერალური გაზიარება ვერ დაემატა", "Sharing %s failed, because this item is already shared with %s" : "%s-ს გაზიარება არ მოხერხდა, ეს ობიექტი %s მომხმარებელთან უკვე გაზიარებულია", "Not allowed to create a federated share with the same user" : "იმავე მომხმარებელთან ფედერალური გაზიარება ვერ შეიქმნება", "File is already shared with %s" : "ფაილი უკვე გაზიარებულია მომხმარებელთან %s ", @@ -36,6 +29,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "გააზიარეთ ჩემთან ჩემი #Nextcloud-ის ფედერალური ქლაუდ ID-ის მეშვეობით, იხილეთ %s", "Share with me through my #Nextcloud Federated Cloud ID" : "გააზიარეთ ჩემთან ჩემი #Nextcloud-ის ფედერალური ქლაუდ ID-ის მეშვეობით", "Sharing" : "გაზიარება", + "Federated file sharing" : "ფედერალური ფაილების გაზიარება", "Federated Cloud Sharing" : "ფედერალური ქლაუდ გაზიარება", "Open documentation" : "ღია დოკუმენტაცია", "Adjust how people can share between servers." : "განაგეთ თუ როგორ შეუძლიათ ადამიანებს სერვერებს შორის მოახდინონ გაზიარება.", @@ -50,7 +44,13 @@ "Add to your website" : "საიტზე დამატება", "Share with me via Nextcloud" : "გამიზიარე Nextcloud-ის მეშვეობით", "HTML Code:" : "HTML კოდი:", - "Search global and public address book for users and let local users publish their data" : "მოიძიეთ გლობალური და ღია მისამართების წიგნები მომხმარებლებისთვის და მიეცით უფლება ლოკალურ მომხმარებლებს გააზიარონ საკუთარი მონაცემები", - "Share it:" : "გააზიარე ეს:" + "The mountpoint name contains invalid characters." : "დამონტაჟების წერტილის სახელი შეიცავს არასწორ სიმბოლოებს.", + "Not allowed to create a federated share with the owner." : "მფლობელთან ფედერალური გაზიარების შექმნა არაა ნებადართული.", + "Invalid or untrusted SSL certificate" : "არასწორი ან არასანდო SSL სერტიფიკატი", + "Could not authenticate to remote share, password might be wrong" : "დისტანციურ გაზიარებასთან აუტენტიფიკაცია არ მოხერხდა, შესაძლოა პაროლი იყოს არასწორი", + "Storage not valid" : "საცავი არაა სწორი", + "Federated share added" : "ფედერალური გაზიარება დაემატა", + "Couldn't add remote share" : "ფედერალური გაზიარება ვერ დაემატა", + "Search global and public address book for users and let local users publish their data" : "მოიძიეთ გლობალური და ღია მისამართების წიგნები მომხმარებლებისთვის და მიეცით უფლება ლოკალურ მომხმარებლებს გააზიარონ საკუთარი მონაცემები" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/ko.js b/apps/federatedfilesharing/l10n/ko.js index 242f8ed6b014c..ab79775039d7f 100644 --- a/apps/federatedfilesharing/l10n/ko.js +++ b/apps/federatedfilesharing/l10n/ko.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "연합 공유를 설정할 수 없습니다.", "Couldn't establish a federated share, maybe the password was wrong." : "연합 공유를 설정할 수 없습니다. 암호가 잘못되었을 수도 있습니다.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "연합 공유 요청을 보냈으며 초대장을 받을 것입니다. 알림을 확인하십시오.", - "The mountpoint name contains invalid characters." : "마운트 지점 이름에 잘못된 글자가 포함되어 있습니다.", - "Not allowed to create a federated share with the owner." : "소유자와 연합 공유를 만들 수 없음", - "Invalid or untrusted SSL certificate" : "유효하지 않거나 신뢰할 수없는 SSL 인증서", - "Could not authenticate to remote share, password might be wrong" : "원격 공유에 인증할 수 없습니다. 암호가 잘못되었을 수도 있습니다", - "Storage not valid" : "유효하지 않은 저장소", - "Federated share added" : "연합 공유를 추가함", - "Couldn't add remote share" : "원격 공유를 추가할 수 없음", "Sharing %s failed, because this item is already shared with %s" : "%s을(를) 공유할 수 없습니다. 이미 %s 님과 공유되어 있습니다", "Not allowed to create a federated share with the same user" : "같은 사용자와 연합 공유를 만들 수 없음", "File is already shared with %s" : "파일이 %s와(과) 이미 공유됨", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "내 웹 사이트에 추가", "Share with me via Nextcloud" : "Nextcloud로 나와 공유하기", "HTML Code:" : "HTML 코드:", - "Search global and public address book for users and let local users publish their data" : "전역 및 공개 주소록에서 검색하고 로컬 사용자가 정보를 공개할 수 있도록 허용", - "Share it:" : "공유하기:" + "The mountpoint name contains invalid characters." : "마운트 지점 이름에 잘못된 글자가 포함되어 있습니다.", + "Not allowed to create a federated share with the owner." : "소유자와 연합 공유를 만들 수 없음", + "Invalid or untrusted SSL certificate" : "유효하지 않거나 신뢰할 수없는 SSL 인증서", + "Could not authenticate to remote share, password might be wrong" : "원격 공유에 인증할 수 없습니다. 암호가 잘못되었을 수도 있습니다", + "Storage not valid" : "유효하지 않은 저장소", + "Federated share added" : "연합 공유를 추가함", + "Couldn't add remote share" : "원격 공유를 추가할 수 없음", + "Search global and public address book for users and let local users publish their data" : "전역 및 공개 주소록에서 검색하고 로컬 사용자가 정보를 공개할 수 있도록 허용" }, "nplurals=1; plural=0;"); diff --git a/apps/federatedfilesharing/l10n/ko.json b/apps/federatedfilesharing/l10n/ko.json index c86e898b29ecc..e8fefd1cab41d 100644 --- a/apps/federatedfilesharing/l10n/ko.json +++ b/apps/federatedfilesharing/l10n/ko.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "연합 공유를 설정할 수 없습니다.", "Couldn't establish a federated share, maybe the password was wrong." : "연합 공유를 설정할 수 없습니다. 암호가 잘못되었을 수도 있습니다.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "연합 공유 요청을 보냈으며 초대장을 받을 것입니다. 알림을 확인하십시오.", - "The mountpoint name contains invalid characters." : "마운트 지점 이름에 잘못된 글자가 포함되어 있습니다.", - "Not allowed to create a federated share with the owner." : "소유자와 연합 공유를 만들 수 없음", - "Invalid or untrusted SSL certificate" : "유효하지 않거나 신뢰할 수없는 SSL 인증서", - "Could not authenticate to remote share, password might be wrong" : "원격 공유에 인증할 수 없습니다. 암호가 잘못되었을 수도 있습니다", - "Storage not valid" : "유효하지 않은 저장소", - "Federated share added" : "연합 공유를 추가함", - "Couldn't add remote share" : "원격 공유를 추가할 수 없음", "Sharing %s failed, because this item is already shared with %s" : "%s을(를) 공유할 수 없습니다. 이미 %s 님과 공유되어 있습니다", "Not allowed to create a federated share with the same user" : "같은 사용자와 연합 공유를 만들 수 없음", "File is already shared with %s" : "파일이 %s와(과) 이미 공유됨", @@ -50,7 +43,13 @@ "Add to your website" : "내 웹 사이트에 추가", "Share with me via Nextcloud" : "Nextcloud로 나와 공유하기", "HTML Code:" : "HTML 코드:", - "Search global and public address book for users and let local users publish their data" : "전역 및 공개 주소록에서 검색하고 로컬 사용자가 정보를 공개할 수 있도록 허용", - "Share it:" : "공유하기:" + "The mountpoint name contains invalid characters." : "마운트 지점 이름에 잘못된 글자가 포함되어 있습니다.", + "Not allowed to create a federated share with the owner." : "소유자와 연합 공유를 만들 수 없음", + "Invalid or untrusted SSL certificate" : "유효하지 않거나 신뢰할 수없는 SSL 인증서", + "Could not authenticate to remote share, password might be wrong" : "원격 공유에 인증할 수 없습니다. 암호가 잘못되었을 수도 있습니다", + "Storage not valid" : "유효하지 않은 저장소", + "Federated share added" : "연합 공유를 추가함", + "Couldn't add remote share" : "원격 공유를 추가할 수 없음", + "Search global and public address book for users and let local users publish their data" : "전역 및 공개 주소록에서 검색하고 로컬 사용자가 정보를 공개할 수 있도록 허용" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/lt_LT.js b/apps/federatedfilesharing/l10n/lt_LT.js index 2afcf7adcb91b..47479c9e791ba 100644 --- a/apps/federatedfilesharing/l10n/lt_LT.js +++ b/apps/federatedfilesharing/l10n/lt_LT.js @@ -16,13 +16,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "Neįmanoma pradėti dalintis kitame serveryje.", "Couldn't establish a federated share, maybe the password was wrong." : "Neįmanoma pradėti dalintis kitame serveryje. Gal jūsų slaptažodis blogas?", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Dalinimosi kitame serveryje užklausa išsiųsta. Jūs būsite informuoti, jei pasidalinimas bus sėkmingas. ", - "The mountpoint name contains invalid characters." : "Prijungimo taškas turi netinkamų naudoti simbolių.", - "Not allowed to create a federated share with the owner." : "Savininkas neleidžia dalintis duomenimis su kitu serveriu.", - "Invalid or untrusted SSL certificate" : "Neteisingas arba nepatikimas SSL liudijimas", - "Could not authenticate to remote share, password might be wrong" : "Neįmanoma pradėti dalintis kitame serveryje. Gal jūsų slaptažodis blogas?", - "Storage not valid" : "Saugykla netinkama naudotis", - "Federated share added" : "Pasidalinta per kitą serverį", - "Couldn't add remote share" : "Nepavyko peržiūrėti kitame serveryje pasidalintų duomenų", "Sharing %s failed, because this item is already shared with %s" : "%s bendrinimas nepavyko, kadangi šis elementas jau yra bendrinamas su %s", "Not allowed to create a federated share with the same user" : "Negalima dalintis su identišku naudotoju kitame serveryje", "File is already shared with %s" : "Failas jau yra bendrinamas su %s", @@ -51,7 +44,13 @@ OC.L10N.register( "Add to your website" : "Pridėti jūsų puslapį", "Share with me via Nextcloud" : "Pasidalinti su manimi per NextCloud", "HTML Code:" : "HTML kodas:", - "Search global and public address book for users and let local users publish their data" : "Rasti globalias ar viešas adresų knygas ir leisti naudotojams viešinti savo duomenis", - "Share it:" : "Pasidalinti:" + "The mountpoint name contains invalid characters." : "Prijungimo taškas turi netinkamų naudoti simbolių.", + "Not allowed to create a federated share with the owner." : "Savininkas neleidžia dalintis duomenimis su kitu serveriu.", + "Invalid or untrusted SSL certificate" : "Neteisingas arba nepatikimas SSL liudijimas", + "Could not authenticate to remote share, password might be wrong" : "Neįmanoma pradėti dalintis kitame serveryje. Gal jūsų slaptažodis blogas?", + "Storage not valid" : "Saugykla netinkama naudotis", + "Federated share added" : "Pasidalinta per kitą serverį", + "Couldn't add remote share" : "Nepavyko peržiūrėti kitame serveryje pasidalintų duomenų", + "Search global and public address book for users and let local users publish their data" : "Rasti globalias ar viešas adresų knygas ir leisti naudotojams viešinti savo duomenis" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/federatedfilesharing/l10n/lt_LT.json b/apps/federatedfilesharing/l10n/lt_LT.json index eb7470a8a7c25..278d4381ae0fd 100644 --- a/apps/federatedfilesharing/l10n/lt_LT.json +++ b/apps/federatedfilesharing/l10n/lt_LT.json @@ -14,13 +14,6 @@ "Couldn't establish a federated share." : "Neįmanoma pradėti dalintis kitame serveryje.", "Couldn't establish a federated share, maybe the password was wrong." : "Neįmanoma pradėti dalintis kitame serveryje. Gal jūsų slaptažodis blogas?", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Dalinimosi kitame serveryje užklausa išsiųsta. Jūs būsite informuoti, jei pasidalinimas bus sėkmingas. ", - "The mountpoint name contains invalid characters." : "Prijungimo taškas turi netinkamų naudoti simbolių.", - "Not allowed to create a federated share with the owner." : "Savininkas neleidžia dalintis duomenimis su kitu serveriu.", - "Invalid or untrusted SSL certificate" : "Neteisingas arba nepatikimas SSL liudijimas", - "Could not authenticate to remote share, password might be wrong" : "Neįmanoma pradėti dalintis kitame serveryje. Gal jūsų slaptažodis blogas?", - "Storage not valid" : "Saugykla netinkama naudotis", - "Federated share added" : "Pasidalinta per kitą serverį", - "Couldn't add remote share" : "Nepavyko peržiūrėti kitame serveryje pasidalintų duomenų", "Sharing %s failed, because this item is already shared with %s" : "%s bendrinimas nepavyko, kadangi šis elementas jau yra bendrinamas su %s", "Not allowed to create a federated share with the same user" : "Negalima dalintis su identišku naudotoju kitame serveryje", "File is already shared with %s" : "Failas jau yra bendrinamas su %s", @@ -49,7 +42,13 @@ "Add to your website" : "Pridėti jūsų puslapį", "Share with me via Nextcloud" : "Pasidalinti su manimi per NextCloud", "HTML Code:" : "HTML kodas:", - "Search global and public address book for users and let local users publish their data" : "Rasti globalias ar viešas adresų knygas ir leisti naudotojams viešinti savo duomenis", - "Share it:" : "Pasidalinti:" + "The mountpoint name contains invalid characters." : "Prijungimo taškas turi netinkamų naudoti simbolių.", + "Not allowed to create a federated share with the owner." : "Savininkas neleidžia dalintis duomenimis su kitu serveriu.", + "Invalid or untrusted SSL certificate" : "Neteisingas arba nepatikimas SSL liudijimas", + "Could not authenticate to remote share, password might be wrong" : "Neįmanoma pradėti dalintis kitame serveryje. Gal jūsų slaptažodis blogas?", + "Storage not valid" : "Saugykla netinkama naudotis", + "Federated share added" : "Pasidalinta per kitą serverį", + "Couldn't add remote share" : "Nepavyko peržiūrėti kitame serveryje pasidalintų duomenų", + "Search global and public address book for users and let local users publish their data" : "Rasti globalias ar viešas adresų knygas ir leisti naudotojams viešinti savo duomenis" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/lv.js b/apps/federatedfilesharing/l10n/lv.js index aa26ac01d650a..d72309f51adc2 100644 --- a/apps/federatedfilesharing/l10n/lv.js +++ b/apps/federatedfilesharing/l10n/lv.js @@ -1,9 +1,35 @@ OC.L10N.register( "federatedfilesharing", { + "Federated sharing" : "Federatīva koplietošana", + "Do you want to add the remote share {name} from {owner}@{remote}?" : "Vai vēlaties pievienot attālo koplietošanu {name} no {owner}@{remote}?", + "Remote share" : "Attālinātā koplietotne", + "Remote share password" : "Attālinātās koplietotnes parole", + "Cancel" : "Atcelt", + "Add remote share" : "Pievienot attālināto koplietotni", + "Copy" : "Kopēt", + "Copied!" : "Nokopēts!", + "Not supported!" : "Nav atbalstīts!", + "Press ⌘-C to copy." : "Spied ⌘-C lai kopētu.", + "Press Ctrl-C to copy." : "Spied Ctrl-C lai kopētu.", + "Invalid Federated Cloud ID" : "Nederīgs Federated Cloud ID", + "Server to server sharing is not enabled on this server" : "Koplietošana no servera uz serveri, šajā serverī nav iespējota", + "File is already shared with %s" : "Datne ir jau koplietota ar %s", + "Could not find share" : "Nevarēja atrast koplietojumu", + "Accept" : "Akceptēt", + "Decline" : "Noraidīt", "Federated Cloud Sharing" : "Federatīva mākoņkoplietošana", "Open documentation" : "Atvērt dokumentāciju", "Allow users on this server to send shares to other servers" : "Atļaut šī servera lietotājiem sūtīt koplietotnes uz citiem serveriem", - "Allow users on this server to receive shares from other servers" : "Atļaut šī servera lietotājiem saņem koplietotnes no citiem serveriem" + "Allow users on this server to receive shares from other servers" : "Atļaut šī servera lietotājiem saņem koplietotnes no citiem serveriem", + "Federated Cloud" : "Federated Cloud", + "Your Federated Cloud ID:" : "Tavs Federated Cloud ID:", + "Add to your website" : "Pievienojiet savai vietnei", + "HTML Code:" : "HTML kods:", + "The mountpoint name contains invalid characters." : "Montēšanas punkta nosaukums satur nederīgus simbolus.", + "Not allowed to create a federated share with the owner." : "Nav atļauts izveidot ārēju koplietošanu ar īpašnieku.", + "Invalid or untrusted SSL certificate" : "Nederīgs vai neuzticams SSL sertifikāts", + "Storage not valid" : "Nederīga krātuve", + "Couldn't add remote share" : "Nevarēja pievienot attālināto koplietotni" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/apps/federatedfilesharing/l10n/lv.json b/apps/federatedfilesharing/l10n/lv.json index 986c430151b1e..b0ab2982df2f1 100644 --- a/apps/federatedfilesharing/l10n/lv.json +++ b/apps/federatedfilesharing/l10n/lv.json @@ -1,7 +1,33 @@ { "translations": { + "Federated sharing" : "Federatīva koplietošana", + "Do you want to add the remote share {name} from {owner}@{remote}?" : "Vai vēlaties pievienot attālo koplietošanu {name} no {owner}@{remote}?", + "Remote share" : "Attālinātā koplietotne", + "Remote share password" : "Attālinātās koplietotnes parole", + "Cancel" : "Atcelt", + "Add remote share" : "Pievienot attālināto koplietotni", + "Copy" : "Kopēt", + "Copied!" : "Nokopēts!", + "Not supported!" : "Nav atbalstīts!", + "Press ⌘-C to copy." : "Spied ⌘-C lai kopētu.", + "Press Ctrl-C to copy." : "Spied Ctrl-C lai kopētu.", + "Invalid Federated Cloud ID" : "Nederīgs Federated Cloud ID", + "Server to server sharing is not enabled on this server" : "Koplietošana no servera uz serveri, šajā serverī nav iespējota", + "File is already shared with %s" : "Datne ir jau koplietota ar %s", + "Could not find share" : "Nevarēja atrast koplietojumu", + "Accept" : "Akceptēt", + "Decline" : "Noraidīt", "Federated Cloud Sharing" : "Federatīva mākoņkoplietošana", "Open documentation" : "Atvērt dokumentāciju", "Allow users on this server to send shares to other servers" : "Atļaut šī servera lietotājiem sūtīt koplietotnes uz citiem serveriem", - "Allow users on this server to receive shares from other servers" : "Atļaut šī servera lietotājiem saņem koplietotnes no citiem serveriem" + "Allow users on this server to receive shares from other servers" : "Atļaut šī servera lietotājiem saņem koplietotnes no citiem serveriem", + "Federated Cloud" : "Federated Cloud", + "Your Federated Cloud ID:" : "Tavs Federated Cloud ID:", + "Add to your website" : "Pievienojiet savai vietnei", + "HTML Code:" : "HTML kods:", + "The mountpoint name contains invalid characters." : "Montēšanas punkta nosaukums satur nederīgus simbolus.", + "Not allowed to create a federated share with the owner." : "Nav atļauts izveidot ārēju koplietošanu ar īpašnieku.", + "Invalid or untrusted SSL certificate" : "Nederīgs vai neuzticams SSL sertifikāts", + "Storage not valid" : "Nederīga krātuve", + "Couldn't add remote share" : "Nevarēja pievienot attālināto koplietotni" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/nb.js b/apps/federatedfilesharing/l10n/nb.js index ea5a41344fdf7..f2202e2746529 100644 --- a/apps/federatedfilesharing/l10n/nb.js +++ b/apps/federatedfilesharing/l10n/nb.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "Kunne ikke etablere en sammenknyttet ressurs", "Couldn't establish a federated share, maybe the password was wrong." : "Kunne ikke etablere en sammenknyttet ressurs, kanskje passordet var feil.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Sammenknyttet ressurs forespurt, du vil motta en invitasjon. Sjekk varslene dine.", - "The mountpoint name contains invalid characters." : "Navnet på oppkoblingspunktet inneholder ugyldige tegn.", - "Not allowed to create a federated share with the owner." : "Ikke tillatt å opprette en sammenknyttet ressurs med eieren.", - "Invalid or untrusted SSL certificate" : "Ugyldig eller ikke-klarert SSL-sertifikat", - "Could not authenticate to remote share, password might be wrong" : "Kunne ikke autentisere mot ekstern ressurs, passordet var kanskje feil.", - "Storage not valid" : "Lagringsplass ikke gyldig", - "Federated share added" : "Sammenknyttet ressurs lagt til", - "Couldn't add remote share" : "Kunne ikke legge til ekstern ressurs", "Sharing %s failed, because this item is already shared with %s" : "Deling av %s mislyktes, fordi dette elementet allerede er delt med %s", "Not allowed to create a federated share with the same user" : "Ikke tillatt å opprette en sammenknyttet skydeling med den samme brukeren", "File is already shared with %s" : "Filen er allerede delt med %s", @@ -38,6 +31,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Del med meg gjennom min #Nextcloud-ID for sammenknyttet sky, se %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Del med meg gjennom min #Nextcloud-ID for sammenknyttet sky", "Sharing" : "Deling", + "Federated file sharing" : "Sammenknyttet fildeling", "Federated Cloud Sharing" : "Sammenknyttet skydeling", "Open documentation" : "Åpne dokumentasjonen", "Adjust how people can share between servers." : "Juster hvordan folk kan dele mellom tjenere.", @@ -52,7 +46,13 @@ OC.L10N.register( "Add to your website" : "Legg på nettsiden din", "Share with me via Nextcloud" : "Del med meg via Nextcloud", "HTML Code:" : "HTML-kode:", - "Search global and public address book for users and let local users publish their data" : "Søk i verdensomspennende og offentlig adressebok etter brukere og la lokale brukere offentliggjøre deres data", - "Share it:" : "Del den:" + "The mountpoint name contains invalid characters." : "Navnet på oppkoblingspunktet inneholder ugyldige tegn.", + "Not allowed to create a federated share with the owner." : "Ikke tillatt å opprette en sammenknyttet ressurs med eieren.", + "Invalid or untrusted SSL certificate" : "Ugyldig eller ikke-klarert SSL-sertifikat", + "Could not authenticate to remote share, password might be wrong" : "Kunne ikke autentisere mot ekstern ressurs, passordet var kanskje feil.", + "Storage not valid" : "Lagringsplass ikke gyldig", + "Federated share added" : "Sammenknyttet ressurs lagt til", + "Couldn't add remote share" : "Kunne ikke legge til ekstern ressurs", + "Search global and public address book for users and let local users publish their data" : "Søk i verdensomspennende og offentlig adressebok etter brukere og la lokale brukere offentliggjøre deres data" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/nb.json b/apps/federatedfilesharing/l10n/nb.json index bdc53df1d614f..8eed80b6ef05e 100644 --- a/apps/federatedfilesharing/l10n/nb.json +++ b/apps/federatedfilesharing/l10n/nb.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "Kunne ikke etablere en sammenknyttet ressurs", "Couldn't establish a federated share, maybe the password was wrong." : "Kunne ikke etablere en sammenknyttet ressurs, kanskje passordet var feil.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Sammenknyttet ressurs forespurt, du vil motta en invitasjon. Sjekk varslene dine.", - "The mountpoint name contains invalid characters." : "Navnet på oppkoblingspunktet inneholder ugyldige tegn.", - "Not allowed to create a federated share with the owner." : "Ikke tillatt å opprette en sammenknyttet ressurs med eieren.", - "Invalid or untrusted SSL certificate" : "Ugyldig eller ikke-klarert SSL-sertifikat", - "Could not authenticate to remote share, password might be wrong" : "Kunne ikke autentisere mot ekstern ressurs, passordet var kanskje feil.", - "Storage not valid" : "Lagringsplass ikke gyldig", - "Federated share added" : "Sammenknyttet ressurs lagt til", - "Couldn't add remote share" : "Kunne ikke legge til ekstern ressurs", "Sharing %s failed, because this item is already shared with %s" : "Deling av %s mislyktes, fordi dette elementet allerede er delt med %s", "Not allowed to create a federated share with the same user" : "Ikke tillatt å opprette en sammenknyttet skydeling med den samme brukeren", "File is already shared with %s" : "Filen er allerede delt med %s", @@ -36,6 +29,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Del med meg gjennom min #Nextcloud-ID for sammenknyttet sky, se %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Del med meg gjennom min #Nextcloud-ID for sammenknyttet sky", "Sharing" : "Deling", + "Federated file sharing" : "Sammenknyttet fildeling", "Federated Cloud Sharing" : "Sammenknyttet skydeling", "Open documentation" : "Åpne dokumentasjonen", "Adjust how people can share between servers." : "Juster hvordan folk kan dele mellom tjenere.", @@ -50,7 +44,13 @@ "Add to your website" : "Legg på nettsiden din", "Share with me via Nextcloud" : "Del med meg via Nextcloud", "HTML Code:" : "HTML-kode:", - "Search global and public address book for users and let local users publish their data" : "Søk i verdensomspennende og offentlig adressebok etter brukere og la lokale brukere offentliggjøre deres data", - "Share it:" : "Del den:" + "The mountpoint name contains invalid characters." : "Navnet på oppkoblingspunktet inneholder ugyldige tegn.", + "Not allowed to create a federated share with the owner." : "Ikke tillatt å opprette en sammenknyttet ressurs med eieren.", + "Invalid or untrusted SSL certificate" : "Ugyldig eller ikke-klarert SSL-sertifikat", + "Could not authenticate to remote share, password might be wrong" : "Kunne ikke autentisere mot ekstern ressurs, passordet var kanskje feil.", + "Storage not valid" : "Lagringsplass ikke gyldig", + "Federated share added" : "Sammenknyttet ressurs lagt til", + "Couldn't add remote share" : "Kunne ikke legge til ekstern ressurs", + "Search global and public address book for users and let local users publish their data" : "Søk i verdensomspennende og offentlig adressebok etter brukere og la lokale brukere offentliggjøre deres data" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/nl.js b/apps/federatedfilesharing/l10n/nl.js index e764d8d673905..2f536035cf194 100644 --- a/apps/federatedfilesharing/l10n/nl.js +++ b/apps/federatedfilesharing/l10n/nl.js @@ -17,13 +17,7 @@ OC.L10N.register( "Couldn't establish a federated share." : "Kon geen gefedereerde share tot stand brengen", "Couldn't establish a federated share, maybe the password was wrong." : "Kon geen gefedereerde share tot stand brengen, misschien was het wachtwoord onjuist.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "De gefedereerde share aanvraag is verzonden, je ontvangt een uitnodiging. Controleer je meldingen.", - "The mountpoint name contains invalid characters." : "De naam van het mountpoint bevat ongeldige karakters.", - "Not allowed to create a federated share with the owner." : "Het is niet toegestaan om met de eigenaar een gefedereerde share te maken.", - "Invalid or untrusted SSL certificate" : "Ongeldig of onvertrouwd SSL-certificaat", - "Could not authenticate to remote share, password might be wrong" : "Kon niet authenticeren bij externe share, misschien verkeerd wachtwoord", - "Storage not valid" : "Opslag ongeldig", - "Federated share added" : "Gefedereerd share is toegevoegd", - "Couldn't add remote share" : "Kon geen externe share toevoegen", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Kon geen gefedereerde share tot stand brengen, waarschijnlijk was de federatieserver te oud (Nextcloud <=9).", "Sharing %s failed, because this item is already shared with %s" : "Delen van %s is mislukt, omdat het object al wordt gedeeld met %s", "Not allowed to create a federated share with the same user" : "Het is niet toegestaan om een gefedereerde share met dezelfde gebruikersserver te maken", "File is already shared with %s" : "Bestand is al gedeeld met %s", @@ -38,6 +32,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Deel met mij via mijn #Nextcloud gefedereerde Cloud ID, zie %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Deel met mij via mijn #Nextcloud gefedereerde Cloud ID", "Sharing" : "Delen", + "Federated file sharing" : "Gefedereerd delen", "Federated Cloud Sharing" : "Federated Cloud Sharing", "Open documentation" : "Open documentatie", "Adjust how people can share between servers." : "Aanpassen hoe mensen tussen servers kunnen delen.", @@ -52,7 +47,13 @@ OC.L10N.register( "Add to your website" : "Toevoegen aan je website", "Share with me via Nextcloud" : "Deel met mij via Nextcloud", "HTML Code:" : "HTML Code:", - "Search global and public address book for users and let local users publish their data" : "Openbare adresboeken voor gebruikers doorzoeken en laat lokale gebruikers de data plubliceren", - "Share it:" : "Deel het:" + "The mountpoint name contains invalid characters." : "De naam van het mountpoint bevat ongeldige karakters.", + "Not allowed to create a federated share with the owner." : "Het is niet toegestaan om met de eigenaar een gefedereerde share te maken.", + "Invalid or untrusted SSL certificate" : "Ongeldig of onvertrouwd SSL-certificaat", + "Could not authenticate to remote share, password might be wrong" : "Kon niet authenticeren bij externe share, misschien verkeerd wachtwoord", + "Storage not valid" : "Opslag ongeldig", + "Federated share added" : "Gefedereerd share is toegevoegd", + "Couldn't add remote share" : "Kon geen externe share toevoegen", + "Search global and public address book for users and let local users publish their data" : "Openbare adresboeken voor gebruikers doorzoeken en laat lokale gebruikers de data plubliceren" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/nl.json b/apps/federatedfilesharing/l10n/nl.json index 5e3ea12bdf541..328087c4ece68 100644 --- a/apps/federatedfilesharing/l10n/nl.json +++ b/apps/federatedfilesharing/l10n/nl.json @@ -15,13 +15,7 @@ "Couldn't establish a federated share." : "Kon geen gefedereerde share tot stand brengen", "Couldn't establish a federated share, maybe the password was wrong." : "Kon geen gefedereerde share tot stand brengen, misschien was het wachtwoord onjuist.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "De gefedereerde share aanvraag is verzonden, je ontvangt een uitnodiging. Controleer je meldingen.", - "The mountpoint name contains invalid characters." : "De naam van het mountpoint bevat ongeldige karakters.", - "Not allowed to create a federated share with the owner." : "Het is niet toegestaan om met de eigenaar een gefedereerde share te maken.", - "Invalid or untrusted SSL certificate" : "Ongeldig of onvertrouwd SSL-certificaat", - "Could not authenticate to remote share, password might be wrong" : "Kon niet authenticeren bij externe share, misschien verkeerd wachtwoord", - "Storage not valid" : "Opslag ongeldig", - "Federated share added" : "Gefedereerd share is toegevoegd", - "Couldn't add remote share" : "Kon geen externe share toevoegen", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Kon geen gefedereerde share tot stand brengen, waarschijnlijk was de federatieserver te oud (Nextcloud <=9).", "Sharing %s failed, because this item is already shared with %s" : "Delen van %s is mislukt, omdat het object al wordt gedeeld met %s", "Not allowed to create a federated share with the same user" : "Het is niet toegestaan om een gefedereerde share met dezelfde gebruikersserver te maken", "File is already shared with %s" : "Bestand is al gedeeld met %s", @@ -36,6 +30,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Deel met mij via mijn #Nextcloud gefedereerde Cloud ID, zie %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Deel met mij via mijn #Nextcloud gefedereerde Cloud ID", "Sharing" : "Delen", + "Federated file sharing" : "Gefedereerd delen", "Federated Cloud Sharing" : "Federated Cloud Sharing", "Open documentation" : "Open documentatie", "Adjust how people can share between servers." : "Aanpassen hoe mensen tussen servers kunnen delen.", @@ -50,7 +45,13 @@ "Add to your website" : "Toevoegen aan je website", "Share with me via Nextcloud" : "Deel met mij via Nextcloud", "HTML Code:" : "HTML Code:", - "Search global and public address book for users and let local users publish their data" : "Openbare adresboeken voor gebruikers doorzoeken en laat lokale gebruikers de data plubliceren", - "Share it:" : "Deel het:" + "The mountpoint name contains invalid characters." : "De naam van het mountpoint bevat ongeldige karakters.", + "Not allowed to create a federated share with the owner." : "Het is niet toegestaan om met de eigenaar een gefedereerde share te maken.", + "Invalid or untrusted SSL certificate" : "Ongeldig of onvertrouwd SSL-certificaat", + "Could not authenticate to remote share, password might be wrong" : "Kon niet authenticeren bij externe share, misschien verkeerd wachtwoord", + "Storage not valid" : "Opslag ongeldig", + "Federated share added" : "Gefedereerd share is toegevoegd", + "Couldn't add remote share" : "Kon geen externe share toevoegen", + "Search global and public address book for users and let local users publish their data" : "Openbare adresboeken voor gebruikers doorzoeken en laat lokale gebruikers de data plubliceren" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/pl.js b/apps/federatedfilesharing/l10n/pl.js index 0303df19f3c05..e5145339ca856 100644 --- a/apps/federatedfilesharing/l10n/pl.js +++ b/apps/federatedfilesharing/l10n/pl.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "Nie udało się ustalić Stowarzyszonego udostępnienia.", "Couldn't establish a federated share, maybe the password was wrong." : "Nie udało się ustalić Stowarzyszonego udostępnienia, może być błędne hasło.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Wysłano żądanie Udostępniania Stowarzyszonego, otrzymasz zaproszenie. Sprawdzaj swoje powiadomienia.", - "The mountpoint name contains invalid characters." : "Nazwa zamontowanego zasobu zawiera niedozwolone znaki.", - "Not allowed to create a federated share with the owner." : "Nie można tworzyć stowarzyszonego udziału ze sobą.", - "Invalid or untrusted SSL certificate" : "Niewłaściwy lub niezaufany certyfikat SSL", - "Could not authenticate to remote share, password might be wrong" : "Nie udało się uwierzytelnić udziału zdalnego, może być błędne hasło", - "Storage not valid" : "Magazyn nie jest prawidłowy", - "Federated share added" : "Udostępnianie Stowarzyszone zostało dodane", - "Couldn't add remote share" : "Nie można dodać zdalnego zasobu", "Sharing %s failed, because this item is already shared with %s" : "Współdzielenie %s nie powiodło się, ponieważ element jest już współdzielony z %s", "Not allowed to create a federated share with the same user" : "Nie można tworzyć stowarzyszonego udziału z tym samym użytkownikiem", "File is already shared with %s" : "Plik jest już współdzielony z %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Dodaj do swojej strony", "Share with me via Nextcloud" : "Podziel się ze mną poprzez Nextcloud", "HTML Code:" : "Kod HTML:", - "Search global and public address book for users and let local users publish their data" : "Szukaj użytkowników w globalnej i publicznej książce adresowej i pozwól lokalnym użytkownikom na publikowanie swoich danych", - "Share it:" : "Udostępnij to:" + "The mountpoint name contains invalid characters." : "Nazwa zamontowanego zasobu zawiera niedozwolone znaki.", + "Not allowed to create a federated share with the owner." : "Nie można tworzyć stowarzyszonego udziału ze sobą.", + "Invalid or untrusted SSL certificate" : "Niewłaściwy lub niezaufany certyfikat SSL", + "Could not authenticate to remote share, password might be wrong" : "Nie udało się uwierzytelnić udziału zdalnego, może być błędne hasło", + "Storage not valid" : "Magazyn nie jest prawidłowy", + "Federated share added" : "Udostępnianie Stowarzyszone zostało dodane", + "Couldn't add remote share" : "Nie można dodać zdalnego zasobu", + "Search global and public address book for users and let local users publish their data" : "Szukaj użytkowników w globalnej i publicznej książce adresowej i pozwól lokalnym użytkownikom na publikowanie swoich danych" }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/federatedfilesharing/l10n/pl.json b/apps/federatedfilesharing/l10n/pl.json index 84d4be83db149..a32126b3f49ad 100644 --- a/apps/federatedfilesharing/l10n/pl.json +++ b/apps/federatedfilesharing/l10n/pl.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "Nie udało się ustalić Stowarzyszonego udostępnienia.", "Couldn't establish a federated share, maybe the password was wrong." : "Nie udało się ustalić Stowarzyszonego udostępnienia, może być błędne hasło.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Wysłano żądanie Udostępniania Stowarzyszonego, otrzymasz zaproszenie. Sprawdzaj swoje powiadomienia.", - "The mountpoint name contains invalid characters." : "Nazwa zamontowanego zasobu zawiera niedozwolone znaki.", - "Not allowed to create a federated share with the owner." : "Nie można tworzyć stowarzyszonego udziału ze sobą.", - "Invalid or untrusted SSL certificate" : "Niewłaściwy lub niezaufany certyfikat SSL", - "Could not authenticate to remote share, password might be wrong" : "Nie udało się uwierzytelnić udziału zdalnego, może być błędne hasło", - "Storage not valid" : "Magazyn nie jest prawidłowy", - "Federated share added" : "Udostępnianie Stowarzyszone zostało dodane", - "Couldn't add remote share" : "Nie można dodać zdalnego zasobu", "Sharing %s failed, because this item is already shared with %s" : "Współdzielenie %s nie powiodło się, ponieważ element jest już współdzielony z %s", "Not allowed to create a federated share with the same user" : "Nie można tworzyć stowarzyszonego udziału z tym samym użytkownikiem", "File is already shared with %s" : "Plik jest już współdzielony z %s", @@ -50,7 +43,13 @@ "Add to your website" : "Dodaj do swojej strony", "Share with me via Nextcloud" : "Podziel się ze mną poprzez Nextcloud", "HTML Code:" : "Kod HTML:", - "Search global and public address book for users and let local users publish their data" : "Szukaj użytkowników w globalnej i publicznej książce adresowej i pozwól lokalnym użytkownikom na publikowanie swoich danych", - "Share it:" : "Udostępnij to:" + "The mountpoint name contains invalid characters." : "Nazwa zamontowanego zasobu zawiera niedozwolone znaki.", + "Not allowed to create a federated share with the owner." : "Nie można tworzyć stowarzyszonego udziału ze sobą.", + "Invalid or untrusted SSL certificate" : "Niewłaściwy lub niezaufany certyfikat SSL", + "Could not authenticate to remote share, password might be wrong" : "Nie udało się uwierzytelnić udziału zdalnego, może być błędne hasło", + "Storage not valid" : "Magazyn nie jest prawidłowy", + "Federated share added" : "Udostępnianie Stowarzyszone zostało dodane", + "Couldn't add remote share" : "Nie można dodać zdalnego zasobu", + "Search global and public address book for users and let local users publish their data" : "Szukaj użytkowników w globalnej i publicznej książce adresowej i pozwól lokalnym użytkownikom na publikowanie swoich danych" },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/pt_BR.js b/apps/federatedfilesharing/l10n/pt_BR.js index 2e2e9f427fae3..bcccf70725710 100644 --- a/apps/federatedfilesharing/l10n/pt_BR.js +++ b/apps/federatedfilesharing/l10n/pt_BR.js @@ -17,13 +17,7 @@ OC.L10N.register( "Couldn't establish a federated share." : "Não foi possível estabelecer um compartilhamento federado.", "Couldn't establish a federated share, maybe the password was wrong." : "Não foi possível estabelecer um compartilhamento federado, talvez a senha esteja incorreta.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitação de Compartilhamento Federado enviada, você receberá um convite. Verifique suas notificações.", - "The mountpoint name contains invalid characters." : "O nome do ponto de montagem contém caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "Não é permitido criar um compartilhamento federado com o proprietário.", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido ou não confiável", - "Could not authenticate to remote share, password might be wrong" : "Não foi possível autenticar-se ao compartilhamento remoto. A senha pode estar incorreta", - "Storage not valid" : "Armazenamento inválido", - "Federated share added" : "Compartilhamento Federado adicionado", - "Couldn't add remote share" : "Não foi possível adicionar o compartilhamento remoto", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Não foi possível estabelecer um compartilhamento federado, parece que o servidor a se federar é muito antigo (Nextcloud <= 9).", "Sharing %s failed, because this item is already shared with %s" : "Compartilhamento %s falhou porque este item já está compartilhado com %s", "Not allowed to create a federated share with the same user" : "Não é permitido criar um compartilhamento federado com o mesmo usuário", "File is already shared with %s" : "O arquivo já é compartilhado com %s", @@ -38,6 +32,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Compartilhe comigo através do meu ID de Nuvem Federada #Nextcloud, veja %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Compartilhe comigo através do meu ID de Nuvem Federada #Nextcloud", "Sharing" : "Compartilhar", + "Federated file sharing" : "Compartilhamento federado de arquivos", "Federated Cloud Sharing" : "Compartilhamento de Nuvem Federada", "Open documentation" : "Abrir documentação", "Adjust how people can share between servers." : "Ajustar como as pessoas podem compartilhar entre servidores.", @@ -52,7 +47,13 @@ OC.L10N.register( "Add to your website" : "Adicione ao seu website", "Share with me via Nextcloud" : "Compartilhe comigo via Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Pesquise o catálogo de endereços global e público para usuários e deixe os usuários locais publicarem seus dados", - "Share it:" : "Compartilhe-a:" + "The mountpoint name contains invalid characters." : "O nome do ponto de montagem contém caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "Não é permitido criar um compartilhamento federado com o proprietário.", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido ou não confiável", + "Could not authenticate to remote share, password might be wrong" : "Não foi possível autenticar-se ao compartilhamento remoto. A senha pode estar incorreta", + "Storage not valid" : "Armazenamento inválido", + "Federated share added" : "Compartilhamento Federado adicionado", + "Couldn't add remote share" : "Não foi possível adicionar o compartilhamento remoto", + "Search global and public address book for users and let local users publish their data" : "Pesquise o catálogo de endereços global e público para usuários e deixe os usuários locais publicarem seus dados" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/federatedfilesharing/l10n/pt_BR.json b/apps/federatedfilesharing/l10n/pt_BR.json index a3a5ee63ec3a5..7c1ad38b41a88 100644 --- a/apps/federatedfilesharing/l10n/pt_BR.json +++ b/apps/federatedfilesharing/l10n/pt_BR.json @@ -15,13 +15,7 @@ "Couldn't establish a federated share." : "Não foi possível estabelecer um compartilhamento federado.", "Couldn't establish a federated share, maybe the password was wrong." : "Não foi possível estabelecer um compartilhamento federado, talvez a senha esteja incorreta.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Solicitação de Compartilhamento Federado enviada, você receberá um convite. Verifique suas notificações.", - "The mountpoint name contains invalid characters." : "O nome do ponto de montagem contém caracteres inválidos.", - "Not allowed to create a federated share with the owner." : "Não é permitido criar um compartilhamento federado com o proprietário.", - "Invalid or untrusted SSL certificate" : "Certificado SSL inválido ou não confiável", - "Could not authenticate to remote share, password might be wrong" : "Não foi possível autenticar-se ao compartilhamento remoto. A senha pode estar incorreta", - "Storage not valid" : "Armazenamento inválido", - "Federated share added" : "Compartilhamento Federado adicionado", - "Couldn't add remote share" : "Não foi possível adicionar o compartilhamento remoto", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Não foi possível estabelecer um compartilhamento federado, parece que o servidor a se federar é muito antigo (Nextcloud <= 9).", "Sharing %s failed, because this item is already shared with %s" : "Compartilhamento %s falhou porque este item já está compartilhado com %s", "Not allowed to create a federated share with the same user" : "Não é permitido criar um compartilhamento federado com o mesmo usuário", "File is already shared with %s" : "O arquivo já é compartilhado com %s", @@ -36,6 +30,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Compartilhe comigo através do meu ID de Nuvem Federada #Nextcloud, veja %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Compartilhe comigo através do meu ID de Nuvem Federada #Nextcloud", "Sharing" : "Compartilhar", + "Federated file sharing" : "Compartilhamento federado de arquivos", "Federated Cloud Sharing" : "Compartilhamento de Nuvem Federada", "Open documentation" : "Abrir documentação", "Adjust how people can share between servers." : "Ajustar como as pessoas podem compartilhar entre servidores.", @@ -50,7 +45,13 @@ "Add to your website" : "Adicione ao seu website", "Share with me via Nextcloud" : "Compartilhe comigo via Nextcloud", "HTML Code:" : "Código HTML:", - "Search global and public address book for users and let local users publish their data" : "Pesquise o catálogo de endereços global e público para usuários e deixe os usuários locais publicarem seus dados", - "Share it:" : "Compartilhe-a:" + "The mountpoint name contains invalid characters." : "O nome do ponto de montagem contém caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "Não é permitido criar um compartilhamento federado com o proprietário.", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido ou não confiável", + "Could not authenticate to remote share, password might be wrong" : "Não foi possível autenticar-se ao compartilhamento remoto. A senha pode estar incorreta", + "Storage not valid" : "Armazenamento inválido", + "Federated share added" : "Compartilhamento Federado adicionado", + "Couldn't add remote share" : "Não foi possível adicionar o compartilhamento remoto", + "Search global and public address book for users and let local users publish their data" : "Pesquise o catálogo de endereços global e público para usuários e deixe os usuários locais publicarem seus dados" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/pt_PT.js b/apps/federatedfilesharing/l10n/pt_PT.js index 974e498800645..81668183108cc 100644 --- a/apps/federatedfilesharing/l10n/pt_PT.js +++ b/apps/federatedfilesharing/l10n/pt_PT.js @@ -2,26 +2,57 @@ OC.L10N.register( "federatedfilesharing", { "Federated sharing" : "Partilha Federada", + "Do you want to add the remote share {name} from {owner}@{remote}?" : "Pretende adicionar a partilha remota {nome} de {proprietório}@{remoto}?", + "Remote share" : "Partilha remota", + "Remote share password" : "Palavra-passe da partilha remota", + "Cancel" : "Cancelar", + "Add remote share" : "Adicionar partilha remota", + "Copy" : "Copiar", + "Copied!" : "Copiado!", + "Not supported!" : "Não suportado!", + "Press ⌘-C to copy." : "Pressione ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Pressione Ctrl-C para copiar.", "Invalid Federated Cloud ID" : "Id. de Nuvem Federada Inválida", + "Server to server sharing is not enabled on this server" : "Partilha servidor-para-servidor não está activa neste servidor", + "Couldn't establish a federated share." : "Não foi possível estabelecer uma partilha federada.", + "Couldn't establish a federated share, maybe the password was wrong." : "Não foi possível estabelecer a partilha federada, a palavra-passe talvez esteja incorrecta.", + "Federated Share request sent, you will receive an invitation. Check your notifications." : "Pedido de Partilha Federada enviado, irá receber o convite. Confira as suas notificações.", "Sharing %s failed, because this item is already shared with %s" : "A partilha %s falhou, porque este item já está a ser partilhado com %s", "Not allowed to create a federated share with the same user" : "Não é possível criar uma partilha federada com o mesmo utilizador", "File is already shared with %s" : "O ficheiro já foi partilhado com %s", - "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "A partilha de %s falhou, não foi possível encontrar %s. É possível que o servidor esteja inacessível.", - "You received \"/%3$s\" as a remote share from %1$s (on behalf of %2$s)" : "Recebeu \"/%3$s\" como uma partilha remota de %1$s (por conta de %2$s)", - "You received \"/%3$s\" as a remote share from %1$s" : "Recebeu \"/%3$s\" como uma partilha remota de %1$s", + "Sharing %s failed, could not find %s, maybe the server is currently unreachable or uses a self-signed certificate." : "Partilha %s falhou, não foi possível encontrar %s, o servidor pode estar actualmente inatingível ou usa um certificado auto-assinado. ", + "Could not find share" : "Não foi possível encontrar partilha", + "You received \"%3$s\" as a remote share from %1$s (on behalf of %2$s)" : "Recebeu \"%3$s\" como uma partilha remota de %1$s (em nome de %2$s)", + "You received {share} as a remote share from {user} (on behalf of {behalf})" : "Recebeu {partilha} como uma partilha remota de {utilizador} (em nome de {behalf})", + "You received \"%3$s\" as a remote share from %1$s" : "Recebeu \"%3$s\" como uma partilha remota de %1$s", + "You received {share} as a remote share from {user}" : "Recebeu {partilha} como uma partilha remota de {utilizador}", "Accept" : "Aceitar", "Decline" : "Recusar", "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Partilhe comigo através da minha Id. da Nuvem Federada #Nextcloud, veja %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Partilhe comigo através da minha Id. da Nuvem Federada #Nextcloud", + "Sharing" : "Partilha", + "Federated file sharing" : "Partilha federada de ficheiros", "Federated Cloud Sharing" : "Partilha de Nuvem Federada", "Open documentation" : "Abrir documentação", + "Adjust how people can share between servers." : "Ajustar como as pessoas podem partilhar entre servidores.", "Allow users on this server to send shares to other servers" : "Permitir que os utilizadores neste servidor enviem as partilhas para outros servidores", "Allow users on this server to receive shares from other servers" : "Permitir que os utilizadores neste servidor recebam as partilhas de outros servidores", + "Search global and public address book for users" : "Pesquisar lista global e pública de contactos de utilizadores ", + "Allow users to publish their data to a global and public address book" : "Permitir que os utilizadores publiquem os seus dados para uma lista de contactos global e pública", "Federated Cloud" : "Nuvem Federada", + "You can share with anyone who uses Nextcloud, ownCloud or Pydio! Just put their Federated Cloud ID in the share dialog. It looks like person@cloud.example.com" : "Pode partilhar com qualquer pessoa que use Nextcloud, ownCloud ou Pydio! Basta inserir Cloud ID federado no diálogo de partilha. Deve ser idêntico a pessoa@cloud.exemplo.com", "Your Federated Cloud ID:" : "A sua id. da Nuvem Federada:", - "Share it:" : "Partilhe-a:", + "Share it so your friends can share files with you:" : "Partilhe para que os seus amigos possam partilhar ficheiros consigo:", "Add to your website" : "Adicione ao seu site da Web", "Share with me via Nextcloud" : "Partilhe comigo via Nextcloud", - "HTML Code:" : "Código HTML:" + "HTML Code:" : "Código HTML:", + "The mountpoint name contains invalid characters." : "O ponto de montagem (mountpoint) contem caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "Não é permitido criar partilha federada com o proprietário. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido ou não confiável", + "Could not authenticate to remote share, password might be wrong" : "Não foi possível a autenticação na partilha remota, a palavra passe talvez esteja incorrecta", + "Storage not valid" : "Armazenamento inválido", + "Federated share added" : "Partilha federada adicionada", + "Couldn't add remote share" : "Não foi possível adicionar partilha remota", + "Search global and public address book for users and let local users publish their data" : "Pesquisar por utilizadores na lista de endereços global e pública e permita que utilizadores locais publiquem os seus dados" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/pt_PT.json b/apps/federatedfilesharing/l10n/pt_PT.json index 9cdd87376f465..7ff5408656d6f 100644 --- a/apps/federatedfilesharing/l10n/pt_PT.json +++ b/apps/federatedfilesharing/l10n/pt_PT.json @@ -1,25 +1,56 @@ { "translations": { "Federated sharing" : "Partilha Federada", + "Do you want to add the remote share {name} from {owner}@{remote}?" : "Pretende adicionar a partilha remota {nome} de {proprietório}@{remoto}?", + "Remote share" : "Partilha remota", + "Remote share password" : "Palavra-passe da partilha remota", + "Cancel" : "Cancelar", + "Add remote share" : "Adicionar partilha remota", + "Copy" : "Copiar", + "Copied!" : "Copiado!", + "Not supported!" : "Não suportado!", + "Press ⌘-C to copy." : "Pressione ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Pressione Ctrl-C para copiar.", "Invalid Federated Cloud ID" : "Id. de Nuvem Federada Inválida", + "Server to server sharing is not enabled on this server" : "Partilha servidor-para-servidor não está activa neste servidor", + "Couldn't establish a federated share." : "Não foi possível estabelecer uma partilha federada.", + "Couldn't establish a federated share, maybe the password was wrong." : "Não foi possível estabelecer a partilha federada, a palavra-passe talvez esteja incorrecta.", + "Federated Share request sent, you will receive an invitation. Check your notifications." : "Pedido de Partilha Federada enviado, irá receber o convite. Confira as suas notificações.", "Sharing %s failed, because this item is already shared with %s" : "A partilha %s falhou, porque este item já está a ser partilhado com %s", "Not allowed to create a federated share with the same user" : "Não é possível criar uma partilha federada com o mesmo utilizador", "File is already shared with %s" : "O ficheiro já foi partilhado com %s", - "Sharing %s failed, could not find %s, maybe the server is currently unreachable." : "A partilha de %s falhou, não foi possível encontrar %s. É possível que o servidor esteja inacessível.", - "You received \"/%3$s\" as a remote share from %1$s (on behalf of %2$s)" : "Recebeu \"/%3$s\" como uma partilha remota de %1$s (por conta de %2$s)", - "You received \"/%3$s\" as a remote share from %1$s" : "Recebeu \"/%3$s\" como uma partilha remota de %1$s", + "Sharing %s failed, could not find %s, maybe the server is currently unreachable or uses a self-signed certificate." : "Partilha %s falhou, não foi possível encontrar %s, o servidor pode estar actualmente inatingível ou usa um certificado auto-assinado. ", + "Could not find share" : "Não foi possível encontrar partilha", + "You received \"%3$s\" as a remote share from %1$s (on behalf of %2$s)" : "Recebeu \"%3$s\" como uma partilha remota de %1$s (em nome de %2$s)", + "You received {share} as a remote share from {user} (on behalf of {behalf})" : "Recebeu {partilha} como uma partilha remota de {utilizador} (em nome de {behalf})", + "You received \"%3$s\" as a remote share from %1$s" : "Recebeu \"%3$s\" como uma partilha remota de %1$s", + "You received {share} as a remote share from {user}" : "Recebeu {partilha} como uma partilha remota de {utilizador}", "Accept" : "Aceitar", "Decline" : "Recusar", "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Partilhe comigo através da minha Id. da Nuvem Federada #Nextcloud, veja %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Partilhe comigo através da minha Id. da Nuvem Federada #Nextcloud", + "Sharing" : "Partilha", + "Federated file sharing" : "Partilha federada de ficheiros", "Federated Cloud Sharing" : "Partilha de Nuvem Federada", "Open documentation" : "Abrir documentação", + "Adjust how people can share between servers." : "Ajustar como as pessoas podem partilhar entre servidores.", "Allow users on this server to send shares to other servers" : "Permitir que os utilizadores neste servidor enviem as partilhas para outros servidores", "Allow users on this server to receive shares from other servers" : "Permitir que os utilizadores neste servidor recebam as partilhas de outros servidores", + "Search global and public address book for users" : "Pesquisar lista global e pública de contactos de utilizadores ", + "Allow users to publish their data to a global and public address book" : "Permitir que os utilizadores publiquem os seus dados para uma lista de contactos global e pública", "Federated Cloud" : "Nuvem Federada", + "You can share with anyone who uses Nextcloud, ownCloud or Pydio! Just put their Federated Cloud ID in the share dialog. It looks like person@cloud.example.com" : "Pode partilhar com qualquer pessoa que use Nextcloud, ownCloud ou Pydio! Basta inserir Cloud ID federado no diálogo de partilha. Deve ser idêntico a pessoa@cloud.exemplo.com", "Your Federated Cloud ID:" : "A sua id. da Nuvem Federada:", - "Share it:" : "Partilhe-a:", + "Share it so your friends can share files with you:" : "Partilhe para que os seus amigos possam partilhar ficheiros consigo:", "Add to your website" : "Adicione ao seu site da Web", "Share with me via Nextcloud" : "Partilhe comigo via Nextcloud", - "HTML Code:" : "Código HTML:" + "HTML Code:" : "Código HTML:", + "The mountpoint name contains invalid characters." : "O ponto de montagem (mountpoint) contem caracteres inválidos.", + "Not allowed to create a federated share with the owner." : "Não é permitido criar partilha federada com o proprietário. ", + "Invalid or untrusted SSL certificate" : "Certificado SSL inválido ou não confiável", + "Could not authenticate to remote share, password might be wrong" : "Não foi possível a autenticação na partilha remota, a palavra passe talvez esteja incorrecta", + "Storage not valid" : "Armazenamento inválido", + "Federated share added" : "Partilha federada adicionada", + "Couldn't add remote share" : "Não foi possível adicionar partilha remota", + "Search global and public address book for users and let local users publish their data" : "Pesquisar por utilizadores na lista de endereços global e pública e permita que utilizadores locais publiquem os seus dados" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/ru.js b/apps/federatedfilesharing/l10n/ru.js index f37bbfa19b893..eaa1ddb9c35b6 100644 --- a/apps/federatedfilesharing/l10n/ru.js +++ b/apps/federatedfilesharing/l10n/ru.js @@ -17,14 +17,8 @@ OC.L10N.register( "Couldn't establish a federated share." : "Не удаётся установить федеративный общий доступ.", "Couldn't establish a federated share, maybe the password was wrong." : "Не удаётся установить федеративный общий доступ, возможно неверный пароль.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Был отправлен запрос общего федеративного доступа, Вы получите приглашение. Проверьте свои уведомления.", - "The mountpoint name contains invalid characters." : "Имя точки монтирования содержит недопустимые символы.", - "Not allowed to create a federated share with the owner." : "Не допускается создание федеративного общего ресурса с владельцем.", - "Invalid or untrusted SSL certificate" : "Недействительный или недоверенный сертификат SSL", - "Could not authenticate to remote share, password might be wrong" : "Не удалось провести проверку подлинности для доступа к удалённому хранилищу, возможно неправильно указан пароль", - "Storage not valid" : "Хранилище недоступно", - "Federated share added" : "Добавлен общий федеративный ресурс", - "Couldn't add remote share" : "Невозможно добавить удалённый общий ресурс", - "Sharing %s failed, because this item is already shared with %s" : "Не удалось поделиться «%s», пользователю%s уже предоставлен доступ к этому элементу", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Не удалось установить федеративный общий доступ, на другом сервере установлена устаревшая версия Nextcloud (версия 9.x или более ранняя).", + "Sharing %s failed, because this item is already shared with %s" : "Не удалось предоставить доступ к «%s» , пользователю%s доступ уже предоставлен", "Not allowed to create a federated share with the same user" : "Не допускается создание федеративного общего ресурса с тем же пользователем", "File is already shared with %s" : "Доступ к файлу уже предоставлен %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable or uses a self-signed certificate." : "Не удалось поделиться «%s», не удалось найти %s, возможно, сервер недоступен или использует самоподписанный сертификат.", @@ -38,6 +32,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Поделитесь со мной через мой #Nextcloud ID в федерации облачных хранилищ, смотрите %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Поделитесь со мной через мой #Nextcloud ID в федерации облачных хранилищ", "Sharing" : "Общий доступ", + "Federated file sharing" : "Федеративный обмен файлами", "Federated Cloud Sharing" : "Федерация облачных хранилищ", "Open documentation" : "Открыть документацию", "Adjust how people can share between servers." : "Настройте общий доступ между серверами.", @@ -52,7 +47,13 @@ OC.L10N.register( "Add to your website" : "Добавить к себе на сайт", "Share with me via Nextcloud" : "Поделитесь со мной через Nextcloud", "HTML Code:" : "HTML код:", - "Search global and public address book for users and let local users publish their data" : "Поиск пользователей в глобальной и общедоступной адресной книге и разрешение публикации своих данных локальным пользователям ", - "Share it:" : "Поделиться:" + "The mountpoint name contains invalid characters." : "Имя точки монтирования содержит недопустимые символы.", + "Not allowed to create a federated share with the owner." : "Не допускается создание федеративного общего ресурса с владельцем.", + "Invalid or untrusted SSL certificate" : "Недействительный или недоверенный сертификат SSL", + "Could not authenticate to remote share, password might be wrong" : "Не удалось провести проверку подлинности для доступа к удалённому хранилищу, возможно неправильно указан пароль", + "Storage not valid" : "Хранилище недоступно", + "Federated share added" : "Добавлен общий федеративный ресурс", + "Couldn't add remote share" : "Невозможно добавить удалённый общий ресурс", + "Search global and public address book for users and let local users publish their data" : "Поиск пользователей в глобальной и общедоступной адресной книге и разрешение публикации своих данных локальным пользователям " }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/apps/federatedfilesharing/l10n/ru.json b/apps/federatedfilesharing/l10n/ru.json index 0e832f6e96770..d278c4dfd7e6d 100644 --- a/apps/federatedfilesharing/l10n/ru.json +++ b/apps/federatedfilesharing/l10n/ru.json @@ -15,14 +15,8 @@ "Couldn't establish a federated share." : "Не удаётся установить федеративный общий доступ.", "Couldn't establish a federated share, maybe the password was wrong." : "Не удаётся установить федеративный общий доступ, возможно неверный пароль.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Был отправлен запрос общего федеративного доступа, Вы получите приглашение. Проверьте свои уведомления.", - "The mountpoint name contains invalid characters." : "Имя точки монтирования содержит недопустимые символы.", - "Not allowed to create a federated share with the owner." : "Не допускается создание федеративного общего ресурса с владельцем.", - "Invalid or untrusted SSL certificate" : "Недействительный или недоверенный сертификат SSL", - "Could not authenticate to remote share, password might be wrong" : "Не удалось провести проверку подлинности для доступа к удалённому хранилищу, возможно неправильно указан пароль", - "Storage not valid" : "Хранилище недоступно", - "Federated share added" : "Добавлен общий федеративный ресурс", - "Couldn't add remote share" : "Невозможно добавить удалённый общий ресурс", - "Sharing %s failed, because this item is already shared with %s" : "Не удалось поделиться «%s», пользователю%s уже предоставлен доступ к этому элементу", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Не удалось установить федеративный общий доступ, на другом сервере установлена устаревшая версия Nextcloud (версия 9.x или более ранняя).", + "Sharing %s failed, because this item is already shared with %s" : "Не удалось предоставить доступ к «%s» , пользователю%s доступ уже предоставлен", "Not allowed to create a federated share with the same user" : "Не допускается создание федеративного общего ресурса с тем же пользователем", "File is already shared with %s" : "Доступ к файлу уже предоставлен %s", "Sharing %s failed, could not find %s, maybe the server is currently unreachable or uses a self-signed certificate." : "Не удалось поделиться «%s», не удалось найти %s, возможно, сервер недоступен или использует самоподписанный сертификат.", @@ -36,6 +30,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Поделитесь со мной через мой #Nextcloud ID в федерации облачных хранилищ, смотрите %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Поделитесь со мной через мой #Nextcloud ID в федерации облачных хранилищ", "Sharing" : "Общий доступ", + "Federated file sharing" : "Федеративный обмен файлами", "Federated Cloud Sharing" : "Федерация облачных хранилищ", "Open documentation" : "Открыть документацию", "Adjust how people can share between servers." : "Настройте общий доступ между серверами.", @@ -50,7 +45,13 @@ "Add to your website" : "Добавить к себе на сайт", "Share with me via Nextcloud" : "Поделитесь со мной через Nextcloud", "HTML Code:" : "HTML код:", - "Search global and public address book for users and let local users publish their data" : "Поиск пользователей в глобальной и общедоступной адресной книге и разрешение публикации своих данных локальным пользователям ", - "Share it:" : "Поделиться:" + "The mountpoint name contains invalid characters." : "Имя точки монтирования содержит недопустимые символы.", + "Not allowed to create a federated share with the owner." : "Не допускается создание федеративного общего ресурса с владельцем.", + "Invalid or untrusted SSL certificate" : "Недействительный или недоверенный сертификат SSL", + "Could not authenticate to remote share, password might be wrong" : "Не удалось провести проверку подлинности для доступа к удалённому хранилищу, возможно неправильно указан пароль", + "Storage not valid" : "Хранилище недоступно", + "Federated share added" : "Добавлен общий федеративный ресурс", + "Couldn't add remote share" : "Невозможно добавить удалённый общий ресурс", + "Search global and public address book for users and let local users publish their data" : "Поиск пользователей в глобальной и общедоступной адресной книге и разрешение публикации своих данных локальным пользователям " },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/sk.js b/apps/federatedfilesharing/l10n/sk.js index 7877da712e890..b1a1f748ac189 100644 --- a/apps/federatedfilesharing/l10n/sk.js +++ b/apps/federatedfilesharing/l10n/sk.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "Nepodarilo sa nadviazať združené zdieľanie", "Couldn't establish a federated share, maybe the password was wrong." : "Nepodarilo sa nadviazať združené zdieľanie, možno je nesprávne heslo.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Požiadavka na združené zdieľanie bola odoslaná, obdržíte pozvánku. Skontrolujte oznámenia.", - "The mountpoint name contains invalid characters." : "Meno prípojného bodu obsahuje neplatné znaky.", - "Not allowed to create a federated share with the owner." : "Nie je povolené vytvárať združené zdieľanie s vlastníkom.", - "Invalid or untrusted SSL certificate" : "Neplatný alebo nedôveryhodný certifikát SSL", - "Could not authenticate to remote share, password might be wrong" : "Nie je možné overiť vo vzdialenom úložisku, heslo môže byť nesprávne", - "Storage not valid" : "Neplatné úložisko", - "Federated share added" : "Združené sprístupnenie pridané", - "Couldn't add remote share" : "Nedá sa pridať vzdialené sprístupnenie", "Sharing %s failed, because this item is already shared with %s" : "Sprístupnenie %s zlyhalo, pretože táto položka už je prístupná pre %s", "Not allowed to create a federated share with the same user" : "Nie je možné vytvoriť združené sprístupnenie so sebou samým", "File is already shared with %s" : "Súbor je už sprístupnený používateľovi %s", @@ -38,6 +31,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Sprístupnite mi obsah prostredníctvom môjho #Nextcloud Federated Cloud ID, viac na %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Sprístupnite mi obsah prostredníctvom môjho #Nextcloud Federated Cloud ID", "Sharing" : "Sprístupnenie", + "Federated file sharing" : "Združené sprístupňovanie súborov", "Federated Cloud Sharing" : "Sprístupnenie prostredníctvom Federated Cloud", "Open documentation" : "Otvoriť dokumentáciu", "Adjust how people can share between servers." : "Nastavte ako môžu ľudia medzi sebou zdieľať servery.", @@ -52,7 +46,13 @@ OC.L10N.register( "Add to your website" : "Pridať na svoju webstránku", "Share with me via Nextcloud" : "Sprístupnené cez Nextcloud", "HTML Code:" : "HTML kód:", - "Search global and public address book for users and let local users publish their data" : "Vyhľadávať používateľog v globálnom a verejnom adresári a umožniť miestnym používateľom publikovať ich dáta", - "Share it:" : "Sprístupniť:" + "The mountpoint name contains invalid characters." : "Meno prípojného bodu obsahuje neplatné znaky.", + "Not allowed to create a federated share with the owner." : "Nie je povolené vytvárať združené zdieľanie s vlastníkom.", + "Invalid or untrusted SSL certificate" : "Neplatný alebo nedôveryhodný certifikát SSL", + "Could not authenticate to remote share, password might be wrong" : "Nie je možné overiť vo vzdialenom úložisku, heslo môže byť nesprávne", + "Storage not valid" : "Neplatné úložisko", + "Federated share added" : "Združené sprístupnenie pridané", + "Couldn't add remote share" : "Nedá sa pridať vzdialené sprístupnenie", + "Search global and public address book for users and let local users publish their data" : "Vyhľadávať používateľog v globálnom a verejnom adresári a umožniť miestnym používateľom publikovať ich dáta" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/federatedfilesharing/l10n/sk.json b/apps/federatedfilesharing/l10n/sk.json index 9d94d89eb5e48..c1ddd980e6a25 100644 --- a/apps/federatedfilesharing/l10n/sk.json +++ b/apps/federatedfilesharing/l10n/sk.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "Nepodarilo sa nadviazať združené zdieľanie", "Couldn't establish a federated share, maybe the password was wrong." : "Nepodarilo sa nadviazať združené zdieľanie, možno je nesprávne heslo.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Požiadavka na združené zdieľanie bola odoslaná, obdržíte pozvánku. Skontrolujte oznámenia.", - "The mountpoint name contains invalid characters." : "Meno prípojného bodu obsahuje neplatné znaky.", - "Not allowed to create a federated share with the owner." : "Nie je povolené vytvárať združené zdieľanie s vlastníkom.", - "Invalid or untrusted SSL certificate" : "Neplatný alebo nedôveryhodný certifikát SSL", - "Could not authenticate to remote share, password might be wrong" : "Nie je možné overiť vo vzdialenom úložisku, heslo môže byť nesprávne", - "Storage not valid" : "Neplatné úložisko", - "Federated share added" : "Združené sprístupnenie pridané", - "Couldn't add remote share" : "Nedá sa pridať vzdialené sprístupnenie", "Sharing %s failed, because this item is already shared with %s" : "Sprístupnenie %s zlyhalo, pretože táto položka už je prístupná pre %s", "Not allowed to create a federated share with the same user" : "Nie je možné vytvoriť združené sprístupnenie so sebou samým", "File is already shared with %s" : "Súbor je už sprístupnený používateľovi %s", @@ -36,6 +29,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Sprístupnite mi obsah prostredníctvom môjho #Nextcloud Federated Cloud ID, viac na %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Sprístupnite mi obsah prostredníctvom môjho #Nextcloud Federated Cloud ID", "Sharing" : "Sprístupnenie", + "Federated file sharing" : "Združené sprístupňovanie súborov", "Federated Cloud Sharing" : "Sprístupnenie prostredníctvom Federated Cloud", "Open documentation" : "Otvoriť dokumentáciu", "Adjust how people can share between servers." : "Nastavte ako môžu ľudia medzi sebou zdieľať servery.", @@ -50,7 +44,13 @@ "Add to your website" : "Pridať na svoju webstránku", "Share with me via Nextcloud" : "Sprístupnené cez Nextcloud", "HTML Code:" : "HTML kód:", - "Search global and public address book for users and let local users publish their data" : "Vyhľadávať používateľog v globálnom a verejnom adresári a umožniť miestnym používateľom publikovať ich dáta", - "Share it:" : "Sprístupniť:" + "The mountpoint name contains invalid characters." : "Meno prípojného bodu obsahuje neplatné znaky.", + "Not allowed to create a federated share with the owner." : "Nie je povolené vytvárať združené zdieľanie s vlastníkom.", + "Invalid or untrusted SSL certificate" : "Neplatný alebo nedôveryhodný certifikát SSL", + "Could not authenticate to remote share, password might be wrong" : "Nie je možné overiť vo vzdialenom úložisku, heslo môže byť nesprávne", + "Storage not valid" : "Neplatné úložisko", + "Federated share added" : "Združené sprístupnenie pridané", + "Couldn't add remote share" : "Nedá sa pridať vzdialené sprístupnenie", + "Search global and public address book for users and let local users publish their data" : "Vyhľadávať používateľog v globálnom a verejnom adresári a umožniť miestnym používateľom publikovať ich dáta" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/sq.js b/apps/federatedfilesharing/l10n/sq.js index d9ac4bb09c841..83cd77af353e5 100644 --- a/apps/federatedfilesharing/l10n/sq.js +++ b/apps/federatedfilesharing/l10n/sq.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "Nuk mund të vendosej një shpërndarje e federuar.", "Couldn't establish a federated share, maybe the password was wrong." : "Nuk mund të vendoset një shpërndarje e federuar, ndoshta fjalëkalimi ishte gabim.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Kërkesa Ndarja Federative u dërgua, ju do të merrni një ftesë. Kontrolloni njoftimet tuaja.", - "The mountpoint name contains invalid characters." : "Emri mountpoint përmban karaktere të pavlefshme.", - "Not allowed to create a federated share with the owner." : "Nuk lejohet te krijoni një shpërndarje të federuar me zotëruesin", - "Invalid or untrusted SSL certificate" : "Çertifikatë SSL e pavlefshme ose e dyshimtë", - "Could not authenticate to remote share, password might be wrong" : "Nuk mund të vërtetohej në pjesën e largët, fjalëkalimi mund të jetë i gabuar", - "Storage not valid" : "memorja nuk është e vlefshme", - "Federated share added" : "Ndarje e federuar u shtua", - "Couldn't add remote share" : "Nuk mund të shtohet ndarja në largësi", "Sharing %s failed, because this item is already shared with %s" : "Ndarja për %s dështoi, ngaqë ky objekt është ndarë një herë me %s", "Not allowed to create a federated share with the same user" : "S’i lejohet të krijojë një ndarje të federuar me të njëjtin përdorues", "File is already shared with %s" : "Skedari është ndarë tashmë me %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "Shtojeni te sajti juaj", "Share with me via Nextcloud" : "Ndani me mua përmes Nextcloud-it", "HTML Code:" : "Kod HTML:", - "Search global and public address book for users and let local users publish their data" : "Kërko librin e adresave globale dhe publike për përdoruesit dhe lejo që përdoruesit lokal të publikojnë të dhënat e tyre", - "Share it:" : "Ndajeni:" + "The mountpoint name contains invalid characters." : "Emri mountpoint përmban karaktere të pavlefshme.", + "Not allowed to create a federated share with the owner." : "Nuk lejohet te krijoni një shpërndarje të federuar me zotëruesin", + "Invalid or untrusted SSL certificate" : "Çertifikatë SSL e pavlefshme ose e dyshimtë", + "Could not authenticate to remote share, password might be wrong" : "Nuk mund të vërtetohej në pjesën e largët, fjalëkalimi mund të jetë i gabuar", + "Storage not valid" : "memorja nuk është e vlefshme", + "Federated share added" : "Ndarje e federuar u shtua", + "Couldn't add remote share" : "Nuk mund të shtohet ndarja në largësi", + "Search global and public address book for users and let local users publish their data" : "Kërko librin e adresave globale dhe publike për përdoruesit dhe lejo që përdoruesit lokal të publikojnë të dhënat e tyre" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/sq.json b/apps/federatedfilesharing/l10n/sq.json index a1a95812753af..209d8e96c2a27 100644 --- a/apps/federatedfilesharing/l10n/sq.json +++ b/apps/federatedfilesharing/l10n/sq.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "Nuk mund të vendosej një shpërndarje e federuar.", "Couldn't establish a federated share, maybe the password was wrong." : "Nuk mund të vendoset një shpërndarje e federuar, ndoshta fjalëkalimi ishte gabim.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Kërkesa Ndarja Federative u dërgua, ju do të merrni një ftesë. Kontrolloni njoftimet tuaja.", - "The mountpoint name contains invalid characters." : "Emri mountpoint përmban karaktere të pavlefshme.", - "Not allowed to create a federated share with the owner." : "Nuk lejohet te krijoni një shpërndarje të federuar me zotëruesin", - "Invalid or untrusted SSL certificate" : "Çertifikatë SSL e pavlefshme ose e dyshimtë", - "Could not authenticate to remote share, password might be wrong" : "Nuk mund të vërtetohej në pjesën e largët, fjalëkalimi mund të jetë i gabuar", - "Storage not valid" : "memorja nuk është e vlefshme", - "Federated share added" : "Ndarje e federuar u shtua", - "Couldn't add remote share" : "Nuk mund të shtohet ndarja në largësi", "Sharing %s failed, because this item is already shared with %s" : "Ndarja për %s dështoi, ngaqë ky objekt është ndarë një herë me %s", "Not allowed to create a federated share with the same user" : "S’i lejohet të krijojë një ndarje të federuar me të njëjtin përdorues", "File is already shared with %s" : "Skedari është ndarë tashmë me %s", @@ -50,7 +43,13 @@ "Add to your website" : "Shtojeni te sajti juaj", "Share with me via Nextcloud" : "Ndani me mua përmes Nextcloud-it", "HTML Code:" : "Kod HTML:", - "Search global and public address book for users and let local users publish their data" : "Kërko librin e adresave globale dhe publike për përdoruesit dhe lejo që përdoruesit lokal të publikojnë të dhënat e tyre", - "Share it:" : "Ndajeni:" + "The mountpoint name contains invalid characters." : "Emri mountpoint përmban karaktere të pavlefshme.", + "Not allowed to create a federated share with the owner." : "Nuk lejohet te krijoni një shpërndarje të federuar me zotëruesin", + "Invalid or untrusted SSL certificate" : "Çertifikatë SSL e pavlefshme ose e dyshimtë", + "Could not authenticate to remote share, password might be wrong" : "Nuk mund të vërtetohej në pjesën e largët, fjalëkalimi mund të jetë i gabuar", + "Storage not valid" : "memorja nuk është e vlefshme", + "Federated share added" : "Ndarje e federuar u shtua", + "Couldn't add remote share" : "Nuk mund të shtohet ndarja në largësi", + "Search global and public address book for users and let local users publish their data" : "Kërko librin e adresave globale dhe publike për përdoruesit dhe lejo që përdoruesit lokal të publikojnë të dhënat e tyre" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/sr.js b/apps/federatedfilesharing/l10n/sr.js index be041737963b4..d71ede311fda7 100644 --- a/apps/federatedfilesharing/l10n/sr.js +++ b/apps/federatedfilesharing/l10n/sr.js @@ -17,13 +17,7 @@ OC.L10N.register( "Couldn't establish a federated share." : "Не могу да успоставим здружено дељење.", "Couldn't establish a federated share, maybe the password was wrong." : "Не могу да успоставим здружено дељење, можда лозинка не ваља.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Послат захтев за здружено дељење, добићете позивницу. Проверавајте обавештења.", - "The mountpoint name contains invalid characters." : "Име тачке монтирања садржи неисправне карактере.", - "Not allowed to create a federated share with the owner." : "Није дозвољено да направите здружено дељење са власником.", - "Invalid or untrusted SSL certificate" : "Неисправан или SSL сертификат без поверења", - "Could not authenticate to remote share, password might be wrong" : "Удаљено дељење не може да провери Ваш идентитет, можда лозинка није исправна", - "Storage not valid" : "Складиште није исправно", - "Federated share added" : "Здружено дељење додато", - "Couldn't add remote share" : "Не могу да додам удаљено дељење", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Не могу да успоставим здружено дељење, изгледа да је сервер са којим се треба здружити превише стар (Некстклауд верзија <=9).", "Sharing %s failed, because this item is already shared with %s" : "Дељење %s није успело зато што се ова ставка већ дели са %s", "Not allowed to create a federated share with the same user" : "Није дозвољено да се направи здружено дељење са истим корисником", "File is already shared with %s" : "Фајл је већ дељен са %s", @@ -38,6 +32,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Дели са мном преко мог #Некстклауд Здруженог облака, види %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Дели са мном преко мог #Некстклауд Здруженог облака", "Sharing" : "Дељење", + "Federated file sharing" : "Здружено дељење фајлова", "Federated Cloud Sharing" : "Здружено дељење у облаку", "Open documentation" : "Отвори документацију", "Adjust how people can share between servers." : "Подеси како људи деле фајлове између сервера.", @@ -52,7 +47,13 @@ OC.L10N.register( "Add to your website" : "Додај на свој веб сајт", "Share with me via Nextcloud" : "Дели са мном преко Некстклауда", "HTML Code:" : "ХТМЛ кôд:", - "Search global and public address book for users and let local users publish their data" : "Претражи кориснике у глобалним и јавним именицима и дозволи да локални корисници објављују њихове податке", - "Share it:" : "Дели:" + "The mountpoint name contains invalid characters." : "Име тачке монтирања садржи неисправне карактере.", + "Not allowed to create a federated share with the owner." : "Није дозвољено да направите здружено дељење са власником.", + "Invalid or untrusted SSL certificate" : "Неисправан или SSL сертификат без поверења", + "Could not authenticate to remote share, password might be wrong" : "Удаљено дељење не може да провери Ваш идентитет, можда лозинка није исправна", + "Storage not valid" : "Складиште није исправно", + "Federated share added" : "Здружено дељење додато", + "Couldn't add remote share" : "Не могу да додам удаљено дељење", + "Search global and public address book for users and let local users publish their data" : "Претражи кориснике у глобалним и јавним именицима и дозволи да локални корисници објављују њихове податке" }, "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/apps/federatedfilesharing/l10n/sr.json b/apps/federatedfilesharing/l10n/sr.json index de872b0154188..5cce1ae7919e5 100644 --- a/apps/federatedfilesharing/l10n/sr.json +++ b/apps/federatedfilesharing/l10n/sr.json @@ -15,13 +15,7 @@ "Couldn't establish a federated share." : "Не могу да успоставим здружено дељење.", "Couldn't establish a federated share, maybe the password was wrong." : "Не могу да успоставим здружено дељење, можда лозинка не ваља.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Послат захтев за здружено дељење, добићете позивницу. Проверавајте обавештења.", - "The mountpoint name contains invalid characters." : "Име тачке монтирања садржи неисправне карактере.", - "Not allowed to create a federated share with the owner." : "Није дозвољено да направите здружено дељење са власником.", - "Invalid or untrusted SSL certificate" : "Неисправан или SSL сертификат без поверења", - "Could not authenticate to remote share, password might be wrong" : "Удаљено дељење не може да провери Ваш идентитет, можда лозинка није исправна", - "Storage not valid" : "Складиште није исправно", - "Federated share added" : "Здружено дељење додато", - "Couldn't add remote share" : "Не могу да додам удаљено дељење", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Не могу да успоставим здружено дељење, изгледа да је сервер са којим се треба здружити превише стар (Некстклауд верзија <=9).", "Sharing %s failed, because this item is already shared with %s" : "Дељење %s није успело зато што се ова ставка већ дели са %s", "Not allowed to create a federated share with the same user" : "Није дозвољено да се направи здружено дељење са истим корисником", "File is already shared with %s" : "Фајл је већ дељен са %s", @@ -36,6 +30,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Дели са мном преко мог #Некстклауд Здруженог облака, види %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Дели са мном преко мог #Некстклауд Здруженог облака", "Sharing" : "Дељење", + "Federated file sharing" : "Здружено дељење фајлова", "Federated Cloud Sharing" : "Здружено дељење у облаку", "Open documentation" : "Отвори документацију", "Adjust how people can share between servers." : "Подеси како људи деле фајлове између сервера.", @@ -50,7 +45,13 @@ "Add to your website" : "Додај на свој веб сајт", "Share with me via Nextcloud" : "Дели са мном преко Некстклауда", "HTML Code:" : "ХТМЛ кôд:", - "Search global and public address book for users and let local users publish their data" : "Претражи кориснике у глобалним и јавним именицима и дозволи да локални корисници објављују њихове податке", - "Share it:" : "Дели:" + "The mountpoint name contains invalid characters." : "Име тачке монтирања садржи неисправне карактере.", + "Not allowed to create a federated share with the owner." : "Није дозвољено да направите здружено дељење са власником.", + "Invalid or untrusted SSL certificate" : "Неисправан или SSL сертификат без поверења", + "Could not authenticate to remote share, password might be wrong" : "Удаљено дељење не може да провери Ваш идентитет, можда лозинка није исправна", + "Storage not valid" : "Складиште није исправно", + "Federated share added" : "Здружено дељење додато", + "Couldn't add remote share" : "Не могу да додам удаљено дељење", + "Search global and public address book for users and let local users publish their data" : "Претражи кориснике у глобалним и јавним именицима и дозволи да локални корисници објављују њихове податке" },"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);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/sv.js b/apps/federatedfilesharing/l10n/sv.js index e43b5ffb3b88f..1a81ba59330a5 100644 --- a/apps/federatedfilesharing/l10n/sv.js +++ b/apps/federatedfilesharing/l10n/sv.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "Kunde inte lägga till en federerad utdelning", "Couldn't establish a federated share, maybe the password was wrong." : "Kunde inte lägga till en federerad utdelning, lösenordet kanske var felaktigt.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Federerad delningsförfrågan sändes, du kommer få en inbjudan. Kolla dina notifieringar.", - "The mountpoint name contains invalid characters." : "Monteringspunktens namn innehåller ogiltiga tecken.", - "Not allowed to create a federated share with the owner." : "Ej tillåtet att skapa en federerad delning med ägaren", - "Invalid or untrusted SSL certificate" : "Ogiltigt eller ej betrott SSL-certifikat", - "Could not authenticate to remote share, password might be wrong" : "Kunde inte autentisera mot externa servern, lösenordet kan vara fel", - "Storage not valid" : "Lagring ogiltig", - "Federated share added" : "Federerad delning tillagd", - "Couldn't add remote share" : "Kunde inte lägga till extern delning", "Sharing %s failed, because this item is already shared with %s" : "Delning %s misslyckades därför att objektet redan är delat med %s", "Not allowed to create a federated share with the same user" : "Ej tillåtet att skapa en federerad delning med samma användare", "File is already shared with %s" : "Filen är redan delad med %s", @@ -38,6 +31,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Dela med mig genom mitt #Nextcloud Federerade Moln-ID, se %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Dela med mig genom mitt #Nextcloud Federerade Moln-ID", "Sharing" : "Delar", + "Federated file sharing" : "Federerad fildelning", "Federated Cloud Sharing" : "Federerad Moln-delning", "Open documentation" : "Öppna dokumentation", "Adjust how people can share between servers." : "Justera hur användare kan dela genom servrar.", @@ -52,7 +46,13 @@ OC.L10N.register( "Add to your website" : "Lägg till på din hemsida", "Share with me via Nextcloud" : "Dela med mig via Nextcloud", "HTML Code:" : "HTML Kod:", - "Search global and public address book for users and let local users publish their data" : "Sök global och publik adressbok för användare och låt lokala användare publicera sina data", - "Share it:" : "Dela detta:" + "The mountpoint name contains invalid characters." : "Monteringspunktens namn innehåller ogiltiga tecken.", + "Not allowed to create a federated share with the owner." : "Ej tillåtet att skapa en federerad delning med ägaren", + "Invalid or untrusted SSL certificate" : "Ogiltigt eller ej betrott SSL-certifikat", + "Could not authenticate to remote share, password might be wrong" : "Kunde inte autentisera mot externa servern, lösenordet kan vara fel", + "Storage not valid" : "Lagring ogiltig", + "Federated share added" : "Federerad delning tillagd", + "Couldn't add remote share" : "Kunde inte lägga till extern delning", + "Search global and public address book for users and let local users publish their data" : "Sök global och publik adressbok för användare och låt lokala användare publicera sina data" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federatedfilesharing/l10n/sv.json b/apps/federatedfilesharing/l10n/sv.json index f42c9d67900b2..2a4bf8d548534 100644 --- a/apps/federatedfilesharing/l10n/sv.json +++ b/apps/federatedfilesharing/l10n/sv.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "Kunde inte lägga till en federerad utdelning", "Couldn't establish a federated share, maybe the password was wrong." : "Kunde inte lägga till en federerad utdelning, lösenordet kanske var felaktigt.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Federerad delningsförfrågan sändes, du kommer få en inbjudan. Kolla dina notifieringar.", - "The mountpoint name contains invalid characters." : "Monteringspunktens namn innehåller ogiltiga tecken.", - "Not allowed to create a federated share with the owner." : "Ej tillåtet att skapa en federerad delning med ägaren", - "Invalid or untrusted SSL certificate" : "Ogiltigt eller ej betrott SSL-certifikat", - "Could not authenticate to remote share, password might be wrong" : "Kunde inte autentisera mot externa servern, lösenordet kan vara fel", - "Storage not valid" : "Lagring ogiltig", - "Federated share added" : "Federerad delning tillagd", - "Couldn't add remote share" : "Kunde inte lägga till extern delning", "Sharing %s failed, because this item is already shared with %s" : "Delning %s misslyckades därför att objektet redan är delat med %s", "Not allowed to create a federated share with the same user" : "Ej tillåtet att skapa en federerad delning med samma användare", "File is already shared with %s" : "Filen är redan delad med %s", @@ -36,6 +29,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "Dela med mig genom mitt #Nextcloud Federerade Moln-ID, se %s", "Share with me through my #Nextcloud Federated Cloud ID" : "Dela med mig genom mitt #Nextcloud Federerade Moln-ID", "Sharing" : "Delar", + "Federated file sharing" : "Federerad fildelning", "Federated Cloud Sharing" : "Federerad Moln-delning", "Open documentation" : "Öppna dokumentation", "Adjust how people can share between servers." : "Justera hur användare kan dela genom servrar.", @@ -50,7 +44,13 @@ "Add to your website" : "Lägg till på din hemsida", "Share with me via Nextcloud" : "Dela med mig via Nextcloud", "HTML Code:" : "HTML Kod:", - "Search global and public address book for users and let local users publish their data" : "Sök global och publik adressbok för användare och låt lokala användare publicera sina data", - "Share it:" : "Dela detta:" + "The mountpoint name contains invalid characters." : "Monteringspunktens namn innehåller ogiltiga tecken.", + "Not allowed to create a federated share with the owner." : "Ej tillåtet att skapa en federerad delning med ägaren", + "Invalid or untrusted SSL certificate" : "Ogiltigt eller ej betrott SSL-certifikat", + "Could not authenticate to remote share, password might be wrong" : "Kunde inte autentisera mot externa servern, lösenordet kan vara fel", + "Storage not valid" : "Lagring ogiltig", + "Federated share added" : "Federerad delning tillagd", + "Couldn't add remote share" : "Kunde inte lägga till extern delning", + "Search global and public address book for users and let local users publish their data" : "Sök global och publik adressbok för användare och låt lokala användare publicera sina data" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/tr.js b/apps/federatedfilesharing/l10n/tr.js index ed9f32b4b025c..bc78ce62bfa13 100644 --- a/apps/federatedfilesharing/l10n/tr.js +++ b/apps/federatedfilesharing/l10n/tr.js @@ -17,13 +17,7 @@ OC.L10N.register( "Couldn't establish a federated share." : "Birleşmiş bir paylaşım oluşturulamadı.", "Couldn't establish a federated share, maybe the password was wrong." : "Birleşmiş bir paylaşım oluşturulamadı. Parola yanlış olabilir.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Birleşmiş paylaşım isteği gönderildi. Bir çağrı alacaksınız. Bildirimlerinizi denetleyin.", - "The mountpoint name contains invalid characters." : "Bağlama noktası adında geçersiz karakterler var.", - "Not allowed to create a federated share with the owner." : "Sahip ile birleşmiş bir paylaşım oluşturmanıza izin verilmiyor.", - "Invalid or untrusted SSL certificate" : "Geçersiz ya da güvenilmez SSL sertifikası", - "Could not authenticate to remote share, password might be wrong" : "Uzak paylaşım kimliği doğrulanamadı. Parola yanlış olabilir", - "Storage not valid" : "Depolama geçersiz", - "Federated share added" : "Birleşmiş paylaşım eklendi", - "Couldn't add remote share" : "Uzak paylaşım eklenemedi", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Birleşmiş bir paylaşım oluşturulamadı. Birleşilecek sunucunun sürümü çok eski gibi görünüyor (Nextcloud <= 9).", "Sharing %s failed, because this item is already shared with %s" : "%s paylaşılmadı. %s ile zaten paylaşılmış", "Not allowed to create a federated share with the same user" : "Aynı kullanıcı ile bir birleşmiş paylaşım oluşturulamaz", "File is already shared with %s" : "Dosya %s ile zaten paylaşılmış", @@ -38,6 +32,7 @@ OC.L10N.register( "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "#Nextcloud Birleşmiş Bulut Kimliğim ile paylaş, %s bölümüne bakın", "Share with me through my #Nextcloud Federated Cloud ID" : "#Nextcloud Birleşmiş Bulut kimliğim üzerinden benimle paylaş", "Sharing" : "Paylaşım", + "Federated file sharing" : "Birleşmiş dosya paylaşımı", "Federated Cloud Sharing" : "Birleşmiş Bulut Paylaşımı", "Open documentation" : "Belgeleri aç", "Adjust how people can share between servers." : "Kişilerin sunucular arasında nasıl paylaşım yapabileceğini ayarlayın.", @@ -52,7 +47,13 @@ OC.L10N.register( "Add to your website" : "Web sitenize ekleyin", "Share with me via Nextcloud" : "Benimle Nextcloud üzerinden paylaşın", "HTML Code:" : "HTML Kodu:", - "Search global and public address book for users and let local users publish their data" : "Genel ve herkese açık adres defterinde kullanıcı ara ve yerel kullanıcıların bilgilerini paylaşmasını sağla", - "Share it:" : "Paylaşın:" + "The mountpoint name contains invalid characters." : "Bağlama noktası adında geçersiz karakterler var.", + "Not allowed to create a federated share with the owner." : "Sahip ile birleşmiş bir paylaşım oluşturmanıza izin verilmiyor.", + "Invalid or untrusted SSL certificate" : "Geçersiz ya da güvenilmez SSL sertifikası", + "Could not authenticate to remote share, password might be wrong" : "Uzak paylaşım kimliği doğrulanamadı. Parola yanlış olabilir", + "Storage not valid" : "Depolama geçersiz", + "Federated share added" : "Birleşmiş paylaşım eklendi", + "Couldn't add remote share" : "Uzak paylaşım eklenemedi", + "Search global and public address book for users and let local users publish their data" : "Genel ve herkese açık adres defterinde kullanıcı ara ve yerel kullanıcıların bilgilerini paylaşmasını sağla" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/federatedfilesharing/l10n/tr.json b/apps/federatedfilesharing/l10n/tr.json index 5bb2fea047404..4408a96ae6e6e 100644 --- a/apps/federatedfilesharing/l10n/tr.json +++ b/apps/federatedfilesharing/l10n/tr.json @@ -15,13 +15,7 @@ "Couldn't establish a federated share." : "Birleşmiş bir paylaşım oluşturulamadı.", "Couldn't establish a federated share, maybe the password was wrong." : "Birleşmiş bir paylaşım oluşturulamadı. Parola yanlış olabilir.", "Federated Share request sent, you will receive an invitation. Check your notifications." : "Birleşmiş paylaşım isteği gönderildi. Bir çağrı alacaksınız. Bildirimlerinizi denetleyin.", - "The mountpoint name contains invalid characters." : "Bağlama noktası adında geçersiz karakterler var.", - "Not allowed to create a federated share with the owner." : "Sahip ile birleşmiş bir paylaşım oluşturmanıza izin verilmiyor.", - "Invalid or untrusted SSL certificate" : "Geçersiz ya da güvenilmez SSL sertifikası", - "Could not authenticate to remote share, password might be wrong" : "Uzak paylaşım kimliği doğrulanamadı. Parola yanlış olabilir", - "Storage not valid" : "Depolama geçersiz", - "Federated share added" : "Birleşmiş paylaşım eklendi", - "Couldn't add remote share" : "Uzak paylaşım eklenemedi", + "Couldn't establish a federated share, it looks like the server to federate with is too old (Nextcloud <= 9)." : "Birleşmiş bir paylaşım oluşturulamadı. Birleşilecek sunucunun sürümü çok eski gibi görünüyor (Nextcloud <= 9).", "Sharing %s failed, because this item is already shared with %s" : "%s paylaşılmadı. %s ile zaten paylaşılmış", "Not allowed to create a federated share with the same user" : "Aynı kullanıcı ile bir birleşmiş paylaşım oluşturulamaz", "File is already shared with %s" : "Dosya %s ile zaten paylaşılmış", @@ -36,6 +30,7 @@ "Share with me through my #Nextcloud Federated Cloud ID, see %s" : "#Nextcloud Birleşmiş Bulut Kimliğim ile paylaş, %s bölümüne bakın", "Share with me through my #Nextcloud Federated Cloud ID" : "#Nextcloud Birleşmiş Bulut kimliğim üzerinden benimle paylaş", "Sharing" : "Paylaşım", + "Federated file sharing" : "Birleşmiş dosya paylaşımı", "Federated Cloud Sharing" : "Birleşmiş Bulut Paylaşımı", "Open documentation" : "Belgeleri aç", "Adjust how people can share between servers." : "Kişilerin sunucular arasında nasıl paylaşım yapabileceğini ayarlayın.", @@ -50,7 +45,13 @@ "Add to your website" : "Web sitenize ekleyin", "Share with me via Nextcloud" : "Benimle Nextcloud üzerinden paylaşın", "HTML Code:" : "HTML Kodu:", - "Search global and public address book for users and let local users publish their data" : "Genel ve herkese açık adres defterinde kullanıcı ara ve yerel kullanıcıların bilgilerini paylaşmasını sağla", - "Share it:" : "Paylaşın:" + "The mountpoint name contains invalid characters." : "Bağlama noktası adında geçersiz karakterler var.", + "Not allowed to create a federated share with the owner." : "Sahip ile birleşmiş bir paylaşım oluşturmanıza izin verilmiyor.", + "Invalid or untrusted SSL certificate" : "Geçersiz ya da güvenilmez SSL sertifikası", + "Could not authenticate to remote share, password might be wrong" : "Uzak paylaşım kimliği doğrulanamadı. Parola yanlış olabilir", + "Storage not valid" : "Depolama geçersiz", + "Federated share added" : "Birleşmiş paylaşım eklendi", + "Couldn't add remote share" : "Uzak paylaşım eklenemedi", + "Search global and public address book for users and let local users publish their data" : "Genel ve herkese açık adres defterinde kullanıcı ara ve yerel kullanıcıların bilgilerini paylaşmasını sağla" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/zh_CN.js b/apps/federatedfilesharing/l10n/zh_CN.js index a07eb6d9a692b..a5209e36b63fc 100644 --- a/apps/federatedfilesharing/l10n/zh_CN.js +++ b/apps/federatedfilesharing/l10n/zh_CN.js @@ -17,13 +17,6 @@ OC.L10N.register( "Couldn't establish a federated share." : "无法建立一个远程分享", "Couldn't establish a federated share, maybe the password was wrong." : "无法建立分享,可能密码是错误的。", "Federated Share request sent, you will receive an invitation. Check your notifications." : "共享协作请求发送成功!通过你将收到通知。注意留意你的通知提醒", - "The mountpoint name contains invalid characters." : "挂载点的名称包含无效字符。", - "Not allowed to create a federated share with the owner." : "不允许与所有者创建联合共享.", - "Invalid or untrusted SSL certificate" : "无效或是不被信任的 SSL 证书", - "Could not authenticate to remote share, password might be wrong" : "无法验证远程共享,可能是密码错误", - "Storage not valid" : "存储不可用", - "Federated share added" : "共享协作已添加", - "Couldn't add remote share" : "无法添加远程共享", "Sharing %s failed, because this item is already shared with %s" : "共享 %s 失败,因为它已经共享给 %s", "Not allowed to create a federated share with the same user" : "不能给你自己分享文件", "File is already shared with %s" : "文件已经共享与 %s", @@ -52,7 +45,13 @@ OC.L10N.register( "Add to your website" : "添加到您的网站", "Share with me via Nextcloud" : "通过联合云与我共享", "HTML Code:" : "HTML 代码:", - "Search global and public address book for users and let local users publish their data" : "搜索用户的全球和公共通讯录,并让本地用户发布其数据", - "Share it:" : "分享它:" + "The mountpoint name contains invalid characters." : "挂载点的名称包含无效字符。", + "Not allowed to create a federated share with the owner." : "不允许与所有者创建联合共享.", + "Invalid or untrusted SSL certificate" : "无效或是不被信任的 SSL 证书", + "Could not authenticate to remote share, password might be wrong" : "无法验证远程共享,可能是密码错误", + "Storage not valid" : "存储不可用", + "Federated share added" : "共享协作已添加", + "Couldn't add remote share" : "无法添加远程共享", + "Search global and public address book for users and let local users publish their data" : "搜索用户的全球和公共通讯录,并让本地用户发布其数据" }, "nplurals=1; plural=0;"); diff --git a/apps/federatedfilesharing/l10n/zh_CN.json b/apps/federatedfilesharing/l10n/zh_CN.json index 39ec29f64ff8f..b8c2eff8bc6c1 100644 --- a/apps/federatedfilesharing/l10n/zh_CN.json +++ b/apps/federatedfilesharing/l10n/zh_CN.json @@ -15,13 +15,6 @@ "Couldn't establish a federated share." : "无法建立一个远程分享", "Couldn't establish a federated share, maybe the password was wrong." : "无法建立分享,可能密码是错误的。", "Federated Share request sent, you will receive an invitation. Check your notifications." : "共享协作请求发送成功!通过你将收到通知。注意留意你的通知提醒", - "The mountpoint name contains invalid characters." : "挂载点的名称包含无效字符。", - "Not allowed to create a federated share with the owner." : "不允许与所有者创建联合共享.", - "Invalid or untrusted SSL certificate" : "无效或是不被信任的 SSL 证书", - "Could not authenticate to remote share, password might be wrong" : "无法验证远程共享,可能是密码错误", - "Storage not valid" : "存储不可用", - "Federated share added" : "共享协作已添加", - "Couldn't add remote share" : "无法添加远程共享", "Sharing %s failed, because this item is already shared with %s" : "共享 %s 失败,因为它已经共享给 %s", "Not allowed to create a federated share with the same user" : "不能给你自己分享文件", "File is already shared with %s" : "文件已经共享与 %s", @@ -50,7 +43,13 @@ "Add to your website" : "添加到您的网站", "Share with me via Nextcloud" : "通过联合云与我共享", "HTML Code:" : "HTML 代码:", - "Search global and public address book for users and let local users publish their data" : "搜索用户的全球和公共通讯录,并让本地用户发布其数据", - "Share it:" : "分享它:" + "The mountpoint name contains invalid characters." : "挂载点的名称包含无效字符。", + "Not allowed to create a federated share with the owner." : "不允许与所有者创建联合共享.", + "Invalid or untrusted SSL certificate" : "无效或是不被信任的 SSL 证书", + "Could not authenticate to remote share, password might be wrong" : "无法验证远程共享,可能是密码错误", + "Storage not valid" : "存储不可用", + "Federated share added" : "共享协作已添加", + "Couldn't add remote share" : "无法添加远程共享", + "Search global and public address book for users and let local users publish their data" : "搜索用户的全球和公共通讯录,并让本地用户发布其数据" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/federatedfilesharing/l10n/zh_TW.js b/apps/federatedfilesharing/l10n/zh_TW.js index 82ccc884ca3a4..2e621370fc9e9 100644 --- a/apps/federatedfilesharing/l10n/zh_TW.js +++ b/apps/federatedfilesharing/l10n/zh_TW.js @@ -16,13 +16,6 @@ OC.L10N.register( "Server to server sharing is not enabled on this server" : "伺服器對伺服器共享在這台伺服器上面並未啟用", "Couldn't establish a federated share." : "無法建立聯盟式分享", "Couldn't establish a federated share, maybe the password was wrong." : "無法建立聯盟式分享,可能是密碼錯誤", - "The mountpoint name contains invalid characters." : "掛載點名稱含有不合法的字元", - "Not allowed to create a federated share with the owner." : "不允許與所有者建立聯盟式分享", - "Invalid or untrusted SSL certificate" : "無效或是不信任的 SSL憑證", - "Could not authenticate to remote share, password might be wrong" : "無法驗證遠端分享,可能是密碼錯誤", - "Storage not valid" : "儲存空間無效", - "Federated share added" : "聯盟分享已新增", - "Couldn't add remote share" : "無法加入遠端分享", "Sharing %s failed, because this item is already shared with %s" : "分享 %s 失敗,因為此項目目前已經與 %s 分享", "Not allowed to create a federated share with the same user" : "不允許與同一個使用者建立聯盟式分享", "File is already shared with %s" : "檔案已和 %s 分享", @@ -41,6 +34,12 @@ OC.L10N.register( "Add to your website" : "新增至您的網站", "Share with me via Nextcloud" : "透過 Nextcloud 與我分享", "HTML Code:" : "HTML Code:", - "Share it:" : "分享它:" + "The mountpoint name contains invalid characters." : "掛載點名稱含有不合法的字元", + "Not allowed to create a federated share with the owner." : "不允許與所有者建立聯盟式分享", + "Invalid or untrusted SSL certificate" : "無效或是不信任的 SSL憑證", + "Could not authenticate to remote share, password might be wrong" : "無法驗證遠端分享,可能是密碼錯誤", + "Storage not valid" : "儲存空間無效", + "Federated share added" : "聯盟分享已新增", + "Couldn't add remote share" : "無法加入遠端分享" }, "nplurals=1; plural=0;"); diff --git a/apps/federatedfilesharing/l10n/zh_TW.json b/apps/federatedfilesharing/l10n/zh_TW.json index 77bae400756e2..1818eb974adba 100644 --- a/apps/federatedfilesharing/l10n/zh_TW.json +++ b/apps/federatedfilesharing/l10n/zh_TW.json @@ -14,13 +14,6 @@ "Server to server sharing is not enabled on this server" : "伺服器對伺服器共享在這台伺服器上面並未啟用", "Couldn't establish a federated share." : "無法建立聯盟式分享", "Couldn't establish a federated share, maybe the password was wrong." : "無法建立聯盟式分享,可能是密碼錯誤", - "The mountpoint name contains invalid characters." : "掛載點名稱含有不合法的字元", - "Not allowed to create a federated share with the owner." : "不允許與所有者建立聯盟式分享", - "Invalid or untrusted SSL certificate" : "無效或是不信任的 SSL憑證", - "Could not authenticate to remote share, password might be wrong" : "無法驗證遠端分享,可能是密碼錯誤", - "Storage not valid" : "儲存空間無效", - "Federated share added" : "聯盟分享已新增", - "Couldn't add remote share" : "無法加入遠端分享", "Sharing %s failed, because this item is already shared with %s" : "分享 %s 失敗,因為此項目目前已經與 %s 分享", "Not allowed to create a federated share with the same user" : "不允許與同一個使用者建立聯盟式分享", "File is already shared with %s" : "檔案已和 %s 分享", @@ -39,6 +32,12 @@ "Add to your website" : "新增至您的網站", "Share with me via Nextcloud" : "透過 Nextcloud 與我分享", "HTML Code:" : "HTML Code:", - "Share it:" : "分享它:" + "The mountpoint name contains invalid characters." : "掛載點名稱含有不合法的字元", + "Not allowed to create a federated share with the owner." : "不允許與所有者建立聯盟式分享", + "Invalid or untrusted SSL certificate" : "無效或是不信任的 SSL憑證", + "Could not authenticate to remote share, password might be wrong" : "無法驗證遠端分享,可能是密碼錯誤", + "Storage not valid" : "儲存空間無效", + "Federated share added" : "聯盟分享已新增", + "Couldn't add remote share" : "無法加入遠端分享" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/federation/l10n/ar.js b/apps/federation/l10n/ar.js index ab3d48c98561f..d95f532bec01a 100644 --- a/apps/federation/l10n/ar.js +++ b/apps/federation/l10n/ar.js @@ -1,15 +1,13 @@ OC.L10N.register( "federation", { - "Server added to the list of trusted ownClouds" : "تمت إضافة الخادم إلى قائمة مضيفات ownCloud الموثوق بها", - "Server is already in the list of trusted servers." : "الخادم موجود بالفعل في قائمة مضيفات ownCloud الموثوق بها", - "No ownCloud server found" : "لم يتم العثور على خادم ownCloud", + "Server is already in the list of trusted servers." : "الخادوم موجود بالفعل في قائمة الخوادم الموثوق فيها.", "Could not add server" : "تعذَّرت إضافة خادم", - "Federation" : "الاتحاد", - "ownCloud Federation allows you to connect with other trusted ownClouds to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "يتيح لك اتحاد مضيفات ownCloud الاتصال بخادمات ownCloud الأخرى الموثوق بها لتبادل دليل المستخدمين. على سبيل المثال ، يتيح الاتحاد خدمة الإكمال التلقائي للمستخدمين الخارجيين لتمكين المشاركة في الاتحاد.", + "Federation" : "الإتحاد", + "Trusted servers" : "الخوادم الموثوق فيها", "Add server automatically once a federated share was created successfully" : "أضف الخادم تلقائياً حال نجاح إنشاء حصة في الاتحاد", - "Trusted ownCloud Servers" : "خادمات ownCloud الموثوق بها", - "+ Add ownCloud server" : "+ أضف خادم ownCloud", - "ownCloud Server" : "خادم ownCloud" + "+ Add trusted server" : "+ إضافة خادوم موثوق فيه", + "Trusted server" : "خادوم موثوق فيه", + "Add" : "إضافة" }, "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/apps/federation/l10n/ar.json b/apps/federation/l10n/ar.json index dc62c5d54f955..749443171ffd2 100644 --- a/apps/federation/l10n/ar.json +++ b/apps/federation/l10n/ar.json @@ -1,13 +1,11 @@ { "translations": { - "Server added to the list of trusted ownClouds" : "تمت إضافة الخادم إلى قائمة مضيفات ownCloud الموثوق بها", - "Server is already in the list of trusted servers." : "الخادم موجود بالفعل في قائمة مضيفات ownCloud الموثوق بها", - "No ownCloud server found" : "لم يتم العثور على خادم ownCloud", + "Server is already in the list of trusted servers." : "الخادوم موجود بالفعل في قائمة الخوادم الموثوق فيها.", "Could not add server" : "تعذَّرت إضافة خادم", - "Federation" : "الاتحاد", - "ownCloud Federation allows you to connect with other trusted ownClouds to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "يتيح لك اتحاد مضيفات ownCloud الاتصال بخادمات ownCloud الأخرى الموثوق بها لتبادل دليل المستخدمين. على سبيل المثال ، يتيح الاتحاد خدمة الإكمال التلقائي للمستخدمين الخارجيين لتمكين المشاركة في الاتحاد.", + "Federation" : "الإتحاد", + "Trusted servers" : "الخوادم الموثوق فيها", "Add server automatically once a federated share was created successfully" : "أضف الخادم تلقائياً حال نجاح إنشاء حصة في الاتحاد", - "Trusted ownCloud Servers" : "خادمات ownCloud الموثوق بها", - "+ Add ownCloud server" : "+ أضف خادم ownCloud", - "ownCloud Server" : "خادم ownCloud" + "+ Add trusted server" : "+ إضافة خادوم موثوق فيه", + "Trusted server" : "خادوم موثوق فيه", + "Add" : "إضافة" },"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/apps/federation/l10n/ast.js b/apps/federation/l10n/ast.js index 752bfc4cd78f6..5ba5fe60a50c3 100644 --- a/apps/federation/l10n/ast.js +++ b/apps/federation/l10n/ast.js @@ -9,7 +9,6 @@ OC.L10N.register( "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "La federación permítete coneutar con otros sirvidores d'enfotu pa intercambiar el direutoriu d'usuarios. Por exemplu, esto usaráse p'auto-completar usuarios esternos y compatir de mou federáu.", "+ Add trusted server" : "+ Amestar sirvidor d'enfotu", "Trusted server" : "Sirvidor d'enfotu", - "Add" : "Amestar", - "Federation" : "Federación" + "Add" : "Amestar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/ast.json b/apps/federation/l10n/ast.json index 2d92a1025c4cb..24d111ee43e30 100644 --- a/apps/federation/l10n/ast.json +++ b/apps/federation/l10n/ast.json @@ -7,7 +7,6 @@ "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "La federación permítete coneutar con otros sirvidores d'enfotu pa intercambiar el direutoriu d'usuarios. Por exemplu, esto usaráse p'auto-completar usuarios esternos y compatir de mou federáu.", "+ Add trusted server" : "+ Amestar sirvidor d'enfotu", "Trusted server" : "Sirvidor d'enfotu", - "Add" : "Amestar", - "Federation" : "Federación" + "Add" : "Amestar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/ca.js b/apps/federation/l10n/ca.js index 9ac7ed3f6412f..16429ae54afd0 100644 --- a/apps/federation/l10n/ca.js +++ b/apps/federation/l10n/ca.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Afegir servidor automàticament quan s'hagi creat una federació correctament", "+ Add trusted server" : "+Afegir servidor de confiança", "Trusted server" : "Servidor de confiança", - "Add" : "Afegir", - "Federation" : "Federació" + "Add" : "Afegir" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/ca.json b/apps/federation/l10n/ca.json index a6b26b0d84040..4a91cec651a31 100644 --- a/apps/federation/l10n/ca.json +++ b/apps/federation/l10n/ca.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Afegir servidor automàticament quan s'hagi creat una federació correctament", "+ Add trusted server" : "+Afegir servidor de confiança", "Trusted server" : "Servidor de confiança", - "Add" : "Afegir", - "Federation" : "Federació" + "Add" : "Afegir" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/cs.js b/apps/federation/l10n/cs.js index 34190bbe01010..ab76961f5b8ad 100644 --- a/apps/federation/l10n/cs.js +++ b/apps/federation/l10n/cs.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Přidat server automaticky jakmile je úspěšně vytvořeno sdružené sdílení", "+ Add trusted server" : "+ Přidat důvěryhodný server", "Trusted server" : "Důvěryhodný server", - "Add" : "Přidat", - "Federation" : "Sdružování" + "Add" : "Přidat" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/federation/l10n/cs.json b/apps/federation/l10n/cs.json index 05da0723c4154..8c7e4f40b61cc 100644 --- a/apps/federation/l10n/cs.json +++ b/apps/federation/l10n/cs.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Přidat server automaticky jakmile je úspěšně vytvořeno sdružené sdílení", "+ Add trusted server" : "+ Přidat důvěryhodný server", "Trusted server" : "Důvěryhodný server", - "Add" : "Přidat", - "Federation" : "Sdružování" + "Add" : "Přidat" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/federation/l10n/da.js b/apps/federation/l10n/da.js index 8bfd6fcf7d728..90cff933fe12e 100644 --- a/apps/federation/l10n/da.js +++ b/apps/federation/l10n/da.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Tilføj serveren automatisk, når et datafællesskab er oprettet ", "+ Add trusted server" : "+ Tilføj pålidelig server", "Trusted server" : "Pålidelig server", - "Add" : "Tilføj", - "Federation" : "Datafællesskab" + "Add" : "Tilføj" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/da.json b/apps/federation/l10n/da.json index efa6310ed9426..7441d985a1523 100644 --- a/apps/federation/l10n/da.json +++ b/apps/federation/l10n/da.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Tilføj serveren automatisk, når et datafællesskab er oprettet ", "+ Add trusted server" : "+ Tilføj pålidelig server", "Trusted server" : "Pålidelig server", - "Add" : "Tilføj", - "Federation" : "Datafællesskab" + "Add" : "Tilføj" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/de.js b/apps/federation/l10n/de.js index c6de0d61c39b0..c486b5470143a 100644 --- a/apps/federation/l10n/de.js +++ b/apps/federation/l10n/de.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "Server ist bereits in der Liste der vertrauenswürdigen Server.", "No server to federate with found" : "Es wurde kein Server zum Verbinden per Federation gefunden", "Could not add server" : "Konnte Server nicht hinzufügen", + "Federation" : "Federation", "Trusted servers" : "Vertrauenswürdige Server", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federation erlaubt es Dir, Dich mit anderen vertrauenswürdigen Servern zu verbinden, um das Benutzerverzeichnis auszutauschen. Dies wird zum Beispiel für die automatische Vervollständigung externer Benutzernamen beim Federated-Sharing verwendet.", "Add server automatically once a federated share was created successfully" : "Server automatisch hinzufügen, sobald eine Federation-Freigabe erfolgreich erstellt wurde", "+ Add trusted server" : "+ Vertrauenswürdigen Server hinzufügen", "Trusted server" : "Vertrauenswürdiger Server", - "Add" : "Hinzufügen", - "Federation" : "Federation" + "Add" : "Hinzufügen" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/de.json b/apps/federation/l10n/de.json index 78ab44df83922..d1641c2ac3b82 100644 --- a/apps/federation/l10n/de.json +++ b/apps/federation/l10n/de.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "Server ist bereits in der Liste der vertrauenswürdigen Server.", "No server to federate with found" : "Es wurde kein Server zum Verbinden per Federation gefunden", "Could not add server" : "Konnte Server nicht hinzufügen", + "Federation" : "Federation", "Trusted servers" : "Vertrauenswürdige Server", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federation erlaubt es Dir, Dich mit anderen vertrauenswürdigen Servern zu verbinden, um das Benutzerverzeichnis auszutauschen. Dies wird zum Beispiel für die automatische Vervollständigung externer Benutzernamen beim Federated-Sharing verwendet.", "Add server automatically once a federated share was created successfully" : "Server automatisch hinzufügen, sobald eine Federation-Freigabe erfolgreich erstellt wurde", "+ Add trusted server" : "+ Vertrauenswürdigen Server hinzufügen", "Trusted server" : "Vertrauenswürdiger Server", - "Add" : "Hinzufügen", - "Federation" : "Federation" + "Add" : "Hinzufügen" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/de_DE.js b/apps/federation/l10n/de_DE.js index 7fbb9e473e772..c55829d1e6a93 100644 --- a/apps/federation/l10n/de_DE.js +++ b/apps/federation/l10n/de_DE.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "Server ist bereits in der Liste der vertrauenswürdigen Servern.", "No server to federate with found" : "Es wurde kein Server zum Verbinden per Federation gefunden", "Could not add server" : "Konnte Server nicht hinzufügen", + "Federation" : "Federation", "Trusted servers" : "Vertrauenswürdige Server", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federation erlaubt es Ihnen, sich mit anderen vertrauenswürdigen Servern zu verbinden, um das Benutzerverzeichnis auszutauschen. Dies wird zum Beispiel für die automatische Vervollständigung externer Benutzernamen beim Federated-Sharing verwendet.", "Add server automatically once a federated share was created successfully" : "Server automatisch hinzufügen, sobald eine Federation-Freigabe erfolgreich erstellt wurde", "+ Add trusted server" : "+ Vertrauenswürdigen Server hinzufügen", "Trusted server" : "Vertrauenswürdiger Server", - "Add" : "Hinzufügen", - "Federation" : "Federation" + "Add" : "Hinzufügen" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/de_DE.json b/apps/federation/l10n/de_DE.json index a6486c55d583d..2e82f93b65a21 100644 --- a/apps/federation/l10n/de_DE.json +++ b/apps/federation/l10n/de_DE.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "Server ist bereits in der Liste der vertrauenswürdigen Servern.", "No server to federate with found" : "Es wurde kein Server zum Verbinden per Federation gefunden", "Could not add server" : "Konnte Server nicht hinzufügen", + "Federation" : "Federation", "Trusted servers" : "Vertrauenswürdige Server", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federation erlaubt es Ihnen, sich mit anderen vertrauenswürdigen Servern zu verbinden, um das Benutzerverzeichnis auszutauschen. Dies wird zum Beispiel für die automatische Vervollständigung externer Benutzernamen beim Federated-Sharing verwendet.", "Add server automatically once a federated share was created successfully" : "Server automatisch hinzufügen, sobald eine Federation-Freigabe erfolgreich erstellt wurde", "+ Add trusted server" : "+ Vertrauenswürdigen Server hinzufügen", "Trusted server" : "Vertrauenswürdiger Server", - "Add" : "Hinzufügen", - "Federation" : "Federation" + "Add" : "Hinzufügen" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/el.js b/apps/federation/l10n/el.js index a83d476ee3ec1..4203fa03e1f62 100644 --- a/apps/federation/l10n/el.js +++ b/apps/federation/l10n/el.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "Ο διακομιστής περιλαμβάνεται ήδη στην λίστα των έμπιστων ownCloud", "No server to federate with found" : "Δεν βρέθηκε διακομιστής για συνένωση", "Could not add server" : "Αδυναμία προσθήκης διακομιστή", + "Federation" : "Federation", "Trusted servers" : "Έμπιστοι διακομιστές", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Το Federation σας επιτρέπει να συνδεθείτε με άλλους αξιόπιστους διακομιστές για να ανταλλάξετε τον κατάλογο χρηστών. Για παράδειγμα, αυτό θα χρησιμοποιηθεί για την αυτόματη συμπλήρωση εξωτερικών χρηστών για ομαδική κοινή χρήση.", "Add server automatically once a federated share was created successfully" : "Προσθέστε αυτόματα το διακομιστή μόλις δημιουργηθεί με επιτυχία μια faderated κοινή χρήση", "+ Add trusted server" : "+Προσθήκη έμπιστων διακομιστών", "Trusted server" : "Έμπιστοι διακομιστές", - "Add" : "Προσθήκη", - "Federation" : "Federation" + "Add" : "Προσθήκη" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/el.json b/apps/federation/l10n/el.json index fcba4facdee67..39f9c6059b49a 100644 --- a/apps/federation/l10n/el.json +++ b/apps/federation/l10n/el.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "Ο διακομιστής περιλαμβάνεται ήδη στην λίστα των έμπιστων ownCloud", "No server to federate with found" : "Δεν βρέθηκε διακομιστής για συνένωση", "Could not add server" : "Αδυναμία προσθήκης διακομιστή", + "Federation" : "Federation", "Trusted servers" : "Έμπιστοι διακομιστές", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Το Federation σας επιτρέπει να συνδεθείτε με άλλους αξιόπιστους διακομιστές για να ανταλλάξετε τον κατάλογο χρηστών. Για παράδειγμα, αυτό θα χρησιμοποιηθεί για την αυτόματη συμπλήρωση εξωτερικών χρηστών για ομαδική κοινή χρήση.", "Add server automatically once a federated share was created successfully" : "Προσθέστε αυτόματα το διακομιστή μόλις δημιουργηθεί με επιτυχία μια faderated κοινή χρήση", "+ Add trusted server" : "+Προσθήκη έμπιστων διακομιστών", "Trusted server" : "Έμπιστοι διακομιστές", - "Add" : "Προσθήκη", - "Federation" : "Federation" + "Add" : "Προσθήκη" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/en_GB.js b/apps/federation/l10n/en_GB.js index 190c9f326f10f..abb8ae5d3512a 100644 --- a/apps/federation/l10n/en_GB.js +++ b/apps/federation/l10n/en_GB.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "Server is already in the list of trusted servers.", "No server to federate with found" : "No server to federate with found", "Could not add server" : "Could not add server", + "Federation" : "Federation", "Trusted servers" : "Trusted servers", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federation allows you to connect with other trusted servers to exchange the user directory. For example: to auto-complete external users for federated sharing.", "Add server automatically once a federated share was created successfully" : "Automatically add server once a federated share is successfully created", "+ Add trusted server" : "+ Add trusted server", "Trusted server" : "Trusted server", - "Add" : "Add", - "Federation" : "Federation" + "Add" : "Add" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/en_GB.json b/apps/federation/l10n/en_GB.json index d1d8d2ca68cd0..f38f2e323af1d 100644 --- a/apps/federation/l10n/en_GB.json +++ b/apps/federation/l10n/en_GB.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "Server is already in the list of trusted servers.", "No server to federate with found" : "No server to federate with found", "Could not add server" : "Could not add server", + "Federation" : "Federation", "Trusted servers" : "Trusted servers", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federation allows you to connect with other trusted servers to exchange the user directory. For example: to auto-complete external users for federated sharing.", "Add server automatically once a federated share was created successfully" : "Automatically add server once a federated share is successfully created", "+ Add trusted server" : "+ Add trusted server", "Trusted server" : "Trusted server", - "Add" : "Add", - "Federation" : "Federation" + "Add" : "Add" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es.js b/apps/federation/l10n/es.js index 1fb78da5be3d0..0b5120fbc9c57 100644 --- a/apps/federation/l10n/es.js +++ b/apps/federation/l10n/es.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "El servidor ya está en la lista de servidores en los que se confía.", "No server to federate with found" : "No se ha encontrado ningún servidor con el que federarse.", "Could not add server" : "No se ha podido añadir el servidor", + "Federation" : "Federación", "Trusted servers" : "Servidores de confianza", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "La federación permite conectarte con otros servidores de confianza para intercambiar directorios. Por ejemplo, esto se usará para autocompletar la selección de usuarios externos al compartir en federación.", "Add server automatically once a federated share was created successfully" : "Añadir el servidor automáticamente una vez que un compartido federado se haya creado exitosamente", "+ Add trusted server" : "+ Añadir servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Añadir", - "Federation" : "Federación" + "Add" : "Añadir" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es.json b/apps/federation/l10n/es.json index 3b799575fd9ca..4548b3dc709f0 100644 --- a/apps/federation/l10n/es.json +++ b/apps/federation/l10n/es.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "El servidor ya está en la lista de servidores en los que se confía.", "No server to federate with found" : "No se ha encontrado ningún servidor con el que federarse.", "Could not add server" : "No se ha podido añadir el servidor", + "Federation" : "Federación", "Trusted servers" : "Servidores de confianza", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "La federación permite conectarte con otros servidores de confianza para intercambiar directorios. Por ejemplo, esto se usará para autocompletar la selección de usuarios externos al compartir en federación.", "Add server automatically once a federated share was created successfully" : "Añadir el servidor automáticamente una vez que un compartido federado se haya creado exitosamente", "+ Add trusted server" : "+ Añadir servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Añadir", - "Federation" : "Federación" + "Add" : "Añadir" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es_419.js b/apps/federation/l10n/es_419.js index f67269dab949c..5c1215f3f38a8 100644 --- a/apps/federation/l10n/es_419.js +++ b/apps/federation/l10n/es_419.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es_419.json b/apps/federation/l10n/es_419.json index 4e87e62726f4b..431c57a212482 100644 --- a/apps/federation/l10n/es_419.json +++ b/apps/federation/l10n/es_419.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es_AR.js b/apps/federation/l10n/es_AR.js index fa327fc7f102a..6249e7664d72a 100644 --- a/apps/federation/l10n/es_AR.js +++ b/apps/federation/l10n/es_AR.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es_AR.json b/apps/federation/l10n/es_AR.json index d484a9e58971d..71b6965d25c59 100644 --- a/apps/federation/l10n/es_AR.json +++ b/apps/federation/l10n/es_AR.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es_CL.js b/apps/federation/l10n/es_CL.js index f67269dab949c..5c1215f3f38a8 100644 --- a/apps/federation/l10n/es_CL.js +++ b/apps/federation/l10n/es_CL.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es_CL.json b/apps/federation/l10n/es_CL.json index 4e87e62726f4b..431c57a212482 100644 --- a/apps/federation/l10n/es_CL.json +++ b/apps/federation/l10n/es_CL.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es_CO.js b/apps/federation/l10n/es_CO.js index f67269dab949c..5c1215f3f38a8 100644 --- a/apps/federation/l10n/es_CO.js +++ b/apps/federation/l10n/es_CO.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es_CO.json b/apps/federation/l10n/es_CO.json index 4e87e62726f4b..431c57a212482 100644 --- a/apps/federation/l10n/es_CO.json +++ b/apps/federation/l10n/es_CO.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es_CR.js b/apps/federation/l10n/es_CR.js index f67269dab949c..5c1215f3f38a8 100644 --- a/apps/federation/l10n/es_CR.js +++ b/apps/federation/l10n/es_CR.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es_CR.json b/apps/federation/l10n/es_CR.json index 4e87e62726f4b..431c57a212482 100644 --- a/apps/federation/l10n/es_CR.json +++ b/apps/federation/l10n/es_CR.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es_DO.js b/apps/federation/l10n/es_DO.js index f67269dab949c..5c1215f3f38a8 100644 --- a/apps/federation/l10n/es_DO.js +++ b/apps/federation/l10n/es_DO.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es_DO.json b/apps/federation/l10n/es_DO.json index 4e87e62726f4b..431c57a212482 100644 --- a/apps/federation/l10n/es_DO.json +++ b/apps/federation/l10n/es_DO.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es_EC.js b/apps/federation/l10n/es_EC.js index f67269dab949c..5c1215f3f38a8 100644 --- a/apps/federation/l10n/es_EC.js +++ b/apps/federation/l10n/es_EC.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es_EC.json b/apps/federation/l10n/es_EC.json index 4e87e62726f4b..431c57a212482 100644 --- a/apps/federation/l10n/es_EC.json +++ b/apps/federation/l10n/es_EC.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es_GT.js b/apps/federation/l10n/es_GT.js index f67269dab949c..5c1215f3f38a8 100644 --- a/apps/federation/l10n/es_GT.js +++ b/apps/federation/l10n/es_GT.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es_GT.json b/apps/federation/l10n/es_GT.json index 4e87e62726f4b..431c57a212482 100644 --- a/apps/federation/l10n/es_GT.json +++ b/apps/federation/l10n/es_GT.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es_HN.js b/apps/federation/l10n/es_HN.js index f67269dab949c..5c1215f3f38a8 100644 --- a/apps/federation/l10n/es_HN.js +++ b/apps/federation/l10n/es_HN.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es_HN.json b/apps/federation/l10n/es_HN.json index 4e87e62726f4b..431c57a212482 100644 --- a/apps/federation/l10n/es_HN.json +++ b/apps/federation/l10n/es_HN.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es_MX.js b/apps/federation/l10n/es_MX.js index f67269dab949c..b9d7cb74f432f 100644 --- a/apps/federation/l10n/es_MX.js +++ b/apps/federation/l10n/es_MX.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "El servidor ya se encuentra en la lista de servidores de confianza.", "No server to federate with found" : "No se encontraron servidores para integrar a la federación", "Could not add server" : "No fue posible agregar el servidor", + "Federation" : "Federación", "Trusted servers" : "Servidores de confianza", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "La federación te permite conectarte con otros servidores de confianza para intercambiar el directorio de usuarios. Por ejemplo, esto se usará para auto-completar usuarios externos en el recurso compartido federado.", "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es_MX.json b/apps/federation/l10n/es_MX.json index 4e87e62726f4b..b57a106f18a13 100644 --- a/apps/federation/l10n/es_MX.json +++ b/apps/federation/l10n/es_MX.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "El servidor ya se encuentra en la lista de servidores de confianza.", "No server to federate with found" : "No se encontraron servidores para integrar a la federación", "Could not add server" : "No fue posible agregar el servidor", + "Federation" : "Federación", "Trusted servers" : "Servidores de confianza", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "La federación te permite conectarte con otros servidores de confianza para intercambiar el directorio de usuarios. Por ejemplo, esto se usará para auto-completar usuarios externos en el recurso compartido federado.", "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es_NI.js b/apps/federation/l10n/es_NI.js index f67269dab949c..5c1215f3f38a8 100644 --- a/apps/federation/l10n/es_NI.js +++ b/apps/federation/l10n/es_NI.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es_NI.json b/apps/federation/l10n/es_NI.json index 4e87e62726f4b..431c57a212482 100644 --- a/apps/federation/l10n/es_NI.json +++ b/apps/federation/l10n/es_NI.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es_PA.js b/apps/federation/l10n/es_PA.js index f67269dab949c..5c1215f3f38a8 100644 --- a/apps/federation/l10n/es_PA.js +++ b/apps/federation/l10n/es_PA.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es_PA.json b/apps/federation/l10n/es_PA.json index 4e87e62726f4b..431c57a212482 100644 --- a/apps/federation/l10n/es_PA.json +++ b/apps/federation/l10n/es_PA.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es_PE.js b/apps/federation/l10n/es_PE.js index f67269dab949c..5c1215f3f38a8 100644 --- a/apps/federation/l10n/es_PE.js +++ b/apps/federation/l10n/es_PE.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es_PE.json b/apps/federation/l10n/es_PE.json index 4e87e62726f4b..431c57a212482 100644 --- a/apps/federation/l10n/es_PE.json +++ b/apps/federation/l10n/es_PE.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es_PR.js b/apps/federation/l10n/es_PR.js index f67269dab949c..5c1215f3f38a8 100644 --- a/apps/federation/l10n/es_PR.js +++ b/apps/federation/l10n/es_PR.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es_PR.json b/apps/federation/l10n/es_PR.json index 4e87e62726f4b..431c57a212482 100644 --- a/apps/federation/l10n/es_PR.json +++ b/apps/federation/l10n/es_PR.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es_PY.js b/apps/federation/l10n/es_PY.js index f67269dab949c..5c1215f3f38a8 100644 --- a/apps/federation/l10n/es_PY.js +++ b/apps/federation/l10n/es_PY.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es_PY.json b/apps/federation/l10n/es_PY.json index 4e87e62726f4b..431c57a212482 100644 --- a/apps/federation/l10n/es_PY.json +++ b/apps/federation/l10n/es_PY.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es_SV.js b/apps/federation/l10n/es_SV.js index f67269dab949c..5c1215f3f38a8 100644 --- a/apps/federation/l10n/es_SV.js +++ b/apps/federation/l10n/es_SV.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es_SV.json b/apps/federation/l10n/es_SV.json index 4e87e62726f4b..431c57a212482 100644 --- a/apps/federation/l10n/es_SV.json +++ b/apps/federation/l10n/es_SV.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/es_UY.js b/apps/federation/l10n/es_UY.js index f67269dab949c..5c1215f3f38a8 100644 --- a/apps/federation/l10n/es_UY.js +++ b/apps/federation/l10n/es_UY.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/es_UY.json b/apps/federation/l10n/es_UY.json index 4e87e62726f4b..431c57a212482 100644 --- a/apps/federation/l10n/es_UY.json +++ b/apps/federation/l10n/es_UY.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Agregar el servidor automáticamente una vez que se genere exitosamente el elemento compartido federado", "+ Add trusted server" : "+ Agregar servidor de confianza", "Trusted server" : "Servidor de confianza", - "Add" : "Agregar", - "Federation" : "Federación" + "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/et_EE.js b/apps/federation/l10n/et_EE.js index e0d93d85bb4fa..e7743be2ee381 100644 --- a/apps/federation/l10n/et_EE.js +++ b/apps/federation/l10n/et_EE.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Lisa server automaatselt niipea kui liitjagamine õnnestus", "+ Add trusted server" : "+ Lisa usaldatud server", "Trusted server" : "Usaldatud server", - "Add" : "Lisa", - "Federation" : "Liit" + "Add" : "Lisa" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/et_EE.json b/apps/federation/l10n/et_EE.json index 7e5912b1133f2..9cde0a3e25a40 100644 --- a/apps/federation/l10n/et_EE.json +++ b/apps/federation/l10n/et_EE.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Lisa server automaatselt niipea kui liitjagamine õnnestus", "+ Add trusted server" : "+ Lisa usaldatud server", "Trusted server" : "Usaldatud server", - "Add" : "Lisa", - "Federation" : "Liit" + "Add" : "Lisa" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/eu.js b/apps/federation/l10n/eu.js index d64821f858f8e..f99a14ef50b2e 100644 --- a/apps/federation/l10n/eu.js +++ b/apps/federation/l10n/eu.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Zerbitzaria automatikoki gehitu federatutako partekatze bat ondo sortzen denean", "+ Add trusted server" : "+ Zerbitzari fidagarria gehitu", "Trusted server" : "Zerbitzari fidagarria", - "Add" : "Gehitu", - "Federation" : "Federazioa" + "Add" : "Gehitu" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/eu.json b/apps/federation/l10n/eu.json index 86bdba1dc9dd0..7b0fbea5d709e 100644 --- a/apps/federation/l10n/eu.json +++ b/apps/federation/l10n/eu.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Zerbitzaria automatikoki gehitu federatutako partekatze bat ondo sortzen denean", "+ Add trusted server" : "+ Zerbitzari fidagarria gehitu", "Trusted server" : "Zerbitzari fidagarria", - "Add" : "Gehitu", - "Federation" : "Federazioa" + "Add" : "Gehitu" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/fa.js b/apps/federation/l10n/fa.js new file mode 100644 index 0000000000000..62279af2361eb --- /dev/null +++ b/apps/federation/l10n/fa.js @@ -0,0 +1,11 @@ +OC.L10N.register( + "federation", + { + "Added to the list of trusted servers" : "اضافه شده به لیست سرورهای مورد اعتماد", + "Server is already in the list of trusted servers." : "سرور در حال حاضر در لیست سرورهای مورد اعتماد است.", + "Could not add server" : "سرور اضافه نشد", + "Trusted servers" : "سرورهای قابل اعتماد", + "Trusted server" : "سرور قابل اعتماد", + "Add" : "افزودن" +}, +"nplurals=1; plural=0;"); diff --git a/apps/federation/l10n/fa.json b/apps/federation/l10n/fa.json new file mode 100644 index 0000000000000..0d79140137e2b --- /dev/null +++ b/apps/federation/l10n/fa.json @@ -0,0 +1,9 @@ +{ "translations": { + "Added to the list of trusted servers" : "اضافه شده به لیست سرورهای مورد اعتماد", + "Server is already in the list of trusted servers." : "سرور در حال حاضر در لیست سرورهای مورد اعتماد است.", + "Could not add server" : "سرور اضافه نشد", + "Trusted servers" : "سرورهای قابل اعتماد", + "Trusted server" : "سرور قابل اعتماد", + "Add" : "افزودن" +},"pluralForm" :"nplurals=1; plural=0;" +} \ No newline at end of file diff --git a/apps/federation/l10n/fi.js b/apps/federation/l10n/fi.js index 3eb39aa50045f..2225995047732 100644 --- a/apps/federation/l10n/fi.js +++ b/apps/federation/l10n/fi.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "Palvelin on jo luotettujen palvelimien luettelossa.", "No server to federate with found" : "Palvelinta, johon liittyä, ei löytynyt", "Could not add server" : "Palvelimen lisääminen ei onnistunut", + "Federation" : "Federaatio", "Trusted servers" : "Luotetut palvelimet", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federointi sallii sinun liittyä toisten luotettujen palvelimien käyttäjäluetteloihin. Sitä käytetään esimerkiksi ulkoisten käyttäjänimien automaattiseen täydentämiseen.", "Add server automatically once a federated share was created successfully" : "Lisää palvelin automaattisesti, kun federoitu jako on luotu onnistuneesti", "+ Add trusted server" : "+ Lisää luotettu palvelin", "Trusted server" : "Luotettu palvelin", - "Add" : "Lisää", - "Federation" : "Federaatio" + "Add" : "Lisää" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/fi.json b/apps/federation/l10n/fi.json index 367fb5fe1b3dc..3addcf7266952 100644 --- a/apps/federation/l10n/fi.json +++ b/apps/federation/l10n/fi.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "Palvelin on jo luotettujen palvelimien luettelossa.", "No server to federate with found" : "Palvelinta, johon liittyä, ei löytynyt", "Could not add server" : "Palvelimen lisääminen ei onnistunut", + "Federation" : "Federaatio", "Trusted servers" : "Luotetut palvelimet", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federointi sallii sinun liittyä toisten luotettujen palvelimien käyttäjäluetteloihin. Sitä käytetään esimerkiksi ulkoisten käyttäjänimien automaattiseen täydentämiseen.", "Add server automatically once a federated share was created successfully" : "Lisää palvelin automaattisesti, kun federoitu jako on luotu onnistuneesti", "+ Add trusted server" : "+ Lisää luotettu palvelin", "Trusted server" : "Luotettu palvelin", - "Add" : "Lisää", - "Federation" : "Federaatio" + "Add" : "Lisää" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/fr.js b/apps/federation/l10n/fr.js index 7d2278c786672..6bf668f8a62f0 100644 --- a/apps/federation/l10n/fr.js +++ b/apps/federation/l10n/fr.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "Le serveur est déjà dans la liste des serveurs de confiance.", "No server to federate with found" : "Aucun serveur avec lequel fédérer n'a été trouvé", "Could not add server" : "Impossible d'ajouter le serveur", + "Federation" : "Fédération", "Trusted servers" : "Serveurs de confiance", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Une fédération vous permet de vous connecter avec d'autres serveurs de confiance pour échanger la liste des utilisateurs. Par exemple, ce sera utilisé pour auto-compléter les utilisateurs externes lors du partage fédéré.", "Add server automatically once a federated share was created successfully" : "Ajouter un serveur automatiquement une fois que le partage a été créé avec succès", "+ Add trusted server" : "+ Ajouter un serveur de confiance", "Trusted server" : "Serveur de confiance", - "Add" : "Ajouter", - "Federation" : "Fédération" + "Add" : "Ajouter" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/federation/l10n/fr.json b/apps/federation/l10n/fr.json index 2d2edb39e758a..f05f092fcd195 100644 --- a/apps/federation/l10n/fr.json +++ b/apps/federation/l10n/fr.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "Le serveur est déjà dans la liste des serveurs de confiance.", "No server to federate with found" : "Aucun serveur avec lequel fédérer n'a été trouvé", "Could not add server" : "Impossible d'ajouter le serveur", + "Federation" : "Fédération", "Trusted servers" : "Serveurs de confiance", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Une fédération vous permet de vous connecter avec d'autres serveurs de confiance pour échanger la liste des utilisateurs. Par exemple, ce sera utilisé pour auto-compléter les utilisateurs externes lors du partage fédéré.", "Add server automatically once a federated share was created successfully" : "Ajouter un serveur automatiquement une fois que le partage a été créé avec succès", "+ Add trusted server" : "+ Ajouter un serveur de confiance", "Trusted server" : "Serveur de confiance", - "Add" : "Ajouter", - "Federation" : "Fédération" + "Add" : "Ajouter" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/hu.js b/apps/federation/l10n/hu.js index 06f9679fc245e..70a86b87b27e5 100644 --- a/apps/federation/l10n/hu.js +++ b/apps/federation/l10n/hu.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "A szerver már a megbízható szerverek közt van.", "No server to federate with found" : "Nem található egyesíthető szerver", "Could not add server" : "Nem lehet hozzáadni a szervert", + "Federation" : "Egyesítés", "Trusted servers" : "Megbízható szerverek", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Az egyesítés lehetővé teszi a kapcsolódást más megbízható szerverekhez a felhasználói könyvtárak kicseréléséhez. Például ennek segítségével lesznek automatikusan kiegészítve a külső felhasználók az egyesített megosztáshoz.", "Add server automatically once a federated share was created successfully" : "Szerver automatikus hozzáadása, ha az egyesített megosztás létrehozása sikeres", "+ Add trusted server" : "+ Megbízható szerver hozzáadása", "Trusted server" : "Megbízható szerver", - "Add" : "Hozzáadás", - "Federation" : "Egyesítés" + "Add" : "Hozzáadás" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/hu.json b/apps/federation/l10n/hu.json index af24f197c1958..49c8d704a7f96 100644 --- a/apps/federation/l10n/hu.json +++ b/apps/federation/l10n/hu.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "A szerver már a megbízható szerverek közt van.", "No server to federate with found" : "Nem található egyesíthető szerver", "Could not add server" : "Nem lehet hozzáadni a szervert", + "Federation" : "Egyesítés", "Trusted servers" : "Megbízható szerverek", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Az egyesítés lehetővé teszi a kapcsolódást más megbízható szerverekhez a felhasználói könyvtárak kicseréléséhez. Például ennek segítségével lesznek automatikusan kiegészítve a külső felhasználók az egyesített megosztáshoz.", "Add server automatically once a federated share was created successfully" : "Szerver automatikus hozzáadása, ha az egyesített megosztás létrehozása sikeres", "+ Add trusted server" : "+ Megbízható szerver hozzáadása", "Trusted server" : "Megbízható szerver", - "Add" : "Hozzáadás", - "Federation" : "Egyesítés" + "Add" : "Hozzáadás" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/ia.js b/apps/federation/l10n/ia.js index 889d305cb5d0d..601d0fb23b04c 100644 --- a/apps/federation/l10n/ia.js +++ b/apps/federation/l10n/ia.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Le functionalitate de adder un servitor automaticamente un vice que un compartimento federate es associate esseva create con successo", "+ Add trusted server" : "+ Adder servitor fiduciari", "Trusted server" : "Servitor fiduciari", - "Add" : "Adder", - "Federation" : "Federation" + "Add" : "Adder" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/ia.json b/apps/federation/l10n/ia.json index 5b06ced40ea92..6052c3345a1e3 100644 --- a/apps/federation/l10n/ia.json +++ b/apps/federation/l10n/ia.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Le functionalitate de adder un servitor automaticamente un vice que un compartimento federate es associate esseva create con successo", "+ Add trusted server" : "+ Adder servitor fiduciari", "Trusted server" : "Servitor fiduciari", - "Add" : "Adder", - "Federation" : "Federation" + "Add" : "Adder" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/id.js b/apps/federation/l10n/id.js index 2e7137bc9950b..d0fd2506fdfca 100644 --- a/apps/federation/l10n/id.js +++ b/apps/federation/l10n/id.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Tambah server secara otomatis saat pembagian terfederasi dibuat", "+ Add trusted server" : "+ Tambah server terpercaya", "Trusted server" : "Server terpercaya", - "Add" : "Tambah", - "Federation" : "Federasi" + "Add" : "Tambah" }, "nplurals=1; plural=0;"); diff --git a/apps/federation/l10n/id.json b/apps/federation/l10n/id.json index 835481d081c4c..5d8858e62f137 100644 --- a/apps/federation/l10n/id.json +++ b/apps/federation/l10n/id.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Tambah server secara otomatis saat pembagian terfederasi dibuat", "+ Add trusted server" : "+ Tambah server terpercaya", "Trusted server" : "Server terpercaya", - "Add" : "Tambah", - "Federation" : "Federasi" + "Add" : "Tambah" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/federation/l10n/is.js b/apps/federation/l10n/is.js index 0261141a59c34..220e0dae51728 100644 --- a/apps/federation/l10n/is.js +++ b/apps/federation/l10n/is.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "Þjónninn er nú þegar á listanum yfir treysta þjóna.", "No server to federate with found" : "Enginn þjónn sem hæfur er til skýjasambands fannst", "Could not add server" : "Gat ekki bætt við þjóni", + "Federation" : "Deilt milli þjóna", "Trusted servers" : "Treystir þjónar", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Þjónasamband (federation) gerir þér kleift að tengjast öðrum treystum skýjum til að skiptast á notendaskrám. Þetta er til dæmis notað til að sjálfklára nöfn ytri notenda við deilingu sambandssameigna.", "Add server automatically once a federated share was created successfully" : "Bæta þjóni við sjálfkrafa, hafi tekist að búa til sambandssameign", "+ Add trusted server" : "+ Bæta við treystum þjóni", "Trusted server" : "Treystur þjónn", - "Add" : "Bæta við", - "Federation" : "Samband" + "Add" : "Bæta við" }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/federation/l10n/is.json b/apps/federation/l10n/is.json index cd851a5bb905f..28ef6f1aadeae 100644 --- a/apps/federation/l10n/is.json +++ b/apps/federation/l10n/is.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "Þjónninn er nú þegar á listanum yfir treysta þjóna.", "No server to federate with found" : "Enginn þjónn sem hæfur er til skýjasambands fannst", "Could not add server" : "Gat ekki bætt við þjóni", + "Federation" : "Deilt milli þjóna", "Trusted servers" : "Treystir þjónar", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Þjónasamband (federation) gerir þér kleift að tengjast öðrum treystum skýjum til að skiptast á notendaskrám. Þetta er til dæmis notað til að sjálfklára nöfn ytri notenda við deilingu sambandssameigna.", "Add server automatically once a federated share was created successfully" : "Bæta þjóni við sjálfkrafa, hafi tekist að búa til sambandssameign", "+ Add trusted server" : "+ Bæta við treystum þjóni", "Trusted server" : "Treystur þjónn", - "Add" : "Bæta við", - "Federation" : "Samband" + "Add" : "Bæta við" },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" } \ No newline at end of file diff --git a/apps/federation/l10n/it.js b/apps/federation/l10n/it.js index a18901ee4e535..3adece3b0e507 100644 --- a/apps/federation/l10n/it.js +++ b/apps/federation/l10n/it.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "Il server è già nell'elenco dei server affidabili.", "No server to federate with found" : "Non ho trovato alcun server per la federazione", "Could not add server" : "Impossibile aggiungere il server", + "Federation" : "Federazione", "Trusted servers" : "Server affidabili", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "La federazione consente di connettersi ad altri server affidabili per accedere alla cartella utente. Ad esempio, può essere utilizzata per il completamento automatico di utenti esterni per la condivisione federata.", "Add server automatically once a federated share was created successfully" : "Aggiungi automaticamente il server dopo che una condivisione federata è stata creata con successo", "+ Add trusted server" : "+ Aggiungi server affidabile", "Trusted server" : "Server affidabile", - "Add" : "Aggiungi", - "Federation" : "Federazione" + "Add" : "Aggiungi" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/it.json b/apps/federation/l10n/it.json index 9d732b0f5acd6..8a25db1804d26 100644 --- a/apps/federation/l10n/it.json +++ b/apps/federation/l10n/it.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "Il server è già nell'elenco dei server affidabili.", "No server to federate with found" : "Non ho trovato alcun server per la federazione", "Could not add server" : "Impossibile aggiungere il server", + "Federation" : "Federazione", "Trusted servers" : "Server affidabili", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "La federazione consente di connettersi ad altri server affidabili per accedere alla cartella utente. Ad esempio, può essere utilizzata per il completamento automatico di utenti esterni per la condivisione federata.", "Add server automatically once a federated share was created successfully" : "Aggiungi automaticamente il server dopo che una condivisione federata è stata creata con successo", "+ Add trusted server" : "+ Aggiungi server affidabile", "Trusted server" : "Server affidabile", - "Add" : "Aggiungi", - "Federation" : "Federazione" + "Add" : "Aggiungi" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/ja.js b/apps/federation/l10n/ja.js index ebdf316e963f8..0ffb5d1ceccc6 100644 --- a/apps/federation/l10n/ja.js +++ b/apps/federation/l10n/ja.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "追加するサーバーは自動的に統合され、共有が追加されました", "+ Add trusted server" : "+ 信頼済サーバーに追加", "Trusted server" : "信頼済サーバー", - "Add" : "追加", - "Federation" : "連携" + "Add" : "追加" }, "nplurals=1; plural=0;"); diff --git a/apps/federation/l10n/ja.json b/apps/federation/l10n/ja.json index 1477edd2ac3d8..1ac9b725097d4 100644 --- a/apps/federation/l10n/ja.json +++ b/apps/federation/l10n/ja.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "追加するサーバーは自動的に統合され、共有が追加されました", "+ Add trusted server" : "+ 信頼済サーバーに追加", "Trusted server" : "信頼済サーバー", - "Add" : "追加", - "Federation" : "連携" + "Add" : "追加" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/federation/l10n/ka_GE.js b/apps/federation/l10n/ka_GE.js index a9f84bb4f47e7..5d8c926e293be 100644 --- a/apps/federation/l10n/ka_GE.js +++ b/apps/federation/l10n/ka_GE.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "სერვერი უკვე დაცული სერვერების სიაშია.", "No server to federate with found" : "სერვერი რომელთანაც შედგება ფედერალიზირება არ იქნა ნაპოვნი", "Could not add server" : "სერვერის დამატება ვერ მოხერხდა", + "Federation" : "ფედერაცია", "Trusted servers" : "სანდო სერვერები", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "ფედერალიზაცია იძლევა საშუალებას დაუკავშირდეთ სხვა დაცულ სერვერებს და გაცვალოთ მომხმარებლის დირექტორია. მაგალითისთვის ეს გამოყენებულ იქნება, რომ მოხდეს ექსტერნალური მომხმარებლების ფედერალური გაზიარებისთვის ავტო-დასრულება.", "Add server automatically once a federated share was created successfully" : "სერვერის ავტომატურად დამატება, როდესაც ფედერალური გაზიარება წარმატებით შეიქმნება", "+ Add trusted server" : "+ სანდო სერვერის დამატება", "Trusted server" : "სანდო სერვერი", - "Add" : "დამატება", - "Federation" : "ფედერაცია" + "Add" : "დამატება" }, "nplurals=1; plural=0;"); diff --git a/apps/federation/l10n/ka_GE.json b/apps/federation/l10n/ka_GE.json index 450c6242b07d1..edf97f30f62a4 100644 --- a/apps/federation/l10n/ka_GE.json +++ b/apps/federation/l10n/ka_GE.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "სერვერი უკვე დაცული სერვერების სიაშია.", "No server to federate with found" : "სერვერი რომელთანაც შედგება ფედერალიზირება არ იქნა ნაპოვნი", "Could not add server" : "სერვერის დამატება ვერ მოხერხდა", + "Federation" : "ფედერაცია", "Trusted servers" : "სანდო სერვერები", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "ფედერალიზაცია იძლევა საშუალებას დაუკავშირდეთ სხვა დაცულ სერვერებს და გაცვალოთ მომხმარებლის დირექტორია. მაგალითისთვის ეს გამოყენებულ იქნება, რომ მოხდეს ექსტერნალური მომხმარებლების ფედერალური გაზიარებისთვის ავტო-დასრულება.", "Add server automatically once a federated share was created successfully" : "სერვერის ავტომატურად დამატება, როდესაც ფედერალური გაზიარება წარმატებით შეიქმნება", "+ Add trusted server" : "+ სანდო სერვერის დამატება", "Trusted server" : "სანდო სერვერი", - "Add" : "დამატება", - "Federation" : "ფედერაცია" + "Add" : "დამატება" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/federation/l10n/ko.js b/apps/federation/l10n/ko.js index 18e788fcead4b..ca8c6d9eac821 100644 --- a/apps/federation/l10n/ko.js +++ b/apps/federation/l10n/ko.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "연합 공유를 생성했을 때 자동으로 서버 추가", "+ Add trusted server" : "+ 신뢰할 수 있는 서버 추가", "Trusted server" : "신뢰할 수 있는 서버", - "Add" : "추가", - "Federation" : "연합" + "Add" : "추가" }, "nplurals=1; plural=0;"); diff --git a/apps/federation/l10n/ko.json b/apps/federation/l10n/ko.json index ab8fbf938741a..40f5046e89810 100644 --- a/apps/federation/l10n/ko.json +++ b/apps/federation/l10n/ko.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "연합 공유를 생성했을 때 자동으로 서버 추가", "+ Add trusted server" : "+ 신뢰할 수 있는 서버 추가", "Trusted server" : "신뢰할 수 있는 서버", - "Add" : "추가", - "Federation" : "연합" + "Add" : "추가" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/federation/l10n/lt_LT.js b/apps/federation/l10n/lt_LT.js index dca264711165d..24087403daf01 100644 --- a/apps/federation/l10n/lt_LT.js +++ b/apps/federation/l10n/lt_LT.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Pridėti serverį automatiškai, kai Centralizuotas Serverių dalinimosi ryšys buvo sukurtas", "+ Add trusted server" : "+ Pridėti patikimą serverį", "Trusted server" : "Patikimas serveris", - "Add" : "Pridėti", - "Federation" : "Centralizuotų Serverių sistema" + "Add" : "Pridėti" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/federation/l10n/lt_LT.json b/apps/federation/l10n/lt_LT.json index 74037687405b2..d83d14060a630 100644 --- a/apps/federation/l10n/lt_LT.json +++ b/apps/federation/l10n/lt_LT.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Pridėti serverį automatiškai, kai Centralizuotas Serverių dalinimosi ryšys buvo sukurtas", "+ Add trusted server" : "+ Pridėti patikimą serverį", "Trusted server" : "Patikimas serveris", - "Add" : "Pridėti", - "Federation" : "Centralizuotų Serverių sistema" + "Add" : "Pridėti" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/apps/federation/l10n/lv.js b/apps/federation/l10n/lv.js index 784ab998f87e5..458029fa3b180 100644 --- a/apps/federation/l10n/lv.js +++ b/apps/federation/l10n/lv.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Automātiski pievienots serveris federācijas koplietojumam, veiksmīgi", "+ Add trusted server" : "+ pievietot uzticamiem serveriem", "Trusted server" : "Uzticams serveris", - "Add" : "Pievienot", - "Federation" : "Federācija" + "Add" : "Pievienot" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/apps/federation/l10n/lv.json b/apps/federation/l10n/lv.json index 4e371cc279cb0..569a1e7d4422e 100644 --- a/apps/federation/l10n/lv.json +++ b/apps/federation/l10n/lv.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Automātiski pievienots serveris federācijas koplietojumam, veiksmīgi", "+ Add trusted server" : "+ pievietot uzticamiem serveriem", "Trusted server" : "Uzticams serveris", - "Add" : "Pievienot", - "Federation" : "Federācija" + "Add" : "Pievienot" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" } \ No newline at end of file diff --git a/apps/federation/l10n/mn.js b/apps/federation/l10n/mn.js index 156c883fba9f6..59e7caa09cbdd 100644 --- a/apps/federation/l10n/mn.js +++ b/apps/federation/l10n/mn.js @@ -9,7 +9,6 @@ OC.L10N.register( "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Холбоо нь хэрэглэгчийн санг солилцох бусад найдвартай серверүүд уруу холбогдох боломжийг олгоно. Жишээ нь үүнийг холбооны хуваарилалт авто бүрэн гадны хэрэглэгчдэд ашиглаж болно", "+ Add trusted server" : "+ найдвартай сервер нэмэх", "Trusted server" : "найдвартай сервер", - "Add" : "нэмэх", - "Federation" : "холбоо" + "Add" : "нэмэх" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/mn.json b/apps/federation/l10n/mn.json index 773fc9a6ff635..97b035e2ee57e 100644 --- a/apps/federation/l10n/mn.json +++ b/apps/federation/l10n/mn.json @@ -7,7 +7,6 @@ "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Холбоо нь хэрэглэгчийн санг солилцох бусад найдвартай серверүүд уруу холбогдох боломжийг олгоно. Жишээ нь үүнийг холбооны хуваарилалт авто бүрэн гадны хэрэглэгчдэд ашиглаж болно", "+ Add trusted server" : "+ найдвартай сервер нэмэх", "Trusted server" : "найдвартай сервер", - "Add" : "нэмэх", - "Federation" : "холбоо" + "Add" : "нэмэх" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/nb.js b/apps/federation/l10n/nb.js index f40d53b4308f1..c5fe81c8376a7 100644 --- a/apps/federation/l10n/nb.js +++ b/apps/federation/l10n/nb.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "Tjeneren er allerede i listen av klarerte tjenere.", "No server to federate with found" : "Ingen tjener å forene med ble funnet", "Could not add server" : "Kunne ikke legge til tjener", + "Federation" : "Sammenknytting", "Trusted servers" : "Klarerte tjenere", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Sammenknytting tillater deg å koble sammen andre betrodde tjenere for utveksling av brukermapper. For eksempel vil det bli brukt for autofullføring av eksterne brukere for sammenknyttet deling.", "Add server automatically once a federated share was created successfully" : "Legg til tjener automatisk når en sammenknyttet deling har blitt opprettet", "+ Add trusted server" : "+ Legg til klarert tjener", "Trusted server" : "Klarert tjener", - "Add" : "Legg til", - "Federation" : "Sammenknytting" + "Add" : "Legg til" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/nb.json b/apps/federation/l10n/nb.json index 156cfba28712a..d7dbd52bee967 100644 --- a/apps/federation/l10n/nb.json +++ b/apps/federation/l10n/nb.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "Tjeneren er allerede i listen av klarerte tjenere.", "No server to federate with found" : "Ingen tjener å forene med ble funnet", "Could not add server" : "Kunne ikke legge til tjener", + "Federation" : "Sammenknytting", "Trusted servers" : "Klarerte tjenere", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Sammenknytting tillater deg å koble sammen andre betrodde tjenere for utveksling av brukermapper. For eksempel vil det bli brukt for autofullføring av eksterne brukere for sammenknyttet deling.", "Add server automatically once a federated share was created successfully" : "Legg til tjener automatisk når en sammenknyttet deling har blitt opprettet", "+ Add trusted server" : "+ Legg til klarert tjener", "Trusted server" : "Klarert tjener", - "Add" : "Legg til", - "Federation" : "Sammenknytting" + "Add" : "Legg til" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/nl.js b/apps/federation/l10n/nl.js index 7dc7d94ba67ed..b85a8f00876d1 100644 --- a/apps/federation/l10n/nl.js +++ b/apps/federation/l10n/nl.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "Server bestaat reeds in de lijst van vertrouwde servers.", "No server to federate with found" : "Geen server gevonden om mee te federeren", "Could not add server" : "Kon server niet toevoegen", + "Federation" : "Federatie", "Trusted servers" : "Vertrouwde servers", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federatie maakt het mogelijk om te verbinden met vertrouwde servers en de gebuikersadministratie te delen. Zo kun je automatisch externe gebruikers toevoegen voor federatief delen.", "Add server automatically once a federated share was created successfully" : "Voeg server automatisch toe zodra een gefedereerde share succesvol gecreëerd is", "+ Add trusted server" : "+ Toevoegen vertrouwde server", "Trusted server" : "Vertrouwde server", - "Add" : "Toevoegen", - "Federation" : "Federatie" + "Add" : "Toevoegen" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/nl.json b/apps/federation/l10n/nl.json index 898142b497ed7..31ab6dcee211d 100644 --- a/apps/federation/l10n/nl.json +++ b/apps/federation/l10n/nl.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "Server bestaat reeds in de lijst van vertrouwde servers.", "No server to federate with found" : "Geen server gevonden om mee te federeren", "Could not add server" : "Kon server niet toevoegen", + "Federation" : "Federatie", "Trusted servers" : "Vertrouwde servers", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federatie maakt het mogelijk om te verbinden met vertrouwde servers en de gebuikersadministratie te delen. Zo kun je automatisch externe gebruikers toevoegen voor federatief delen.", "Add server automatically once a federated share was created successfully" : "Voeg server automatisch toe zodra een gefedereerde share succesvol gecreëerd is", "+ Add trusted server" : "+ Toevoegen vertrouwde server", "Trusted server" : "Vertrouwde server", - "Add" : "Toevoegen", - "Federation" : "Federatie" + "Add" : "Toevoegen" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/pl.js b/apps/federation/l10n/pl.js index eff79dd795fe6..eb991b9dce911 100644 --- a/apps/federation/l10n/pl.js +++ b/apps/federation/l10n/pl.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "Serwer znajduje się już na liście zaufanych serwerów.", "No server to federate with found" : "Nie znaleziono stowarzyszonego serwera", "Could not add server" : "Nie można dodać serwera", + "Federation" : "Stowarzyszenia", "Trusted servers" : "Zaufane serwery", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Stowarzyszenie pozwala łączyć się z innymi zaufanymi użytkownikami i wymieniać się z nimi katalogami. Na przykład, może to być wykorzystane do autouzupełniania w dzieleniu się ze stowarzyszonym użytkownikiem.", "Add server automatically once a federated share was created successfully" : "Dodaj serwer automatycznie po pomyślnym utworzeniu stowarzyszonego udziału.", "+ Add trusted server" : "+ Dodaj zaufany serwer", "Trusted server" : "Zaufany serwer", - "Add" : "Dodaj", - "Federation" : "Stowarzyszenia" + "Add" : "Dodaj" }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/federation/l10n/pl.json b/apps/federation/l10n/pl.json index 4fa52891676da..be295636029c7 100644 --- a/apps/federation/l10n/pl.json +++ b/apps/federation/l10n/pl.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "Serwer znajduje się już na liście zaufanych serwerów.", "No server to federate with found" : "Nie znaleziono stowarzyszonego serwera", "Could not add server" : "Nie można dodać serwera", + "Federation" : "Stowarzyszenia", "Trusted servers" : "Zaufane serwery", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Stowarzyszenie pozwala łączyć się z innymi zaufanymi użytkownikami i wymieniać się z nimi katalogami. Na przykład, może to być wykorzystane do autouzupełniania w dzieleniu się ze stowarzyszonym użytkownikiem.", "Add server automatically once a federated share was created successfully" : "Dodaj serwer automatycznie po pomyślnym utworzeniu stowarzyszonego udziału.", "+ Add trusted server" : "+ Dodaj zaufany serwer", "Trusted server" : "Zaufany serwer", - "Add" : "Dodaj", - "Federation" : "Stowarzyszenia" + "Add" : "Dodaj" },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" } \ No newline at end of file diff --git a/apps/federation/l10n/pt_BR.js b/apps/federation/l10n/pt_BR.js index dc358d66c34f0..683474b372679 100644 --- a/apps/federation/l10n/pt_BR.js +++ b/apps/federation/l10n/pt_BR.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "O servidor já está na lista de servidores confiáveis.", "No server to federate with found" : "Nenhum servidor encontrado para federar", "Could not add server" : "Não foi possível adicionar servidor", + "Federation" : "Federação", "Trusted servers" : "Servidores confiáveis", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federação permite que você conecte com outros servidores confiáveis para trocar o diretório do usuário. Por exemplo, este atributo será usado para completar automaticamente usuários externos para compartilhamento federado.", "Add server automatically once a federated share was created successfully" : "Adicionar servidor automaticamente uma vez que um compartilhamento federado foi criado com êxito", "+ Add trusted server" : "+Adicionar servidores confiáveis", "Trusted server" : "Servidores confiáveis", - "Add" : "Adicionar", - "Federation" : "Federação" + "Add" : "Adicionar" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/federation/l10n/pt_BR.json b/apps/federation/l10n/pt_BR.json index d9f1ef6147b83..ea13a6ef4b237 100644 --- a/apps/federation/l10n/pt_BR.json +++ b/apps/federation/l10n/pt_BR.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "O servidor já está na lista de servidores confiáveis.", "No server to federate with found" : "Nenhum servidor encontrado para federar", "Could not add server" : "Não foi possível adicionar servidor", + "Federation" : "Federação", "Trusted servers" : "Servidores confiáveis", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federação permite que você conecte com outros servidores confiáveis para trocar o diretório do usuário. Por exemplo, este atributo será usado para completar automaticamente usuários externos para compartilhamento federado.", "Add server automatically once a federated share was created successfully" : "Adicionar servidor automaticamente uma vez que um compartilhamento federado foi criado com êxito", "+ Add trusted server" : "+Adicionar servidores confiáveis", "Trusted server" : "Servidores confiáveis", - "Add" : "Adicionar", - "Federation" : "Federação" + "Add" : "Adicionar" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/ru.js b/apps/federation/l10n/ru.js index 5e3c36f176a98..d465c97ddfa86 100644 --- a/apps/federation/l10n/ru.js +++ b/apps/federation/l10n/ru.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "Сервер уже есть в списке доверенных серверов.", "No server to federate with found" : "Сервер для объединения не найден", "Could not add server" : "Не удалось добавить сервер", + "Federation" : "Федерация", "Trusted servers" : "Доверенные серверы", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Федерация серверов позволит Вам подключиться к другим доверенным серверам для обмена каталогами пользователей. Это будет использовано, например, для автодополнения имён пользователей при открытии федеративного общего доступа.", "Add server automatically once a federated share was created successfully" : "Добавить сервер автоматически после успешного создания федеративного ресурса общего доступа", "+ Add trusted server" : "+ Добавить доверенный сервер", "Trusted server" : "Доверенный сервер", - "Add" : "Добавить", - "Federation" : "Федерация" + "Add" : "Добавить" }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/apps/federation/l10n/ru.json b/apps/federation/l10n/ru.json index cf98806168505..fbb14ff083f4c 100644 --- a/apps/federation/l10n/ru.json +++ b/apps/federation/l10n/ru.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "Сервер уже есть в списке доверенных серверов.", "No server to federate with found" : "Сервер для объединения не найден", "Could not add server" : "Не удалось добавить сервер", + "Federation" : "Федерация", "Trusted servers" : "Доверенные серверы", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Федерация серверов позволит Вам подключиться к другим доверенным серверам для обмена каталогами пользователей. Это будет использовано, например, для автодополнения имён пользователей при открытии федеративного общего доступа.", "Add server automatically once a federated share was created successfully" : "Добавить сервер автоматически после успешного создания федеративного ресурса общего доступа", "+ Add trusted server" : "+ Добавить доверенный сервер", "Trusted server" : "Доверенный сервер", - "Add" : "Добавить", - "Federation" : "Федерация" + "Add" : "Добавить" },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } \ No newline at end of file diff --git a/apps/federation/l10n/sk.js b/apps/federation/l10n/sk.js index ebf28b6fa3446..7a842a3961a37 100644 --- a/apps/federation/l10n/sk.js +++ b/apps/federation/l10n/sk.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "Server sa už nachádza v zozname dôveryhodných serverov", "No server to federate with found" : "Server pre združenie sa nenašiel", "Could not add server" : "Nebolo možné pridať server", + "Federation" : "Združovanie", "Trusted servers" : "Dôveryhodné servery", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Združovanie vám umožňuje sa pripojiť k iným dôveryhodným serverom za účelom výmeny adresára používateľov. Používa sa to napr. pre automatické doplňovanie používateľov pri združenom zdieľaní.", "Add server automatically once a federated share was created successfully" : "Pridať server automaticky akonáhle je úspešne vytvorené združené zdieľanie", "+ Add trusted server" : "Pridať dôveryhodný server", "Trusted server" : "Dôveryhodný server", - "Add" : "Pridať", - "Federation" : "Združovanie" + "Add" : "Pridať" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/federation/l10n/sk.json b/apps/federation/l10n/sk.json index 119f2b121fa7e..16da9ab402269 100644 --- a/apps/federation/l10n/sk.json +++ b/apps/federation/l10n/sk.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "Server sa už nachádza v zozname dôveryhodných serverov", "No server to federate with found" : "Server pre združenie sa nenašiel", "Could not add server" : "Nebolo možné pridať server", + "Federation" : "Združovanie", "Trusted servers" : "Dôveryhodné servery", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Združovanie vám umožňuje sa pripojiť k iným dôveryhodným serverom za účelom výmeny adresára používateľov. Používa sa to napr. pre automatické doplňovanie používateľov pri združenom zdieľaní.", "Add server automatically once a federated share was created successfully" : "Pridať server automaticky akonáhle je úspešne vytvorené združené zdieľanie", "+ Add trusted server" : "Pridať dôveryhodný server", "Trusted server" : "Dôveryhodný server", - "Add" : "Pridať", - "Federation" : "Združovanie" + "Add" : "Pridať" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/federation/l10n/sl.js b/apps/federation/l10n/sl.js index 2ce4d03ca5fe3..b31181f4942ef 100644 --- a/apps/federation/l10n/sl.js +++ b/apps/federation/l10n/sl.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Strežnik dodaj samodejno, ko je povezava zveznega oblaka uspešno ustvarjena", "+ Add trusted server" : "+ Dodaj zanesljiv strežnik", "Trusted server" : "Zanesljiv strežnik", - "Add" : "Dodaj", - "Federation" : "Zvezni oblaki" + "Add" : "Dodaj" }, "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); diff --git a/apps/federation/l10n/sl.json b/apps/federation/l10n/sl.json index d942fb2846bf8..a6ac9c808e201 100644 --- a/apps/federation/l10n/sl.json +++ b/apps/federation/l10n/sl.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Strežnik dodaj samodejno, ko je povezava zveznega oblaka uspešno ustvarjena", "+ Add trusted server" : "+ Dodaj zanesljiv strežnik", "Trusted server" : "Zanesljiv strežnik", - "Add" : "Dodaj", - "Federation" : "Zvezni oblaki" + "Add" : "Dodaj" },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" } \ No newline at end of file diff --git a/apps/federation/l10n/sq.js b/apps/federation/l10n/sq.js index dc4aeb8b7f738..576e15e7d4ab5 100644 --- a/apps/federation/l10n/sq.js +++ b/apps/federation/l10n/sq.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "Shtoje vetvetiu server-in pasi të jetë krijuar me sukses një ndarje e federuar", "+ Add trusted server" : "+ Shto server-a të besuar", "Trusted server" : "Server i besuar", - "Add" : "Shto", - "Federation" : "Federim" + "Add" : "Shto" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/sq.json b/apps/federation/l10n/sq.json index 5ed93828d67a7..e2a5c41cef166 100644 --- a/apps/federation/l10n/sq.json +++ b/apps/federation/l10n/sq.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "Shtoje vetvetiu server-in pasi të jetë krijuar me sukses një ndarje e federuar", "+ Add trusted server" : "+ Shto server-a të besuar", "Trusted server" : "Server i besuar", - "Add" : "Shto", - "Federation" : "Federim" + "Add" : "Shto" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/sr.js b/apps/federation/l10n/sr.js index 88f2c6dfd69d3..9726ab9e3f5ac 100644 --- a/apps/federation/l10n/sr.js +++ b/apps/federation/l10n/sr.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "Сервер је већ на списку сервера од поверења.", "No server to federate with found" : "Није нађен сервер за здруживање", "Could not add server" : "Неуспело додавање сервера", + "Federation" : "Здруживање", "Trusted servers" : "Сервери од поверења", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Здруживање омогућава да се повежете са другим серверима од поверења и да мењате корисничке директоријуме.", "Add server automatically once a federated share was created successfully" : "Додај сервер аутоматски по успешном прављењу здруженог дељења", "+ Add trusted server" : "+ Додај сервер од поверења", "Trusted server" : "Сервер од поверења", - "Add" : "Додај", - "Federation" : "Здруживање" + "Add" : "Додај" }, "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/apps/federation/l10n/sr.json b/apps/federation/l10n/sr.json index c70b5f1a6225e..80a1204ac6346 100644 --- a/apps/federation/l10n/sr.json +++ b/apps/federation/l10n/sr.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "Сервер је већ на списку сервера од поверења.", "No server to federate with found" : "Није нађен сервер за здруживање", "Could not add server" : "Неуспело додавање сервера", + "Federation" : "Здруживање", "Trusted servers" : "Сервери од поверења", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Здруживање омогућава да се повежете са другим серверима од поверења и да мењате корисничке директоријуме.", "Add server automatically once a federated share was created successfully" : "Додај сервер аутоматски по успешном прављењу здруженог дељења", "+ Add trusted server" : "+ Додај сервер од поверења", "Trusted server" : "Сервер од поверења", - "Add" : "Додај", - "Federation" : "Здруживање" + "Add" : "Додај" },"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);" } \ No newline at end of file diff --git a/apps/federation/l10n/sv.js b/apps/federation/l10n/sv.js index fa6ccf86dc9fe..eba25bbd93f99 100644 --- a/apps/federation/l10n/sv.js +++ b/apps/federation/l10n/sv.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "Servern finns redan i listan", "No server to federate with found" : "Ingen server att federera med hittades", "Could not add server" : "Kunde inte lägga till server", + "Federation" : "Federation", "Trusted servers" : "Betrodda servrar", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federation låter dig ansluta till andra betrodda servrar för att utbyta användarinformation. Till exempel kommer detta användas för att auto-komplettera externa användare för federerad delning.", "Add server automatically once a federated share was created successfully" : "Lägg till servern automatiskt så fort en lyckad federerad delning skapats", "+ Add trusted server" : "+ Lägg till betrodd server", "Trusted server" : "Betrodd server", - "Add" : "Lägg till", - "Federation" : "Federerad delning" + "Add" : "Lägg till" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/federation/l10n/sv.json b/apps/federation/l10n/sv.json index ead6b203f7f32..1f27bbe7303eb 100644 --- a/apps/federation/l10n/sv.json +++ b/apps/federation/l10n/sv.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "Servern finns redan i listan", "No server to federate with found" : "Ingen server att federera med hittades", "Could not add server" : "Kunde inte lägga till server", + "Federation" : "Federation", "Trusted servers" : "Betrodda servrar", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Federation låter dig ansluta till andra betrodda servrar för att utbyta användarinformation. Till exempel kommer detta användas för att auto-komplettera externa användare för federerad delning.", "Add server automatically once a federated share was created successfully" : "Lägg till servern automatiskt så fort en lyckad federerad delning skapats", "+ Add trusted server" : "+ Lägg till betrodd server", "Trusted server" : "Betrodd server", - "Add" : "Lägg till", - "Federation" : "Federerad delning" + "Add" : "Lägg till" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/tr.js b/apps/federation/l10n/tr.js index dd959026d0f17..799047e953b00 100644 --- a/apps/federation/l10n/tr.js +++ b/apps/federation/l10n/tr.js @@ -5,12 +5,12 @@ OC.L10N.register( "Server is already in the list of trusted servers." : "Sunucu zaten güvenilen sunucu listesine eklenmiş.", "No server to federate with found" : "Birleştirilecek bir sunucu bulunamadı", "Could not add server" : "Sunucu eklenemedi", + "Federation" : "Birleşim", "Trusted servers" : "Güvenilen sunucular", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Birleşim, diğer güvenilir sunucularla dosya/klasör paylaşımı yapılmasını sağlar. Örneğin, bu işlem birleştirilmiş paylaşım için dış kullanıcıların otomatik olarak tamamlanmasını sağlar.", "Add server automatically once a federated share was created successfully" : "Bir birleşmiş paylaşım eklendiğinde sunucu otomatik olarak eklensin", "+ Add trusted server" : "+ Güvenilir sunucu ekle", "Trusted server" : "Güvenilen sunucu", - "Add" : "Ekle", - "Federation" : "Birleşim" + "Add" : "Ekle" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/federation/l10n/tr.json b/apps/federation/l10n/tr.json index eb7971df9bb78..a8b38fdc19dcc 100644 --- a/apps/federation/l10n/tr.json +++ b/apps/federation/l10n/tr.json @@ -3,12 +3,12 @@ "Server is already in the list of trusted servers." : "Sunucu zaten güvenilen sunucu listesine eklenmiş.", "No server to federate with found" : "Birleştirilecek bir sunucu bulunamadı", "Could not add server" : "Sunucu eklenemedi", + "Federation" : "Birleşim", "Trusted servers" : "Güvenilen sunucular", "Federation allows you to connect with other trusted servers to exchange the user directory. For example this will be used to auto-complete external users for federated sharing." : "Birleşim, diğer güvenilir sunucularla dosya/klasör paylaşımı yapılmasını sağlar. Örneğin, bu işlem birleştirilmiş paylaşım için dış kullanıcıların otomatik olarak tamamlanmasını sağlar.", "Add server automatically once a federated share was created successfully" : "Bir birleşmiş paylaşım eklendiğinde sunucu otomatik olarak eklensin", "+ Add trusted server" : "+ Güvenilir sunucu ekle", "Trusted server" : "Güvenilen sunucu", - "Add" : "Ekle", - "Federation" : "Birleşim" + "Add" : "Ekle" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/federation/l10n/zh_CN.js b/apps/federation/l10n/zh_CN.js index bb30e2cb86d95..f7480c84c24f5 100644 --- a/apps/federation/l10n/zh_CN.js +++ b/apps/federation/l10n/zh_CN.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "一旦联合共享创建成功自动添加服务器", "+ Add trusted server" : "+ 添加可信任服务器", "Trusted server" : "可信任服务器", - "Add" : "添加", - "Federation" : "联合" + "Add" : "添加" }, "nplurals=1; plural=0;"); diff --git a/apps/federation/l10n/zh_CN.json b/apps/federation/l10n/zh_CN.json index 919c572ba34aa..bf78e3d77f016 100644 --- a/apps/federation/l10n/zh_CN.json +++ b/apps/federation/l10n/zh_CN.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "一旦联合共享创建成功自动添加服务器", "+ Add trusted server" : "+ 添加可信任服务器", "Trusted server" : "可信任服务器", - "Add" : "添加", - "Federation" : "联合" + "Add" : "添加" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/federation/l10n/zh_TW.js b/apps/federation/l10n/zh_TW.js index 656eb9a6bdeee..6d6fb71dce09b 100644 --- a/apps/federation/l10n/zh_TW.js +++ b/apps/federation/l10n/zh_TW.js @@ -10,7 +10,6 @@ OC.L10N.register( "Add server automatically once a federated share was created successfully" : "當聯盟分享成功建立的時候自動將伺服器加入信任清單", "+ Add trusted server" : "+ 加入信任的伺服器", "Trusted server" : "信任的伺服器", - "Add" : "新增", - "Federation" : "聯盟" + "Add" : "新增" }, "nplurals=1; plural=0;"); diff --git a/apps/federation/l10n/zh_TW.json b/apps/federation/l10n/zh_TW.json index 5649df8af1db0..c33c92aaa7860 100644 --- a/apps/federation/l10n/zh_TW.json +++ b/apps/federation/l10n/zh_TW.json @@ -8,7 +8,6 @@ "Add server automatically once a federated share was created successfully" : "當聯盟分享成功建立的時候自動將伺服器加入信任清單", "+ Add trusted server" : "+ 加入信任的伺服器", "Trusted server" : "信任的伺服器", - "Add" : "新增", - "Federation" : "聯盟" + "Add" : "新增" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index b29ce9ea9507d..1be58cff5a105 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -16,7 +16,6 @@ .actions .button a:active { color: #333; } -.actions.hidden { display: none; } .actions.creatable { position: relative; @@ -27,6 +26,10 @@ } } +.actions.hidden { + display: none; +} + #trash { margin-right: 8px; float: right; diff --git a/apps/files/img/change.png b/apps/files/img/change.png index 9f64e60d56502..ca77a8844f6d8 100644 Binary files a/apps/files/img/change.png and b/apps/files/img/change.png differ diff --git a/apps/files/img/change.svg b/apps/files/img/change.svg index b3404d2ef84a2..12071422b7f90 100644 --- a/apps/files/img/change.svg +++ b/apps/files/img/change.svg @@ -1 +1 @@ - + diff --git a/apps/files/js/breadcrumb.js b/apps/files/js/breadcrumb.js index 20b15e3cb9376..2593e12d72fa0 100644 --- a/apps/files/js/breadcrumb.js +++ b/apps/files/js/breadcrumb.js @@ -36,6 +36,7 @@ this.$menu = $(''); this.crumbSelector = '.crumb:not(.hidden):not(.crumbhome):not(.crumbmenu)'; + this.hiddenCrumbSelector = '.crumb.hidden:not(.crumbhome):not(.crumbmenu)'; options = options || {}; if (options.onClick) { this.onClick = options.onClick; @@ -238,31 +239,21 @@ return crumbs; }, - /** - * Show/hide breadcrumbs to fit the given width - * Mostly used by tests - * - * @param {int} availableWidth available width - */ - setMaxWidth: function (availableWidth) { - if (this.availableWidth !== availableWidth) { - this.availableWidth = availableWidth; - this._resize(); - } - }, - /** * Calculate real width based on individual crumbs - * More accurate and works with tests * * @param {boolean} ignoreHidden ignore hidden crumbs */ getTotalWidth: function(ignoreHidden) { + // The width has to be calculated by adding up the width of all the + // crumbs; getting the width of the breadcrumb element is not a + // valid approach, as the returned value could be clamped to its + // parent width. var totalWidth = 0; for (var i = 0; i < this.breadcrumbs.length; i++ ) { var $crumb = $(this.breadcrumbs[i]); if(!$crumb.hasClass('hidden') || ignoreHidden === true) { - totalWidth += $crumb.outerWidth(); + totalWidth += $crumb.outerWidth(true); } } return totalWidth; @@ -282,19 +273,19 @@ * Get the crumb to show */ _getCrumbElement: function() { - var hidden = this.$el.find('.crumb.hidden').length; + var hidden = this.$el.find(this.hiddenCrumbSelector).length; var shown = this.$el.find(this.crumbSelector).length; // Get the outer one with priority to the highest var elmt = (1 - shown % 2) * (hidden - 1); - return this.$el.find('.crumb.hidden:eq('+elmt+')'); + return this.$el.find(this.hiddenCrumbSelector + ':eq('+elmt+')'); }, /** * Show the middle crumb */ _showCrumb: function() { - if(this.$el.find('.crumb.hidden').length === 1) { - this.$el.find('.crumb.hidden').removeClass('hidden'); + if(this.$el.find(this.hiddenCrumbSelector).length === 1) { + this.$el.find(this.hiddenCrumbSelector).removeClass('hidden'); } this._getCrumbElement().removeClass('hidden'); }, @@ -311,9 +302,7 @@ * Update the popovermenu */ _updateMenu: function() { - var menuItems = this.$el.find('.crumb.hidden'); - // Hide the crumb menu if no elements - this.$el.find('.crumbmenu').toggleClass('hidden', menuItems.length === 0); + var menuItems = this.$el.find(this.hiddenCrumbSelector); this.$menu.find('li').addClass('in-breadcrumb'); for (var i = 0; i < menuItems.length; i++) { @@ -329,25 +318,47 @@ return; } - // Used for testing since this.$el.parent fails - if (!this.availableWidth) { - this.usedWidth = this.$el.parent().width() - this.$el.parent().find('.actions.creatable').width(); - } else { - this.usedWidth = this.availableWidth; + // Always hide the menu to ensure that it does not interfere with + // the width calculations; otherwise, the result could be different + // depending on whether the menu was previously being shown or not. + this.$el.find('.crumbmenu').addClass('hidden'); + + // Show the crumbs to compress the siblings before hidding again the + // crumbs. This is needed when the siblings expand to fill all the + // available width, as in that case their old width would limit the + // available width for the crumbs. + // Note that the crumbs shown always overflow the parent width + // (except, of course, when they all fit in). + while (this.$el.find(this.hiddenCrumbSelector).length > 0 + && this.getTotalWidth() <= this.$el.parent().width()) { + this._showCrumb(); } + var siblingsWidth = 0; + this.$el.prevAll(':visible').each(function () { + siblingsWidth += $(this).outerWidth(true); + }); + this.$el.nextAll(':visible').each(function () { + siblingsWidth += $(this).outerWidth(true); + }); + + var availableWidth = this.$el.parent().width() - siblingsWidth; + // If container is smaller than content // AND if there are crumbs left to hide - while (this.getTotalWidth() > this.usedWidth + while (this.getTotalWidth() > availableWidth && this.$el.find(this.crumbSelector).length > 0) { + // As soon as one of the crumbs is hidden the menu will be + // shown. This is needed for proper results in further width + // checks. + // Note that the menu is not shown only when all the crumbs were + // being shown and they all fit the available space; if any of + // the crumbs was not being shown then those shown would + // overflow the available width, so at least one will be hidden + // and thus the menu will be shown. + this.$el.find('.crumbmenu').removeClass('hidden'); this._hideCrumb(); } - // If container is bigger than content + element to be shown - // AND if there is at least one hidden crumb - while (this.$el.find('.crumb.hidden').length > 0 - && this.getTotalWidth() + this._getCrumbElement().width() < this.usedWidth) { - this._showCrumb(); - } this._updateMenu(); } diff --git a/apps/files/l10n/af.js b/apps/files/l10n/af.js new file mode 100644 index 0000000000000..efd2f010a057a --- /dev/null +++ b/apps/files/l10n/af.js @@ -0,0 +1,107 @@ +OC.L10N.register( + "files", + { + "Storage is temporarily not available" : "Berging is tydelik onbeskikbaar", + "Storage invalid" : "Berging ongeldig", + "Unknown error" : "Onbekende fout", + "All files" : "Alle lêers", + "Recent" : "Onlangs", + "File could not be found" : "Lêer kon nie gevind word nie", + "Home" : "Tuis", + "Close" : "Sluit", + "Favorites" : "Gunstelinge", + "Could not create folder \"{dir}\"" : "Kan nie vouer: \"{dir}\" skep nie", + "Upload cancelled." : "Oplaai gekanselleer.", + "Not enough free space" : "Nie genoeg oop spasie nie", + "Uploading …" : "Laai tans op …", + "…" : "…", + "Actions" : "Aksies", + "Download" : "Laai Af", + "Rename" : "Hernoem", + "Move or copy" : "Kopieer of skuif", + "Copy" : "Kopieer", + "Target folder" : "Teikenvouer", + "Delete" : "Skrap", + "Disconnect storage" : "Ontkoppel berging", + "Unshare" : "Ontdeel", + "Files" : "Lêers", + "Details" : "Details", + "Select" : "Kies", + "Pending" : "Hangend", + "{newName} already exists" : "{nuweNaam} bestaan reeds", + "Name" : "Naam", + "Size" : "Grootte", + "Modified" : "Gewysig", + "_%n folder_::_%n folders_" : ["%n gids","%n gidse"], + "_%n file_::_%n files_" : ["%n lêer","%n lêers"], + "_Uploading %n file_::_Uploading %n files_" : ["Laai tans %n lêer op ","Laai tans %n lêers op"], + "New" : "Nuwe", + "{used} of {quota} used" : "{gebruik} van {kwota} gebruik", + "{used} used" : "{gebruik} gebruik", + "\"{name}\" is an invalid file name." : "\"{naam}\" is nie 'n geldige lêernaam nie.", + "File name cannot be empty." : "Lêernaam kan nie leeg wees nie.", + "\"/\" is not allowed inside a file name." : "\"/\" word nie binne 'n lêernaam toegelaat nie.", + "Your storage is almost full ({usedSpacePercent}%)" : "U stoorspasie is amper vol ({gebruikteSpasiePersent}%)", + "View in folder" : "Vertoon in gids", + "Copied!" : "Gekopieer!", + "Path" : "Roete", + "_%n byte_::_%n bytes_" : ["%n greep","%n grepe"], + "Favorited" : "As gunsteling ", + "Favorite" : "Gunsteling", + "New folder" : "Nuwe gids", + "Upload file" : "Laai lêer op", + "Not favorited" : "Nie as gunsteling", + "Remove from favorites" : "Verwyder uit gunstelinge", + "Add to favorites" : "Voeg by gunstelinge", + "Added to favorites" : "Tot gunstelinge bygevoeg", + "Removed from favorites" : "Van gunstelinge verwyder", + "You added {file} to your favorites" : "U het {lêer} tot u gunstelinge bygevoeg", + "You removed {file} from your favorites" : "U het {lêer} van u gunstelinge verwyder", + "File changes" : "Lêer veranderinge ", + "Created by {user}" : "Geskep deur {gebruiker}", + "Changed by {user}" : "Verander deur {gebruiker}", + "Deleted by {user}" : "Geskrap deur {gebruiker}", + "Restored by {user}" : "Herstel deur {gebruiker}", + "Renamed by {user}" : "Naam verander deur {gebruiker}", + "Moved by {user}" : "Geskuif deur {gebruiker}", + "\"remote user\"" : "“afstandsgebruiker”", + "You created {file}" : "U het {lêer} geskep", + "{user} created {file}" : "{gebruiker} het {lêer} geskep", + "{file} was created in a public folder" : "{lêer} was in 'n publieke gids geskep", + "You changed {file}" : "U het {lêer} verander", + "{user} changed {file}" : "{gebruiker} het {lêer} verander", + "You deleted {file}" : "U het {lêer} geskrap", + "{user} deleted {file}" : "{gebruiker} het {lêer} geskrap", + "You restored {file}" : "U het {lêer} herstel", + "{user} restored {file}" : "{gebruiker} het {lêer} herstel", + "You renamed {oldfile} to {newfile}" : "U het die naam van {oulêer} na {nuwelêer} verander", + "{user} renamed {oldfile} to {newfile}" : "{gebruiker} het die naam van {oulêer} na {nuwelêer} verander", + "You moved {oldfile} to {newfile}" : "U het {oulêer} na {nuwelêer} geskuif", + "{user} moved {oldfile} to {newfile}" : "{gebruiker} het {oulêer} na {nuwelêer} geskuif", + "Unlimited" : "Onbeperkte", + "Upload (max. %s)" : "Oplaai (maks. %s)", + "File handling" : "Lêerhantering", + "Maximum upload size" : "Maksimum oplaai grootte", + "max. possible: " : "maks. moontlik:", + "Save" : "Stoor", + "%s of %s used" : "%s van %s gebruik", + "%s used" : "%s gebruik", + "Settings" : "Instellings", + "Show hidden files" : "Vertoon verborge lêers ", + "WebDAV" : "WebDAV", + "Cancel upload" : "Kanselleer oplaai", + "No files in here" : "Geen lêers hierbinne nie", + "No entries found in this folder" : "Geen inskrwyings in hierdie vouer gevind", + "Select all" : "Merk alles", + "Upload too large" : "Oplaai te groot", + "No favorites yet" : "Tans geen gunstelinge ", + "Shared with you" : "Met u gedeel", + "Shared with others" : "Gedeel met ander", + "Shared by link" : "Gedeel per skakel", + "Tags" : "Merkers", + "Deleted files" : "Geskrapte lêers", + "Text file" : "Tekslêer", + "New text file.txt" : "Nuwe tekslêer.txt", + "Move" : "Skuif" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/af.json b/apps/files/l10n/af.json new file mode 100644 index 0000000000000..a40153131abe5 --- /dev/null +++ b/apps/files/l10n/af.json @@ -0,0 +1,105 @@ +{ "translations": { + "Storage is temporarily not available" : "Berging is tydelik onbeskikbaar", + "Storage invalid" : "Berging ongeldig", + "Unknown error" : "Onbekende fout", + "All files" : "Alle lêers", + "Recent" : "Onlangs", + "File could not be found" : "Lêer kon nie gevind word nie", + "Home" : "Tuis", + "Close" : "Sluit", + "Favorites" : "Gunstelinge", + "Could not create folder \"{dir}\"" : "Kan nie vouer: \"{dir}\" skep nie", + "Upload cancelled." : "Oplaai gekanselleer.", + "Not enough free space" : "Nie genoeg oop spasie nie", + "Uploading …" : "Laai tans op …", + "…" : "…", + "Actions" : "Aksies", + "Download" : "Laai Af", + "Rename" : "Hernoem", + "Move or copy" : "Kopieer of skuif", + "Copy" : "Kopieer", + "Target folder" : "Teikenvouer", + "Delete" : "Skrap", + "Disconnect storage" : "Ontkoppel berging", + "Unshare" : "Ontdeel", + "Files" : "Lêers", + "Details" : "Details", + "Select" : "Kies", + "Pending" : "Hangend", + "{newName} already exists" : "{nuweNaam} bestaan reeds", + "Name" : "Naam", + "Size" : "Grootte", + "Modified" : "Gewysig", + "_%n folder_::_%n folders_" : ["%n gids","%n gidse"], + "_%n file_::_%n files_" : ["%n lêer","%n lêers"], + "_Uploading %n file_::_Uploading %n files_" : ["Laai tans %n lêer op ","Laai tans %n lêers op"], + "New" : "Nuwe", + "{used} of {quota} used" : "{gebruik} van {kwota} gebruik", + "{used} used" : "{gebruik} gebruik", + "\"{name}\" is an invalid file name." : "\"{naam}\" is nie 'n geldige lêernaam nie.", + "File name cannot be empty." : "Lêernaam kan nie leeg wees nie.", + "\"/\" is not allowed inside a file name." : "\"/\" word nie binne 'n lêernaam toegelaat nie.", + "Your storage is almost full ({usedSpacePercent}%)" : "U stoorspasie is amper vol ({gebruikteSpasiePersent}%)", + "View in folder" : "Vertoon in gids", + "Copied!" : "Gekopieer!", + "Path" : "Roete", + "_%n byte_::_%n bytes_" : ["%n greep","%n grepe"], + "Favorited" : "As gunsteling ", + "Favorite" : "Gunsteling", + "New folder" : "Nuwe gids", + "Upload file" : "Laai lêer op", + "Not favorited" : "Nie as gunsteling", + "Remove from favorites" : "Verwyder uit gunstelinge", + "Add to favorites" : "Voeg by gunstelinge", + "Added to favorites" : "Tot gunstelinge bygevoeg", + "Removed from favorites" : "Van gunstelinge verwyder", + "You added {file} to your favorites" : "U het {lêer} tot u gunstelinge bygevoeg", + "You removed {file} from your favorites" : "U het {lêer} van u gunstelinge verwyder", + "File changes" : "Lêer veranderinge ", + "Created by {user}" : "Geskep deur {gebruiker}", + "Changed by {user}" : "Verander deur {gebruiker}", + "Deleted by {user}" : "Geskrap deur {gebruiker}", + "Restored by {user}" : "Herstel deur {gebruiker}", + "Renamed by {user}" : "Naam verander deur {gebruiker}", + "Moved by {user}" : "Geskuif deur {gebruiker}", + "\"remote user\"" : "“afstandsgebruiker”", + "You created {file}" : "U het {lêer} geskep", + "{user} created {file}" : "{gebruiker} het {lêer} geskep", + "{file} was created in a public folder" : "{lêer} was in 'n publieke gids geskep", + "You changed {file}" : "U het {lêer} verander", + "{user} changed {file}" : "{gebruiker} het {lêer} verander", + "You deleted {file}" : "U het {lêer} geskrap", + "{user} deleted {file}" : "{gebruiker} het {lêer} geskrap", + "You restored {file}" : "U het {lêer} herstel", + "{user} restored {file}" : "{gebruiker} het {lêer} herstel", + "You renamed {oldfile} to {newfile}" : "U het die naam van {oulêer} na {nuwelêer} verander", + "{user} renamed {oldfile} to {newfile}" : "{gebruiker} het die naam van {oulêer} na {nuwelêer} verander", + "You moved {oldfile} to {newfile}" : "U het {oulêer} na {nuwelêer} geskuif", + "{user} moved {oldfile} to {newfile}" : "{gebruiker} het {oulêer} na {nuwelêer} geskuif", + "Unlimited" : "Onbeperkte", + "Upload (max. %s)" : "Oplaai (maks. %s)", + "File handling" : "Lêerhantering", + "Maximum upload size" : "Maksimum oplaai grootte", + "max. possible: " : "maks. moontlik:", + "Save" : "Stoor", + "%s of %s used" : "%s van %s gebruik", + "%s used" : "%s gebruik", + "Settings" : "Instellings", + "Show hidden files" : "Vertoon verborge lêers ", + "WebDAV" : "WebDAV", + "Cancel upload" : "Kanselleer oplaai", + "No files in here" : "Geen lêers hierbinne nie", + "No entries found in this folder" : "Geen inskrwyings in hierdie vouer gevind", + "Select all" : "Merk alles", + "Upload too large" : "Oplaai te groot", + "No favorites yet" : "Tans geen gunstelinge ", + "Shared with you" : "Met u gedeel", + "Shared with others" : "Gedeel met ander", + "Shared by link" : "Gedeel per skakel", + "Tags" : "Merkers", + "Deleted files" : "Geskrapte lêers", + "Text file" : "Tekslêer", + "New text file.txt" : "Nuwe tekslêer.txt", + "Move" : "Skuif" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/apps/files/l10n/ar.js b/apps/files/l10n/ar.js index 14500db3a1664..cd9230a163f59 100644 --- a/apps/files/l10n/ar.js +++ b/apps/files/l10n/ar.js @@ -1,11 +1,11 @@ OC.L10N.register( "files", { - "Storage invalid" : "وحدة تخزين غير صالحه", + "Storage is temporarily not available" : "وحدة التخزين غير متوفرة", + "Storage invalid" : "وحدة تخزين غير صالحة", "Unknown error" : "خطأ غير معروف", - "Files" : "الملفات", "All files" : "كل الملفات", - "Recent" : "الأخيرة", + "Recent" : "الحديثة", "File could not be found" : "الملف غير موجود", "Home" : "الرئيسية", "Close" : "إغلاق", @@ -13,33 +13,37 @@ OC.L10N.register( "Could not create folder \"{dir}\"" : "لا يمكن إنشاء المجلد \"{dir}\"", "Upload cancelled." : "تم إلغاء عملية رفع الملفات.", "Unable to upload {filename} as it is a directory or has 0 bytes" : "تعذر رفع الملف {filename} إما لأنه مجلد أو لان حجم الملف 0 بايت", - "Not enough free space, you are uploading {size1} but only {size2} is left" : "لا يوجد مساحة تخزين كافية، انت تقوم برفع {size1} ولكن المساحه المتوفره هي {size2}.", - "Uploading..." : "جاري الرفع...", - "..." : "...", - "{hours}:{minutes}:{seconds} hour{plural_s} left" : "{hours}:{minutes}:{seconds} ساعة متبقية", - "{hours}:{minutes}h" : "{hours}:{minutes}س", - "{minutes}:{seconds} minute{plural_s} left" : "{minutes}:{seconds} دقيقة متبقية", - "{minutes}:{seconds}m" : "{minutes}:{seconds}د", - "{seconds} second{plural_s} left" : "{seconds} ثواني متبقية", - "{seconds}s" : "{seconds}ث", - "Any moment now..." : "في أي لحظة الان...", - "Soon..." : "قريبا...", + "Not enough free space, you are uploading {size1} but only {size2} is left" : "لا يوجد مساحة تخزين كافية، إنك بصدد رفع {size1} ولكن المساحة المتبقية المتوفرة تبلُغ {size2}", + "Target folder \"{dir}\" does not exist any more" : "المجلد المطلوب \"{dir}\" غير موجود بعد الان", + "Not enough free space" : "لا يوجد مساحة تخزينية كافية", + "Uploading …" : "جاري الرفع...", + "…" : "...", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} من {totalSize} ({bitrate})", - "File upload is in progress. Leaving the page now will cancel the upload." : "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات.", - "Actions" : "* تطبيقات.\n* أنشطة.", + "Target folder does not exist any more" : "المجلد المراد غير موجود بعد الان", + "Error when assembling chunks, status code {status}" : "خطأ عند تجميع القطع، حالة الخطأ {status}", + "Actions" : "الإجراءات", "Download" : "تنزيل", "Rename" : "إعادة التسمية", + "Move or copy" : "إنقل أو انسخ", + "Copy" : "نسخ", + "Target folder" : "المجلد الهدف", "Delete" : "حذف ", "Disconnect storage" : "قطع اتصال التخزين", "Unshare" : "إلغاء المشاركة", - "Details" : "تفاصيل", - "Select" : "اختار", + "Could not load info for file \"{file}\"" : "لم يستطع تحميل معلومات الملف \"{file}\"", + "Files" : "الملفات", + "Details" : "التفاصيل", + "Select" : "إختر", "Pending" : "قيد الانتظار", "Unable to determine date" : "تعذر تحديد التاريخ", "This operation is forbidden" : "هذة العملية ممنوعة ", "This directory is unavailable, please check the logs or contact the administrator" : "هذا المجلد غير متوفر, الرجاء مراجعة سجل الأخطاء أو الاتصال بمدير النظام", "Could not move \"{file}\", target exists" : "لا يمكن نقل \"{file}\", الملف موجود بالفعل هناك", "Could not move \"{file}\"" : "لا يمكن نقل \"{file}\"", + "Could not copy \"{file}\", target exists" : "لم يستطع نسخ \"{file}\"، المستهدف موجود", + "Could not copy \"{file}\"" : "لم يستطع نسخ \"{file}\"", + "Copied {origin} inside {destination}" : "منسوخ {origin} داخل {destination}", + "Copied {origin} and {nbfiles} other files inside {destination}" : "منسوخ {origin} و {nbfiles} ملفات اخرى داخل {destination}", "{newName} already exists" : "{newname} موجود مسبقاً", "Could not rename \"{fileName}\", it does not exist any more" : "لا يمكن اعادة تسمية \"{fileName}\", لانه لم يعد موجود", "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "الاسم \"{targetName}\" مستخدم من قبل في المجلد \"{dir}\". الرجاء اختيار اسم اخر.", @@ -48,6 +52,7 @@ OC.L10N.register( "Could not create file \"{file}\" because it already exists" : "لا يمكن إنشاء الملف \"{file}\" فهو موجود بالفعل", "Could not create folder \"{dir}\" because it already exists" : "لا يمكن إنشاء المجلد \"{dir}\" فهو موجود بالفعل", "Error deleting file \"{fileName}\"." : "خطأ أثناء حذف الملف \"{fileName}\".", + "No search results in other folders for {tag}{filter}{endtag}" : "لا نتائج بحث في مجلدات اخرى ل {tag}{filter}{endtag}", "Name" : "اسم", "Size" : "حجم", "Modified" : "معدل", @@ -58,74 +63,54 @@ OC.L10N.register( "You don’t have permission to upload or create files here" : "لا تملك الصلاحية لرفع او انشاء ملف هنا ", "_Uploading %n file_::_Uploading %n files_" : ["لا يوجد ملفات %n لتحميلها","تحميل 1 ملف %n","تحميل 2 ملف %n","يتم تحميل عدد قليل من ملفات %n","يتم تحميل عدد كبير من ملفات %n","يتم تحميل ملفات %n"], "New" : "جديد", + "{used} of {quota} used" : "{used} من {quota} مستخدم", + "{used} used" : "{used} مستخدم", "\"{name}\" is an invalid file name." : "\"{name}\" اسم ملف غير صالح للاستخدام .", "File name cannot be empty." : "اسم الملف لا يجوز أن يكون فارغا", + "\"/\" is not allowed inside a file name." : "\"/\" غير مسموح في تسمية الملف", + "\"{name}\" is not an allowed filetype" : "\"{name}\" أنه نوع ملف غير مسموح", "Storage of {owner} is full, files can not be updated or synced anymore!" : "مساحة تخزين {owner} ممتلئة، لا يمكن تحديث الملفات او مزامنتها بعد الان !", "Your storage is full, files can not be updated or synced anymore!" : "مساحتك التخزينية ممتلئة, لا يمكن تحديث ملفاتك أو مزامنتها بعد الآن !", "Storage of {owner} is almost full ({usedSpacePercent}%)" : "المساحة التخزينية لـ {owner} ممتلئة تقريبا ({usedSpacePercent}%)", "Your storage is almost full ({usedSpacePercent}%)" : "مساحتك التخزينية امتلأت تقريبا ", + "View in folder" : "اعرض في المجلد", + "Copied!" : "نسخت!", + "Copy direct link (only works for users who have access to this file/folder)" : "نسخ الرابط المباشر (يعمل فقط لـ المستخدمين الذين يمكنهم الولوج الى هذا الملف/الفايل)", "Path" : "المسار", + "_%n byte_::_%n bytes_" : ["بايت","بايت","بايت","بايت","بايت","%nبايت"], "Favorited" : "المفضلة", "Favorite" : "المفضلة", - "Folder" : "مجلد", "New folder" : "مجلد جديد", - "Upload" : "رفع", + "Upload file" : "رفع ملف", + "Remove from favorites" : "إزالته مِن المفضلة", + "Add to favorites" : "إضافة إلى المفضلة", "An error occurred while trying to update the tags" : "حدث خطأ اثناء محاولة تحديث tags", + "Added to favorites" : "تمت إضافته إلى المفضلة", + "Removed from favorites" : "تمت إزالته مِن المفضلة", "A new file or folder has been created" : "تم إنشاء ملف جديد أو مجلد ", - "A file or folder has been deleted" : "تم حذف ملف أو مجلد", - "A file or folder has been restored" : "تم استعادة ملف أو مجلد", - "You created %1$s" : "لقد أنشأت %1$s", - "%2$s created %1$s" : "%2$s أنشأ %1$s", - "%1$s was created in a public folder" : "تم إنشاء %1$s في مجلد عام", - "You changed %1$s" : "لقد غيرت %1$s", - "%2$s changed %1$s" : "%2$s غير %1$s", - "You deleted %1$s" : "حذفت %1$s", - "%2$s deleted %1$s" : "%2$s حذف %1$s", - "You restored %1$s" : "لقد قمت باستعادة %1$s", - "%2$s restored %1$s" : "%2$s مستعاد %1$s", + "Unlimited" : "غير محدود", "Upload (max. %s)" : "الرفع ( حد اقصى. %s ) ", "File handling" : "التعامل مع الملف", "Maximum upload size" : "الحد الأقصى لحجم الملفات التي يمكن رفعها", "max. possible: " : "الحد الأقصى المسموح به", "Save" : "حفظ", "With PHP-FPM it might take 5 minutes for changes to be applied." : "باستخدام PHP-FPM قد يستغرق 5 دقائق لتطبيق التغيرات.", - "Settings" : "إعدادات", + "%s used" : "%s مُستخدَم", + "Settings" : "الإعدادات", "Show hidden files" : "عرض الملفات المخفية", "WebDAV" : "WebDAV", - "Use this address to access your Files via WebDAV" : "استخدم هذا الرابط للوصول الى ملفاتك عبر WebDAV", + "Cancel upload" : "إلغاء الرفع", "No files in here" : "لا يوجد ملفات هنا ", "Upload some content or sync with your devices!" : "ارفع بعض المحتوي او زامن مع اجهزتك !", "No entries found in this folder" : "لا يوجد مدخلات في هذا المجلد ", "Select all" : "تحديد الكل ", "Upload too large" : "حجم الترفيع أعلى من المسموح", "The files you are trying to upload exceed the maximum size for file uploads on this server." : "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم.", - "No favorites" : "لا يوجد مفضلات ", "Files and folders you mark as favorite will show up here" : "الملفات والمجلدات التي حددتها كامفضلة سوف تظهر هنا ", + "Tags" : "الوسوم", + "Deleted files" : "الملفات المحذوفة", "Text file" : "ملف نصي", "New text file.txt" : "ملف نصي جديد fille.txt", - "Storage not available" : "وحدة التخزين غير متوفرة", - "Unable to set upload directory." : "غير قادر على تحميل المجلد", - "Invalid Token" : "علامة غير صالحة", - "No file was uploaded. Unknown error" : "لم يتم رفع أي ملف, خطأ غير معروف", - "There is no error, the file uploaded with success" : "تم رفع الملفات بنجاح", - "The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "حجم الملف المرفوع تجاوز قيمة upload_max_filesize الموجودة في ملف php.ini ", - "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML.", - "The uploaded file was only partially uploaded" : "تم رفع جزء من الملف فقط", - "No file was uploaded" : "لم يتم رفع الملف", - "Missing a temporary folder" : "المجلد المؤقت غير موجود", - "Failed to write to disk" : "خطأ في الكتابة على القرص الصلب", - "Not enough storage available" : "لا يوجد مساحة تخزينية كافية", - "The target folder has been moved or deleted." : "المجلد المطلوب قد تم نقله او حذفه ", - "Upload failed. Could not find uploaded file" : "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله.", - "Upload failed. Could not get file info." : "فشلت عملية الرفع. تعذر الحصول على معلومات الملف.", - "Invalid directory." : "مسار غير صحيح.", - "Total file size {size1} exceeds upload limit {size2}" : "حجم الملف الكلي {size1} تجاوز الحد المسموح للرفع {size2}", - "Error uploading file \"{fileName}\": {message}" : "خطأ أثناء رفع الملف \"{fileName}\": {message}", - "Could not get result from server." : "تعذر الحصول على نتيجة من الخادم", - "No entries in this folder match '{filter}'" : "لا يوجد مدخلات في هذا المجلد تتوافق مع '{filter}'", - "{newname} already exists" : "{newname} موجود مسبقاً", - "A file or folder has been changed" : "تم تغيير ملف أو مجلد", - "Use this address to access your Files via WebDAV" : "استخدم هذا الرابط للوصول الى ملفاتك عبر WebDAV", - "Cancel upload" : "إلغاء الرفع" + "Move" : "نقل" }, "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/apps/files/l10n/ar.json b/apps/files/l10n/ar.json index 4b9624432e878..918ba10ec4204 100644 --- a/apps/files/l10n/ar.json +++ b/apps/files/l10n/ar.json @@ -1,9 +1,9 @@ { "translations": { - "Storage invalid" : "وحدة تخزين غير صالحه", + "Storage is temporarily not available" : "وحدة التخزين غير متوفرة", + "Storage invalid" : "وحدة تخزين غير صالحة", "Unknown error" : "خطأ غير معروف", - "Files" : "الملفات", "All files" : "كل الملفات", - "Recent" : "الأخيرة", + "Recent" : "الحديثة", "File could not be found" : "الملف غير موجود", "Home" : "الرئيسية", "Close" : "إغلاق", @@ -11,33 +11,37 @@ "Could not create folder \"{dir}\"" : "لا يمكن إنشاء المجلد \"{dir}\"", "Upload cancelled." : "تم إلغاء عملية رفع الملفات.", "Unable to upload {filename} as it is a directory or has 0 bytes" : "تعذر رفع الملف {filename} إما لأنه مجلد أو لان حجم الملف 0 بايت", - "Not enough free space, you are uploading {size1} but only {size2} is left" : "لا يوجد مساحة تخزين كافية، انت تقوم برفع {size1} ولكن المساحه المتوفره هي {size2}.", - "Uploading..." : "جاري الرفع...", - "..." : "...", - "{hours}:{minutes}:{seconds} hour{plural_s} left" : "{hours}:{minutes}:{seconds} ساعة متبقية", - "{hours}:{minutes}h" : "{hours}:{minutes}س", - "{minutes}:{seconds} minute{plural_s} left" : "{minutes}:{seconds} دقيقة متبقية", - "{minutes}:{seconds}m" : "{minutes}:{seconds}د", - "{seconds} second{plural_s} left" : "{seconds} ثواني متبقية", - "{seconds}s" : "{seconds}ث", - "Any moment now..." : "في أي لحظة الان...", - "Soon..." : "قريبا...", + "Not enough free space, you are uploading {size1} but only {size2} is left" : "لا يوجد مساحة تخزين كافية، إنك بصدد رفع {size1} ولكن المساحة المتبقية المتوفرة تبلُغ {size2}", + "Target folder \"{dir}\" does not exist any more" : "المجلد المطلوب \"{dir}\" غير موجود بعد الان", + "Not enough free space" : "لا يوجد مساحة تخزينية كافية", + "Uploading …" : "جاري الرفع...", + "…" : "...", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} من {totalSize} ({bitrate})", - "File upload is in progress. Leaving the page now will cancel the upload." : "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات.", - "Actions" : "* تطبيقات.\n* أنشطة.", + "Target folder does not exist any more" : "المجلد المراد غير موجود بعد الان", + "Error when assembling chunks, status code {status}" : "خطأ عند تجميع القطع، حالة الخطأ {status}", + "Actions" : "الإجراءات", "Download" : "تنزيل", "Rename" : "إعادة التسمية", + "Move or copy" : "إنقل أو انسخ", + "Copy" : "نسخ", + "Target folder" : "المجلد الهدف", "Delete" : "حذف ", "Disconnect storage" : "قطع اتصال التخزين", "Unshare" : "إلغاء المشاركة", - "Details" : "تفاصيل", - "Select" : "اختار", + "Could not load info for file \"{file}\"" : "لم يستطع تحميل معلومات الملف \"{file}\"", + "Files" : "الملفات", + "Details" : "التفاصيل", + "Select" : "إختر", "Pending" : "قيد الانتظار", "Unable to determine date" : "تعذر تحديد التاريخ", "This operation is forbidden" : "هذة العملية ممنوعة ", "This directory is unavailable, please check the logs or contact the administrator" : "هذا المجلد غير متوفر, الرجاء مراجعة سجل الأخطاء أو الاتصال بمدير النظام", "Could not move \"{file}\", target exists" : "لا يمكن نقل \"{file}\", الملف موجود بالفعل هناك", "Could not move \"{file}\"" : "لا يمكن نقل \"{file}\"", + "Could not copy \"{file}\", target exists" : "لم يستطع نسخ \"{file}\"، المستهدف موجود", + "Could not copy \"{file}\"" : "لم يستطع نسخ \"{file}\"", + "Copied {origin} inside {destination}" : "منسوخ {origin} داخل {destination}", + "Copied {origin} and {nbfiles} other files inside {destination}" : "منسوخ {origin} و {nbfiles} ملفات اخرى داخل {destination}", "{newName} already exists" : "{newname} موجود مسبقاً", "Could not rename \"{fileName}\", it does not exist any more" : "لا يمكن اعادة تسمية \"{fileName}\", لانه لم يعد موجود", "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "الاسم \"{targetName}\" مستخدم من قبل في المجلد \"{dir}\". الرجاء اختيار اسم اخر.", @@ -46,6 +50,7 @@ "Could not create file \"{file}\" because it already exists" : "لا يمكن إنشاء الملف \"{file}\" فهو موجود بالفعل", "Could not create folder \"{dir}\" because it already exists" : "لا يمكن إنشاء المجلد \"{dir}\" فهو موجود بالفعل", "Error deleting file \"{fileName}\"." : "خطأ أثناء حذف الملف \"{fileName}\".", + "No search results in other folders for {tag}{filter}{endtag}" : "لا نتائج بحث في مجلدات اخرى ل {tag}{filter}{endtag}", "Name" : "اسم", "Size" : "حجم", "Modified" : "معدل", @@ -56,74 +61,54 @@ "You don’t have permission to upload or create files here" : "لا تملك الصلاحية لرفع او انشاء ملف هنا ", "_Uploading %n file_::_Uploading %n files_" : ["لا يوجد ملفات %n لتحميلها","تحميل 1 ملف %n","تحميل 2 ملف %n","يتم تحميل عدد قليل من ملفات %n","يتم تحميل عدد كبير من ملفات %n","يتم تحميل ملفات %n"], "New" : "جديد", + "{used} of {quota} used" : "{used} من {quota} مستخدم", + "{used} used" : "{used} مستخدم", "\"{name}\" is an invalid file name." : "\"{name}\" اسم ملف غير صالح للاستخدام .", "File name cannot be empty." : "اسم الملف لا يجوز أن يكون فارغا", + "\"/\" is not allowed inside a file name." : "\"/\" غير مسموح في تسمية الملف", + "\"{name}\" is not an allowed filetype" : "\"{name}\" أنه نوع ملف غير مسموح", "Storage of {owner} is full, files can not be updated or synced anymore!" : "مساحة تخزين {owner} ممتلئة، لا يمكن تحديث الملفات او مزامنتها بعد الان !", "Your storage is full, files can not be updated or synced anymore!" : "مساحتك التخزينية ممتلئة, لا يمكن تحديث ملفاتك أو مزامنتها بعد الآن !", "Storage of {owner} is almost full ({usedSpacePercent}%)" : "المساحة التخزينية لـ {owner} ممتلئة تقريبا ({usedSpacePercent}%)", "Your storage is almost full ({usedSpacePercent}%)" : "مساحتك التخزينية امتلأت تقريبا ", + "View in folder" : "اعرض في المجلد", + "Copied!" : "نسخت!", + "Copy direct link (only works for users who have access to this file/folder)" : "نسخ الرابط المباشر (يعمل فقط لـ المستخدمين الذين يمكنهم الولوج الى هذا الملف/الفايل)", "Path" : "المسار", + "_%n byte_::_%n bytes_" : ["بايت","بايت","بايت","بايت","بايت","%nبايت"], "Favorited" : "المفضلة", "Favorite" : "المفضلة", - "Folder" : "مجلد", "New folder" : "مجلد جديد", - "Upload" : "رفع", + "Upload file" : "رفع ملف", + "Remove from favorites" : "إزالته مِن المفضلة", + "Add to favorites" : "إضافة إلى المفضلة", "An error occurred while trying to update the tags" : "حدث خطأ اثناء محاولة تحديث tags", + "Added to favorites" : "تمت إضافته إلى المفضلة", + "Removed from favorites" : "تمت إزالته مِن المفضلة", "A new file or folder has been created" : "تم إنشاء ملف جديد أو مجلد ", - "A file or folder has been deleted" : "تم حذف ملف أو مجلد", - "A file or folder has been restored" : "تم استعادة ملف أو مجلد", - "You created %1$s" : "لقد أنشأت %1$s", - "%2$s created %1$s" : "%2$s أنشأ %1$s", - "%1$s was created in a public folder" : "تم إنشاء %1$s في مجلد عام", - "You changed %1$s" : "لقد غيرت %1$s", - "%2$s changed %1$s" : "%2$s غير %1$s", - "You deleted %1$s" : "حذفت %1$s", - "%2$s deleted %1$s" : "%2$s حذف %1$s", - "You restored %1$s" : "لقد قمت باستعادة %1$s", - "%2$s restored %1$s" : "%2$s مستعاد %1$s", + "Unlimited" : "غير محدود", "Upload (max. %s)" : "الرفع ( حد اقصى. %s ) ", "File handling" : "التعامل مع الملف", "Maximum upload size" : "الحد الأقصى لحجم الملفات التي يمكن رفعها", "max. possible: " : "الحد الأقصى المسموح به", "Save" : "حفظ", "With PHP-FPM it might take 5 minutes for changes to be applied." : "باستخدام PHP-FPM قد يستغرق 5 دقائق لتطبيق التغيرات.", - "Settings" : "إعدادات", + "%s used" : "%s مُستخدَم", + "Settings" : "الإعدادات", "Show hidden files" : "عرض الملفات المخفية", "WebDAV" : "WebDAV", - "Use this address to access your Files via WebDAV" : "استخدم هذا الرابط للوصول الى ملفاتك عبر WebDAV", + "Cancel upload" : "إلغاء الرفع", "No files in here" : "لا يوجد ملفات هنا ", "Upload some content or sync with your devices!" : "ارفع بعض المحتوي او زامن مع اجهزتك !", "No entries found in this folder" : "لا يوجد مدخلات في هذا المجلد ", "Select all" : "تحديد الكل ", "Upload too large" : "حجم الترفيع أعلى من المسموح", "The files you are trying to upload exceed the maximum size for file uploads on this server." : "حجم الملفات التي تريد ترفيعها أعلى من المسموح على الخادم.", - "No favorites" : "لا يوجد مفضلات ", "Files and folders you mark as favorite will show up here" : "الملفات والمجلدات التي حددتها كامفضلة سوف تظهر هنا ", + "Tags" : "الوسوم", + "Deleted files" : "الملفات المحذوفة", "Text file" : "ملف نصي", "New text file.txt" : "ملف نصي جديد fille.txt", - "Storage not available" : "وحدة التخزين غير متوفرة", - "Unable to set upload directory." : "غير قادر على تحميل المجلد", - "Invalid Token" : "علامة غير صالحة", - "No file was uploaded. Unknown error" : "لم يتم رفع أي ملف, خطأ غير معروف", - "There is no error, the file uploaded with success" : "تم رفع الملفات بنجاح", - "The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "حجم الملف المرفوع تجاوز قيمة upload_max_filesize الموجودة في ملف php.ini ", - "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML.", - "The uploaded file was only partially uploaded" : "تم رفع جزء من الملف فقط", - "No file was uploaded" : "لم يتم رفع الملف", - "Missing a temporary folder" : "المجلد المؤقت غير موجود", - "Failed to write to disk" : "خطأ في الكتابة على القرص الصلب", - "Not enough storage available" : "لا يوجد مساحة تخزينية كافية", - "The target folder has been moved or deleted." : "المجلد المطلوب قد تم نقله او حذفه ", - "Upload failed. Could not find uploaded file" : "*فشلت علمية الرفع. تعذر إيجاد الملف الذي تم رفعه.\n*فشلت علمية التحميل. تعذر إيجاد الملف الذي تم تحميله.", - "Upload failed. Could not get file info." : "فشلت عملية الرفع. تعذر الحصول على معلومات الملف.", - "Invalid directory." : "مسار غير صحيح.", - "Total file size {size1} exceeds upload limit {size2}" : "حجم الملف الكلي {size1} تجاوز الحد المسموح للرفع {size2}", - "Error uploading file \"{fileName}\": {message}" : "خطأ أثناء رفع الملف \"{fileName}\": {message}", - "Could not get result from server." : "تعذر الحصول على نتيجة من الخادم", - "No entries in this folder match '{filter}'" : "لا يوجد مدخلات في هذا المجلد تتوافق مع '{filter}'", - "{newname} already exists" : "{newname} موجود مسبقاً", - "A file or folder has been changed" : "تم تغيير ملف أو مجلد", - "Use this address to access your Files via WebDAV" : "استخدم هذا الرابط للوصول الى ملفاتك عبر WebDAV", - "Cancel upload" : "إلغاء الرفع" + "Move" : "نقل" },"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/apps/files/l10n/ast.js b/apps/files/l10n/ast.js index 5b0652d839dcb..90c8c52002c2a 100644 --- a/apps/files/l10n/ast.js +++ b/apps/files/l10n/ast.js @@ -15,13 +15,11 @@ OC.L10N.register( "Unable to upload {filename} as it is a directory or has 0 bytes" : "Nun pudo xubise {filename}, paez que ye un directoriu o tien 0 bytes", "Not enough free space, you are uploading {size1} but only {size2} is left" : "Nun hai abondu espaciu llibre, tas xubiendo {size1} pero namái falta {size2}", "Not enough free space" : "Nun hai espaciu llibre abondo", - "Uploading …" : "Xubiendo...", "…" : "…", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} de {totalSize} ({bitrate})", "Actions" : "Aiciones", "Download" : "Descargar", "Rename" : "Renomar", - "Move" : "Mover", "Target folder" : "Carpeta oxetivu", "Delete" : "Desaniciar", "Disconnect storage" : "Desconeutar almacenamientu", @@ -92,7 +90,6 @@ OC.L10N.register( "Settings" : "Axustes", "Show hidden files" : "Amosar ficheros ocultos", "WebDAV" : "WebDAV", - "Use this address to access your Files via WebDAV" : "Usa esta direición p'acceder a los dos Ficheros via WebDAV", "No files in here" : "Nun hai nengún ficheru equí", "Upload some content or sync with your devices!" : "¡Xuba algún conteníu o sincroniza colos sos preseos!", "No entries found in this folder" : "Nenguna entrada en esta carpeta", @@ -104,18 +101,6 @@ OC.L10N.register( "Tags" : "Etiquetes", "Deleted files" : "Ficheros desaniciaos", "Text file" : "Ficheru de testu", - "New text file.txt" : "Nuevu testu ficheru.txt", - "Uploading..." : "Xubiendo...", - "..." : "...", - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momentu...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La xuba del ficheru ta en progresu. Si dexes agora la páxina, va encaboxase la xuba.", - "Copy local link" : "Copiar enllaz llocal", - "Folder" : "Carpeta", - "Upload" : "Xubir", - "No favorites" : "Nengún favoritu" + "New text file.txt" : "Nuevu testu ficheru.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/ast.json b/apps/files/l10n/ast.json index e53a1bdc0e32c..19b318518597f 100644 --- a/apps/files/l10n/ast.json +++ b/apps/files/l10n/ast.json @@ -13,13 +13,11 @@ "Unable to upload {filename} as it is a directory or has 0 bytes" : "Nun pudo xubise {filename}, paez que ye un directoriu o tien 0 bytes", "Not enough free space, you are uploading {size1} but only {size2} is left" : "Nun hai abondu espaciu llibre, tas xubiendo {size1} pero namái falta {size2}", "Not enough free space" : "Nun hai espaciu llibre abondo", - "Uploading …" : "Xubiendo...", "…" : "…", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} de {totalSize} ({bitrate})", "Actions" : "Aiciones", "Download" : "Descargar", "Rename" : "Renomar", - "Move" : "Mover", "Target folder" : "Carpeta oxetivu", "Delete" : "Desaniciar", "Disconnect storage" : "Desconeutar almacenamientu", @@ -90,7 +88,6 @@ "Settings" : "Axustes", "Show hidden files" : "Amosar ficheros ocultos", "WebDAV" : "WebDAV", - "Use this address to access your Files via WebDAV" : "Usa esta direición p'acceder a los dos Ficheros via WebDAV", "No files in here" : "Nun hai nengún ficheru equí", "Upload some content or sync with your devices!" : "¡Xuba algún conteníu o sincroniza colos sos preseos!", "No entries found in this folder" : "Nenguna entrada en esta carpeta", @@ -102,18 +99,6 @@ "Tags" : "Etiquetes", "Deleted files" : "Ficheros desaniciaos", "Text file" : "Ficheru de testu", - "New text file.txt" : "Nuevu testu ficheru.txt", - "Uploading..." : "Xubiendo...", - "..." : "...", - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momentu...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La xuba del ficheru ta en progresu. Si dexes agora la páxina, va encaboxase la xuba.", - "Copy local link" : "Copiar enllaz llocal", - "Folder" : "Carpeta", - "Upload" : "Xubir", - "No favorites" : "Nengún favoritu" + "New text file.txt" : "Nuevu testu ficheru.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/bg.js b/apps/files/l10n/bg.js index e8c4e2c3af4af..9ffe7805a314b 100644 --- a/apps/files/l10n/bg.js +++ b/apps/files/l10n/bg.js @@ -116,22 +116,6 @@ OC.L10N.register( "Tags" : "Етикети", "Deleted files" : "Изтрити файлове", "Text file" : "Текстов файл", - "New text file.txt" : "Нов текст file.txt", - "Uploading..." : "Качване...", - "..." : "...", - "{hours}:{minutes}h" : "{hours}:{minutes}ч", - "{minutes}:{seconds}m" : "{minutes}:{seconds}м", - "{seconds}s" : "{seconds}и", - "Any moment now..." : "Всеки момент...", - "Soon..." : "Скоро...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Извършва се качване на файлове. Затварянето на тази страница ще прекъсне качването.", - "Move" : "Преместване", - "Copy local link" : "Копиране на локална връзка", - "Folder" : "Папка", - "Upload" : "Качване", - "A new file or folder has been deleted" : "Нов файл или папка беше изтрит/а", - "A new file or folder has been restored" : "Нов файл или папка беше възстановен/а", - "Use this address to access your Files via WebDAV" : "Ползвайте горния адрес за да достъпите файловете чрез WebDAV", - "No favorites" : "Няма любими" + "New text file.txt" : "Нов текст file.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/bg.json b/apps/files/l10n/bg.json index 4b579eb66ed8b..e37bb29c90772 100644 --- a/apps/files/l10n/bg.json +++ b/apps/files/l10n/bg.json @@ -114,22 +114,6 @@ "Tags" : "Етикети", "Deleted files" : "Изтрити файлове", "Text file" : "Текстов файл", - "New text file.txt" : "Нов текст file.txt", - "Uploading..." : "Качване...", - "..." : "...", - "{hours}:{minutes}h" : "{hours}:{minutes}ч", - "{minutes}:{seconds}m" : "{minutes}:{seconds}м", - "{seconds}s" : "{seconds}и", - "Any moment now..." : "Всеки момент...", - "Soon..." : "Скоро...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Извършва се качване на файлове. Затварянето на тази страница ще прекъсне качването.", - "Move" : "Преместване", - "Copy local link" : "Копиране на локална връзка", - "Folder" : "Папка", - "Upload" : "Качване", - "A new file or folder has been deleted" : "Нов файл или папка беше изтрит/а", - "A new file or folder has been restored" : "Нов файл или папка беше възстановен/а", - "Use this address to access your Files via WebDAV" : "Ползвайте горния адрес за да достъпите файловете чрез WebDAV", - "No favorites" : "Няма любими" + "New text file.txt" : "Нов текст file.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/ca.js b/apps/files/l10n/ca.js index ade98ac0928a2..c4c56d4f29d87 100644 --- a/apps/files/l10n/ca.js +++ b/apps/files/l10n/ca.js @@ -16,8 +16,11 @@ OC.L10N.register( "Not enough free space, you are uploading {size1} but only {size2} is left" : "No hi ha prou espai lliure, està carregant {size1} però només pot {size2}", "Target folder \"{dir}\" does not exist any more" : "La carpeta objectiu \"{dir}\" ja no existeix", "Not enough free space" : "Espai lliure insuficient", + "Uploading …" : "Carregant...", "…" : ".....", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} de {totalSize} ({bitrate})", + "Target folder does not exist any more" : "La carpeta de destí no existeix", + "Error when assembling chunks, status code {status}" : "S'ha produït un error mentre es recopilaven els fragments, el codi d'estat és {status}", "Actions" : "Accions", "Download" : "Baixa", "Rename" : "Reanomena", @@ -59,8 +62,11 @@ OC.L10N.register( "You don’t have permission to upload or create files here" : "No teniu permisos per a pujar o crear els fitxers aquí", "_Uploading %n file_::_Uploading %n files_" : ["Pujant %n fitxer","Pujant %n fitxers"], "New" : "Nou", + "{used} of {quota} used" : "{used} de {quota} utilitzat", + "{used} used" : "{used} utilitzat", "\"{name}\" is an invalid file name." : "\"{name}\" no es un fitxer vàlid.", "File name cannot be empty." : "El nom del fitxer no pot ser buit.", + "\"/\" is not allowed inside a file name." : "El caràcter \"/\" no es pot utilitzar en el nom de l'arxiu.", "\"{name}\" is not an allowed filetype" : "\"{name}\" no és un tipus de fitxer permès", "Storage of {owner} is full, files can not be updated or synced anymore!" : "L'emmagatzematge de {owner} està ple, els arxius no es poden actualitzar o sincronitzar més!", "Your storage is full, files can not be updated or synced anymore!" : "El vostre espai d'emmagatzemament és ple, els fitxers ja no es poden actualitzar o sincronitzar!", @@ -76,6 +82,9 @@ OC.L10N.register( "Favorite" : "Preferits", "New folder" : "Carpeta nova", "Upload file" : "Puja fitxer", + "Not favorited" : "No està inclòs en els favorits", + "Remove from favorites" : "Eliminar dels favorits", + "Add to favorites" : "Afegir als favorits", "An error occurred while trying to update the tags" : "S'ha produït un error en tractar d'actualitzar les etiquetes", "Added to favorites" : "Afegit a favorits", "Removed from favorites" : "Esborra de preferits", @@ -121,6 +130,8 @@ OC.L10N.register( "Settings" : "Arranjament", "Show hidden files" : "Mostra els fitxers ocults", "WebDAV" : "WebDAV", + "Use this address to access your Files via WebDAV" : "Utilitza aquesta adreça per accedir als teus arxius mitjançant WebDAV", + "Cancel upload" : "Cancel·la la pujada", "No files in here" : "No hi ha arxius", "Upload some content or sync with your devices!" : "Pugi continguts o sincronitzi els seus dispositius.", "No entries found in this folder" : "No hi ha entrades en aquesta carpeta", @@ -136,24 +147,9 @@ OC.L10N.register( "Deleted files" : "Fitxers esborrats", "Text file" : "Fitxer de text", "New text file.txt" : "Nou fitxer de text.txt", - "Uploading..." : "Pujant...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["Falta {hours}:{minutes}:{seconds} hora","Falten {hours}:{minutes}:{seconds} hores"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["Falten {minutes}:{seconds} minuts","Falta {minutes}:{seconds} minut"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["Falta {seconds} segon","Falten {seconds} segons"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En qualsevol moment...", - "Soon..." : "Aviat...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.", - "Move" : "Mou", - "Copy local link" : "C", - "Folder" : "Carpeta", - "Upload" : "Puja", + "Move" : "Moure", "A new file or folder has been deleted" : "S'ha eliminat un nou fitxer o carpeta", "A new file or folder has been restored" : "S'ha restaurat un nou fitxer o carpeta", - "Use this address to access your Files via WebDAV" : "Utilitzeu aquesta adreça per accedir als vostres fitxers a través de WebDAV", - "No favorites" : "No hi ha favorits" + "Use this address to access your Files via WebDAV" : "Utilitzeu aquesta adreça per accedir als vostres fitxers a través de WebDAV" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/ca.json b/apps/files/l10n/ca.json index 786bd652258c3..eae669d0b9bc2 100644 --- a/apps/files/l10n/ca.json +++ b/apps/files/l10n/ca.json @@ -14,8 +14,11 @@ "Not enough free space, you are uploading {size1} but only {size2} is left" : "No hi ha prou espai lliure, està carregant {size1} però només pot {size2}", "Target folder \"{dir}\" does not exist any more" : "La carpeta objectiu \"{dir}\" ja no existeix", "Not enough free space" : "Espai lliure insuficient", + "Uploading …" : "Carregant...", "…" : ".....", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} de {totalSize} ({bitrate})", + "Target folder does not exist any more" : "La carpeta de destí no existeix", + "Error when assembling chunks, status code {status}" : "S'ha produït un error mentre es recopilaven els fragments, el codi d'estat és {status}", "Actions" : "Accions", "Download" : "Baixa", "Rename" : "Reanomena", @@ -57,8 +60,11 @@ "You don’t have permission to upload or create files here" : "No teniu permisos per a pujar o crear els fitxers aquí", "_Uploading %n file_::_Uploading %n files_" : ["Pujant %n fitxer","Pujant %n fitxers"], "New" : "Nou", + "{used} of {quota} used" : "{used} de {quota} utilitzat", + "{used} used" : "{used} utilitzat", "\"{name}\" is an invalid file name." : "\"{name}\" no es un fitxer vàlid.", "File name cannot be empty." : "El nom del fitxer no pot ser buit.", + "\"/\" is not allowed inside a file name." : "El caràcter \"/\" no es pot utilitzar en el nom de l'arxiu.", "\"{name}\" is not an allowed filetype" : "\"{name}\" no és un tipus de fitxer permès", "Storage of {owner} is full, files can not be updated or synced anymore!" : "L'emmagatzematge de {owner} està ple, els arxius no es poden actualitzar o sincronitzar més!", "Your storage is full, files can not be updated or synced anymore!" : "El vostre espai d'emmagatzemament és ple, els fitxers ja no es poden actualitzar o sincronitzar!", @@ -74,6 +80,9 @@ "Favorite" : "Preferits", "New folder" : "Carpeta nova", "Upload file" : "Puja fitxer", + "Not favorited" : "No està inclòs en els favorits", + "Remove from favorites" : "Eliminar dels favorits", + "Add to favorites" : "Afegir als favorits", "An error occurred while trying to update the tags" : "S'ha produït un error en tractar d'actualitzar les etiquetes", "Added to favorites" : "Afegit a favorits", "Removed from favorites" : "Esborra de preferits", @@ -119,6 +128,8 @@ "Settings" : "Arranjament", "Show hidden files" : "Mostra els fitxers ocults", "WebDAV" : "WebDAV", + "Use this address to access your Files via WebDAV" : "Utilitza aquesta adreça per accedir als teus arxius mitjançant WebDAV", + "Cancel upload" : "Cancel·la la pujada", "No files in here" : "No hi ha arxius", "Upload some content or sync with your devices!" : "Pugi continguts o sincronitzi els seus dispositius.", "No entries found in this folder" : "No hi ha entrades en aquesta carpeta", @@ -134,24 +145,9 @@ "Deleted files" : "Fitxers esborrats", "Text file" : "Fitxer de text", "New text file.txt" : "Nou fitxer de text.txt", - "Uploading..." : "Pujant...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["Falta {hours}:{minutes}:{seconds} hora","Falten {hours}:{minutes}:{seconds} hores"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["Falten {minutes}:{seconds} minuts","Falta {minutes}:{seconds} minut"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["Falta {seconds} segon","Falten {seconds} segons"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En qualsevol moment...", - "Soon..." : "Aviat...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.", - "Move" : "Mou", - "Copy local link" : "C", - "Folder" : "Carpeta", - "Upload" : "Puja", + "Move" : "Moure", "A new file or folder has been deleted" : "S'ha eliminat un nou fitxer o carpeta", "A new file or folder has been restored" : "S'ha restaurat un nou fitxer o carpeta", - "Use this address to access your Files via WebDAV" : "Utilitzeu aquesta adreça per accedir als vostres fitxers a través de WebDAV", - "No favorites" : "No hi ha favorits" + "Use this address to access your Files via WebDAV" : "Utilitzeu aquesta adreça per accedir als vostres fitxers a través de WebDAV" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/cs.js b/apps/files/l10n/cs.js index 8284aec814085..ef9b5799a2e20 100644 --- a/apps/files/l10n/cs.js +++ b/apps/files/l10n/cs.js @@ -25,6 +25,7 @@ OC.L10N.register( "Download" : "Stáhnout", "Rename" : "Přejmenovat", "Move or copy" : "Přesunout nebo zkopírovat", + "Copy" : "Kopírovat", "Target folder" : "Cílový adresář", "Delete" : "Smazat", "Disconnect storage" : "Odpojit úložiště", @@ -43,7 +44,7 @@ OC.L10N.register( "Could not copy \"{file}\"" : "Nelze kopírovat \"{file}\"", "Copied {origin} inside {destination}" : "{origin} zkopírován do {destination}", "Copied {origin} and {nbfiles} other files inside {destination}" : "{origin} a {nbfiles} dalších souborů zkopírováno do {destination}", - "{newName} already exists" : "{newName} již existuje", + "{newName} already exists" : "{newName} už existuje", "Could not rename \"{fileName}\", it does not exist any more" : "Nelze přejmenovat \"{fileName}\", již neexistuje", "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "Jméno \"{targetName}\" je již použito v adresáři \"{dir}\". Vyberte prosím jiné jméno.", "Could not rename \"{fileName}\"" : "Nelze přejmenovat \"{fileName}\"", @@ -62,8 +63,11 @@ OC.L10N.register( "You don’t have permission to upload or create files here" : "Nemáte oprávnění sem nahrávat nebo vytvářet soubory", "_Uploading %n file_::_Uploading %n files_" : ["Nahrávám %n soubor","Nahrávám %n soubory","Nahrávám %n souborů"], "New" : "Nový", + "{used} of {quota} used" : "Využito {used} z {quota} ", + "{used} used" : "{used} Využito", "\"{name}\" is an invalid file name." : "\"{name}\" je neplatným názvem souboru.", "File name cannot be empty." : "Název souboru nemůže být prázdný řetězec.", + "\"/\" is not allowed inside a file name." : "\"/\" není povolený znak v názvu souboru", "\"{name}\" is not an allowed filetype" : "\"{name}\" není povolený typ souboru", "Storage of {owner} is full, files can not be updated or synced anymore!" : "Úložiště uživatele {owner} je zaplněné, soubory nelze aktualizovat a synchronizovat!", "Your storage is full, files can not be updated or synced anymore!" : "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubory.", @@ -96,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "Přesunul {user}", "\"remote user\"" : "\"vzdálený uživatel\"", "You created {file}" : "Vytvořil(a) jste {file}", + "You created an encrypted file in {file}" : "Vytvořili jste šifrovaný soubor {file}", "{user} created {file}" : "{user} vytvořil(a) {file}", + "{user} created an encrypted file in {file}" : "{user} vytvořil šifrovaný soubor {file}", "{file} was created in a public folder" : "Soubor {file} byl vytvořen ve veřejné složce", "You changed {file}" : "Změnil(a) jste {file}", + "You changed an encrypted file in {file}" : "Změnili jste šifrovaný soubor {file}", "{user} changed {file}" : "{user} změnil(a) {file}", + "{user} changed an encrypted file in {file}" : "{user} změnil šifrovaný soubor {file}", "You deleted {file}" : "Odstranil(a) jste {file}", + "You deleted an encrypted file in {file}" : "Smazali jste šifrovaný soubor {file}", "{user} deleted {file}" : "{user} smazal(a) {file}", + "{user} deleted an encrypted file in {file}" : "{user} smazal šifrovaný soubor {file}", "You restored {file}" : "Obnovil(a) jste {file}", "{user} restored {file}" : "{user} obnovil {file}", "You renamed {oldfile} to {newfile}" : "Přejmenoval(a) jste {oldfile} na {newfile}", @@ -144,24 +154,9 @@ OC.L10N.register( "Deleted files" : "Odstraněné soubory", "Text file" : "Textový soubor", "New text file.txt" : "Nový textový soubor.txt", - "Uploading..." : "Odesílám...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["zbývá {hours}:{minutes}:{seconds} hodina","zbývají {hours}:{minutes}:{seconds} hodiny","zbývá {hours}:{minutes}:{seconds} hodin"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["zbývá {minutes}:{seconds} minuta","zbývají {minutes}:{seconds} minuty","zbývá {minutes}:{seconds} minut"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["zbývá {seconds} sekunda","zbývají {seconds} sekundy","zbývá {seconds} sekund"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Každou chvíli...", - "Soon..." : "Brzy...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání.", "Move" : "Přesunout", - "Copy local link" : "Kopírovat místní odkaz", - "Folder" : "Adresář", - "Upload" : "Odeslat", "A new file or folder has been deleted" : "Nový soubor nebo adresář byl smazán", "A new file or folder has been restored" : "Nový soubor nebo adresář byl obnoven", - "Use this address to access your Files via WebDAV" : "Použijte tuto adresu pro přístup ke svým Souborům přes WebDAV", - "No favorites" : "Žádné oblíbené" + "Use this address to access your Files via WebDAV" : "Použít tuto adresu pro přístup k souborům přes WebDAV" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/files/l10n/cs.json b/apps/files/l10n/cs.json index 350a15421699d..5e5719bc6f7f5 100644 --- a/apps/files/l10n/cs.json +++ b/apps/files/l10n/cs.json @@ -23,6 +23,7 @@ "Download" : "Stáhnout", "Rename" : "Přejmenovat", "Move or copy" : "Přesunout nebo zkopírovat", + "Copy" : "Kopírovat", "Target folder" : "Cílový adresář", "Delete" : "Smazat", "Disconnect storage" : "Odpojit úložiště", @@ -41,7 +42,7 @@ "Could not copy \"{file}\"" : "Nelze kopírovat \"{file}\"", "Copied {origin} inside {destination}" : "{origin} zkopírován do {destination}", "Copied {origin} and {nbfiles} other files inside {destination}" : "{origin} a {nbfiles} dalších souborů zkopírováno do {destination}", - "{newName} already exists" : "{newName} již existuje", + "{newName} already exists" : "{newName} už existuje", "Could not rename \"{fileName}\", it does not exist any more" : "Nelze přejmenovat \"{fileName}\", již neexistuje", "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "Jméno \"{targetName}\" je již použito v adresáři \"{dir}\". Vyberte prosím jiné jméno.", "Could not rename \"{fileName}\"" : "Nelze přejmenovat \"{fileName}\"", @@ -60,8 +61,11 @@ "You don’t have permission to upload or create files here" : "Nemáte oprávnění sem nahrávat nebo vytvářet soubory", "_Uploading %n file_::_Uploading %n files_" : ["Nahrávám %n soubor","Nahrávám %n soubory","Nahrávám %n souborů"], "New" : "Nový", + "{used} of {quota} used" : "Využito {used} z {quota} ", + "{used} used" : "{used} Využito", "\"{name}\" is an invalid file name." : "\"{name}\" je neplatným názvem souboru.", "File name cannot be empty." : "Název souboru nemůže být prázdný řetězec.", + "\"/\" is not allowed inside a file name." : "\"/\" není povolený znak v názvu souboru", "\"{name}\" is not an allowed filetype" : "\"{name}\" není povolený typ souboru", "Storage of {owner} is full, files can not be updated or synced anymore!" : "Úložiště uživatele {owner} je zaplněné, soubory nelze aktualizovat a synchronizovat!", "Your storage is full, files can not be updated or synced anymore!" : "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubory.", @@ -94,12 +98,18 @@ "Moved by {user}" : "Přesunul {user}", "\"remote user\"" : "\"vzdálený uživatel\"", "You created {file}" : "Vytvořil(a) jste {file}", + "You created an encrypted file in {file}" : "Vytvořili jste šifrovaný soubor {file}", "{user} created {file}" : "{user} vytvořil(a) {file}", + "{user} created an encrypted file in {file}" : "{user} vytvořil šifrovaný soubor {file}", "{file} was created in a public folder" : "Soubor {file} byl vytvořen ve veřejné složce", "You changed {file}" : "Změnil(a) jste {file}", + "You changed an encrypted file in {file}" : "Změnili jste šifrovaný soubor {file}", "{user} changed {file}" : "{user} změnil(a) {file}", + "{user} changed an encrypted file in {file}" : "{user} změnil šifrovaný soubor {file}", "You deleted {file}" : "Odstranil(a) jste {file}", + "You deleted an encrypted file in {file}" : "Smazali jste šifrovaný soubor {file}", "{user} deleted {file}" : "{user} smazal(a) {file}", + "{user} deleted an encrypted file in {file}" : "{user} smazal šifrovaný soubor {file}", "You restored {file}" : "Obnovil(a) jste {file}", "{user} restored {file}" : "{user} obnovil {file}", "You renamed {oldfile} to {newfile}" : "Přejmenoval(a) jste {oldfile} na {newfile}", @@ -142,24 +152,9 @@ "Deleted files" : "Odstraněné soubory", "Text file" : "Textový soubor", "New text file.txt" : "Nový textový soubor.txt", - "Uploading..." : "Odesílám...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["zbývá {hours}:{minutes}:{seconds} hodina","zbývají {hours}:{minutes}:{seconds} hodiny","zbývá {hours}:{minutes}:{seconds} hodin"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["zbývá {minutes}:{seconds} minuta","zbývají {minutes}:{seconds} minuty","zbývá {minutes}:{seconds} minut"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["zbývá {seconds} sekunda","zbývají {seconds} sekundy","zbývá {seconds} sekund"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Každou chvíli...", - "Soon..." : "Brzy...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání.", "Move" : "Přesunout", - "Copy local link" : "Kopírovat místní odkaz", - "Folder" : "Adresář", - "Upload" : "Odeslat", "A new file or folder has been deleted" : "Nový soubor nebo adresář byl smazán", "A new file or folder has been restored" : "Nový soubor nebo adresář byl obnoven", - "Use this address to access your Files via WebDAV" : "Použijte tuto adresu pro přístup ke svým Souborům přes WebDAV", - "No favorites" : "Žádné oblíbené" + "Use this address to access your Files via WebDAV" : "Použít tuto adresu pro přístup k souborům přes WebDAV" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/files/l10n/da.js b/apps/files/l10n/da.js index 0c8fea1c3ff20..70d8da3a7f16a 100644 --- a/apps/files/l10n/da.js +++ b/apps/files/l10n/da.js @@ -143,25 +143,6 @@ OC.L10N.register( "Tags" : "Mærker", "Deleted files" : "Slettede filer", "Text file" : "Tekstfil", - "New text file.txt" : "Ny tekst file.txt", - "Uploading..." : "Uploader...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} time tilbage","{hours}:{minutes}:{seconds} timer tilbage"], - "{hours}:{minutes}h" : "{hours}:{minutes}t", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minut tilbage","{minutes}:{seconds} minutter tilbage"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekund tilbage","{seconds} sekunder tilbage"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Når som helst...", - "Soon..." : "Snart...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", - "Move" : "Flyt", - "Copy local link" : "Kopier lokalt link", - "Folder" : "Mappe", - "Upload" : "Upload", - "A new file or folder has been deleted" : "En ny fil eller mappe er blevet slettet", - "A new file or folder has been restored" : "En ny fil eller mappe er blevet gendannet", - "Use this address to access your Files via WebDAV" : "Brug denne adresse til at tilgå dine filer via WebDAV", - "No favorites" : "Ingen foretrukne" + "New text file.txt" : "Ny tekst file.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/da.json b/apps/files/l10n/da.json index ae52158a78d84..96832c04296ef 100644 --- a/apps/files/l10n/da.json +++ b/apps/files/l10n/da.json @@ -141,25 +141,6 @@ "Tags" : "Mærker", "Deleted files" : "Slettede filer", "Text file" : "Tekstfil", - "New text file.txt" : "Ny tekst file.txt", - "Uploading..." : "Uploader...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} time tilbage","{hours}:{minutes}:{seconds} timer tilbage"], - "{hours}:{minutes}h" : "{hours}:{minutes}t", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minut tilbage","{minutes}:{seconds} minutter tilbage"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekund tilbage","{seconds} sekunder tilbage"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Når som helst...", - "Soon..." : "Snart...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", - "Move" : "Flyt", - "Copy local link" : "Kopier lokalt link", - "Folder" : "Mappe", - "Upload" : "Upload", - "A new file or folder has been deleted" : "En ny fil eller mappe er blevet slettet", - "A new file or folder has been restored" : "En ny fil eller mappe er blevet gendannet", - "Use this address to access your Files via WebDAV" : "Brug denne adresse til at tilgå dine filer via WebDAV", - "No favorites" : "Ingen foretrukne" + "New text file.txt" : "Ny tekst file.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/de.js b/apps/files/l10n/de.js index 6f25a1ec2d7bd..31141b7f1e8c7 100644 --- a/apps/files/l10n/de.js +++ b/apps/files/l10n/de.js @@ -25,6 +25,7 @@ OC.L10N.register( "Download" : "Herunterladen", "Rename" : "Umbenennen", "Move or copy" : "Verschieben oder kopieren", + "Copy" : "Kopieren", "Target folder" : "Zielordner", "Delete" : "Löschen", "Disconnect storage" : "Speicher trennen", @@ -99,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "Verschoben durch {user}", "\"remote user\"" : "„Externer Benutzer“", "You created {file}" : "Du hast {file} erstellt", + "You created an encrypted file in {file}" : "Du hast die verschlüsselte Datei in {file} erstellt", "{user} created {file}" : "{user} hat {file} erstellt", + "{user} created an encrypted file in {file}" : "{user} hat die verschlüsselte Datei in {file} erstellt", "{file} was created in a public folder" : "{file} wurde in einem öffentlichen Ordner erstellt", "You changed {file}" : "Du hast {file} geändert", + "You changed an encrypted file in {file}" : "Du hast die verschlüsselte Datei in {file} geändert", "{user} changed {file}" : "{user} hat {file} geändert", + "{user} changed an encrypted file in {file}" : "{user} hat die verschlüsselte Datei in {file} geändert", "You deleted {file}" : "Du hast {file} gelöscht", + "You deleted an encrypted file in {file}" : "Du hast die verschlüsselte Datei in {file} gelöscht", "{user} deleted {file}" : "{user} hat {file} gelöscht", + "{user} deleted an encrypted file in {file}" : "{user} hat die verschlüsselte Datei in {file} gelöscht", "You restored {file}" : "Du hast {file} wiederhergestellt", "{user} restored {file}" : "{user} hat {file} wiederhergestellt", "You renamed {oldfile} to {newfile}" : "Du hast {oldfile} in {newfile} umbenannt", @@ -147,24 +154,9 @@ OC.L10N.register( "Deleted files" : "Gelöschte Dateien", "Text file" : "Textdatei", "New text file.txt" : "Neue Textdatei file.txt", - "Uploading..." : "Hochladen…", - "..." : "…", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} Stunde verbleibend","Noch {hours}:{minutes}:{seconds} Stunden"], - "{hours}:{minutes}h" : "{hours}:{minutes} Std.", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} Minute verbleibend","Noch {minutes}:{seconds} Minuten"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} Sekunde verbleibend","Noch {seconds} Sekunden"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Gleich fertig…", - "Soon..." : "Bald…", - "File upload is in progress. Leaving the page now will cancel the upload." : "Dateiupload läuft. Wenn die Seite jetzt verlassen wird, bricht der Upload ab.", "Move" : "Verschieben", - "Copy local link" : "Lokalen Link kopieren", - "Folder" : "Ordner", - "Upload" : "Hochladen", "A new file or folder has been deleted" : "Eine neue Datei oder Ordner wurde gelöscht", - "A new file or folder has been restored" : "Neue Datei oder Ordner wurde wiederhergestellt", - "Use this address to access your Files via WebDAV" : "Diese Adresse benutzen, um über WebDAV auf Deine Dateien zuzugreifen", - "No favorites" : "Keine Favoriten" + "A new file or folder has been restored" : "Eine neue Datei oder ein Ordner wurde wiederhergestellt", + "Use this address to access your Files via WebDAV" : "Diese Adresse benutzen, um über WebDAV auf Deine Dateien zuzugreifen" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/de.json b/apps/files/l10n/de.json index 9df967faf353a..27bb14838ad25 100644 --- a/apps/files/l10n/de.json +++ b/apps/files/l10n/de.json @@ -23,6 +23,7 @@ "Download" : "Herunterladen", "Rename" : "Umbenennen", "Move or copy" : "Verschieben oder kopieren", + "Copy" : "Kopieren", "Target folder" : "Zielordner", "Delete" : "Löschen", "Disconnect storage" : "Speicher trennen", @@ -97,12 +98,18 @@ "Moved by {user}" : "Verschoben durch {user}", "\"remote user\"" : "„Externer Benutzer“", "You created {file}" : "Du hast {file} erstellt", + "You created an encrypted file in {file}" : "Du hast die verschlüsselte Datei in {file} erstellt", "{user} created {file}" : "{user} hat {file} erstellt", + "{user} created an encrypted file in {file}" : "{user} hat die verschlüsselte Datei in {file} erstellt", "{file} was created in a public folder" : "{file} wurde in einem öffentlichen Ordner erstellt", "You changed {file}" : "Du hast {file} geändert", + "You changed an encrypted file in {file}" : "Du hast die verschlüsselte Datei in {file} geändert", "{user} changed {file}" : "{user} hat {file} geändert", + "{user} changed an encrypted file in {file}" : "{user} hat die verschlüsselte Datei in {file} geändert", "You deleted {file}" : "Du hast {file} gelöscht", + "You deleted an encrypted file in {file}" : "Du hast die verschlüsselte Datei in {file} gelöscht", "{user} deleted {file}" : "{user} hat {file} gelöscht", + "{user} deleted an encrypted file in {file}" : "{user} hat die verschlüsselte Datei in {file} gelöscht", "You restored {file}" : "Du hast {file} wiederhergestellt", "{user} restored {file}" : "{user} hat {file} wiederhergestellt", "You renamed {oldfile} to {newfile}" : "Du hast {oldfile} in {newfile} umbenannt", @@ -145,24 +152,9 @@ "Deleted files" : "Gelöschte Dateien", "Text file" : "Textdatei", "New text file.txt" : "Neue Textdatei file.txt", - "Uploading..." : "Hochladen…", - "..." : "…", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} Stunde verbleibend","Noch {hours}:{minutes}:{seconds} Stunden"], - "{hours}:{minutes}h" : "{hours}:{minutes} Std.", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} Minute verbleibend","Noch {minutes}:{seconds} Minuten"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} Sekunde verbleibend","Noch {seconds} Sekunden"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Gleich fertig…", - "Soon..." : "Bald…", - "File upload is in progress. Leaving the page now will cancel the upload." : "Dateiupload läuft. Wenn die Seite jetzt verlassen wird, bricht der Upload ab.", "Move" : "Verschieben", - "Copy local link" : "Lokalen Link kopieren", - "Folder" : "Ordner", - "Upload" : "Hochladen", "A new file or folder has been deleted" : "Eine neue Datei oder Ordner wurde gelöscht", - "A new file or folder has been restored" : "Neue Datei oder Ordner wurde wiederhergestellt", - "Use this address to access your Files via WebDAV" : "Diese Adresse benutzen, um über WebDAV auf Deine Dateien zuzugreifen", - "No favorites" : "Keine Favoriten" + "A new file or folder has been restored" : "Eine neue Datei oder ein Ordner wurde wiederhergestellt", + "Use this address to access your Files via WebDAV" : "Diese Adresse benutzen, um über WebDAV auf Deine Dateien zuzugreifen" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/de_DE.js b/apps/files/l10n/de_DE.js index 592fd62ed6220..360ceb77e7b1f 100644 --- a/apps/files/l10n/de_DE.js +++ b/apps/files/l10n/de_DE.js @@ -25,6 +25,7 @@ OC.L10N.register( "Download" : "Herunterladen", "Rename" : "Umbenennen", "Move or copy" : "Verschieben oder kopieren", + "Copy" : "Kopieren", "Target folder" : "Zielordner", "Delete" : "Löschen", "Disconnect storage" : "Speicher trennen", @@ -99,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "Verschoben durch {user}", "\"remote user\"" : "„Externer Benutzer“", "You created {file}" : "Sie haben {file} erstellt", + "You created an encrypted file in {file}" : "Sie haben die verschlüsselte Datei in {file} erstellt", "{user} created {file}" : "{user} hat {file} erstellt", + "{user} created an encrypted file in {file}" : "{user} hat die verschlüsselte Datei in {file} erstellt", "{file} was created in a public folder" : "{file} wurde in einem öffentlichen Ordner erstellt", "You changed {file}" : "Sie haben {file} geändert", + "You changed an encrypted file in {file}" : "Sie haben die verschlüsselte Datei in {file} geändert", "{user} changed {file}" : "{user} hat {file} geändert", + "{user} changed an encrypted file in {file}" : "{user} hat die verschlüsselte Datei in {file} geändert", "You deleted {file}" : "Sie haben {file} gelöscht", + "You deleted an encrypted file in {file}" : "Sie haben die verschlüsselte Datei in {file} gelöscht", "{user} deleted {file}" : "{user} hat {file} gelöscht", + "{user} deleted an encrypted file in {file}" : "{user} hat die verschlüsselte Datei in {file} gelöscht", "You restored {file}" : "Sie haben {file} wiederhergestellt", "{user} restored {file}" : "{user} hat {file} wiederhergestellt", "You renamed {oldfile} to {newfile}" : "Sie haben {oldfile} in {newfile} umbenannt", @@ -147,24 +154,9 @@ OC.L10N.register( "Deleted files" : "Gelöschte Dateien", "Text file" : "Textdatei", "New text file.txt" : "Neue Textdatei file.txt", - "Uploading..." : "Hochladen…", - "..." : "…", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} Stunde verbleiben","Noch {hours}:{minutes}:{seconds} Stunden"], - "{hours}:{minutes}h" : "{hours}:{minutes} Std.", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} Minute verbleibend","Noch {minutes}:{seconds} Minuten"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} Sekunde verbleiben","Noch {seconds} Sekunden"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Gleich fertig …", - "Soon..." : "Bald …", - "File upload is in progress. Leaving the page now will cancel the upload." : "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", "Move" : "Verschieben", - "Copy local link" : "Lokalen Link kopieren", - "Folder" : "Ordner", - "Upload" : "Hochladen", "A new file or folder has been deleted" : "Eine neue Datei oder Ordner wurde gelöscht", "A new file or folder has been restored" : "Eine neue Datei oder Ordner wurde wiederhergestellt", - "Use this address to access your Files via WebDAV" : "Benutzen Sie diese Adresse, um via WebDAV auf Ihre Dateien zuzugreifen", - "No favorites" : "Keine Favoriten" + "Use this address to access your Files via WebDAV" : "Benutzen Sie diese Adresse, um via WebDAV auf Ihre Dateien zuzugreifen" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/de_DE.json b/apps/files/l10n/de_DE.json index 73f811b69c2cf..d3ec12010d3c8 100644 --- a/apps/files/l10n/de_DE.json +++ b/apps/files/l10n/de_DE.json @@ -23,6 +23,7 @@ "Download" : "Herunterladen", "Rename" : "Umbenennen", "Move or copy" : "Verschieben oder kopieren", + "Copy" : "Kopieren", "Target folder" : "Zielordner", "Delete" : "Löschen", "Disconnect storage" : "Speicher trennen", @@ -97,12 +98,18 @@ "Moved by {user}" : "Verschoben durch {user}", "\"remote user\"" : "„Externer Benutzer“", "You created {file}" : "Sie haben {file} erstellt", + "You created an encrypted file in {file}" : "Sie haben die verschlüsselte Datei in {file} erstellt", "{user} created {file}" : "{user} hat {file} erstellt", + "{user} created an encrypted file in {file}" : "{user} hat die verschlüsselte Datei in {file} erstellt", "{file} was created in a public folder" : "{file} wurde in einem öffentlichen Ordner erstellt", "You changed {file}" : "Sie haben {file} geändert", + "You changed an encrypted file in {file}" : "Sie haben die verschlüsselte Datei in {file} geändert", "{user} changed {file}" : "{user} hat {file} geändert", + "{user} changed an encrypted file in {file}" : "{user} hat die verschlüsselte Datei in {file} geändert", "You deleted {file}" : "Sie haben {file} gelöscht", + "You deleted an encrypted file in {file}" : "Sie haben die verschlüsselte Datei in {file} gelöscht", "{user} deleted {file}" : "{user} hat {file} gelöscht", + "{user} deleted an encrypted file in {file}" : "{user} hat die verschlüsselte Datei in {file} gelöscht", "You restored {file}" : "Sie haben {file} wiederhergestellt", "{user} restored {file}" : "{user} hat {file} wiederhergestellt", "You renamed {oldfile} to {newfile}" : "Sie haben {oldfile} in {newfile} umbenannt", @@ -145,24 +152,9 @@ "Deleted files" : "Gelöschte Dateien", "Text file" : "Textdatei", "New text file.txt" : "Neue Textdatei file.txt", - "Uploading..." : "Hochladen…", - "..." : "…", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} Stunde verbleiben","Noch {hours}:{minutes}:{seconds} Stunden"], - "{hours}:{minutes}h" : "{hours}:{minutes} Std.", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} Minute verbleibend","Noch {minutes}:{seconds} Minuten"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} Sekunde verbleiben","Noch {seconds} Sekunden"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Gleich fertig …", - "Soon..." : "Bald …", - "File upload is in progress. Leaving the page now will cancel the upload." : "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", "Move" : "Verschieben", - "Copy local link" : "Lokalen Link kopieren", - "Folder" : "Ordner", - "Upload" : "Hochladen", "A new file or folder has been deleted" : "Eine neue Datei oder Ordner wurde gelöscht", "A new file or folder has been restored" : "Eine neue Datei oder Ordner wurde wiederhergestellt", - "Use this address to access your Files via WebDAV" : "Benutzen Sie diese Adresse, um via WebDAV auf Ihre Dateien zuzugreifen", - "No favorites" : "Keine Favoriten" + "Use this address to access your Files via WebDAV" : "Benutzen Sie diese Adresse, um via WebDAV auf Ihre Dateien zuzugreifen" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/el.js b/apps/files/l10n/el.js index 0b49bb9954b30..601cdef37f2d2 100644 --- a/apps/files/l10n/el.js +++ b/apps/files/l10n/el.js @@ -24,6 +24,7 @@ OC.L10N.register( "Download" : "Λήψη", "Rename" : "Μετονομασία", "Move or copy" : "Μετακίνηση ή αντιγραφή", + "Copy" : "Αντιγραφή", "Target folder" : "Φάκελος προορισμού", "Delete" : "Διαγραφή", "Disconnect storage" : "Αποσυνδεδεμένος αποθηκευτικός χώρος", @@ -141,25 +142,6 @@ OC.L10N.register( "Tags" : "Ετικέτες", "Deleted files" : "Διεγραμμένα αρχεία", "Text file" : "Αρχείο κειμένου", - "New text file.txt" : "Νέο αρχείο κειμένου.txt", - "Uploading..." : "Μεταφόρτωση...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} ώρα απομένει","{hours}:{minutes}:{seconds} ώρες απομένουν"], - "{hours}:{minutes}h" : "{hours}:{minutes}ω", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} λεπτό απομένει","{minutes}:{seconds} λεπτά απομένουν"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}λ", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} δευτερόλεπτο απομένει","{seconds} δευτερόλεπτα απομένουν"], - "{seconds}s" : "{seconds}δ", - "Any moment now..." : "Από στιγμή σε στιγμή", - "Soon..." : "Σύντομα...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.", - "Move" : "Μετακίνηση", - "Copy local link" : "Αντιγραφή τοπικού συνδέσμου", - "Folder" : "Φάκελος", - "Upload" : "Μεταφόρτωση", - "A new file or folder has been deleted" : "Ένα νέο αρχείο ή φάκελος έχει διαγραφεί", - "A new file or folder has been restored" : "Ένα νέο αρχείο ή φάκελος έχει επαναφερθεί", - "Use this address to access your Files via WebDAV" : "Χρησιμοποιήστε αυτή τη διεύθυνση για να έχετε πρόσβαση στα Αρχεία σας μέσω WebDAV", - "No favorites" : "Δεν υπάρχουν αγαπημένα" + "New text file.txt" : "Νέο αρχείο κειμένου.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/el.json b/apps/files/l10n/el.json index 7905b940677ed..8905e07e785e9 100644 --- a/apps/files/l10n/el.json +++ b/apps/files/l10n/el.json @@ -22,6 +22,7 @@ "Download" : "Λήψη", "Rename" : "Μετονομασία", "Move or copy" : "Μετακίνηση ή αντιγραφή", + "Copy" : "Αντιγραφή", "Target folder" : "Φάκελος προορισμού", "Delete" : "Διαγραφή", "Disconnect storage" : "Αποσυνδεδεμένος αποθηκευτικός χώρος", @@ -139,25 +140,6 @@ "Tags" : "Ετικέτες", "Deleted files" : "Διεγραμμένα αρχεία", "Text file" : "Αρχείο κειμένου", - "New text file.txt" : "Νέο αρχείο κειμένου.txt", - "Uploading..." : "Μεταφόρτωση...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} ώρα απομένει","{hours}:{minutes}:{seconds} ώρες απομένουν"], - "{hours}:{minutes}h" : "{hours}:{minutes}ω", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} λεπτό απομένει","{minutes}:{seconds} λεπτά απομένουν"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}λ", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} δευτερόλεπτο απομένει","{seconds} δευτερόλεπτα απομένουν"], - "{seconds}s" : "{seconds}δ", - "Any moment now..." : "Από στιγμή σε στιγμή", - "Soon..." : "Σύντομα...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.", - "Move" : "Μετακίνηση", - "Copy local link" : "Αντιγραφή τοπικού συνδέσμου", - "Folder" : "Φάκελος", - "Upload" : "Μεταφόρτωση", - "A new file or folder has been deleted" : "Ένα νέο αρχείο ή φάκελος έχει διαγραφεί", - "A new file or folder has been restored" : "Ένα νέο αρχείο ή φάκελος έχει επαναφερθεί", - "Use this address to access your Files via WebDAV" : "Χρησιμοποιήστε αυτή τη διεύθυνση για να έχετε πρόσβαση στα Αρχεία σας μέσω WebDAV", - "No favorites" : "Δεν υπάρχουν αγαπημένα" + "New text file.txt" : "Νέο αρχείο κειμένου.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/en_GB.js b/apps/files/l10n/en_GB.js index 21f6e33978420..87e6598262c00 100644 --- a/apps/files/l10n/en_GB.js +++ b/apps/files/l10n/en_GB.js @@ -25,6 +25,7 @@ OC.L10N.register( "Download" : "Download", "Rename" : "Rename", "Move or copy" : "Move or copy", + "Copy" : "Copy", "Target folder" : "Target folder", "Delete" : "Delete", "Disconnect storage" : "Disconnect storage", @@ -99,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "Moved by {user}", "\"remote user\"" : "\"remote user\"", "You created {file}" : "You created {file}", + "You created an encrypted file in {file}" : "You created an encrypted file in {file}", "{user} created {file}" : "{user} created {file}", + "{user} created an encrypted file in {file}" : "{user} created an encrypted file in {file}", "{file} was created in a public folder" : "{file} was created in a public folder", "You changed {file}" : "You changed {file}", + "You changed an encrypted file in {file}" : "You changed an encrypted file in {file}", "{user} changed {file}" : "{user} changed {file}", + "{user} changed an encrypted file in {file}" : "{user} changed an encrypted file in {file}", "You deleted {file}" : "You deleted {file}", + "You deleted an encrypted file in {file}" : "You deleted an encrypted file in {file}", "{user} deleted {file}" : "{user} deleted {file}", + "{user} deleted an encrypted file in {file}" : "{user} deleted an encrypted file in {file}", "You restored {file}" : "You restored {file}", "{user} restored {file}" : "{user} restored {file}", "You renamed {oldfile} to {newfile}" : "You renamed {oldfile} to {newfile}", @@ -147,24 +154,9 @@ OC.L10N.register( "Deleted files" : "Deleted files", "Text file" : "Text file", "New text file.txt" : "New text file.txt", - "Uploading..." : "Uploading...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} hours left","{hours}:{minutes}:{seconds} hours left"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minutes left","{minutes}:{seconds} minutes left"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} second left","{seconds} seconds left"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Any moment now...", - "Soon..." : "Soon...", - "File upload is in progress. Leaving the page now will cancel the upload." : "File upload is in progress. Leaving the page now will cancel the upload.", "Move" : "Move", - "Copy local link" : "Copy local link", - "Folder" : "Folder", - "Upload" : "Upload", "A new file or folder has been deleted" : "A new file or folder has been deleted", "A new file or folder has been restored" : "A new file or folder has been restored", - "Use this address to access your Files via WebDAV" : "Use this address to access your Files via WebDAV", - "No favorites" : "No favourites" + "Use this address to access your Files via WebDAV" : "Use this address to access your Files via WebDAV" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/en_GB.json b/apps/files/l10n/en_GB.json index f8ff0a553b5bc..eebd35545cc76 100644 --- a/apps/files/l10n/en_GB.json +++ b/apps/files/l10n/en_GB.json @@ -23,6 +23,7 @@ "Download" : "Download", "Rename" : "Rename", "Move or copy" : "Move or copy", + "Copy" : "Copy", "Target folder" : "Target folder", "Delete" : "Delete", "Disconnect storage" : "Disconnect storage", @@ -97,12 +98,18 @@ "Moved by {user}" : "Moved by {user}", "\"remote user\"" : "\"remote user\"", "You created {file}" : "You created {file}", + "You created an encrypted file in {file}" : "You created an encrypted file in {file}", "{user} created {file}" : "{user} created {file}", + "{user} created an encrypted file in {file}" : "{user} created an encrypted file in {file}", "{file} was created in a public folder" : "{file} was created in a public folder", "You changed {file}" : "You changed {file}", + "You changed an encrypted file in {file}" : "You changed an encrypted file in {file}", "{user} changed {file}" : "{user} changed {file}", + "{user} changed an encrypted file in {file}" : "{user} changed an encrypted file in {file}", "You deleted {file}" : "You deleted {file}", + "You deleted an encrypted file in {file}" : "You deleted an encrypted file in {file}", "{user} deleted {file}" : "{user} deleted {file}", + "{user} deleted an encrypted file in {file}" : "{user} deleted an encrypted file in {file}", "You restored {file}" : "You restored {file}", "{user} restored {file}" : "{user} restored {file}", "You renamed {oldfile} to {newfile}" : "You renamed {oldfile} to {newfile}", @@ -145,24 +152,9 @@ "Deleted files" : "Deleted files", "Text file" : "Text file", "New text file.txt" : "New text file.txt", - "Uploading..." : "Uploading...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} hours left","{hours}:{minutes}:{seconds} hours left"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minutes left","{minutes}:{seconds} minutes left"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} second left","{seconds} seconds left"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Any moment now...", - "Soon..." : "Soon...", - "File upload is in progress. Leaving the page now will cancel the upload." : "File upload is in progress. Leaving the page now will cancel the upload.", "Move" : "Move", - "Copy local link" : "Copy local link", - "Folder" : "Folder", - "Upload" : "Upload", "A new file or folder has been deleted" : "A new file or folder has been deleted", "A new file or folder has been restored" : "A new file or folder has been restored", - "Use this address to access your Files via WebDAV" : "Use this address to access your Files via WebDAV", - "No favorites" : "No favourites" + "Use this address to access your Files via WebDAV" : "Use this address to access your Files via WebDAV" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/eo.js b/apps/files/l10n/eo.js index cb558e40604a7..06308ca251427 100644 --- a/apps/files/l10n/eo.js +++ b/apps/files/l10n/eo.js @@ -1,26 +1,30 @@ OC.L10N.register( "files", { + "Storage is temporarily not available" : "Memoro nedaŭra ne disponeblas", "Storage invalid" : "Memoro ne validas", "Unknown error" : "Nekonata eraro", - "Files" : "Dosieroj", "All files" : "Ĉiuj dosieroj", + "Recent" : "Lastatempe", + "File could not be found" : "Ne troveblas dosiero", "Home" : "Hejmo", "Close" : "Fermi", "Favorites" : "Favoratoj", "Could not create folder \"{dir}\"" : "Ne eblas krei dosierujon “{dir}”", "Upload cancelled." : "La alŝuto nuliĝis.", "Unable to upload {filename} as it is a directory or has 0 bytes" : "Ne povis alŝutiĝi {filename} ĉar ĝi estas dosierujo aŭ ĝi havas 0 duumokojn", - "Total file size {size1} exceeds upload limit {size2}" : "Tuta dosiergrando {size1} transpasas alŝutolimon {size2}", "Not enough free space, you are uploading {size1} but only {size2} is left" : "Ne sufiĉas libera spaco: vi alŝutas {size1} sed nur {size2} restas", - "Uploading..." : "Alŝutante...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton.", + "Not enough free space" : "Ne sufiĉas libera spaco", + "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} el {totalSize} ({bitrate})", "Actions" : "Agoj", "Download" : "Elŝuti", "Rename" : "Alinomigi", + "Target folder" : "Cela dosiero", "Delete" : "Forigi", "Disconnect storage" : "Malkonekti memoron", "Unshare" : "Malkunhavigi", + "Could not load info for file \"{file}\"" : "Ne ŝarĝiblas informo por dosiero \"{file}\"", + "Files" : "Dosieroj", "Details" : "Detaloj", "Select" : "Elekti", "Pending" : "Traktotaj", @@ -43,6 +47,7 @@ OC.L10N.register( "_%n folder_::_%n folders_" : ["%n dosierujo","%n dosierujoj"], "_%n file_::_%n files_" : ["%n dosiero","%n dosieroj"], "{dirs} and {files}" : "{dirs} kaj {files}", + "_including %n hidden_::_including %n hidden_" : ["inkluzive %n kaŝita","inkluzive %n kaŝita(j)"], "You don’t have permission to upload or create files here" : "Vi ne permesatas alŝuti aŭ krei dosierojn ĉi tie", "_Uploading %n file_::_Uploading %n files_" : ["Alŝutatas %n dosiero","Alŝutatas %n dosieroj"], "New" : "Nova", @@ -53,29 +58,16 @@ OC.L10N.register( "Storage of {owner} is almost full ({usedSpacePercent}%)" : "Memoro de {owner} preskaŭ plenas ({usedSpacePercent}%)", "Your storage is almost full ({usedSpacePercent}%)" : "Via memoro preskaŭ plenas ({usedSpacePercent}%)", "_matches '{filter}'_::_match '{filter}'_" : ["kongruas kun “{filter}”","kongruas kun “{filter}”"], + "View in folder" : "Vidi en dosierujo", "Path" : "Vojo", "_%n byte_::_%n bytes_" : ["%n duumoko","%n duumokoj"], "Favorited" : "Pliŝatataj", "Favorite" : "Favorato", - "Folder" : "Dosierujo", "New folder" : "Nova dosierujo", - "Upload" : "Alŝuti", "An error occurred while trying to update the tags" : "Eraris provo ĝisdatigi la etikedojn", + "Created by {user}" : "Kreita de {user}", + "Changed by {user}" : "Ŝanĝita de {user}", "A new file or folder has been created" : "Nova dosiero aŭ dosierujo kreiĝis", - "A file or folder has been deleted" : "Dosiero aŭ dosierujo foriĝis", - "A file or folder has been restored" : "Dosiero aŭ dosierujo restaŭriĝis", - "You created %1$s" : "Vi kreis %1$s", - "%2$s created %1$s" : "%2$s kreis %1$s", - "%1$s was created in a public folder" : "%1$s kreiĝis en publika dosierujo", - "You changed %1$s" : "Vi ŝanĝis %1$s", - "%2$s changed %1$s" : "%2$s ŝanĝis %1$s", - "You deleted %1$s" : "Vi forigis %1$s", - "%2$s deleted %1$s" : "%2$s forigis %1$s", - "You restored %1$s" : "Vi restaŭris %1$s", - "%2$s restored %1$s" : "%2$s restaŭris %1$s", - "Changed by %2$s" : "Ŝanĝita de %2$s", - "Deleted by %2$s" : "Forigita de %2$s", - "Restored by %2$s" : "Restaŭrita de %2$s", "Upload (max. %s)" : "Alŝuti (maks. %s)", "File handling" : "Dosieradministro", "Maximum upload size" : "Maksimuma alŝutogrando", @@ -91,27 +83,8 @@ OC.L10N.register( "Select all" : "Elekti ĉion", "Upload too large" : "Alŝuto tro larĝa", "The files you are trying to upload exceed the maximum size for file uploads on this server." : "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo.", - "No favorites" : "Neniu pliŝato", "Files and folders you mark as favorite will show up here" : "Dosieroj kaj dosierujoj, kiujn vi markas, kiel pliŝatoj, aperos ĉi tie", "Text file" : "Tekstodosiero", - "New text file.txt" : "Nova tekstodosiero.txt", - "Storage not available" : "Memoro ne disponeblas", - "Unable to set upload directory." : "Ne povis agordiĝi la alŝuta dosierujo.", - "No file was uploaded. Unknown error" : "Neniu dosiero alŝutiĝis. Nekonata eraro.", - "There is no error, the file uploaded with success" : "Ne estas eraro, la dosiero alŝutiĝis sukcese.", - "The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: ", - "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo", - "The uploaded file was only partially uploaded" : "la alŝutita dosiero nur parte alŝutiĝis", - "No file was uploaded" : "Neniu dosiero alŝutiĝis.", - "Missing a temporary folder" : "Mankas provizora dosierujo.", - "Failed to write to disk" : "Malsukcesis skribo al disko", - "Not enough storage available" : "Ne haveblas sufiĉa memoro", - "The target folder has been moved or deleted." : "La cela dosierujo moviĝis aŭ foriĝis.", - "Upload failed. Could not find uploaded file" : "La alŝuto malsukcesis. Ne troviĝis alŝutota dosiero.", - "Upload failed. Could not get file info." : "La alŝuto malsukcesis. Ne povis ekhaviĝi informo pri dosiero.", - "Invalid directory." : "Nevalida dosierujo.", - "Could not get result from server." : "Ne povis ekhaviĝi rezulto el la servilo.", - "{newname} already exists" : "{newname} jam ekzistas", - "A file or folder has been changed" : "Dosiero aŭ dosierujo ŝanĝiĝis" + "New text file.txt" : "Nova tekstodosiero.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/eo.json b/apps/files/l10n/eo.json index 6e9f47dade1c9..89284a34b87fd 100644 --- a/apps/files/l10n/eo.json +++ b/apps/files/l10n/eo.json @@ -1,24 +1,28 @@ { "translations": { + "Storage is temporarily not available" : "Memoro nedaŭra ne disponeblas", "Storage invalid" : "Memoro ne validas", "Unknown error" : "Nekonata eraro", - "Files" : "Dosieroj", "All files" : "Ĉiuj dosieroj", + "Recent" : "Lastatempe", + "File could not be found" : "Ne troveblas dosiero", "Home" : "Hejmo", "Close" : "Fermi", "Favorites" : "Favoratoj", "Could not create folder \"{dir}\"" : "Ne eblas krei dosierujon “{dir}”", "Upload cancelled." : "La alŝuto nuliĝis.", "Unable to upload {filename} as it is a directory or has 0 bytes" : "Ne povis alŝutiĝi {filename} ĉar ĝi estas dosierujo aŭ ĝi havas 0 duumokojn", - "Total file size {size1} exceeds upload limit {size2}" : "Tuta dosiergrando {size1} transpasas alŝutolimon {size2}", "Not enough free space, you are uploading {size1} but only {size2} is left" : "Ne sufiĉas libera spaco: vi alŝutas {size1} sed nur {size2} restas", - "Uploading..." : "Alŝutante...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton.", + "Not enough free space" : "Ne sufiĉas libera spaco", + "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} el {totalSize} ({bitrate})", "Actions" : "Agoj", "Download" : "Elŝuti", "Rename" : "Alinomigi", + "Target folder" : "Cela dosiero", "Delete" : "Forigi", "Disconnect storage" : "Malkonekti memoron", "Unshare" : "Malkunhavigi", + "Could not load info for file \"{file}\"" : "Ne ŝarĝiblas informo por dosiero \"{file}\"", + "Files" : "Dosieroj", "Details" : "Detaloj", "Select" : "Elekti", "Pending" : "Traktotaj", @@ -41,6 +45,7 @@ "_%n folder_::_%n folders_" : ["%n dosierujo","%n dosierujoj"], "_%n file_::_%n files_" : ["%n dosiero","%n dosieroj"], "{dirs} and {files}" : "{dirs} kaj {files}", + "_including %n hidden_::_including %n hidden_" : ["inkluzive %n kaŝita","inkluzive %n kaŝita(j)"], "You don’t have permission to upload or create files here" : "Vi ne permesatas alŝuti aŭ krei dosierojn ĉi tie", "_Uploading %n file_::_Uploading %n files_" : ["Alŝutatas %n dosiero","Alŝutatas %n dosieroj"], "New" : "Nova", @@ -51,29 +56,16 @@ "Storage of {owner} is almost full ({usedSpacePercent}%)" : "Memoro de {owner} preskaŭ plenas ({usedSpacePercent}%)", "Your storage is almost full ({usedSpacePercent}%)" : "Via memoro preskaŭ plenas ({usedSpacePercent}%)", "_matches '{filter}'_::_match '{filter}'_" : ["kongruas kun “{filter}”","kongruas kun “{filter}”"], + "View in folder" : "Vidi en dosierujo", "Path" : "Vojo", "_%n byte_::_%n bytes_" : ["%n duumoko","%n duumokoj"], "Favorited" : "Pliŝatataj", "Favorite" : "Favorato", - "Folder" : "Dosierujo", "New folder" : "Nova dosierujo", - "Upload" : "Alŝuti", "An error occurred while trying to update the tags" : "Eraris provo ĝisdatigi la etikedojn", + "Created by {user}" : "Kreita de {user}", + "Changed by {user}" : "Ŝanĝita de {user}", "A new file or folder has been created" : "Nova dosiero aŭ dosierujo kreiĝis", - "A file or folder has been deleted" : "Dosiero aŭ dosierujo foriĝis", - "A file or folder has been restored" : "Dosiero aŭ dosierujo restaŭriĝis", - "You created %1$s" : "Vi kreis %1$s", - "%2$s created %1$s" : "%2$s kreis %1$s", - "%1$s was created in a public folder" : "%1$s kreiĝis en publika dosierujo", - "You changed %1$s" : "Vi ŝanĝis %1$s", - "%2$s changed %1$s" : "%2$s ŝanĝis %1$s", - "You deleted %1$s" : "Vi forigis %1$s", - "%2$s deleted %1$s" : "%2$s forigis %1$s", - "You restored %1$s" : "Vi restaŭris %1$s", - "%2$s restored %1$s" : "%2$s restaŭris %1$s", - "Changed by %2$s" : "Ŝanĝita de %2$s", - "Deleted by %2$s" : "Forigita de %2$s", - "Restored by %2$s" : "Restaŭrita de %2$s", "Upload (max. %s)" : "Alŝuti (maks. %s)", "File handling" : "Dosieradministro", "Maximum upload size" : "Maksimuma alŝutogrando", @@ -89,27 +81,8 @@ "Select all" : "Elekti ĉion", "Upload too large" : "Alŝuto tro larĝa", "The files you are trying to upload exceed the maximum size for file uploads on this server." : "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo.", - "No favorites" : "Neniu pliŝato", "Files and folders you mark as favorite will show up here" : "Dosieroj kaj dosierujoj, kiujn vi markas, kiel pliŝatoj, aperos ĉi tie", "Text file" : "Tekstodosiero", - "New text file.txt" : "Nova tekstodosiero.txt", - "Storage not available" : "Memoro ne disponeblas", - "Unable to set upload directory." : "Ne povis agordiĝi la alŝuta dosierujo.", - "No file was uploaded. Unknown error" : "Neniu dosiero alŝutiĝis. Nekonata eraro.", - "There is no error, the file uploaded with success" : "Ne estas eraro, la dosiero alŝutiĝis sukcese.", - "The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "La dosiero alŝutita superas la regulon upload_max_filesize el php.ini: ", - "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "La dosiero alŝutita superas la regulon MAX_FILE_SIZE, kiu estas difinita en la HTML-formularo", - "The uploaded file was only partially uploaded" : "la alŝutita dosiero nur parte alŝutiĝis", - "No file was uploaded" : "Neniu dosiero alŝutiĝis.", - "Missing a temporary folder" : "Mankas provizora dosierujo.", - "Failed to write to disk" : "Malsukcesis skribo al disko", - "Not enough storage available" : "Ne haveblas sufiĉa memoro", - "The target folder has been moved or deleted." : "La cela dosierujo moviĝis aŭ foriĝis.", - "Upload failed. Could not find uploaded file" : "La alŝuto malsukcesis. Ne troviĝis alŝutota dosiero.", - "Upload failed. Could not get file info." : "La alŝuto malsukcesis. Ne povis ekhaviĝi informo pri dosiero.", - "Invalid directory." : "Nevalida dosierujo.", - "Could not get result from server." : "Ne povis ekhaviĝi rezulto el la servilo.", - "{newname} already exists" : "{newname} jam ekzistas", - "A file or folder has been changed" : "Dosiero aŭ dosierujo ŝanĝiĝis" + "New text file.txt" : "Nova tekstodosiero.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es.js b/apps/files/l10n/es.js index 0852da86efc98..0ef60f57d3121 100644 --- a/apps/files/l10n/es.js +++ b/apps/files/l10n/es.js @@ -1,8 +1,8 @@ OC.L10N.register( "files", { - "Storage is temporarily not available" : "El almacenamiento no esta disponible temporalmente", - "Storage invalid" : "Almacenamiento inválido", + "Storage is temporarily not available" : "El almacenamiento no está disponible temporalmente", + "Storage invalid" : "Almacenamiento no válido", "Unknown error" : "Error desconocido", "All files" : "Todos los archivos", "Recent" : "Reciente", @@ -25,11 +25,12 @@ OC.L10N.register( "Download" : "Descargar", "Rename" : "Renombrar", "Move or copy" : "Mover o copiar", + "Copy" : "Copiar", "Target folder" : "Directorio destino", "Delete" : "Eliminar", "Disconnect storage" : "Desconectar almacenamiento", "Unshare" : "Dejar de compartir", - "Could not load info for file \"{file}\"" : "No se pudo cargar información para el archivo \"{file}\"", + "Could not load info for file \"{file}\"" : "No se ha podido cargar información para el archivo \"{file}\"", "Files" : "Archivos", "Details" : "Detalles", "Select" : "Seleccionar", @@ -49,7 +50,7 @@ OC.L10N.register( "Could not rename \"{fileName}\"" : "No se pudo renombrar \"{fileName}\"", "Could not create file \"{file}\"" : "No se pudo crear archivo \"{file}\"", "Could not create file \"{file}\" because it already exists" : "No se pudo crear archivo \"{file}\" porque ya existe", - "Could not create folder \"{dir}\" because it already exists" : "No se pudo crear la carpeta \"{dir}\" porque ya existe", + "Could not create folder \"{dir}\" because it already exists" : "No se ha podido crear la carpeta \"{dir}\" porque ya existe", "Error deleting file \"{fileName}\"." : "Error al borrar el archivo \"{fileName}\".", "No search results in other folders for {tag}{filter}{endtag}" : "No hay resultados de búsqueda en otras carpetas para {tag}{filter}{endtag}", "Name" : "Nombre", @@ -99,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "Movido por {user}", "\"remote user\"" : "\"usuario remoto\"", "You created {file}" : "Ha creado {file}", + "You created an encrypted file in {file}" : "Has creado un archivo cifrado en {file}", "{user} created {file}" : "{user} ha creado {file}", + "{user} created an encrypted file in {file}" : "{user} ha creado un archivo cifrado en {file}", "{file} was created in a public folder" : "{file} se ha creado en una carpeta pública", "You changed {file}" : "Usted ha cambiado {file}", + "You changed an encrypted file in {file}" : "Has modificado un archivo cifrado en {file}", "{user} changed {file}" : "{user} ha cambiado {file}", + "{user} changed an encrypted file in {file}" : "{user} ha modificado un archivo cifrado en {file}", "You deleted {file}" : "Usted ha borrado {file}", + "You deleted an encrypted file in {file}" : "Has borrado un archivo cifrado en {file}", "{user} deleted {file}" : "{user} eliminó {file}", + "{user} deleted an encrypted file in {file}" : "{user} ha borrado un archivo cifrado en {file}", "You restored {file}" : "Usted restauró {file}", "{user} restored {file}" : "{user} restauró {file}", "You renamed {oldfile} to {newfile}" : "Ha renombrado {oldfile} como {newfile}", @@ -140,31 +147,16 @@ OC.L10N.register( "The files you are trying to upload exceed the maximum size for file uploads on this server." : "Los archivos que está intentando subir sobrepasan el tamaño máximo permitido en este servidor.", "No favorites yet" : "Aún no hay favoritos", "Files and folders you mark as favorite will show up here" : "Aquí aparecerán los archivos y carpetas que usted marque como favoritos", - "Shared with you" : "Compartido con usted", + "Shared with you" : "Compartido contigo", "Shared with others" : "Compartido con otros", "Shared by link" : "Compartido por enlace", "Tags" : "Etiquetas", "Deleted files" : "Archivos eliminados", "Text file" : "Archivo de texto", "New text file.txt" : "Nuevo archivo de texto.txt", - "Uploading..." : "Subiendo...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} hora restante","{hours}:{minutes}:{seconds} horas restantes"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minuto restante","{minutes}:{seconds} minutos restantes"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} segundo restante","{seconds} segundos restantes"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Dentro de poco...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada.", "Move" : "Mover", - "Copy local link" : "Copiar enlace local", - "Folder" : "Carpeta", - "Upload" : "Subir", - "A new file or folder has been deleted" : "Un nuevo archivo o carpeta ha sido eliminado", - "A new file or folder has been restored" : "Un nuevo archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos mediante WebDAV", - "No favorites" : "No hay favoritos" + "A new file or folder has been deleted" : "Se ha borrado un nuevo archivo o carpeta", + "A new file or folder has been restored" : "Se ha restaurado un nuevo archivo o carpeta", + "Use this address to access your Files via WebDAV" : "Utiliza esta dirección para acceder a tus archivos vía WebDAV" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es.json b/apps/files/l10n/es.json index db8baad60b33b..5561592082d22 100644 --- a/apps/files/l10n/es.json +++ b/apps/files/l10n/es.json @@ -1,6 +1,6 @@ { "translations": { - "Storage is temporarily not available" : "El almacenamiento no esta disponible temporalmente", - "Storage invalid" : "Almacenamiento inválido", + "Storage is temporarily not available" : "El almacenamiento no está disponible temporalmente", + "Storage invalid" : "Almacenamiento no válido", "Unknown error" : "Error desconocido", "All files" : "Todos los archivos", "Recent" : "Reciente", @@ -23,11 +23,12 @@ "Download" : "Descargar", "Rename" : "Renombrar", "Move or copy" : "Mover o copiar", + "Copy" : "Copiar", "Target folder" : "Directorio destino", "Delete" : "Eliminar", "Disconnect storage" : "Desconectar almacenamiento", "Unshare" : "Dejar de compartir", - "Could not load info for file \"{file}\"" : "No se pudo cargar información para el archivo \"{file}\"", + "Could not load info for file \"{file}\"" : "No se ha podido cargar información para el archivo \"{file}\"", "Files" : "Archivos", "Details" : "Detalles", "Select" : "Seleccionar", @@ -47,7 +48,7 @@ "Could not rename \"{fileName}\"" : "No se pudo renombrar \"{fileName}\"", "Could not create file \"{file}\"" : "No se pudo crear archivo \"{file}\"", "Could not create file \"{file}\" because it already exists" : "No se pudo crear archivo \"{file}\" porque ya existe", - "Could not create folder \"{dir}\" because it already exists" : "No se pudo crear la carpeta \"{dir}\" porque ya existe", + "Could not create folder \"{dir}\" because it already exists" : "No se ha podido crear la carpeta \"{dir}\" porque ya existe", "Error deleting file \"{fileName}\"." : "Error al borrar el archivo \"{fileName}\".", "No search results in other folders for {tag}{filter}{endtag}" : "No hay resultados de búsqueda en otras carpetas para {tag}{filter}{endtag}", "Name" : "Nombre", @@ -97,12 +98,18 @@ "Moved by {user}" : "Movido por {user}", "\"remote user\"" : "\"usuario remoto\"", "You created {file}" : "Ha creado {file}", + "You created an encrypted file in {file}" : "Has creado un archivo cifrado en {file}", "{user} created {file}" : "{user} ha creado {file}", + "{user} created an encrypted file in {file}" : "{user} ha creado un archivo cifrado en {file}", "{file} was created in a public folder" : "{file} se ha creado en una carpeta pública", "You changed {file}" : "Usted ha cambiado {file}", + "You changed an encrypted file in {file}" : "Has modificado un archivo cifrado en {file}", "{user} changed {file}" : "{user} ha cambiado {file}", + "{user} changed an encrypted file in {file}" : "{user} ha modificado un archivo cifrado en {file}", "You deleted {file}" : "Usted ha borrado {file}", + "You deleted an encrypted file in {file}" : "Has borrado un archivo cifrado en {file}", "{user} deleted {file}" : "{user} eliminó {file}", + "{user} deleted an encrypted file in {file}" : "{user} ha borrado un archivo cifrado en {file}", "You restored {file}" : "Usted restauró {file}", "{user} restored {file}" : "{user} restauró {file}", "You renamed {oldfile} to {newfile}" : "Ha renombrado {oldfile} como {newfile}", @@ -138,31 +145,16 @@ "The files you are trying to upload exceed the maximum size for file uploads on this server." : "Los archivos que está intentando subir sobrepasan el tamaño máximo permitido en este servidor.", "No favorites yet" : "Aún no hay favoritos", "Files and folders you mark as favorite will show up here" : "Aquí aparecerán los archivos y carpetas que usted marque como favoritos", - "Shared with you" : "Compartido con usted", + "Shared with you" : "Compartido contigo", "Shared with others" : "Compartido con otros", "Shared by link" : "Compartido por enlace", "Tags" : "Etiquetas", "Deleted files" : "Archivos eliminados", "Text file" : "Archivo de texto", "New text file.txt" : "Nuevo archivo de texto.txt", - "Uploading..." : "Subiendo...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} hora restante","{hours}:{minutes}:{seconds} horas restantes"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minuto restante","{minutes}:{seconds} minutos restantes"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} segundo restante","{seconds} segundos restantes"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Dentro de poco...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada.", "Move" : "Mover", - "Copy local link" : "Copiar enlace local", - "Folder" : "Carpeta", - "Upload" : "Subir", - "A new file or folder has been deleted" : "Un nuevo archivo o carpeta ha sido eliminado", - "A new file or folder has been restored" : "Un nuevo archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos mediante WebDAV", - "No favorites" : "No hay favoritos" + "A new file or folder has been deleted" : "Se ha borrado un nuevo archivo o carpeta", + "A new file or folder has been restored" : "Se ha restaurado un nuevo archivo o carpeta", + "Use this address to access your Files via WebDAV" : "Utiliza esta dirección para acceder a tus archivos vía WebDAV" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es_419.js b/apps/files/l10n/es_419.js index 793abaf101b5b..5eb28fca10f6c 100644 --- a/apps/files/l10n/es_419.js +++ b/apps/files/l10n/es_419.js @@ -143,25 +143,6 @@ OC.L10N.register( "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_419.json b/apps/files/l10n/es_419.json index 4083caedd5e0c..beb3c150b4ad3 100644 --- a/apps/files/l10n/es_419.json +++ b/apps/files/l10n/es_419.json @@ -141,25 +141,6 @@ "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es_AR.js b/apps/files/l10n/es_AR.js index b4121e83246ac..344dd8696878d 100644 --- a/apps/files/l10n/es_AR.js +++ b/apps/files/l10n/es_AR.js @@ -127,25 +127,6 @@ OC.L10N.register( "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar link local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un nuevo archivo ha sido borrado", - "A new file or folder has been restored" : "Un nuevo archivo ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Use esta dirección para acceder sus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_AR.json b/apps/files/l10n/es_AR.json index 549e2a7672c04..3edd9185bb417 100644 --- a/apps/files/l10n/es_AR.json +++ b/apps/files/l10n/es_AR.json @@ -125,25 +125,6 @@ "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar link local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un nuevo archivo ha sido borrado", - "A new file or folder has been restored" : "Un nuevo archivo ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Use esta dirección para acceder sus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es_CL.js b/apps/files/l10n/es_CL.js index 793abaf101b5b..5eb28fca10f6c 100644 --- a/apps/files/l10n/es_CL.js +++ b/apps/files/l10n/es_CL.js @@ -143,25 +143,6 @@ OC.L10N.register( "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_CL.json b/apps/files/l10n/es_CL.json index 4083caedd5e0c..beb3c150b4ad3 100644 --- a/apps/files/l10n/es_CL.json +++ b/apps/files/l10n/es_CL.json @@ -141,25 +141,6 @@ "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es_CO.js b/apps/files/l10n/es_CO.js index 793abaf101b5b..5eb28fca10f6c 100644 --- a/apps/files/l10n/es_CO.js +++ b/apps/files/l10n/es_CO.js @@ -143,25 +143,6 @@ OC.L10N.register( "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_CO.json b/apps/files/l10n/es_CO.json index 4083caedd5e0c..beb3c150b4ad3 100644 --- a/apps/files/l10n/es_CO.json +++ b/apps/files/l10n/es_CO.json @@ -141,25 +141,6 @@ "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es_CR.js b/apps/files/l10n/es_CR.js index 793abaf101b5b..5eb28fca10f6c 100644 --- a/apps/files/l10n/es_CR.js +++ b/apps/files/l10n/es_CR.js @@ -143,25 +143,6 @@ OC.L10N.register( "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_CR.json b/apps/files/l10n/es_CR.json index 4083caedd5e0c..beb3c150b4ad3 100644 --- a/apps/files/l10n/es_CR.json +++ b/apps/files/l10n/es_CR.json @@ -141,25 +141,6 @@ "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es_DO.js b/apps/files/l10n/es_DO.js index 793abaf101b5b..5eb28fca10f6c 100644 --- a/apps/files/l10n/es_DO.js +++ b/apps/files/l10n/es_DO.js @@ -143,25 +143,6 @@ OC.L10N.register( "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_DO.json b/apps/files/l10n/es_DO.json index 4083caedd5e0c..beb3c150b4ad3 100644 --- a/apps/files/l10n/es_DO.json +++ b/apps/files/l10n/es_DO.json @@ -141,25 +141,6 @@ "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es_EC.js b/apps/files/l10n/es_EC.js index 793abaf101b5b..5eb28fca10f6c 100644 --- a/apps/files/l10n/es_EC.js +++ b/apps/files/l10n/es_EC.js @@ -143,25 +143,6 @@ OC.L10N.register( "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_EC.json b/apps/files/l10n/es_EC.json index 4083caedd5e0c..beb3c150b4ad3 100644 --- a/apps/files/l10n/es_EC.json +++ b/apps/files/l10n/es_EC.json @@ -141,25 +141,6 @@ "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es_GT.js b/apps/files/l10n/es_GT.js index 793abaf101b5b..5eb28fca10f6c 100644 --- a/apps/files/l10n/es_GT.js +++ b/apps/files/l10n/es_GT.js @@ -143,25 +143,6 @@ OC.L10N.register( "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_GT.json b/apps/files/l10n/es_GT.json index 4083caedd5e0c..beb3c150b4ad3 100644 --- a/apps/files/l10n/es_GT.json +++ b/apps/files/l10n/es_GT.json @@ -141,25 +141,6 @@ "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es_HN.js b/apps/files/l10n/es_HN.js index 793abaf101b5b..5eb28fca10f6c 100644 --- a/apps/files/l10n/es_HN.js +++ b/apps/files/l10n/es_HN.js @@ -143,25 +143,6 @@ OC.L10N.register( "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_HN.json b/apps/files/l10n/es_HN.json index 4083caedd5e0c..beb3c150b4ad3 100644 --- a/apps/files/l10n/es_HN.json +++ b/apps/files/l10n/es_HN.json @@ -141,25 +141,6 @@ "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es_MX.js b/apps/files/l10n/es_MX.js index 99cddff26c160..f15bba87a56c8 100644 --- a/apps/files/l10n/es_MX.js +++ b/apps/files/l10n/es_MX.js @@ -25,6 +25,7 @@ OC.L10N.register( "Download" : "Descargar", "Rename" : "Renombrar", "Move or copy" : "Mover o copiar", + "Copy" : "Copiar", "Target folder" : "Carpeta destino", "Delete" : "Borrar", "Disconnect storage" : "Desconectar almacenamiento", @@ -58,7 +59,7 @@ OC.L10N.register( "_%n folder_::_%n folders_" : ["%n carpeta","%n carpetas"], "_%n file_::_%n files_" : ["%n archivo","%n archivos"], "{dirs} and {files}" : "{dirs} y {files}", - "_including %n hidden_::_including %n hidden_" : ["incluyendo %n escondido","incluyendo %n ocultos"], + "_including %n hidden_::_including %n hidden_" : ["incluyendo %n oculto","incluyendo %n ocultos"], "You don’t have permission to upload or create files here" : "No cuentas con los permisos para cargar o crear archivos aquí", "_Uploading %n file_::_Uploading %n files_" : ["Subiendo %n archivo","Cargando %n archivos"], "New" : "Nuevo", @@ -99,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "Movido por {user}", "\"remote user\"" : "\"usuario remoto\"", "You created {file}" : "Creaste {file}", + "You created an encrypted file in {file}" : "Creaste un archivo encriptado en {file}", "{user} created {file}" : "{user} creó {file}", + "{user} created an encrypted file in {file}" : "{user} creó un archivo encriptado en {file}", "{file} was created in a public folder" : "{file} fue creado en una carpeta pública", "You changed {file}" : "Cambiaste {file}", + "You changed an encrypted file in {file}" : "Cambiaste un archivo encriptado en {file}", "{user} changed {file}" : "{user} cambió {file}", + "{user} changed an encrypted file in {file}" : "{user} cambió un archivo encriptado en {file}", "You deleted {file}" : "Borraste {file}", + "You deleted an encrypted file in {file}" : "Borraste un archivo encriptado en {file}", "{user} deleted {file}" : "{user} borró {file}", + "{user} deleted an encrypted file in {file}" : "{user} borró un archivo encriptado en {file}", "You restored {file}" : "Restauraste {file}", "{user} restored {file}" : "{user} restauró {file}", "You renamed {oldfile} to {newfile}" : "Renombraste {oldfile} como {newfile}", @@ -144,27 +151,12 @@ OC.L10N.register( "Shared with others" : "Compartido con otros", "Shared by link" : "Compartido por liga", "Tags" : "Etiquetas", - "Deleted files" : "Archivos borrados", + "Deleted files" : "Papelera", "Text file" : "Archivo de texto", "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "A new file or folder has been deleted" : "Un nuevo archivo o carpeta ha sido borrado", + "A new file or folder has been restored" : "Un nuevo archivo o carpeta ha sido restaurado", + "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus Archivos vía WebDAV" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_MX.json b/apps/files/l10n/es_MX.json index 63160ebcf09dc..fab15d75a3f75 100644 --- a/apps/files/l10n/es_MX.json +++ b/apps/files/l10n/es_MX.json @@ -23,6 +23,7 @@ "Download" : "Descargar", "Rename" : "Renombrar", "Move or copy" : "Mover o copiar", + "Copy" : "Copiar", "Target folder" : "Carpeta destino", "Delete" : "Borrar", "Disconnect storage" : "Desconectar almacenamiento", @@ -56,7 +57,7 @@ "_%n folder_::_%n folders_" : ["%n carpeta","%n carpetas"], "_%n file_::_%n files_" : ["%n archivo","%n archivos"], "{dirs} and {files}" : "{dirs} y {files}", - "_including %n hidden_::_including %n hidden_" : ["incluyendo %n escondido","incluyendo %n ocultos"], + "_including %n hidden_::_including %n hidden_" : ["incluyendo %n oculto","incluyendo %n ocultos"], "You don’t have permission to upload or create files here" : "No cuentas con los permisos para cargar o crear archivos aquí", "_Uploading %n file_::_Uploading %n files_" : ["Subiendo %n archivo","Cargando %n archivos"], "New" : "Nuevo", @@ -97,12 +98,18 @@ "Moved by {user}" : "Movido por {user}", "\"remote user\"" : "\"usuario remoto\"", "You created {file}" : "Creaste {file}", + "You created an encrypted file in {file}" : "Creaste un archivo encriptado en {file}", "{user} created {file}" : "{user} creó {file}", + "{user} created an encrypted file in {file}" : "{user} creó un archivo encriptado en {file}", "{file} was created in a public folder" : "{file} fue creado en una carpeta pública", "You changed {file}" : "Cambiaste {file}", + "You changed an encrypted file in {file}" : "Cambiaste un archivo encriptado en {file}", "{user} changed {file}" : "{user} cambió {file}", + "{user} changed an encrypted file in {file}" : "{user} cambió un archivo encriptado en {file}", "You deleted {file}" : "Borraste {file}", + "You deleted an encrypted file in {file}" : "Borraste un archivo encriptado en {file}", "{user} deleted {file}" : "{user} borró {file}", + "{user} deleted an encrypted file in {file}" : "{user} borró un archivo encriptado en {file}", "You restored {file}" : "Restauraste {file}", "{user} restored {file}" : "{user} restauró {file}", "You renamed {oldfile} to {newfile}" : "Renombraste {oldfile} como {newfile}", @@ -142,27 +149,12 @@ "Shared with others" : "Compartido con otros", "Shared by link" : "Compartido por liga", "Tags" : "Etiquetas", - "Deleted files" : "Archivos borrados", + "Deleted files" : "Papelera", "Text file" : "Archivo de texto", "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "A new file or folder has been deleted" : "Un nuevo archivo o carpeta ha sido borrado", + "A new file or folder has been restored" : "Un nuevo archivo o carpeta ha sido restaurado", + "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus Archivos vía WebDAV" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es_NI.js b/apps/files/l10n/es_NI.js index 793abaf101b5b..5eb28fca10f6c 100644 --- a/apps/files/l10n/es_NI.js +++ b/apps/files/l10n/es_NI.js @@ -143,25 +143,6 @@ OC.L10N.register( "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_NI.json b/apps/files/l10n/es_NI.json index 4083caedd5e0c..beb3c150b4ad3 100644 --- a/apps/files/l10n/es_NI.json +++ b/apps/files/l10n/es_NI.json @@ -141,25 +141,6 @@ "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es_PA.js b/apps/files/l10n/es_PA.js index 793abaf101b5b..5eb28fca10f6c 100644 --- a/apps/files/l10n/es_PA.js +++ b/apps/files/l10n/es_PA.js @@ -143,25 +143,6 @@ OC.L10N.register( "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_PA.json b/apps/files/l10n/es_PA.json index 4083caedd5e0c..beb3c150b4ad3 100644 --- a/apps/files/l10n/es_PA.json +++ b/apps/files/l10n/es_PA.json @@ -141,25 +141,6 @@ "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es_PE.js b/apps/files/l10n/es_PE.js index 793abaf101b5b..5eb28fca10f6c 100644 --- a/apps/files/l10n/es_PE.js +++ b/apps/files/l10n/es_PE.js @@ -143,25 +143,6 @@ OC.L10N.register( "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_PE.json b/apps/files/l10n/es_PE.json index 4083caedd5e0c..beb3c150b4ad3 100644 --- a/apps/files/l10n/es_PE.json +++ b/apps/files/l10n/es_PE.json @@ -141,25 +141,6 @@ "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es_PR.js b/apps/files/l10n/es_PR.js index 793abaf101b5b..5eb28fca10f6c 100644 --- a/apps/files/l10n/es_PR.js +++ b/apps/files/l10n/es_PR.js @@ -143,25 +143,6 @@ OC.L10N.register( "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_PR.json b/apps/files/l10n/es_PR.json index 4083caedd5e0c..beb3c150b4ad3 100644 --- a/apps/files/l10n/es_PR.json +++ b/apps/files/l10n/es_PR.json @@ -141,25 +141,6 @@ "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es_PY.js b/apps/files/l10n/es_PY.js index 793abaf101b5b..5eb28fca10f6c 100644 --- a/apps/files/l10n/es_PY.js +++ b/apps/files/l10n/es_PY.js @@ -143,25 +143,6 @@ OC.L10N.register( "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_PY.json b/apps/files/l10n/es_PY.json index 4083caedd5e0c..beb3c150b4ad3 100644 --- a/apps/files/l10n/es_PY.json +++ b/apps/files/l10n/es_PY.json @@ -141,25 +141,6 @@ "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es_SV.js b/apps/files/l10n/es_SV.js index 793abaf101b5b..5eb28fca10f6c 100644 --- a/apps/files/l10n/es_SV.js +++ b/apps/files/l10n/es_SV.js @@ -143,25 +143,6 @@ OC.L10N.register( "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_SV.json b/apps/files/l10n/es_SV.json index 4083caedd5e0c..beb3c150b4ad3 100644 --- a/apps/files/l10n/es_SV.json +++ b/apps/files/l10n/es_SV.json @@ -141,25 +141,6 @@ "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/es_UY.js b/apps/files/l10n/es_UY.js index 793abaf101b5b..5eb28fca10f6c 100644 --- a/apps/files/l10n/es_UY.js +++ b/apps/files/l10n/es_UY.js @@ -143,25 +143,6 @@ OC.L10N.register( "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/es_UY.json b/apps/files/l10n/es_UY.json index 4083caedd5e0c..beb3c150b4ad3 100644 --- a/apps/files/l10n/es_UY.json +++ b/apps/files/l10n/es_UY.json @@ -141,25 +141,6 @@ "Tags" : "Etiquetas", "Deleted files" : "Archivos borrados", "Text file" : "Archivo de texto", - "New text file.txt" : "Nuevo ArchivoDeTexto.txt", - "Uploading..." : "Cargando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["falta {hours}:{minutes}:{seconds} hora","faltan {hours}:{minutes}:{seconds} horas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["falta {minutes}:{seconds} minuto","faltan {minutes}:{seconds} minutos"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["falta {seconds} segundo","faltan {seconds} segundos"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "En cualquier momento...", - "Soon..." : "Pronto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "La carga del archivo está en curso. El salir de la página ahora, la cancelará. ", - "Move" : "Mover", - "Copy local link" : "Copiar liga local", - "Folder" : "Carpeta", - "Upload" : "Cargar", - "A new file or folder has been deleted" : "Un archivo o carpeta ha sido borrado", - "A new file or folder has been restored" : "Un archivo o carpeta ha sido restaurado", - "Use this address to access your Files via WebDAV" : "Usa esta dirección para acceder tus archivos vía WebDAV", - "No favorites" : "No hay favoritos" + "New text file.txt" : "Nuevo ArchivoDeTexto.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/et_EE.js b/apps/files/l10n/et_EE.js index e8b8e55848ed1..6c9aba3771f46 100644 --- a/apps/files/l10n/et_EE.js +++ b/apps/files/l10n/et_EE.js @@ -62,8 +62,11 @@ OC.L10N.register( "You don’t have permission to upload or create files here" : "Sul puuduvad õigused siia failide üleslaadimiseks või tekitamiseks", "_Uploading %n file_::_Uploading %n files_" : ["Laadin üles %n faili","Laadin üles %n faili"], "New" : "Uus", + "{used} of {quota} used" : "Kasutatud {used}/{quota}", + "{used} used" : "Kasutatud {used}", "\"{name}\" is an invalid file name." : "\"{name}\" on vigane failinimi.", "File name cannot be empty." : "Faili nimi ei saa olla tühi.", + "\"/\" is not allowed inside a file name." : "\"/\" pole failinimedes lubatud.", "\"{name}\" is not an allowed filetype" : "\"{name}\" pole lubatud failitüüp", "Storage of {owner} is full, files can not be updated or synced anymore!" : "{owner} andmemaht on täis! Faile ei uuendata ega sünkroniseerita!", "Your storage is full, files can not be updated or synced anymore!" : "Sinu andmemaht on täis! Faile ei uuendata ega sünkroniseerita!", @@ -122,8 +125,8 @@ OC.L10N.register( "Save" : "Salvesta", "With PHP-FPM it might take 5 minutes for changes to be applied." : "PHP-FPM-ga võib selle väärtuse mõju rakendamine võtta aega kuni 5 minutit pärast salvestamist.", "Missing permissions to edit from here." : "Puuduvad õigused siit muuta.", - "%s of %s used" : "%s/%s kasutatud", - "%s used" : "%s kasutatud", + "%s of %s used" : "Kasutatud %s/%s", + "%s used" : "Kasutatud %s", "Settings" : "Seaded", "Show hidden files" : "Näita peidetud faile", "WebDAV" : "WebDAV", @@ -144,24 +147,9 @@ OC.L10N.register( "Deleted files" : "Kustutatud failid", "Text file" : "Tekstifail", "New text file.txt" : "Uus tekstifail.txt", - "Uploading..." : "Üleslaadimine...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} tund jäänud","{hours}:{minutes}:{seconds} tundi jäänud"], - "{hours}:{minutes}h" : "{hours}:{minutes}t", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minut jäänud","{minutes}:{seconds} minutit jäänud"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekund jäänud","{seconds} sekundit jäänud"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Iga hetk...", - "Soon..." : "Varsti...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise.", "Move" : "Liiguta", - "Copy local link" : "Kopeeri kohalik link", - "Folder" : "Kaust", - "Upload" : "Lae üles", "A new file or folder has been deleted" : "Uus fail või kaust on kustutatud", "A new file or folder has been restored" : "Uus fail või kaust on taastatud", - "Use this address to access your Files via WebDAV" : "Kasuta seda aadressi, et oma failidele WebDAV kaudu ligi pääseda", - "No favorites" : "Lemmikuid pole" + "Use this address to access your Files via WebDAV" : "Kasuta seda aadressi, et oma failidele WebDAVi kaudu ligi pääseda" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/et_EE.json b/apps/files/l10n/et_EE.json index 7d8d47e3b9519..4df100f9d11d3 100644 --- a/apps/files/l10n/et_EE.json +++ b/apps/files/l10n/et_EE.json @@ -60,8 +60,11 @@ "You don’t have permission to upload or create files here" : "Sul puuduvad õigused siia failide üleslaadimiseks või tekitamiseks", "_Uploading %n file_::_Uploading %n files_" : ["Laadin üles %n faili","Laadin üles %n faili"], "New" : "Uus", + "{used} of {quota} used" : "Kasutatud {used}/{quota}", + "{used} used" : "Kasutatud {used}", "\"{name}\" is an invalid file name." : "\"{name}\" on vigane failinimi.", "File name cannot be empty." : "Faili nimi ei saa olla tühi.", + "\"/\" is not allowed inside a file name." : "\"/\" pole failinimedes lubatud.", "\"{name}\" is not an allowed filetype" : "\"{name}\" pole lubatud failitüüp", "Storage of {owner} is full, files can not be updated or synced anymore!" : "{owner} andmemaht on täis! Faile ei uuendata ega sünkroniseerita!", "Your storage is full, files can not be updated or synced anymore!" : "Sinu andmemaht on täis! Faile ei uuendata ega sünkroniseerita!", @@ -120,8 +123,8 @@ "Save" : "Salvesta", "With PHP-FPM it might take 5 minutes for changes to be applied." : "PHP-FPM-ga võib selle väärtuse mõju rakendamine võtta aega kuni 5 minutit pärast salvestamist.", "Missing permissions to edit from here." : "Puuduvad õigused siit muuta.", - "%s of %s used" : "%s/%s kasutatud", - "%s used" : "%s kasutatud", + "%s of %s used" : "Kasutatud %s/%s", + "%s used" : "Kasutatud %s", "Settings" : "Seaded", "Show hidden files" : "Näita peidetud faile", "WebDAV" : "WebDAV", @@ -142,24 +145,9 @@ "Deleted files" : "Kustutatud failid", "Text file" : "Tekstifail", "New text file.txt" : "Uus tekstifail.txt", - "Uploading..." : "Üleslaadimine...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} tund jäänud","{hours}:{minutes}:{seconds} tundi jäänud"], - "{hours}:{minutes}h" : "{hours}:{minutes}t", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minut jäänud","{minutes}:{seconds} minutit jäänud"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekund jäänud","{seconds} sekundit jäänud"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Iga hetk...", - "Soon..." : "Varsti...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise.", "Move" : "Liiguta", - "Copy local link" : "Kopeeri kohalik link", - "Folder" : "Kaust", - "Upload" : "Lae üles", "A new file or folder has been deleted" : "Uus fail või kaust on kustutatud", "A new file or folder has been restored" : "Uus fail või kaust on taastatud", - "Use this address to access your Files via WebDAV" : "Kasuta seda aadressi, et oma failidele WebDAV kaudu ligi pääseda", - "No favorites" : "Lemmikuid pole" + "Use this address to access your Files via WebDAV" : "Kasuta seda aadressi, et oma failidele WebDAVi kaudu ligi pääseda" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/eu.js b/apps/files/l10n/eu.js index 9af90d81c22f0..c429112d74675 100644 --- a/apps/files/l10n/eu.js +++ b/apps/files/l10n/eu.js @@ -140,25 +140,6 @@ OC.L10N.register( "Tags" : "Etiketak", "Deleted files" : "Ezabatutako fitxategiak", "Text file" : "Testu fitxategia", - "New text file.txt" : ".txt testu fitxategi berria", - "Uploading..." : "Igotzen...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["Ordu {hours}:{minutes}:{seconds} geratzen da","{hours}:{minutes}:{seconds} ordu geratzen dira"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["Minutu {minutes}:{seconds} geratzen da","{minutes}:{seconds} minutu geratzen dira"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["Segundu {seconds} geratzen da","{seconds} segundu geratzen dira"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Edozein unean...", - "Soon..." : "Laster...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.", - "Move" : "Mugitu", - "Copy local link" : "Kopiatu tokiko esteka", - "Folder" : "Karpeta", - "Upload" : "Igo", - "A new file or folder has been deleted" : "A new file or folder has been deleted", - "A new file or folder has been restored" : "A new file or folder has been restored", - "Use this address to access your Files via WebDAV" : "Erabili helbide hau WebDAV bidez zure fitxategietara sartzeko ", - "No favorites" : "Gogokorik ez" + "New text file.txt" : ".txt testu fitxategi berria" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/eu.json b/apps/files/l10n/eu.json index 735f952f6cd40..2a25620c455b4 100644 --- a/apps/files/l10n/eu.json +++ b/apps/files/l10n/eu.json @@ -138,25 +138,6 @@ "Tags" : "Etiketak", "Deleted files" : "Ezabatutako fitxategiak", "Text file" : "Testu fitxategia", - "New text file.txt" : ".txt testu fitxategi berria", - "Uploading..." : "Igotzen...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["Ordu {hours}:{minutes}:{seconds} geratzen da","{hours}:{minutes}:{seconds} ordu geratzen dira"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["Minutu {minutes}:{seconds} geratzen da","{minutes}:{seconds} minutu geratzen dira"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["Segundu {seconds} geratzen da","{seconds} segundu geratzen dira"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Edozein unean...", - "Soon..." : "Laster...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.", - "Move" : "Mugitu", - "Copy local link" : "Kopiatu tokiko esteka", - "Folder" : "Karpeta", - "Upload" : "Igo", - "A new file or folder has been deleted" : "A new file or folder has been deleted", - "A new file or folder has been restored" : "A new file or folder has been restored", - "Use this address to access your Files via WebDAV" : "Erabili helbide hau WebDAV bidez zure fitxategietara sartzeko ", - "No favorites" : "Gogokorik ez" + "New text file.txt" : ".txt testu fitxategi berria" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/fi.js b/apps/files/l10n/fi.js index 19d1d84f8253e..5eb6bf8f5184d 100644 --- a/apps/files/l10n/fi.js +++ b/apps/files/l10n/fi.js @@ -16,12 +16,15 @@ OC.L10N.register( "Not enough free space, you are uploading {size1} but only {size2} is left" : "Ei riittävästi vapaata tilaa. Lähetyksesi koko on {size1}, mutta vain {size2} on jäljellä", "Target folder \"{dir}\" does not exist any more" : "Kohdekansio \"{dir}\" ei ole enää olemassa", "Not enough free space" : "Ei tarpeeksi vapaata tilaa", + "Uploading …" : "Lähetetään…", "…" : "…", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize}/{totalSize} ({bitrate})", + "Target folder does not exist any more" : "Kohdekansiota ei ole enää olemassa", "Actions" : "Toiminnot", "Download" : "Lataa", "Rename" : "Nimeä uudelleen", "Move or copy" : "Siirrä tai kopioi", + "Copy" : "Kopioi", "Target folder" : "Kohdekansio", "Delete" : "Poista", "Disconnect storage" : "Katkaise yhteys tallennustilaan", @@ -57,8 +60,11 @@ OC.L10N.register( "You don’t have permission to upload or create files here" : "Käyttöoikeutesi eivät riitä tiedostojen lähettämiseen tai kansioiden luomiseen tähän sijaintiin", "_Uploading %n file_::_Uploading %n files_" : ["Lähetetään %n tiedosto","Lähetetään %n tiedostoa"], "New" : "Uusi", + "{used} of {quota} used" : "{used}/{quota} käytetty", + "{used} used" : "{used} käytetty", "\"{name}\" is an invalid file name." : "\"{name}\" on virheellinen tiedostonimi.", "File name cannot be empty." : "Tiedoston nimi ei voi olla tyhjä.", + "\"/\" is not allowed inside a file name." : "\"/\" ei ole sallittu merkki tiedostonimessä.", "\"{name}\" is not an allowed filetype" : "\"{name}\" ei ole sallittu tiedostomuoto", "Storage of {owner} is full, files can not be updated or synced anymore!" : "Käyttäjän {owner} tallennustila on täynnä, tiedostoja ei voi enää päivittää tai synkronoida!", "Your storage is full, files can not be updated or synced anymore!" : "Tallennustila on loppu, tiedostoja ei voi enää päivittää tai synkronoida!", @@ -74,6 +80,8 @@ OC.L10N.register( "Favorite" : "Suosikki", "New folder" : "Uusi kansio", "Upload file" : "Lähetä tiedosto", + "Remove from favorites" : "Poista suosikeista", + "Add to favorites" : "Lisää suosikkeihin", "An error occurred while trying to update the tags" : "Tunnisteiden päivitystä yrittäessä tapahtui virhe", "Added to favorites" : "Lisätty suosikkeihin", "Removed from favorites" : "Poistettu suosikeista", @@ -119,6 +127,7 @@ OC.L10N.register( "Settings" : "Asetukset", "Show hidden files" : "Näytä piilotetut tiedostot", "WebDAV" : "WebDAV", + "Use this address to access your Files via WebDAV" : "Käytä tätä osoitetta käyttääksesi tiedostojasi WebDAV:in kautta", "Cancel upload" : "Perus lähetys", "No files in here" : "Täällä ei ole tiedostoja", "Upload some content or sync with your devices!" : "Lähetä tiedostoja tai synkronoi sisältö laitteidesi kanssa!", @@ -135,24 +144,9 @@ OC.L10N.register( "Deleted files" : "Poistetut tiedostot", "Text file" : "Tekstitiedosto", "New text file.txt" : "Uusi tekstitiedosto.txt", - "Uploading..." : "Lähetetään...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} tunti jäljellä","{hours}:{minutes}:{seconds} tuntia jäljellä"], - "{hours}:{minutes}h" : "{hours}h {minutes}m", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minuutti jäljellä","{minutes}:{seconds} minuuttia jäljellä"], - "{minutes}:{seconds}m" : "{minutes}m {seconds}s", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekunti jäljellä","{seconds} sekuntia jäljellä"], - "{seconds}s" : "{seconds} s", - "Any moment now..." : "Minä tahansa hetkenä...", - "Soon..." : "Pian...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen.", "Move" : "Siirrä", - "Copy local link" : "Kopioi paikallinen linkki", - "Folder" : "Kansio", - "Upload" : "Lähetä", - "A new file or folder has been deleted" : "Uusi tiedosto tai kansio on poistettu", - "A new file or folder has been restored" : "Uusi tiedosto tai kansio on palautettu", - "Use this address to access your Files via WebDAV" : "Tällä osoitteella käytät tiedostojasi WebDAV:n yli", - "No favorites" : "Ei suosikkeja" + "A new file or folder has been deleted" : "Uusi tiedosto tai kansio on poistettu", + "A new file or folder has been restored" : "Uusi tiedosto tai kansio on palautettu", + "Use this address to access your Files via WebDAV" : "Käytä tätä osoitetetta käyttääksesi tiedostojasi WebDAV:in välityksellä" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/fi.json b/apps/files/l10n/fi.json index 807628a15ae9f..dbd1312f4344f 100644 --- a/apps/files/l10n/fi.json +++ b/apps/files/l10n/fi.json @@ -14,12 +14,15 @@ "Not enough free space, you are uploading {size1} but only {size2} is left" : "Ei riittävästi vapaata tilaa. Lähetyksesi koko on {size1}, mutta vain {size2} on jäljellä", "Target folder \"{dir}\" does not exist any more" : "Kohdekansio \"{dir}\" ei ole enää olemassa", "Not enough free space" : "Ei tarpeeksi vapaata tilaa", + "Uploading …" : "Lähetetään…", "…" : "…", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize}/{totalSize} ({bitrate})", + "Target folder does not exist any more" : "Kohdekansiota ei ole enää olemassa", "Actions" : "Toiminnot", "Download" : "Lataa", "Rename" : "Nimeä uudelleen", "Move or copy" : "Siirrä tai kopioi", + "Copy" : "Kopioi", "Target folder" : "Kohdekansio", "Delete" : "Poista", "Disconnect storage" : "Katkaise yhteys tallennustilaan", @@ -55,8 +58,11 @@ "You don’t have permission to upload or create files here" : "Käyttöoikeutesi eivät riitä tiedostojen lähettämiseen tai kansioiden luomiseen tähän sijaintiin", "_Uploading %n file_::_Uploading %n files_" : ["Lähetetään %n tiedosto","Lähetetään %n tiedostoa"], "New" : "Uusi", + "{used} of {quota} used" : "{used}/{quota} käytetty", + "{used} used" : "{used} käytetty", "\"{name}\" is an invalid file name." : "\"{name}\" on virheellinen tiedostonimi.", "File name cannot be empty." : "Tiedoston nimi ei voi olla tyhjä.", + "\"/\" is not allowed inside a file name." : "\"/\" ei ole sallittu merkki tiedostonimessä.", "\"{name}\" is not an allowed filetype" : "\"{name}\" ei ole sallittu tiedostomuoto", "Storage of {owner} is full, files can not be updated or synced anymore!" : "Käyttäjän {owner} tallennustila on täynnä, tiedostoja ei voi enää päivittää tai synkronoida!", "Your storage is full, files can not be updated or synced anymore!" : "Tallennustila on loppu, tiedostoja ei voi enää päivittää tai synkronoida!", @@ -72,6 +78,8 @@ "Favorite" : "Suosikki", "New folder" : "Uusi kansio", "Upload file" : "Lähetä tiedosto", + "Remove from favorites" : "Poista suosikeista", + "Add to favorites" : "Lisää suosikkeihin", "An error occurred while trying to update the tags" : "Tunnisteiden päivitystä yrittäessä tapahtui virhe", "Added to favorites" : "Lisätty suosikkeihin", "Removed from favorites" : "Poistettu suosikeista", @@ -117,6 +125,7 @@ "Settings" : "Asetukset", "Show hidden files" : "Näytä piilotetut tiedostot", "WebDAV" : "WebDAV", + "Use this address to access your Files via WebDAV" : "Käytä tätä osoitetta käyttääksesi tiedostojasi WebDAV:in kautta", "Cancel upload" : "Perus lähetys", "No files in here" : "Täällä ei ole tiedostoja", "Upload some content or sync with your devices!" : "Lähetä tiedostoja tai synkronoi sisältö laitteidesi kanssa!", @@ -133,24 +142,9 @@ "Deleted files" : "Poistetut tiedostot", "Text file" : "Tekstitiedosto", "New text file.txt" : "Uusi tekstitiedosto.txt", - "Uploading..." : "Lähetetään...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} tunti jäljellä","{hours}:{minutes}:{seconds} tuntia jäljellä"], - "{hours}:{minutes}h" : "{hours}h {minutes}m", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minuutti jäljellä","{minutes}:{seconds} minuuttia jäljellä"], - "{minutes}:{seconds}m" : "{minutes}m {seconds}s", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekunti jäljellä","{seconds} sekuntia jäljellä"], - "{seconds}s" : "{seconds} s", - "Any moment now..." : "Minä tahansa hetkenä...", - "Soon..." : "Pian...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedoston lähetyksen.", "Move" : "Siirrä", - "Copy local link" : "Kopioi paikallinen linkki", - "Folder" : "Kansio", - "Upload" : "Lähetä", - "A new file or folder has been deleted" : "Uusi tiedosto tai kansio on poistettu", - "A new file or folder has been restored" : "Uusi tiedosto tai kansio on palautettu", - "Use this address to access your Files via WebDAV" : "Tällä osoitteella käytät tiedostojasi WebDAV:n yli", - "No favorites" : "Ei suosikkeja" + "A new file or folder has been deleted" : "Uusi tiedosto tai kansio on poistettu", + "A new file or folder has been restored" : "Uusi tiedosto tai kansio on palautettu", + "Use this address to access your Files via WebDAV" : "Käytä tätä osoitetetta käyttääksesi tiedostojasi WebDAV:in välityksellä" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/fr.js b/apps/files/l10n/fr.js index ccce056d6314b..b1a7b4a743188 100644 --- a/apps/files/l10n/fr.js +++ b/apps/files/l10n/fr.js @@ -25,6 +25,7 @@ OC.L10N.register( "Download" : "Télécharger", "Rename" : "Renommer", "Move or copy" : "Déplacer ou copier", + "Copy" : "Copier", "Target folder" : "Dossier cible", "Delete" : "Supprimer", "Disconnect storage" : "Déconnecter ce support de stockage", @@ -99,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "Déplacé par {user}", "\"remote user\"" : "\"utilisateur distant\"", "You created {file}" : "Vous avez créé {file}", + "You created an encrypted file in {file}" : "Vous avez créé un fichier chiffré dans {file}", "{user} created {file}" : "{user} a créé {file}", + "{user} created an encrypted file in {file}" : "{user} a créé un fichier chiffré dans {file}", "{file} was created in a public folder" : "{file} a été créé dans un dossier public", "You changed {file}" : "Vous avez modifié {file}", + "You changed an encrypted file in {file}" : "Vous avez modifié un fichier chiffré dans {file}", "{user} changed {file}" : "{user} a modifié {file}", + "{user} changed an encrypted file in {file}" : "{user} a modifié un fichier chiffré dans {file}", "You deleted {file}" : "Vous avez supprimé {file}", + "You deleted an encrypted file in {file}" : "Vous avez supprimé un fichier chiffré dans {file}", "{user} deleted {file}" : "{user} a supprimé {file}", + "{user} deleted an encrypted file in {file}" : "{user} a supprimé un fichier chiffré dans {file}", "You restored {file}" : "Vous avez restauré {file}", "{user} restored {file}" : "{user} a restauré {file}", "You renamed {oldfile} to {newfile}" : "Vous avez renommé {oldfile} en {newfile}", @@ -147,24 +154,9 @@ OC.L10N.register( "Deleted files" : "Fichiers supprimés", "Text file" : "Fichier texte", "New text file.txt" : "Nouveau fichier texte.txt", - "Uploading..." : "Envoi en cours…", - "..." : "…", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} heure restante","{hours}:{minutes}:{seconds} heures restantes"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minute restante","{minutes}:{seconds} minutes restantes"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} seconde restante","{seconds} secondes restantes"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "D'ici quelques instants…", - "Soon..." : "Bientôt…", - "File upload is in progress. Leaving the page now will cancel the upload." : "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.", "Move" : "Déplacer", - "Copy local link" : "Copier le dossier local", - "Folder" : "Dossier", - "Upload" : "Téléverser", "A new file or folder has been deleted" : "Un nouveau fichier ou répertoire a été supprimé", "A new file or folder has been restored" : "Un nouveau fichier ou répertoire a été restauré", - "Use this address to access your Files via WebDAV" : "Utilisez cette adresse pour accéder à vos fichiers par WebDAV", - "No favorites" : "Aucun favori" + "Use this address to access your Files via WebDAV" : "Utilisez cette adresse pour accéder à vos fichiers par WebDAV" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/files/l10n/fr.json b/apps/files/l10n/fr.json index d1e1320c0dc4e..9072989afd3fc 100644 --- a/apps/files/l10n/fr.json +++ b/apps/files/l10n/fr.json @@ -23,6 +23,7 @@ "Download" : "Télécharger", "Rename" : "Renommer", "Move or copy" : "Déplacer ou copier", + "Copy" : "Copier", "Target folder" : "Dossier cible", "Delete" : "Supprimer", "Disconnect storage" : "Déconnecter ce support de stockage", @@ -97,12 +98,18 @@ "Moved by {user}" : "Déplacé par {user}", "\"remote user\"" : "\"utilisateur distant\"", "You created {file}" : "Vous avez créé {file}", + "You created an encrypted file in {file}" : "Vous avez créé un fichier chiffré dans {file}", "{user} created {file}" : "{user} a créé {file}", + "{user} created an encrypted file in {file}" : "{user} a créé un fichier chiffré dans {file}", "{file} was created in a public folder" : "{file} a été créé dans un dossier public", "You changed {file}" : "Vous avez modifié {file}", + "You changed an encrypted file in {file}" : "Vous avez modifié un fichier chiffré dans {file}", "{user} changed {file}" : "{user} a modifié {file}", + "{user} changed an encrypted file in {file}" : "{user} a modifié un fichier chiffré dans {file}", "You deleted {file}" : "Vous avez supprimé {file}", + "You deleted an encrypted file in {file}" : "Vous avez supprimé un fichier chiffré dans {file}", "{user} deleted {file}" : "{user} a supprimé {file}", + "{user} deleted an encrypted file in {file}" : "{user} a supprimé un fichier chiffré dans {file}", "You restored {file}" : "Vous avez restauré {file}", "{user} restored {file}" : "{user} a restauré {file}", "You renamed {oldfile} to {newfile}" : "Vous avez renommé {oldfile} en {newfile}", @@ -145,24 +152,9 @@ "Deleted files" : "Fichiers supprimés", "Text file" : "Fichier texte", "New text file.txt" : "Nouveau fichier texte.txt", - "Uploading..." : "Envoi en cours…", - "..." : "…", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} heure restante","{hours}:{minutes}:{seconds} heures restantes"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minute restante","{minutes}:{seconds} minutes restantes"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} seconde restante","{seconds} secondes restantes"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "D'ici quelques instants…", - "Soon..." : "Bientôt…", - "File upload is in progress. Leaving the page now will cancel the upload." : "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.", "Move" : "Déplacer", - "Copy local link" : "Copier le dossier local", - "Folder" : "Dossier", - "Upload" : "Téléverser", "A new file or folder has been deleted" : "Un nouveau fichier ou répertoire a été supprimé", "A new file or folder has been restored" : "Un nouveau fichier ou répertoire a été restauré", - "Use this address to access your Files via WebDAV" : "Utilisez cette adresse pour accéder à vos fichiers par WebDAV", - "No favorites" : "Aucun favori" + "Use this address to access your Files via WebDAV" : "Utilisez cette adresse pour accéder à vos fichiers par WebDAV" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/files/l10n/he.js b/apps/files/l10n/he.js index 49b05d5d91e61..f5d39440a71ca 100644 --- a/apps/files/l10n/he.js +++ b/apps/files/l10n/he.js @@ -1,9 +1,11 @@ OC.L10N.register( "files", { + "Storage is temporarily not available" : "האחסון אינו זמין באופן זמני", "Storage invalid" : "אחסון לא חוקי", "Unknown error" : "שגיאה בלתי ידועה", "All files" : "כל הקבצים", + "Recent" : "אחרונים", "File could not be found" : "הקובץ לא ניתן לאיתור", "Home" : "בית", "Close" : "סגירה", @@ -12,15 +14,21 @@ OC.L10N.register( "Upload cancelled." : "ההעלאה בוטלה.", "Unable to upload {filename} as it is a directory or has 0 bytes" : "לא ניתן להעלות {filename} כיוון שמדובר בתיקייה או שגודלו 0 בייט", "Not enough free space, you are uploading {size1} but only {size2} is left" : "לא קיים מספיק מקום פנוי, הקובץ המיועד להעלאה {size1} אבל נשאר {size2} בלבד", - "Uploading..." : "העלאה...", - "..." : "...", + "Target folder \"{dir}\" does not exist any more" : "תיקיית היעד „{dir}” לא קיים עוד", + "Not enough free space" : "אין מספיק מקום פנוי", + "Uploading …" : "מתבצעת העלאה…", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} מתוך {totalSize} ({bitrate})", + "Target folder does not exist any more" : "תיקיית היעד אינה קיימת עוד", "Actions" : "פעולות", "Download" : "הורדה", "Rename" : "שינוי שם", + "Move or copy" : "העברה או העתקה", + "Copy" : "העתקה", + "Target folder" : "תיקיית יעד", "Delete" : "מחיקה", "Disconnect storage" : "ניתוק אחסון", "Unshare" : "הסר שיתוף", + "Could not load info for file \"{file}\"" : "לא ניתן לטעון מידע על הקובץ „{file}”", "Files" : "קבצים", "Details" : "פרטים", "Select" : "בחר", @@ -30,6 +38,8 @@ OC.L10N.register( "This directory is unavailable, please check the logs or contact the administrator" : "תיקייה זו לא קיימת, יש לבדוק את הלוגים או ליצור קשר עם המנהל", "Could not move \"{file}\", target exists" : "לא ניתן להעביר \"{file}\", קובץ מטרה קיים", "Could not move \"{file}\"" : "לא ניתן להעביר \"{file}\"", + "Could not copy \"{file}\", target exists" : "לא ניתן להעתיק את „{file}”, היעד קיים", + "Could not copy \"{file}\"" : "לא ניתן להעתיק את „{file}”", "{newName} already exists" : "{newName} כבר קיים", "Could not rename \"{fileName}\", it does not exist any more" : "לא ניתן לשנות שם \"{fileName}\", הוא כבר לא קיים יותר", "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "השם \"{targetName}\" כבר קיים בתיקייה \"{dir}\". יש לבחור שם אחר.", @@ -44,9 +54,12 @@ OC.L10N.register( "_%n folder_::_%n folders_" : ["%n תיקייה","%n תיקיות"], "_%n file_::_%n files_" : ["%n קובץ","%n קבצים"], "{dirs} and {files}" : "{dirs} וכן {files}", + "_including %n hidden_::_including %n hidden_" : ["לרבות %n מוסתר","לרבות %n מוסתרים"], "You don’t have permission to upload or create files here" : "אין לך הרשאות להעלות או ליצור קבצים כאן", "_Uploading %n file_::_Uploading %n files_" : ["מעלה %n קובץ","מעלה %n קבצים"], "New" : "חדש", + "{used} of {quota} used" : "{used} מתוך {quota} בשימוש", + "{used} used" : "{used} בשימוש", "\"{name}\" is an invalid file name." : "\"{name}\" הנו שם קובץ לא חוקי.", "File name cannot be empty." : "שם קובץ אינו יכול להיות ריק", "Storage of {owner} is full, files can not be updated or synced anymore!" : "האחסון של {owner} מלא, כבר לא ניתן לעדכן ולסנכרן קבצים!", @@ -55,16 +68,33 @@ OC.L10N.register( "Your storage is almost full ({usedSpacePercent}%)" : "שטח האחסון שלך כמעט מלא ({usedSpacePercent}%)", "_matches '{filter}'_::_match '{filter}'_" : ["מתאים ל- '{filter}'","מתאים ל- '{filter}'"], "View in folder" : "הצג בתיקייה", + "Copied!" : "ההעתקה הושלמה!", "Path" : "נתיב", "_%n byte_::_%n bytes_" : ["%n בייט","%n בייטים"], "Favorited" : "מועדף", "Favorite" : "מועדף", - "Folder" : "תיקייה", "New folder" : "תיקייה חדשה", - "Upload" : "העלאה", + "Upload file" : "העלאת קובץ", + "Not favorited" : "לא במועדפים", + "Remove from favorites" : "הסרה מהמועדפים", + "Add to favorites" : "הוספה למועדפים", "An error occurred while trying to update the tags" : "שגיאה אירעה בזמן עדכון התגיות", + "Added to favorites" : "נוסף למועדפים", + "Removed from favorites" : "הוסר מהמועדפים", + "You added {file} to your favorites" : "הוספת את {file} למועדפים שלך", + "You removed {file} from your favorites" : "הסרת את {file} מהמועדפים שלך", + "File changes" : "שינויים בקובץ", + "Created by {user}" : "נוצר על ידי {user}", + "Changed by {user}" : "נערך על ידי {user}", + "Deleted by {user}" : "נמחק על ידי {user}", + "Restored by {user}" : "שוחזר על ידי {user}", + "Renamed by {user}" : "השם השתנה על ידי {user}", + "Moved by {user}" : "הועבר על ידי {user}", + "\"remote user\"" : "„משתמש מרוחק”", + "You created {file}" : "יצרת את {file}", "A new file or folder has been created" : "קובץ או תיקייה חדשים נוצרו", "Limit notifications about creation and changes to your favorite files (Stream only)" : "הגבלת הודעות על יצירת או שינוי הקבצים המועדפים שלך (Stream only)", + "Unlimited" : "ללא הגבלה", "Upload (max. %s)" : "העלאה (מקסימום %s)", "File handling" : "טיפול בקבצים", "Maximum upload size" : "גודל העלאה מקסימלי", @@ -72,67 +102,27 @@ OC.L10N.register( "Save" : "שמירה", "With PHP-FPM it might take 5 minutes for changes to be applied." : "בשימוש ב- PHP-FPM זה יכול להמשך 5 דקות לשינויים לחול.", "Missing permissions to edit from here." : "חסרות הרשאות לעריכה מכאן.", + "%s of %s used" : "%s מתוך %s בשימוש", + "%s used" : "%s בשימוש", "Settings" : "הגדרות", "Show hidden files" : "הצגת קבצים נסתרים", "WebDAV" : "WebDAV", - "Use this address to access your Files via WebDAV" : "ניתן להשתמש בכתובת זו כדי להכנס לקבצים שלך באמצעות WebDAV", + "Cancel upload" : "ביטול העלאה", "No files in here" : "אין כאן קבצים", "Upload some content or sync with your devices!" : "יש להעלות קצת תוכן או לסנכרן עם ההתקנים שלך!", "No entries found in this folder" : "לא נמצאו כניסות לתיקייה זו", "Select all" : "לבחור הכול", "Upload too large" : "העלאה גדולה מידי", "The files you are trying to upload exceed the maximum size for file uploads on this server." : "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה.", - "No favorites" : "אין מועדפים", + "No favorites yet" : "אין מועדפים עדיין", "Files and folders you mark as favorite will show up here" : "קבצים ותיקיות שסומנו על ידך כמועדפים יוצגו כאן", + "Shared with you" : "משותף אתך", + "Shared with others" : "משותף עם אחרים", + "Shared by link" : "משותף על ידי קישור", "Tags" : "תגיות", "Deleted files" : "קבצים שנמחקו", "Text file" : "קובץ טקסט", "New text file.txt" : "קובץ טקסט חדש.txt", - "Storage not available" : "אחסון לא זמין", - "Unable to set upload directory." : "לא היה ניתן לקבוע תיקיית העלאות.", - "Invalid Token" : "קוד לא חוקי", - "No file was uploaded. Unknown error" : "לא הועלה קובץ. טעות בלתי מזוהה.", - "There is no error, the file uploaded with success" : "לא התרחשה שגיאה, הקובץ הועלה בהצלחה", - "The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:", - "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "הקובץ שהועלה גדוך מהערך MAX_FILE_SIZE שהוגדר בתופס HTML", - "The uploaded file was only partially uploaded" : "הקובץ הועלה באופן חלקי בלבד", - "No file was uploaded" : "שום קובץ לא הועלה", - "Missing a temporary folder" : "תקיה זמנית חסרה", - "Failed to write to disk" : "הכתיבה לכונן נכשלה", - "Not enough storage available" : "אין די שטח פנוי באחסון", - "The target folder has been moved or deleted." : "תיקיית המטרה הועברה או נמחקה.", - "Upload failed. Could not find uploaded file" : "העלאה נכשלה. לא נמצא הקובץ להעלאה", - "Upload failed. Could not get file info." : "העלאה נכשלה. לא ניתן להשיג את פרטי הקובץ.", - "Invalid directory." : "תיקייה שגויה.", - "Total file size {size1} exceeds upload limit {size2}" : "גודל הקובת {size1} עובר את מגבלת הגודל להעלאה {size2}", - "Error uploading file \"{fileName}\": {message}" : "שגיאה בזמן העלאת קובץ \"{fileName}\": {message}", - "Could not get result from server." : "לא ניתן לגשת לתוצאות מהשרת.", - "{hours}:{minutes}:{seconds} hour{plural_s} left" : "{hours}:{minutes}:{seconds} hour{plural_s} left", - "{hours}:{minutes}h" : "{hours}:{minutes}שעות", - "{minutes}:{seconds} minute{plural_s} left" : "{minutes}:{seconds} דקות{plural_s} נשארו", - "{minutes}:{seconds}m" : "{minutes}:{seconds}דקות", - "{seconds} second{plural_s} left" : "{seconds} שניות{plural_s} נשארו", - "{seconds}s" : "{seconds}שניות", - "Any moment now..." : "עכשיו בכל רגע...", - "Soon..." : "בקרוב...", - "File upload is in progress. Leaving the page now will cancel the upload." : "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה.", - "No entries in this folder match '{filter}'" : "לא נמצאו התאמות בתיקייה זו ל- '{filter}'", - "Local link" : "קישור מקומי", - "{newname} already exists" : "{newname} כבר קיים", - "A file or folder has been changed" : "קובץ או תיקייה שונו", - "A file or folder has been deleted" : "קובץ או תיקייה נמחקו", - "A file or folder has been restored" : "קובץ או תיקייה שוחזר", - "You created %1$s" : "יצרת %1$s", - "%2$s created %1$s" : "%2$s נוצרו %1$s", - "%1$s was created in a public folder" : "%1$s נוצר בתיקייה ציבורית", - "You changed %1$s" : "שינית %1$s", - "%2$s changed %1$s" : "%2$s שונו %1$s", - "You deleted %1$s" : "מחקת %1$s", - "%2$s deleted %1$s" : "%2$s נמחקו %1$s", - "You restored %1$s" : "שחזרת %1$s", - "%2$s restored %1$s" : "%2$s שוחזרו %1$s", - "Changed by %2$s" : "שונו על ידי %2$s", - "Deleted by %2$s" : "נמחקו על ידי %2$s", - "Restored by %2$s" : "שוחזרו על ידי %2$s" + "Move" : "העברה" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/he.json b/apps/files/l10n/he.json index 51a16344f8ef9..9ae26a50c8acb 100644 --- a/apps/files/l10n/he.json +++ b/apps/files/l10n/he.json @@ -1,7 +1,9 @@ { "translations": { + "Storage is temporarily not available" : "האחסון אינו זמין באופן זמני", "Storage invalid" : "אחסון לא חוקי", "Unknown error" : "שגיאה בלתי ידועה", "All files" : "כל הקבצים", + "Recent" : "אחרונים", "File could not be found" : "הקובץ לא ניתן לאיתור", "Home" : "בית", "Close" : "סגירה", @@ -10,15 +12,21 @@ "Upload cancelled." : "ההעלאה בוטלה.", "Unable to upload {filename} as it is a directory or has 0 bytes" : "לא ניתן להעלות {filename} כיוון שמדובר בתיקייה או שגודלו 0 בייט", "Not enough free space, you are uploading {size1} but only {size2} is left" : "לא קיים מספיק מקום פנוי, הקובץ המיועד להעלאה {size1} אבל נשאר {size2} בלבד", - "Uploading..." : "העלאה...", - "..." : "...", + "Target folder \"{dir}\" does not exist any more" : "תיקיית היעד „{dir}” לא קיים עוד", + "Not enough free space" : "אין מספיק מקום פנוי", + "Uploading …" : "מתבצעת העלאה…", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} מתוך {totalSize} ({bitrate})", + "Target folder does not exist any more" : "תיקיית היעד אינה קיימת עוד", "Actions" : "פעולות", "Download" : "הורדה", "Rename" : "שינוי שם", + "Move or copy" : "העברה או העתקה", + "Copy" : "העתקה", + "Target folder" : "תיקיית יעד", "Delete" : "מחיקה", "Disconnect storage" : "ניתוק אחסון", "Unshare" : "הסר שיתוף", + "Could not load info for file \"{file}\"" : "לא ניתן לטעון מידע על הקובץ „{file}”", "Files" : "קבצים", "Details" : "פרטים", "Select" : "בחר", @@ -28,6 +36,8 @@ "This directory is unavailable, please check the logs or contact the administrator" : "תיקייה זו לא קיימת, יש לבדוק את הלוגים או ליצור קשר עם המנהל", "Could not move \"{file}\", target exists" : "לא ניתן להעביר \"{file}\", קובץ מטרה קיים", "Could not move \"{file}\"" : "לא ניתן להעביר \"{file}\"", + "Could not copy \"{file}\", target exists" : "לא ניתן להעתיק את „{file}”, היעד קיים", + "Could not copy \"{file}\"" : "לא ניתן להעתיק את „{file}”", "{newName} already exists" : "{newName} כבר קיים", "Could not rename \"{fileName}\", it does not exist any more" : "לא ניתן לשנות שם \"{fileName}\", הוא כבר לא קיים יותר", "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "השם \"{targetName}\" כבר קיים בתיקייה \"{dir}\". יש לבחור שם אחר.", @@ -42,9 +52,12 @@ "_%n folder_::_%n folders_" : ["%n תיקייה","%n תיקיות"], "_%n file_::_%n files_" : ["%n קובץ","%n קבצים"], "{dirs} and {files}" : "{dirs} וכן {files}", + "_including %n hidden_::_including %n hidden_" : ["לרבות %n מוסתר","לרבות %n מוסתרים"], "You don’t have permission to upload or create files here" : "אין לך הרשאות להעלות או ליצור קבצים כאן", "_Uploading %n file_::_Uploading %n files_" : ["מעלה %n קובץ","מעלה %n קבצים"], "New" : "חדש", + "{used} of {quota} used" : "{used} מתוך {quota} בשימוש", + "{used} used" : "{used} בשימוש", "\"{name}\" is an invalid file name." : "\"{name}\" הנו שם קובץ לא חוקי.", "File name cannot be empty." : "שם קובץ אינו יכול להיות ריק", "Storage of {owner} is full, files can not be updated or synced anymore!" : "האחסון של {owner} מלא, כבר לא ניתן לעדכן ולסנכרן קבצים!", @@ -53,16 +66,33 @@ "Your storage is almost full ({usedSpacePercent}%)" : "שטח האחסון שלך כמעט מלא ({usedSpacePercent}%)", "_matches '{filter}'_::_match '{filter}'_" : ["מתאים ל- '{filter}'","מתאים ל- '{filter}'"], "View in folder" : "הצג בתיקייה", + "Copied!" : "ההעתקה הושלמה!", "Path" : "נתיב", "_%n byte_::_%n bytes_" : ["%n בייט","%n בייטים"], "Favorited" : "מועדף", "Favorite" : "מועדף", - "Folder" : "תיקייה", "New folder" : "תיקייה חדשה", - "Upload" : "העלאה", + "Upload file" : "העלאת קובץ", + "Not favorited" : "לא במועדפים", + "Remove from favorites" : "הסרה מהמועדפים", + "Add to favorites" : "הוספה למועדפים", "An error occurred while trying to update the tags" : "שגיאה אירעה בזמן עדכון התגיות", + "Added to favorites" : "נוסף למועדפים", + "Removed from favorites" : "הוסר מהמועדפים", + "You added {file} to your favorites" : "הוספת את {file} למועדפים שלך", + "You removed {file} from your favorites" : "הסרת את {file} מהמועדפים שלך", + "File changes" : "שינויים בקובץ", + "Created by {user}" : "נוצר על ידי {user}", + "Changed by {user}" : "נערך על ידי {user}", + "Deleted by {user}" : "נמחק על ידי {user}", + "Restored by {user}" : "שוחזר על ידי {user}", + "Renamed by {user}" : "השם השתנה על ידי {user}", + "Moved by {user}" : "הועבר על ידי {user}", + "\"remote user\"" : "„משתמש מרוחק”", + "You created {file}" : "יצרת את {file}", "A new file or folder has been created" : "קובץ או תיקייה חדשים נוצרו", "Limit notifications about creation and changes to your favorite files (Stream only)" : "הגבלת הודעות על יצירת או שינוי הקבצים המועדפים שלך (Stream only)", + "Unlimited" : "ללא הגבלה", "Upload (max. %s)" : "העלאה (מקסימום %s)", "File handling" : "טיפול בקבצים", "Maximum upload size" : "גודל העלאה מקסימלי", @@ -70,67 +100,27 @@ "Save" : "שמירה", "With PHP-FPM it might take 5 minutes for changes to be applied." : "בשימוש ב- PHP-FPM זה יכול להמשך 5 דקות לשינויים לחול.", "Missing permissions to edit from here." : "חסרות הרשאות לעריכה מכאן.", + "%s of %s used" : "%s מתוך %s בשימוש", + "%s used" : "%s בשימוש", "Settings" : "הגדרות", "Show hidden files" : "הצגת קבצים נסתרים", "WebDAV" : "WebDAV", - "Use this address to access your Files via WebDAV" : "ניתן להשתמש בכתובת זו כדי להכנס לקבצים שלך באמצעות WebDAV", + "Cancel upload" : "ביטול העלאה", "No files in here" : "אין כאן קבצים", "Upload some content or sync with your devices!" : "יש להעלות קצת תוכן או לסנכרן עם ההתקנים שלך!", "No entries found in this folder" : "לא נמצאו כניסות לתיקייה זו", "Select all" : "לבחור הכול", "Upload too large" : "העלאה גדולה מידי", "The files you are trying to upload exceed the maximum size for file uploads on this server." : "הקבצים שניסית להעלות חרגו מהגודל המקסימלי להעלאת קבצים על שרת זה.", - "No favorites" : "אין מועדפים", + "No favorites yet" : "אין מועדפים עדיין", "Files and folders you mark as favorite will show up here" : "קבצים ותיקיות שסומנו על ידך כמועדפים יוצגו כאן", + "Shared with you" : "משותף אתך", + "Shared with others" : "משותף עם אחרים", + "Shared by link" : "משותף על ידי קישור", "Tags" : "תגיות", "Deleted files" : "קבצים שנמחקו", "Text file" : "קובץ טקסט", "New text file.txt" : "קובץ טקסט חדש.txt", - "Storage not available" : "אחסון לא זמין", - "Unable to set upload directory." : "לא היה ניתן לקבוע תיקיית העלאות.", - "Invalid Token" : "קוד לא חוקי", - "No file was uploaded. Unknown error" : "לא הועלה קובץ. טעות בלתי מזוהה.", - "There is no error, the file uploaded with success" : "לא התרחשה שגיאה, הקובץ הועלה בהצלחה", - "The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "הקבצים שנשלחו חורגים מהגודל שצוין בהגדרה upload_max_filesize שבקובץ php.ini:", - "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "הקובץ שהועלה גדוך מהערך MAX_FILE_SIZE שהוגדר בתופס HTML", - "The uploaded file was only partially uploaded" : "הקובץ הועלה באופן חלקי בלבד", - "No file was uploaded" : "שום קובץ לא הועלה", - "Missing a temporary folder" : "תקיה זמנית חסרה", - "Failed to write to disk" : "הכתיבה לכונן נכשלה", - "Not enough storage available" : "אין די שטח פנוי באחסון", - "The target folder has been moved or deleted." : "תיקיית המטרה הועברה או נמחקה.", - "Upload failed. Could not find uploaded file" : "העלאה נכשלה. לא נמצא הקובץ להעלאה", - "Upload failed. Could not get file info." : "העלאה נכשלה. לא ניתן להשיג את פרטי הקובץ.", - "Invalid directory." : "תיקייה שגויה.", - "Total file size {size1} exceeds upload limit {size2}" : "גודל הקובת {size1} עובר את מגבלת הגודל להעלאה {size2}", - "Error uploading file \"{fileName}\": {message}" : "שגיאה בזמן העלאת קובץ \"{fileName}\": {message}", - "Could not get result from server." : "לא ניתן לגשת לתוצאות מהשרת.", - "{hours}:{minutes}:{seconds} hour{plural_s} left" : "{hours}:{minutes}:{seconds} hour{plural_s} left", - "{hours}:{minutes}h" : "{hours}:{minutes}שעות", - "{minutes}:{seconds} minute{plural_s} left" : "{minutes}:{seconds} דקות{plural_s} נשארו", - "{minutes}:{seconds}m" : "{minutes}:{seconds}דקות", - "{seconds} second{plural_s} left" : "{seconds} שניות{plural_s} נשארו", - "{seconds}s" : "{seconds}שניות", - "Any moment now..." : "עכשיו בכל רגע...", - "Soon..." : "בקרוב...", - "File upload is in progress. Leaving the page now will cancel the upload." : "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה.", - "No entries in this folder match '{filter}'" : "לא נמצאו התאמות בתיקייה זו ל- '{filter}'", - "Local link" : "קישור מקומי", - "{newname} already exists" : "{newname} כבר קיים", - "A file or folder has been changed" : "קובץ או תיקייה שונו", - "A file or folder has been deleted" : "קובץ או תיקייה נמחקו", - "A file or folder has been restored" : "קובץ או תיקייה שוחזר", - "You created %1$s" : "יצרת %1$s", - "%2$s created %1$s" : "%2$s נוצרו %1$s", - "%1$s was created in a public folder" : "%1$s נוצר בתיקייה ציבורית", - "You changed %1$s" : "שינית %1$s", - "%2$s changed %1$s" : "%2$s שונו %1$s", - "You deleted %1$s" : "מחקת %1$s", - "%2$s deleted %1$s" : "%2$s נמחקו %1$s", - "You restored %1$s" : "שחזרת %1$s", - "%2$s restored %1$s" : "%2$s שוחזרו %1$s", - "Changed by %2$s" : "שונו על ידי %2$s", - "Deleted by %2$s" : "נמחקו על ידי %2$s", - "Restored by %2$s" : "שוחזרו על ידי %2$s" + "Move" : "העברה" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/hu.js b/apps/files/l10n/hu.js index 9eb1c1337843a..2381d89c32aa0 100644 --- a/apps/files/l10n/hu.js +++ b/apps/files/l10n/hu.js @@ -25,6 +25,7 @@ OC.L10N.register( "Download" : "Letöltés", "Rename" : "Átnevezés", "Move or copy" : "Mozgatás vagy másolás", + "Copy" : "Másol", "Target folder" : "Cél mappa", "Delete" : "Törlés", "Disconnect storage" : "Tároló leválasztása", @@ -99,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "Áthelyezte: {user}", "\"remote user\"" : "\"távoli felhasználó\"", "You created {file}" : "Létrehoztad: {file}", + "You created an encrypted file in {file}" : "Létrehoztál egy titkosított fájlt ebben: {file}", "{user} created {file}" : "{user} létrehozta: {file}", + "{user} created an encrypted file in {file}" : "{user} létrehozott egy titkosított fájlt ebben: {file}", "{file} was created in a public folder" : "{file} létrehozva egy nyilvános mappában", "You changed {file}" : "Módosítottad: {file}", + "You changed an encrypted file in {file}" : "Megváltoztattál egy titkosított fájlt ebben: {file}", "{user} changed {file}" : "{user} módosította: {file}", + "{user} changed an encrypted file in {file}" : "{user} megváltoztatott egy titkosított fájlt ebben: {file}", "You deleted {file}" : "Törölted: {file}", + "You deleted an encrypted file in {file}" : "Töröltél egy titkosított fájlt itt: {file}", "{user} deleted {file}" : "{user} törölte: {file}", + "{user} deleted an encrypted file in {file}" : "{user} törölt egy titkosított fájlt itt: {file}", "You restored {file}" : "Visszaállítottad: {file}", "{user} restored {file}" : "{user} visszaállította: {file}", "You renamed {oldfile} to {newfile}" : "Átnevezted ezt: {oldfile} erre: {newfile}", @@ -147,24 +154,9 @@ OC.L10N.register( "Deleted files" : "Törölt fájlok", "Text file" : "Szövegfájl", "New text file.txt" : "Új szöveges fájl.txt", - "Uploading..." : "Feltöltés...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} óra van hátra","{hours}:{minutes}:{seconds} óra van hátra"], - "{hours}:{minutes}h" : "{hours}:{minutes}ó", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} perc van hátra","{minutes}:{seconds} perc van hátra"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}p", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} másodperc van hátra","{seconds} másodperc van hátra"], - "{seconds}s" : "{seconds}mp", - "Any moment now..." : "Mostmár bármelyik pillanatban...", - "Soon..." : "Hamarosan...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést.", "Move" : "Áthelyezés", - "Copy local link" : "Helyi hivatkozás másolása", - "Folder" : "Mappa", - "Upload" : "Feltöltés", "A new file or folder has been deleted" : "Egy új fájl vagy mappa törölve", "A new file or folder has been restored" : "Egy új fájl vagy mappa visszaállítva", - "Use this address to access your Files via WebDAV" : "Használja ezt a címet a Fájlok eléréséhez WebDAV-on keresztül.", - "No favorites" : "Nincsenek kedvencek" + "Use this address to access your Files via WebDAV" : "Használja ezt a címet a Fájlok eléréséhez WebDAV-on keresztül." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/hu.json b/apps/files/l10n/hu.json index 8206518d6abdc..fd6f59c82a0c3 100644 --- a/apps/files/l10n/hu.json +++ b/apps/files/l10n/hu.json @@ -23,6 +23,7 @@ "Download" : "Letöltés", "Rename" : "Átnevezés", "Move or copy" : "Mozgatás vagy másolás", + "Copy" : "Másol", "Target folder" : "Cél mappa", "Delete" : "Törlés", "Disconnect storage" : "Tároló leválasztása", @@ -97,12 +98,18 @@ "Moved by {user}" : "Áthelyezte: {user}", "\"remote user\"" : "\"távoli felhasználó\"", "You created {file}" : "Létrehoztad: {file}", + "You created an encrypted file in {file}" : "Létrehoztál egy titkosított fájlt ebben: {file}", "{user} created {file}" : "{user} létrehozta: {file}", + "{user} created an encrypted file in {file}" : "{user} létrehozott egy titkosított fájlt ebben: {file}", "{file} was created in a public folder" : "{file} létrehozva egy nyilvános mappában", "You changed {file}" : "Módosítottad: {file}", + "You changed an encrypted file in {file}" : "Megváltoztattál egy titkosított fájlt ebben: {file}", "{user} changed {file}" : "{user} módosította: {file}", + "{user} changed an encrypted file in {file}" : "{user} megváltoztatott egy titkosított fájlt ebben: {file}", "You deleted {file}" : "Törölted: {file}", + "You deleted an encrypted file in {file}" : "Töröltél egy titkosított fájlt itt: {file}", "{user} deleted {file}" : "{user} törölte: {file}", + "{user} deleted an encrypted file in {file}" : "{user} törölt egy titkosított fájlt itt: {file}", "You restored {file}" : "Visszaállítottad: {file}", "{user} restored {file}" : "{user} visszaállította: {file}", "You renamed {oldfile} to {newfile}" : "Átnevezted ezt: {oldfile} erre: {newfile}", @@ -145,24 +152,9 @@ "Deleted files" : "Törölt fájlok", "Text file" : "Szövegfájl", "New text file.txt" : "Új szöveges fájl.txt", - "Uploading..." : "Feltöltés...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} óra van hátra","{hours}:{minutes}:{seconds} óra van hátra"], - "{hours}:{minutes}h" : "{hours}:{minutes}ó", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} perc van hátra","{minutes}:{seconds} perc van hátra"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}p", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} másodperc van hátra","{seconds} másodperc van hátra"], - "{seconds}s" : "{seconds}mp", - "Any moment now..." : "Mostmár bármelyik pillanatban...", - "Soon..." : "Hamarosan...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést.", "Move" : "Áthelyezés", - "Copy local link" : "Helyi hivatkozás másolása", - "Folder" : "Mappa", - "Upload" : "Feltöltés", "A new file or folder has been deleted" : "Egy új fájl vagy mappa törölve", "A new file or folder has been restored" : "Egy új fájl vagy mappa visszaállítva", - "Use this address to access your Files via WebDAV" : "Használja ezt a címet a Fájlok eléréséhez WebDAV-on keresztül.", - "No favorites" : "Nincsenek kedvencek" + "Use this address to access your Files via WebDAV" : "Használja ezt a címet a Fájlok eléréséhez WebDAV-on keresztül." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/ia.js b/apps/files/l10n/ia.js index 0d65e5644dd24..f8cdea50dd521 100644 --- a/apps/files/l10n/ia.js +++ b/apps/files/l10n/ia.js @@ -119,25 +119,6 @@ OC.L10N.register( "Tags" : "Etiquettas", "Deleted files" : "Files delite", "Text file" : "File de texto", - "New text file.txt" : "Nove texto file.txt", - "Uploading..." : "Incargante...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} hora restante","{hours}:{minutes}:{seconds} horas restante"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minuta restante","{minutes}:{seconds} minutas restante"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} secunda restante","{seconds} secundas restante"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "A qualcunque momento...", - "Soon..." : "Proximemente...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Incarga de un file es in progresso. Quitar le pagina ora cancellara le incarga.", - "Move" : "Mover", - "Copy local link" : "Copiar ligamine local", - "Folder" : "Dossier", - "Upload" : "Incargar", - "A new file or folder has been deleted" : "Un nove file o dossier ha essite delite", - "A new file or folder has been restored" : "Un nove file o un dossier ha essite restabilite", - "Use this address to access your Files via WebDAV" : "Usa iste adresse pro acceder a tu Files via WebDAV", - "No favorites" : "Nulle favoritos" + "New text file.txt" : "Nove texto file.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/ia.json b/apps/files/l10n/ia.json index 40b79ad0c38a6..5e9577a202e3c 100644 --- a/apps/files/l10n/ia.json +++ b/apps/files/l10n/ia.json @@ -117,25 +117,6 @@ "Tags" : "Etiquettas", "Deleted files" : "Files delite", "Text file" : "File de texto", - "New text file.txt" : "Nove texto file.txt", - "Uploading..." : "Incargante...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} hora restante","{hours}:{minutes}:{seconds} horas restante"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minuta restante","{minutes}:{seconds} minutas restante"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} secunda restante","{seconds} secundas restante"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "A qualcunque momento...", - "Soon..." : "Proximemente...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Incarga de un file es in progresso. Quitar le pagina ora cancellara le incarga.", - "Move" : "Mover", - "Copy local link" : "Copiar ligamine local", - "Folder" : "Dossier", - "Upload" : "Incargar", - "A new file or folder has been deleted" : "Un nove file o dossier ha essite delite", - "A new file or folder has been restored" : "Un nove file o un dossier ha essite restabilite", - "Use this address to access your Files via WebDAV" : "Usa iste adresse pro acceder a tu Files via WebDAV", - "No favorites" : "Nulle favoritos" + "New text file.txt" : "Nove texto file.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/id.js b/apps/files/l10n/id.js index 14022655d623b..84c3fd8eff465 100644 --- a/apps/files/l10n/id.js +++ b/apps/files/l10n/id.js @@ -13,8 +13,6 @@ OC.L10N.register( "Upload cancelled." : "Pengunggahan dibatalkan.", "Unable to upload {filename} as it is a directory or has 0 bytes" : "Tidak dapat mengunggah {filename} karena ini sebuah direktori atau memiliki ukuran 0 byte", "Not enough free space, you are uploading {size1} but only {size2} is left" : "Ruang bebas tidak mencukupi, Anda mengunggah {size1} tetapi hanya {size2} yang tersisa", - "Uploading..." : "Mengunggah...", - "..." : "...", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} dari {totalSize} ({bitrate})", "Actions" : "Tindakan", "Download" : "Unduh", @@ -60,9 +58,7 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte"], "Favorited" : "Difavoritkan", "Favorite" : "Favorit", - "Folder" : "Folder", "New folder" : "Map baru", - "Upload" : "Unggah", "An error occurred while trying to update the tags" : "Terjadi kesalahan saat mencoba untuk memperbarui label", "A new file or folder has been created" : "Sebuah berkas atau folder baru telah dibuat", "Limit notifications about creation and changes to your favorite files (Stream only)" : "Batas notifikasi tentang pembuatan dan perubahan berkas favorit Anda (Hanya stream)", @@ -76,62 +72,14 @@ OC.L10N.register( "Settings" : "Pengaturan", "Show hidden files" : "Lihat berkas tersembunyi", "WebDAV" : "WebDAV", - "Use this address to access your Files via WebDAV" : "Gunakan alamat ini untuk mengakses berkas Anda melalui WebDAV", "No files in here" : "Tidak ada berkas disini", "Upload some content or sync with your devices!" : "Unggah beberapa konten dan sinkronisasikan dengan perangkat Anda!", "No entries found in this folder" : "Tidak ada entri yang ditemukan dalam folder ini", "Select all" : "Pilih Semua", "Upload too large" : "Yang diunggah terlalu besar", "The files you are trying to upload exceed the maximum size for file uploads on this server." : "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini.", - "No favorites" : "Tidak ada favorit", "Files and folders you mark as favorite will show up here" : "Berkas dan folder yang Anda tandai sebagai favorit akan ditampilkan disini.", "Text file" : "Berkas teks", - "New text file.txt" : "Teks baru file.txt", - "Storage not available" : "Penyimpanan tidak tersedia", - "Unable to set upload directory." : "Tidak dapat mengatur folder unggah", - "Invalid Token" : "Token tidak sah", - "No file was uploaded. Unknown error" : "Tidak ada berkas yang diunggah. Kesalahan tidak dikenal.", - "There is no error, the file uploaded with success" : "Tidak ada kesalahan, berkas sukses diunggah", - "The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "Berkas yang diunggah melampaui direktif upload_max_filesize pada php.ini", - "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Berkas yang diunggah melampaui direktif MAX_FILE_SIZE yang ditentukan dalam formulir HTML.", - "The uploaded file was only partially uploaded" : "Berkas hanya diunggah sebagian", - "No file was uploaded" : "Tidak ada berkas yang diunggah", - "Missing a temporary folder" : "Folder sementara tidak ada", - "Failed to write to disk" : "Gagal menulis ke disk", - "Not enough storage available" : "Ruang penyimpanan tidak mencukupi", - "The target folder has been moved or deleted." : "Folder tujuan telah dipindahkan atau dihapus.", - "Upload failed. Could not find uploaded file" : "Unggah gagal. Tidak menemukan berkas yang akan diunggah", - "Upload failed. Could not get file info." : "Unggah gagal. Tidak mendapatkan informasi berkas.", - "Invalid directory." : "Direktori tidak valid.", - "Total file size {size1} exceeds upload limit {size2}" : "Jumlah ukuran berkas {size1} melampaui batas unggah {size2}", - "Error uploading file \"{fileName}\": {message}" : "Kesalahan saat mengunggah \"{filename}\": {message}", - "Could not get result from server." : "Tidak mendapatkan hasil dari server.", - "{hours}:{minutes}:{seconds} hour{plural_s} left" : "Masih {hours}:{minutes}:{seconds} lagi", - "{hours}:{minutes}h" : "{hours}:{minutes}j", - "{minutes}:{seconds} minute{plural_s} left" : "Masih {minutes}:{seconds} lagi", - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "{seconds} second{plural_s} left" : "Masih {seconds} detik lagi", - "{seconds}s" : "{seconds}d", - "Any moment now..." : "Sedikit lagi...", - "Soon..." : "Segera...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses.", - "No entries in this folder match '{filter}'" : "Tidak ada entri di folder ini yang cocok dengan '{filter}'", - "Local link" : "Pranala lokal", - "{newname} already exists" : "{newname} sudah ada", - "A file or folder has been changed" : "Sebuah berkas atau folder telah diubah", - "A file or folder has been deleted" : "Sebuah berkas atau folder telah dihapus", - "A file or folder has been restored" : "Sebuah berkas atau folder telah dipulihkan", - "You created %1$s" : "Anda membuat %1$s", - "%2$s created %1$s" : "%2$s membuat %1$s", - "%1$s was created in a public folder" : "%1$s telah dibuat di folder publik", - "You changed %1$s" : "Anda mengubah %1$s", - "%2$s changed %1$s" : "%2$s mengubah %1$s", - "You deleted %1$s" : "Anda menghapus %1$s", - "%2$s deleted %1$s" : "%2$s menghapus %1$s", - "You restored %1$s" : "Anda memulihkan %1$s", - "%2$s restored %1$s" : "%2$s memulihkan %1$s", - "Changed by %2$s" : "Diubah oleh %2$s", - "Deleted by %2$s" : "Dihapus oleh %2$s", - "Restored by %2$s" : "Dipulihkan oleh %2$s" + "New text file.txt" : "Teks baru file.txt" }, "nplurals=1; plural=0;"); diff --git a/apps/files/l10n/id.json b/apps/files/l10n/id.json index e245cc7847c08..9a70bca07418b 100644 --- a/apps/files/l10n/id.json +++ b/apps/files/l10n/id.json @@ -11,8 +11,6 @@ "Upload cancelled." : "Pengunggahan dibatalkan.", "Unable to upload {filename} as it is a directory or has 0 bytes" : "Tidak dapat mengunggah {filename} karena ini sebuah direktori atau memiliki ukuran 0 byte", "Not enough free space, you are uploading {size1} but only {size2} is left" : "Ruang bebas tidak mencukupi, Anda mengunggah {size1} tetapi hanya {size2} yang tersisa", - "Uploading..." : "Mengunggah...", - "..." : "...", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} dari {totalSize} ({bitrate})", "Actions" : "Tindakan", "Download" : "Unduh", @@ -58,9 +56,7 @@ "_%n byte_::_%n bytes_" : ["%n byte"], "Favorited" : "Difavoritkan", "Favorite" : "Favorit", - "Folder" : "Folder", "New folder" : "Map baru", - "Upload" : "Unggah", "An error occurred while trying to update the tags" : "Terjadi kesalahan saat mencoba untuk memperbarui label", "A new file or folder has been created" : "Sebuah berkas atau folder baru telah dibuat", "Limit notifications about creation and changes to your favorite files (Stream only)" : "Batas notifikasi tentang pembuatan dan perubahan berkas favorit Anda (Hanya stream)", @@ -74,62 +70,14 @@ "Settings" : "Pengaturan", "Show hidden files" : "Lihat berkas tersembunyi", "WebDAV" : "WebDAV", - "Use this address to access your Files via WebDAV" : "Gunakan alamat ini untuk mengakses berkas Anda melalui WebDAV", "No files in here" : "Tidak ada berkas disini", "Upload some content or sync with your devices!" : "Unggah beberapa konten dan sinkronisasikan dengan perangkat Anda!", "No entries found in this folder" : "Tidak ada entri yang ditemukan dalam folder ini", "Select all" : "Pilih Semua", "Upload too large" : "Yang diunggah terlalu besar", "The files you are trying to upload exceed the maximum size for file uploads on this server." : "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini.", - "No favorites" : "Tidak ada favorit", "Files and folders you mark as favorite will show up here" : "Berkas dan folder yang Anda tandai sebagai favorit akan ditampilkan disini.", "Text file" : "Berkas teks", - "New text file.txt" : "Teks baru file.txt", - "Storage not available" : "Penyimpanan tidak tersedia", - "Unable to set upload directory." : "Tidak dapat mengatur folder unggah", - "Invalid Token" : "Token tidak sah", - "No file was uploaded. Unknown error" : "Tidak ada berkas yang diunggah. Kesalahan tidak dikenal.", - "There is no error, the file uploaded with success" : "Tidak ada kesalahan, berkas sukses diunggah", - "The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "Berkas yang diunggah melampaui direktif upload_max_filesize pada php.ini", - "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Berkas yang diunggah melampaui direktif MAX_FILE_SIZE yang ditentukan dalam formulir HTML.", - "The uploaded file was only partially uploaded" : "Berkas hanya diunggah sebagian", - "No file was uploaded" : "Tidak ada berkas yang diunggah", - "Missing a temporary folder" : "Folder sementara tidak ada", - "Failed to write to disk" : "Gagal menulis ke disk", - "Not enough storage available" : "Ruang penyimpanan tidak mencukupi", - "The target folder has been moved or deleted." : "Folder tujuan telah dipindahkan atau dihapus.", - "Upload failed. Could not find uploaded file" : "Unggah gagal. Tidak menemukan berkas yang akan diunggah", - "Upload failed. Could not get file info." : "Unggah gagal. Tidak mendapatkan informasi berkas.", - "Invalid directory." : "Direktori tidak valid.", - "Total file size {size1} exceeds upload limit {size2}" : "Jumlah ukuran berkas {size1} melampaui batas unggah {size2}", - "Error uploading file \"{fileName}\": {message}" : "Kesalahan saat mengunggah \"{filename}\": {message}", - "Could not get result from server." : "Tidak mendapatkan hasil dari server.", - "{hours}:{minutes}:{seconds} hour{plural_s} left" : "Masih {hours}:{minutes}:{seconds} lagi", - "{hours}:{minutes}h" : "{hours}:{minutes}j", - "{minutes}:{seconds} minute{plural_s} left" : "Masih {minutes}:{seconds} lagi", - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "{seconds} second{plural_s} left" : "Masih {seconds} detik lagi", - "{seconds}s" : "{seconds}d", - "Any moment now..." : "Sedikit lagi...", - "Soon..." : "Segera...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses.", - "No entries in this folder match '{filter}'" : "Tidak ada entri di folder ini yang cocok dengan '{filter}'", - "Local link" : "Pranala lokal", - "{newname} already exists" : "{newname} sudah ada", - "A file or folder has been changed" : "Sebuah berkas atau folder telah diubah", - "A file or folder has been deleted" : "Sebuah berkas atau folder telah dihapus", - "A file or folder has been restored" : "Sebuah berkas atau folder telah dipulihkan", - "You created %1$s" : "Anda membuat %1$s", - "%2$s created %1$s" : "%2$s membuat %1$s", - "%1$s was created in a public folder" : "%1$s telah dibuat di folder publik", - "You changed %1$s" : "Anda mengubah %1$s", - "%2$s changed %1$s" : "%2$s mengubah %1$s", - "You deleted %1$s" : "Anda menghapus %1$s", - "%2$s deleted %1$s" : "%2$s menghapus %1$s", - "You restored %1$s" : "Anda memulihkan %1$s", - "%2$s restored %1$s" : "%2$s memulihkan %1$s", - "Changed by %2$s" : "Diubah oleh %2$s", - "Deleted by %2$s" : "Dihapus oleh %2$s", - "Restored by %2$s" : "Dipulihkan oleh %2$s" + "New text file.txt" : "Teks baru file.txt" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files/l10n/is.js b/apps/files/l10n/is.js index 60f65b60dd9a8..c46d0f06c20e6 100644 --- a/apps/files/l10n/is.js +++ b/apps/files/l10n/is.js @@ -25,6 +25,7 @@ OC.L10N.register( "Download" : "Niðurhal", "Rename" : "Endurnefna", "Move or copy" : "Færa eða afrita", + "Copy" : "Afrita", "Target folder" : "Markmappa", "Delete" : "Eyða", "Disconnect storage" : "Aftengja geymslu", @@ -62,8 +63,11 @@ OC.L10N.register( "You don’t have permission to upload or create files here" : "Þú hefur ekki heimild til að hlaða inn eða búa til skjöl hér", "_Uploading %n file_::_Uploading %n files_" : ["Sendi inn %n skrá","Sendi inn %n skrár"], "New" : "Nýtt", + "{used} of {quota} used" : "{used} af {quota} notað", + "{used} used" : "{used} notað", "\"{name}\" is an invalid file name." : "\"{name}\" er ógilt skráarheiti.", "File name cannot be empty." : "Heiti skráar má ekki vera tómt", + "\"/\" is not allowed inside a file name." : "\"/\" er er ekki leyfilegt innan í skráarheiti.", "\"{name}\" is not an allowed filetype" : "\"{name}\" er ógild skráartegund", "Storage of {owner} is full, files can not be updated or synced anymore!" : "Geymslupláss {owner} er fullt, ekki er lengur hægt að uppfæra eða samstilla skrár!", "Your storage is full, files can not be updated or synced anymore!" : "Geymsluplássið þitt er fullt, ekki er lengur hægt að uppfæra eða samstilla skrár!", @@ -96,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "Fært af {user}", "\"remote user\"" : "\"fjartengdur notandi\"", "You created {file}" : "Þú bjóst til {file}", + "You created an encrypted file in {file}" : "Þú bjóst til dulritaða skrá í {file}", "{user} created {file}" : "{user} bjó til {file}", + "{user} created an encrypted file in {file}" : "{user} bjó til dulritaða skrá í {file}", "{file} was created in a public folder" : "{file} var búin til í opinni möppu", "You changed {file}" : "Þú breyttir {file}", + "You changed an encrypted file in {file}" : "Þú breyttir dulritaðri skrá í {file}", "{user} changed {file}" : "{user} breytti {file}", + "{user} changed an encrypted file in {file}" : "{user} breytti dulritaðri skrá í {file}", "You deleted {file}" : "Þú eyddir {file}", + "You deleted an encrypted file in {file}" : "Þú eyddir dulritaðri skrá í {file}", "{user} deleted {file}" : "{user} eyddi {file}", + "{user} deleted an encrypted file in {file}" : "{user} eyddi dulritaðri skrá í {file}", "You restored {file}" : "Þú endurheimtir {file}", "{user} restored {file}" : "{user} endurheimti {file}", "You renamed {oldfile} to {newfile}" : "Þú endurnefndir {oldfile} sem {newfile}", @@ -144,24 +154,9 @@ OC.L10N.register( "Deleted files" : "Eyddar skrár", "Text file" : "Textaskrá", "New text file.txt" : "Ný textaskrá.txt", - "Uploading..." : "Sendi inn ...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} klukkustund eftir","{hours}:{minutes}:{seconds} klukkustundir eftir"], - "{hours}:{minutes}h" : "{hours}:{minutes}klst", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} mínúta eftir","{minutes}:{seconds} mínútur eftir"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}mín", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekúnda eftir","{seconds} sekúndur eftir"], - "{seconds}s" : "{seconds}sek", - "Any moment now..." : "Á hverri stundu...", - "Soon..." : "Bráðum...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending hætta.", "Move" : "Færa", - "Copy local link" : "Afrita staðværan tengil", - "Folder" : "Mappa", - "Upload" : "Senda inn", "A new file or folder has been deleted" : "Nýrri skrá eða möppu hefur verið eytt", "A new file or folder has been restored" : "Ný skrá eða mappa hefur verið endurheimt", - "Use this address to access your Files via WebDAV" : "Notaðu þetta vistfang til að nálgast skrárnar þínar með WebDAV", - "No favorites" : "Engin eftirlæti" + "Use this address to access your Files via WebDAV" : "Notaðu þetta vistfang til að nálgast skrárnar þínar með WebDAV" }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/files/l10n/is.json b/apps/files/l10n/is.json index a7a17ed28d1c8..f86ed9edf798d 100644 --- a/apps/files/l10n/is.json +++ b/apps/files/l10n/is.json @@ -23,6 +23,7 @@ "Download" : "Niðurhal", "Rename" : "Endurnefna", "Move or copy" : "Færa eða afrita", + "Copy" : "Afrita", "Target folder" : "Markmappa", "Delete" : "Eyða", "Disconnect storage" : "Aftengja geymslu", @@ -60,8 +61,11 @@ "You don’t have permission to upload or create files here" : "Þú hefur ekki heimild til að hlaða inn eða búa til skjöl hér", "_Uploading %n file_::_Uploading %n files_" : ["Sendi inn %n skrá","Sendi inn %n skrár"], "New" : "Nýtt", + "{used} of {quota} used" : "{used} af {quota} notað", + "{used} used" : "{used} notað", "\"{name}\" is an invalid file name." : "\"{name}\" er ógilt skráarheiti.", "File name cannot be empty." : "Heiti skráar má ekki vera tómt", + "\"/\" is not allowed inside a file name." : "\"/\" er er ekki leyfilegt innan í skráarheiti.", "\"{name}\" is not an allowed filetype" : "\"{name}\" er ógild skráartegund", "Storage of {owner} is full, files can not be updated or synced anymore!" : "Geymslupláss {owner} er fullt, ekki er lengur hægt að uppfæra eða samstilla skrár!", "Your storage is full, files can not be updated or synced anymore!" : "Geymsluplássið þitt er fullt, ekki er lengur hægt að uppfæra eða samstilla skrár!", @@ -94,12 +98,18 @@ "Moved by {user}" : "Fært af {user}", "\"remote user\"" : "\"fjartengdur notandi\"", "You created {file}" : "Þú bjóst til {file}", + "You created an encrypted file in {file}" : "Þú bjóst til dulritaða skrá í {file}", "{user} created {file}" : "{user} bjó til {file}", + "{user} created an encrypted file in {file}" : "{user} bjó til dulritaða skrá í {file}", "{file} was created in a public folder" : "{file} var búin til í opinni möppu", "You changed {file}" : "Þú breyttir {file}", + "You changed an encrypted file in {file}" : "Þú breyttir dulritaðri skrá í {file}", "{user} changed {file}" : "{user} breytti {file}", + "{user} changed an encrypted file in {file}" : "{user} breytti dulritaðri skrá í {file}", "You deleted {file}" : "Þú eyddir {file}", + "You deleted an encrypted file in {file}" : "Þú eyddir dulritaðri skrá í {file}", "{user} deleted {file}" : "{user} eyddi {file}", + "{user} deleted an encrypted file in {file}" : "{user} eyddi dulritaðri skrá í {file}", "You restored {file}" : "Þú endurheimtir {file}", "{user} restored {file}" : "{user} endurheimti {file}", "You renamed {oldfile} to {newfile}" : "Þú endurnefndir {oldfile} sem {newfile}", @@ -142,24 +152,9 @@ "Deleted files" : "Eyddar skrár", "Text file" : "Textaskrá", "New text file.txt" : "Ný textaskrá.txt", - "Uploading..." : "Sendi inn ...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} klukkustund eftir","{hours}:{minutes}:{seconds} klukkustundir eftir"], - "{hours}:{minutes}h" : "{hours}:{minutes}klst", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} mínúta eftir","{minutes}:{seconds} mínútur eftir"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}mín", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekúnda eftir","{seconds} sekúndur eftir"], - "{seconds}s" : "{seconds}sek", - "Any moment now..." : "Á hverri stundu...", - "Soon..." : "Bráðum...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending hætta.", "Move" : "Færa", - "Copy local link" : "Afrita staðværan tengil", - "Folder" : "Mappa", - "Upload" : "Senda inn", "A new file or folder has been deleted" : "Nýrri skrá eða möppu hefur verið eytt", "A new file or folder has been restored" : "Ný skrá eða mappa hefur verið endurheimt", - "Use this address to access your Files via WebDAV" : "Notaðu þetta vistfang til að nálgast skrárnar þínar með WebDAV", - "No favorites" : "Engin eftirlæti" + "Use this address to access your Files via WebDAV" : "Notaðu þetta vistfang til að nálgast skrárnar þínar með WebDAV" },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" } \ No newline at end of file diff --git a/apps/files/l10n/it.js b/apps/files/l10n/it.js index bb4faa24595dc..539dc0ba68640 100644 --- a/apps/files/l10n/it.js +++ b/apps/files/l10n/it.js @@ -25,6 +25,7 @@ OC.L10N.register( "Download" : "Scarica", "Rename" : "Rinomina", "Move or copy" : "Sposta o copia", + "Copy" : "Copia", "Target folder" : "Cartella di destinazione", "Delete" : "Elimina", "Disconnect storage" : "Disconnetti archiviazione", @@ -75,7 +76,7 @@ OC.L10N.register( "_matches '{filter}'_::_match '{filter}'_" : ["corrispondono a '{filter}'","corrisponde a '{filter}'"], "View in folder" : "Visualizza nella cartella", "Copied!" : "Copiato!", - "Copy direct link (only works for users who have access to this file/folder)" : "Copia link diretto (funziona solo per utenti che hanno accesso a questo file / cartella)", + "Copy direct link (only works for users who have access to this file/folder)" : "Copia collegamento diretto (funziona solo per utenti che hanno accesso a questo file/cartella)", "Path" : "Percorso", "_%n byte_::_%n bytes_" : ["%n byte","%n byte"], "Favorited" : "Preferiti", @@ -99,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "Spostata da {user}", "\"remote user\"" : "\"utente remoto\"", "You created {file}" : "Hai creato {file}", + "You created an encrypted file in {file}" : "Hai creato un file cifrato in {file}", "{user} created {file}" : "{user} ha creato {file}", + "{user} created an encrypted file in {file}" : "{user} ha creato un file cifrato in {file}", "{file} was created in a public folder" : "{file} è stato creato in una cartella pubblica", "You changed {file}" : "Hai modificato {file}", + "You changed an encrypted file in {file}" : "Hai cambiato un file cifrato in {file}", "{user} changed {file}" : "{user} ha modificato {file}", + "{user} changed an encrypted file in {file}" : "{user} ha cambiato un file cifrato in {file}", "You deleted {file}" : "Hai eliminato {file}", + "You deleted an encrypted file in {file}" : "Hai eliminato un file cifrato in {file}", "{user} deleted {file}" : "{user} ha eliminato {file}", + "{user} deleted an encrypted file in {file}" : "{user} ha eliminato un file cifrato in {file}", "You restored {file}" : "Hai ripristinato {file}", "{user} restored {file}" : "{user1} ha ripristinato {file}", "You renamed {oldfile} to {newfile}" : "Hai rinominato {oldfile} in {newfile}", @@ -147,24 +154,9 @@ OC.L10N.register( "Deleted files" : "File eliminati", "Text file" : "File di testo", "New text file.txt" : "Nuovo file di testo.txt", - "Uploading..." : "Caricamento in corso...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} ora rimanente","{hours}:{minutes}:{seconds} ore rimanenti"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minuto rimanente","{minutes}:{seconds} minuti rimanenti"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} secondo rimanente","{seconds} secondi rimanenti"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Da un momento all'altro...", - "Soon..." : "Presto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento.", "Move" : "Sposta", - "Copy local link" : "Copia collegamento locale", - "Folder" : "Cartella", - "Upload" : "Carica", "A new file or folder has been deleted" : "Un nuovo file o cartella è stato eliminato", "A new file or folder has been restored" : "Un nuovo file o una cartella è stato ripristinato", - "Use this address to access your Files via WebDAV" : "Utilizza questo indirizzo per accedere ai tuoi file con WebDAV", - "No favorites" : "Nessun preferito" + "Use this address to access your Files via WebDAV" : "Utilizza questo indirizzo per accedere ai tuoi file con WebDAV" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/it.json b/apps/files/l10n/it.json index 332eb746ac1db..bc6827ddc63eb 100644 --- a/apps/files/l10n/it.json +++ b/apps/files/l10n/it.json @@ -23,6 +23,7 @@ "Download" : "Scarica", "Rename" : "Rinomina", "Move or copy" : "Sposta o copia", + "Copy" : "Copia", "Target folder" : "Cartella di destinazione", "Delete" : "Elimina", "Disconnect storage" : "Disconnetti archiviazione", @@ -73,7 +74,7 @@ "_matches '{filter}'_::_match '{filter}'_" : ["corrispondono a '{filter}'","corrisponde a '{filter}'"], "View in folder" : "Visualizza nella cartella", "Copied!" : "Copiato!", - "Copy direct link (only works for users who have access to this file/folder)" : "Copia link diretto (funziona solo per utenti che hanno accesso a questo file / cartella)", + "Copy direct link (only works for users who have access to this file/folder)" : "Copia collegamento diretto (funziona solo per utenti che hanno accesso a questo file/cartella)", "Path" : "Percorso", "_%n byte_::_%n bytes_" : ["%n byte","%n byte"], "Favorited" : "Preferiti", @@ -97,12 +98,18 @@ "Moved by {user}" : "Spostata da {user}", "\"remote user\"" : "\"utente remoto\"", "You created {file}" : "Hai creato {file}", + "You created an encrypted file in {file}" : "Hai creato un file cifrato in {file}", "{user} created {file}" : "{user} ha creato {file}", + "{user} created an encrypted file in {file}" : "{user} ha creato un file cifrato in {file}", "{file} was created in a public folder" : "{file} è stato creato in una cartella pubblica", "You changed {file}" : "Hai modificato {file}", + "You changed an encrypted file in {file}" : "Hai cambiato un file cifrato in {file}", "{user} changed {file}" : "{user} ha modificato {file}", + "{user} changed an encrypted file in {file}" : "{user} ha cambiato un file cifrato in {file}", "You deleted {file}" : "Hai eliminato {file}", + "You deleted an encrypted file in {file}" : "Hai eliminato un file cifrato in {file}", "{user} deleted {file}" : "{user} ha eliminato {file}", + "{user} deleted an encrypted file in {file}" : "{user} ha eliminato un file cifrato in {file}", "You restored {file}" : "Hai ripristinato {file}", "{user} restored {file}" : "{user1} ha ripristinato {file}", "You renamed {oldfile} to {newfile}" : "Hai rinominato {oldfile} in {newfile}", @@ -145,24 +152,9 @@ "Deleted files" : "File eliminati", "Text file" : "File di testo", "New text file.txt" : "Nuovo file di testo.txt", - "Uploading..." : "Caricamento in corso...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} ora rimanente","{hours}:{minutes}:{seconds} ore rimanenti"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minuto rimanente","{minutes}:{seconds} minuti rimanenti"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} secondo rimanente","{seconds} secondi rimanenti"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Da un momento all'altro...", - "Soon..." : "Presto...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento.", "Move" : "Sposta", - "Copy local link" : "Copia collegamento locale", - "Folder" : "Cartella", - "Upload" : "Carica", "A new file or folder has been deleted" : "Un nuovo file o cartella è stato eliminato", "A new file or folder has been restored" : "Un nuovo file o una cartella è stato ripristinato", - "Use this address to access your Files via WebDAV" : "Utilizza questo indirizzo per accedere ai tuoi file con WebDAV", - "No favorites" : "Nessun preferito" + "Use this address to access your Files via WebDAV" : "Utilizza questo indirizzo per accedere ai tuoi file con WebDAV" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/ja.js b/apps/files/l10n/ja.js index 77a97ed35d116..e7e754f5ead03 100644 --- a/apps/files/l10n/ja.js +++ b/apps/files/l10n/ja.js @@ -16,7 +16,10 @@ OC.L10N.register( "Not enough free space, you are uploading {size1} but only {size2} is left" : "空き容量が十分でなく、 {size1} をアップロードしていますが、 {size2} しか残っていません。", "Target folder \"{dir}\" does not exist any more" : "対象フォルダー \"{dir}\" がもう存在しません", "Not enough free space" : "十分な空き容量がありません", + "Uploading …" : "アップロード中...", + "…" : "…", "{loadedSize} of {totalSize} ({bitrate})" : "{totalSize} 中 {loadedSize} ({bitrate})", + "Target folder does not exist any more" : "対象フォルダーがもう存在しません", "Actions" : "アクション", "Download" : "ダウンロード", "Rename" : "名前の変更", @@ -56,8 +59,11 @@ OC.L10N.register( "You don’t have permission to upload or create files here" : "ここにファイルをアップロードもしくは作成する権限がありません", "_Uploading %n file_::_Uploading %n files_" : ["%n 個のファイルをアップロード中"], "New" : "新規作成", + "{used} of {quota} used" : "{used} / {quota} 使用中", + "{used} used" : "{used} 使用中", "\"{name}\" is an invalid file name." : "\"{name}\" は無効なファイル名です。", "File name cannot be empty." : "ファイル名を空にすることはできません。", + "\"/\" is not allowed inside a file name." : "\"/\" はファイル名に利用できません。", "\"{name}\" is not an allowed filetype" : "\"{name}\" は無効なファイル形式です", "Storage of {owner} is full, files can not be updated or synced anymore!" : "{owner} のストレージは一杯です。ファイルの更新と同期はもうできません!", "Your storage is full, files can not be updated or synced anymore!" : "あなたのストレージは一杯です。ファイルの更新と同期はもうできません!", @@ -73,6 +79,9 @@ OC.L10N.register( "Favorite" : "お気に入り", "New folder" : "新しいフォルダー", "Upload file" : "ファイルをアップロード", + "Not favorited" : "お気に入りではありません", + "Remove from favorites" : "お気に入りから削除", + "Add to favorites" : "お気に入りに追加", "An error occurred while trying to update the tags" : "タグを更新する際にエラーが発生しました", "Added to favorites" : "お気に入りに追加", "Removed from favorites" : "お気に入りから削除", @@ -118,6 +127,8 @@ OC.L10N.register( "Settings" : "設定", "Show hidden files" : "隠しファイルを表示", "WebDAV" : "WebDAV", + "Use this address to access your Files via WebDAV" : "WebDAV 経由でファイルにアクセスするにはこのアドレスを利用してください", + "Cancel upload" : "アップロードをキャンセル", "No files in here" : "ファイルがありません", "Upload some content or sync with your devices!" : "何かコンテンツをアップロードするか、デバイスからファイルを同期してください。", "No entries found in this folder" : "このフォルダーにはエントリーがありません", @@ -133,24 +144,6 @@ OC.L10N.register( "Deleted files" : "ゴミ箱", "Text file" : "テキストファイル", "New text file.txt" : "新規のテキストファイル作成", - "Uploading..." : "アップロード中...", - "..." : "…", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["残り {hours}:{minutes}:{seconds} 時間"], - "{hours}:{minutes}h" : "{hours}:{minutes} 時間", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["残り {minutes}:{seconds} 分"], - "{minutes}:{seconds}m" : "{minutes}:{seconds} 分", - "_{seconds} second left_::_{seconds} seconds left_" : ["残り {seconds} 秒"], - "{seconds}s" : "{seconds} 秒", - "Any moment now..." : "まもなく…", - "Soon..." : "まもなく…", - "File upload is in progress. Leaving the page now will cancel the upload." : "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", - "Move" : "移動", - "Copy local link" : "ローカルリンクをコピー", - "Folder" : "フォルダー", - "Upload" : "アップロード", - "A new file or folder has been deleted" : "新しいファイルまたはフォルダが削除されたとき", - "A new file or folder has been restored" : "新しいファイルまたはフォルダが復元されました", - "Use this address to access your Files via WebDAV" : "WebDAV 経由でファイルにアクセスするにはこのアドレスを利用してください", - "No favorites" : "お気に入りなし" + "Move" : "移動" }, "nplurals=1; plural=0;"); diff --git a/apps/files/l10n/ja.json b/apps/files/l10n/ja.json index 32fd39ecbe470..a643d750f1ca7 100644 --- a/apps/files/l10n/ja.json +++ b/apps/files/l10n/ja.json @@ -14,7 +14,10 @@ "Not enough free space, you are uploading {size1} but only {size2} is left" : "空き容量が十分でなく、 {size1} をアップロードしていますが、 {size2} しか残っていません。", "Target folder \"{dir}\" does not exist any more" : "対象フォルダー \"{dir}\" がもう存在しません", "Not enough free space" : "十分な空き容量がありません", + "Uploading …" : "アップロード中...", + "…" : "…", "{loadedSize} of {totalSize} ({bitrate})" : "{totalSize} 中 {loadedSize} ({bitrate})", + "Target folder does not exist any more" : "対象フォルダーがもう存在しません", "Actions" : "アクション", "Download" : "ダウンロード", "Rename" : "名前の変更", @@ -54,8 +57,11 @@ "You don’t have permission to upload or create files here" : "ここにファイルをアップロードもしくは作成する権限がありません", "_Uploading %n file_::_Uploading %n files_" : ["%n 個のファイルをアップロード中"], "New" : "新規作成", + "{used} of {quota} used" : "{used} / {quota} 使用中", + "{used} used" : "{used} 使用中", "\"{name}\" is an invalid file name." : "\"{name}\" は無効なファイル名です。", "File name cannot be empty." : "ファイル名を空にすることはできません。", + "\"/\" is not allowed inside a file name." : "\"/\" はファイル名に利用できません。", "\"{name}\" is not an allowed filetype" : "\"{name}\" は無効なファイル形式です", "Storage of {owner} is full, files can not be updated or synced anymore!" : "{owner} のストレージは一杯です。ファイルの更新と同期はもうできません!", "Your storage is full, files can not be updated or synced anymore!" : "あなたのストレージは一杯です。ファイルの更新と同期はもうできません!", @@ -71,6 +77,9 @@ "Favorite" : "お気に入り", "New folder" : "新しいフォルダー", "Upload file" : "ファイルをアップロード", + "Not favorited" : "お気に入りではありません", + "Remove from favorites" : "お気に入りから削除", + "Add to favorites" : "お気に入りに追加", "An error occurred while trying to update the tags" : "タグを更新する際にエラーが発生しました", "Added to favorites" : "お気に入りに追加", "Removed from favorites" : "お気に入りから削除", @@ -116,6 +125,8 @@ "Settings" : "設定", "Show hidden files" : "隠しファイルを表示", "WebDAV" : "WebDAV", + "Use this address to access your Files via WebDAV" : "WebDAV 経由でファイルにアクセスするにはこのアドレスを利用してください", + "Cancel upload" : "アップロードをキャンセル", "No files in here" : "ファイルがありません", "Upload some content or sync with your devices!" : "何かコンテンツをアップロードするか、デバイスからファイルを同期してください。", "No entries found in this folder" : "このフォルダーにはエントリーがありません", @@ -131,24 +142,6 @@ "Deleted files" : "ゴミ箱", "Text file" : "テキストファイル", "New text file.txt" : "新規のテキストファイル作成", - "Uploading..." : "アップロード中...", - "..." : "…", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["残り {hours}:{minutes}:{seconds} 時間"], - "{hours}:{minutes}h" : "{hours}:{minutes} 時間", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["残り {minutes}:{seconds} 分"], - "{minutes}:{seconds}m" : "{minutes}:{seconds} 分", - "_{seconds} second left_::_{seconds} seconds left_" : ["残り {seconds} 秒"], - "{seconds}s" : "{seconds} 秒", - "Any moment now..." : "まもなく…", - "Soon..." : "まもなく…", - "File upload is in progress. Leaving the page now will cancel the upload." : "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", - "Move" : "移動", - "Copy local link" : "ローカルリンクをコピー", - "Folder" : "フォルダー", - "Upload" : "アップロード", - "A new file or folder has been deleted" : "新しいファイルまたはフォルダが削除されたとき", - "A new file or folder has been restored" : "新しいファイルまたはフォルダが復元されました", - "Use this address to access your Files via WebDAV" : "WebDAV 経由でファイルにアクセスするにはこのアドレスを利用してください", - "No favorites" : "お気に入りなし" + "Move" : "移動" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files/l10n/ka_GE.js b/apps/files/l10n/ka_GE.js index b2b68baa747b2..428f2a6eedc06 100644 --- a/apps/files/l10n/ka_GE.js +++ b/apps/files/l10n/ka_GE.js @@ -25,6 +25,7 @@ OC.L10N.register( "Download" : "ჩამოტვირთვა", "Rename" : "გადარქმევა", "Move or copy" : "გადაიტანეთ ან დააკოპირეთ", + "Copy" : "კოპირება", "Target folder" : "დანიშნულების დირექტორია", "Delete" : "წაშლა", "Disconnect storage" : "საცავის გათიშვა", @@ -99,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "გადაიტანა მომხმარებელმა {user}", "\"remote user\"" : "\"დისტანციური მომხმარებელი\"", "You created {file}" : "თქვენ შექმენით {file}", + "You created an encrypted file in {file}" : "შექმენით დაშიფრული ფაილი {file}-ში", "{user} created {file}" : "{user} მომხმარებელმა შექმნა {file}", + "{user} created an encrypted file in {file}" : "{user} მომხმარებელმა შექმნა დაშიფრული ფაილი {file}-ში", "{file} was created in a public folder" : "{file} შეიქმნა საზოგადო დირექტორიაში", "You changed {file}" : "თქვენ შეცვალეთ {file}", + "You changed an encrypted file in {file}" : "შეცვალეთ დაშიფრული ფაილი {file}-ში", "{user} changed {file}" : "{user} მომხმარებელმა შეცვალა {file}", + "{user} changed an encrypted file in {file}" : "{user} მომხმარებელმა შეცვალა დაშიფრული ფაილი {file}-ში", "You deleted {file}" : "თქვენ წაშალეთ {file}", + "You deleted an encrypted file in {file}" : "გააუქმეთ დაშიფრული ფაილი {file}-ში", "{user} deleted {file}" : "{user} მომხმარებელმა წაშალა {file}", + "{user} deleted an encrypted file in {file}" : "{user} მომხმარებელმა გააუქმა დაშიფრული ფაილი {file}-ში", "You restored {file}" : "თქვენ აღადგინეთ {file}", "{user} restored {file}" : "{user} მომხმარებელმა განაახლა {file}", "You renamed {oldfile} to {newfile}" : "თქვენ გადაარქვით სახელი {oldfile}-ს {newfile}-ზე", @@ -147,24 +154,9 @@ OC.L10N.register( "Deleted files" : "გაუქმებული ფაილები", "Text file" : "ტექსტური ფაილი", "New text file.txt" : "ახალი ტექსტი file.txt", - "Uploading..." : "მიმდინარეობს ატვირთვა...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["დარჩა {hours}:{minutes}:{seconds} საათი"], - "{hours}:{minutes}h" : "{hours}:{minutes}სთ", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["დარჩა {minutes}:{seconds} წუთი"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}წთ", - "_{seconds} second left_::_{seconds} seconds left_" : ["დარჩა {seconds} წამი"], - "{seconds}s" : "{seconds}წმ", - "Any moment now..." : "ნებისმიერ მომენტში...", - "Soon..." : "მალე...", - "File upload is in progress. Leaving the page now will cancel the upload." : "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას", "Move" : "გადატანა", - "Copy local link" : "ლოკალური ბმულის კოპირება", - "Folder" : "დირექტორია", - "Upload" : "ატვირთვა", "A new file or folder has been deleted" : "ახალი ფაილი ან დირექტორია გაუქმდა", "A new file or folder has been restored" : "ახალი ფაილი ან დირექტორია აღდგენილ იქნა", - "Use this address to access your Files via WebDAV" : "გამოიყენეთ ეს მისამართი რომ წვდომა იქოინოთ თქვენს ფაილებთან WebDAV-ით", - "No favorites" : "რჩეულები არაა" + "Use this address to access your Files via WebDAV" : "გამოიყენეთ ეს მისამართი რომ წვდომა იქოინოთ თქვენს ფაილებთან WebDAV-ით" }, "nplurals=1; plural=0;"); diff --git a/apps/files/l10n/ka_GE.json b/apps/files/l10n/ka_GE.json index 5c496dc08cfa6..57e4d987f8f61 100644 --- a/apps/files/l10n/ka_GE.json +++ b/apps/files/l10n/ka_GE.json @@ -23,6 +23,7 @@ "Download" : "ჩამოტვირთვა", "Rename" : "გადარქმევა", "Move or copy" : "გადაიტანეთ ან დააკოპირეთ", + "Copy" : "კოპირება", "Target folder" : "დანიშნულების დირექტორია", "Delete" : "წაშლა", "Disconnect storage" : "საცავის გათიშვა", @@ -97,12 +98,18 @@ "Moved by {user}" : "გადაიტანა მომხმარებელმა {user}", "\"remote user\"" : "\"დისტანციური მომხმარებელი\"", "You created {file}" : "თქვენ შექმენით {file}", + "You created an encrypted file in {file}" : "შექმენით დაშიფრული ფაილი {file}-ში", "{user} created {file}" : "{user} მომხმარებელმა შექმნა {file}", + "{user} created an encrypted file in {file}" : "{user} მომხმარებელმა შექმნა დაშიფრული ფაილი {file}-ში", "{file} was created in a public folder" : "{file} შეიქმნა საზოგადო დირექტორიაში", "You changed {file}" : "თქვენ შეცვალეთ {file}", + "You changed an encrypted file in {file}" : "შეცვალეთ დაშიფრული ფაილი {file}-ში", "{user} changed {file}" : "{user} მომხმარებელმა შეცვალა {file}", + "{user} changed an encrypted file in {file}" : "{user} მომხმარებელმა შეცვალა დაშიფრული ფაილი {file}-ში", "You deleted {file}" : "თქვენ წაშალეთ {file}", + "You deleted an encrypted file in {file}" : "გააუქმეთ დაშიფრული ფაილი {file}-ში", "{user} deleted {file}" : "{user} მომხმარებელმა წაშალა {file}", + "{user} deleted an encrypted file in {file}" : "{user} მომხმარებელმა გააუქმა დაშიფრული ფაილი {file}-ში", "You restored {file}" : "თქვენ აღადგინეთ {file}", "{user} restored {file}" : "{user} მომხმარებელმა განაახლა {file}", "You renamed {oldfile} to {newfile}" : "თქვენ გადაარქვით სახელი {oldfile}-ს {newfile}-ზე", @@ -145,24 +152,9 @@ "Deleted files" : "გაუქმებული ფაილები", "Text file" : "ტექსტური ფაილი", "New text file.txt" : "ახალი ტექსტი file.txt", - "Uploading..." : "მიმდინარეობს ატვირთვა...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["დარჩა {hours}:{minutes}:{seconds} საათი"], - "{hours}:{minutes}h" : "{hours}:{minutes}სთ", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["დარჩა {minutes}:{seconds} წუთი"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}წთ", - "_{seconds} second left_::_{seconds} seconds left_" : ["დარჩა {seconds} წამი"], - "{seconds}s" : "{seconds}წმ", - "Any moment now..." : "ნებისმიერ მომენტში...", - "Soon..." : "მალე...", - "File upload is in progress. Leaving the page now will cancel the upload." : "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას", "Move" : "გადატანა", - "Copy local link" : "ლოკალური ბმულის კოპირება", - "Folder" : "დირექტორია", - "Upload" : "ატვირთვა", "A new file or folder has been deleted" : "ახალი ფაილი ან დირექტორია გაუქმდა", "A new file or folder has been restored" : "ახალი ფაილი ან დირექტორია აღდგენილ იქნა", - "Use this address to access your Files via WebDAV" : "გამოიყენეთ ეს მისამართი რომ წვდომა იქოინოთ თქვენს ფაილებთან WebDAV-ით", - "No favorites" : "რჩეულები არაა" + "Use this address to access your Files via WebDAV" : "გამოიყენეთ ეს მისამართი რომ წვდომა იქოინოთ თქვენს ფაილებთან WebDAV-ით" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files/l10n/ko.js b/apps/files/l10n/ko.js index cfe3b955df717..2157f40e9a832 100644 --- a/apps/files/l10n/ko.js +++ b/apps/files/l10n/ko.js @@ -147,24 +147,9 @@ OC.L10N.register( "Deleted files" : "삭제된 파일", "Text file" : "텍스트 파일", "New text file.txt" : "새 텍스트 파일.txt", - "Uploading..." : "업로드 중...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds}시간 남음"], - "{hours}:{minutes}h" : "{hours}:{minutes}시간", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds}분 남음"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}분", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds}초 남음"], - "{seconds}s" : "{seconds}초", - "Any moment now..." : "조금 남음...", - "Soon..." : "곧...", - "File upload is in progress. Leaving the page now will cancel the upload." : "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다.", "Move" : "이동", - "Copy local link" : "로컬 링크 복사", - "Folder" : "폴더", - "Upload" : "업로드", "A new file or folder has been deleted" : "새 파일이나 폴더가 삭제됨", "A new file or folder has been restored" : "새 파일이나 폴더가 복원됨", - "Use this address to access your Files via WebDAV" : "이 주소를 사용하여 WebDAV를 통해 파일에 접근할 수 있습니다", - "No favorites" : "즐겨찾는 항목 없음" + "Use this address to access your Files via WebDAV" : "이 주소를 사용하여 WebDAV를 통해 파일에 접근할 수 있습니다" }, "nplurals=1; plural=0;"); diff --git a/apps/files/l10n/ko.json b/apps/files/l10n/ko.json index 0854c201bf990..7c287e16146f5 100644 --- a/apps/files/l10n/ko.json +++ b/apps/files/l10n/ko.json @@ -145,24 +145,9 @@ "Deleted files" : "삭제된 파일", "Text file" : "텍스트 파일", "New text file.txt" : "새 텍스트 파일.txt", - "Uploading..." : "업로드 중...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds}시간 남음"], - "{hours}:{minutes}h" : "{hours}:{minutes}시간", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds}분 남음"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}분", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds}초 남음"], - "{seconds}s" : "{seconds}초", - "Any moment now..." : "조금 남음...", - "Soon..." : "곧...", - "File upload is in progress. Leaving the page now will cancel the upload." : "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다.", "Move" : "이동", - "Copy local link" : "로컬 링크 복사", - "Folder" : "폴더", - "Upload" : "업로드", "A new file or folder has been deleted" : "새 파일이나 폴더가 삭제됨", "A new file or folder has been restored" : "새 파일이나 폴더가 복원됨", - "Use this address to access your Files via WebDAV" : "이 주소를 사용하여 WebDAV를 통해 파일에 접근할 수 있습니다", - "No favorites" : "즐겨찾는 항목 없음" + "Use this address to access your Files via WebDAV" : "이 주소를 사용하여 WebDAV를 통해 파일에 접근할 수 있습니다" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files/l10n/lb.js b/apps/files/l10n/lb.js index c0bd74bfa3db8..16163e85517b1 100644 --- a/apps/files/l10n/lb.js +++ b/apps/files/l10n/lb.js @@ -119,25 +119,6 @@ OC.L10N.register( "Tags" : "Tags", "Deleted files" : "Geläschten Dateien", "Text file" : "Text Fichier", - "New text file.txt" : "Neien Text file.txt", - "Uploading..." : "Lueden erop...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} Stonn iwwereg","{hours}:{minutes}:{seconds} Stonnen iwwereg"], - "{hours}:{minutes}h" : "{hours}:{minutes} Stonnen", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} Minute iwwereg","{minutes}:{seconds} Minuten iwwereg"], - "{minutes}:{seconds}m" : "{minutes}:{seconds} Minuten", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} Sekonn iwwereg","{seconds} Sekonnen iwwereg"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "An engen Moment", - "Soon..." : "Geschwënn", - "File upload is in progress. Leaving the page now will cancel the upload." : "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach.", - "Move" : "Verschieben", - "Copy local link" : "Lokale Link kopéiert", - "Folder" : "Dossier", - "Upload" : "Eroplueden", - "A new file or folder has been deleted" : "Eng Datei oder en Dossier gouf geläscht", - "A new file or folder has been restored" : "Eng Datei oder en Dossier gouf erem hier gestallt", - "Use this address to access your Files via WebDAV" : "Benotz dess Address , fir op deng Dateien via WebDAV zouzegräifen", - "No favorites" : "Keng Favoriten" + "New text file.txt" : "Neien Text file.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/lb.json b/apps/files/l10n/lb.json index bb2206c07115e..fd30bf1bd3a4b 100644 --- a/apps/files/l10n/lb.json +++ b/apps/files/l10n/lb.json @@ -117,25 +117,6 @@ "Tags" : "Tags", "Deleted files" : "Geläschten Dateien", "Text file" : "Text Fichier", - "New text file.txt" : "Neien Text file.txt", - "Uploading..." : "Lueden erop...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} Stonn iwwereg","{hours}:{minutes}:{seconds} Stonnen iwwereg"], - "{hours}:{minutes}h" : "{hours}:{minutes} Stonnen", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} Minute iwwereg","{minutes}:{seconds} Minuten iwwereg"], - "{minutes}:{seconds}m" : "{minutes}:{seconds} Minuten", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} Sekonn iwwereg","{seconds} Sekonnen iwwereg"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "An engen Moment", - "Soon..." : "Geschwënn", - "File upload is in progress. Leaving the page now will cancel the upload." : "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofgebrach.", - "Move" : "Verschieben", - "Copy local link" : "Lokale Link kopéiert", - "Folder" : "Dossier", - "Upload" : "Eroplueden", - "A new file or folder has been deleted" : "Eng Datei oder en Dossier gouf geläscht", - "A new file or folder has been restored" : "Eng Datei oder en Dossier gouf erem hier gestallt", - "Use this address to access your Files via WebDAV" : "Benotz dess Address , fir op deng Dateien via WebDAV zouzegräifen", - "No favorites" : "Keng Favoriten" + "New text file.txt" : "Neien Text file.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/lt_LT.js b/apps/files/l10n/lt_LT.js index 11240b53e6a21..a30e7272c5d55 100644 --- a/apps/files/l10n/lt_LT.js +++ b/apps/files/l10n/lt_LT.js @@ -54,6 +54,7 @@ OC.L10N.register( "You don’t have permission to upload or create files here" : "Jūs neturite leidimo čia įkelti arba kurti failus", "_Uploading %n file_::_Uploading %n files_" : ["Įkeliamas %n failas","Įkeliami %n failai","Įkeliama %n failų"], "New" : "Naujas", + "{used} of {quota} used" : "panaudota {used} iš {quota}", "\"{name}\" is an invalid file name." : "„{name}“ yra netinkamas bylos pavadinimas.", "File name cannot be empty." : "Failo pavadinimas negali būti tuščias.", "\"{name}\" is not an allowed filetype" : "\"{name}\" nėra leidžiamas failo tipas", @@ -130,25 +131,6 @@ OC.L10N.register( "Tags" : "Žymės", "Deleted files" : "Ištrinti failai", "Text file" : "Tekstinis failas", - "New text file.txt" : "Naujas tekstinis failas.txt", - "Uploading..." : "Įkeliama...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["Liko {hours}:{minutes}:{seconds} valanda","Liko {hours}:{minutes}:{seconds} valandų","Liko {hours}:{minutes}:{seconds} valandų"], - "{hours}:{minutes}h" : "{hours}:{minutes}val", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["Liko {minutes}:{seconds} minutė","Liko {minutes}:{seconds} minutės","Liko {minutes}:{seconds} minučių"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}min", - "_{seconds} second left_::_{seconds} seconds left_" : ["Liko {seconds} sekundė","Liko {seconds} sekundės","Liko {seconds} sekundžių"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Bet kuriuo metu...", - "Soon..." : "Netrukus...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Failo įkėlimas yra eigoje. Jei išeisite iš šio puslapio, įkėlimo bus atsisakyta.", - "Move" : "Perkelti", - "Copy local link" : "Kopijuoti vietinę nuorodą", - "Folder" : "Aplankas", - "Upload" : "Įkelti", - "A new file or folder has been deleted" : "Naujas failas arba aplankas buvo ištrintas", - "A new file or folder has been restored" : "Naujas failas arba aplankas buvo atkurtas", - "Use this address to access your Files via WebDAV" : "Naudokite šį adresą norėdami pasiekti failus per WebDAV", - "No favorites" : "Nėra mėgstamiausių" + "New text file.txt" : "Naujas tekstinis failas.txt" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/files/l10n/lt_LT.json b/apps/files/l10n/lt_LT.json index f197c6653b6e6..78aec5fd4633d 100644 --- a/apps/files/l10n/lt_LT.json +++ b/apps/files/l10n/lt_LT.json @@ -52,6 +52,7 @@ "You don’t have permission to upload or create files here" : "Jūs neturite leidimo čia įkelti arba kurti failus", "_Uploading %n file_::_Uploading %n files_" : ["Įkeliamas %n failas","Įkeliami %n failai","Įkeliama %n failų"], "New" : "Naujas", + "{used} of {quota} used" : "panaudota {used} iš {quota}", "\"{name}\" is an invalid file name." : "„{name}“ yra netinkamas bylos pavadinimas.", "File name cannot be empty." : "Failo pavadinimas negali būti tuščias.", "\"{name}\" is not an allowed filetype" : "\"{name}\" nėra leidžiamas failo tipas", @@ -128,25 +129,6 @@ "Tags" : "Žymės", "Deleted files" : "Ištrinti failai", "Text file" : "Tekstinis failas", - "New text file.txt" : "Naujas tekstinis failas.txt", - "Uploading..." : "Įkeliama...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["Liko {hours}:{minutes}:{seconds} valanda","Liko {hours}:{minutes}:{seconds} valandų","Liko {hours}:{minutes}:{seconds} valandų"], - "{hours}:{minutes}h" : "{hours}:{minutes}val", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["Liko {minutes}:{seconds} minutė","Liko {minutes}:{seconds} minutės","Liko {minutes}:{seconds} minučių"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}min", - "_{seconds} second left_::_{seconds} seconds left_" : ["Liko {seconds} sekundė","Liko {seconds} sekundės","Liko {seconds} sekundžių"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Bet kuriuo metu...", - "Soon..." : "Netrukus...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Failo įkėlimas yra eigoje. Jei išeisite iš šio puslapio, įkėlimo bus atsisakyta.", - "Move" : "Perkelti", - "Copy local link" : "Kopijuoti vietinę nuorodą", - "Folder" : "Aplankas", - "Upload" : "Įkelti", - "A new file or folder has been deleted" : "Naujas failas arba aplankas buvo ištrintas", - "A new file or folder has been restored" : "Naujas failas arba aplankas buvo atkurtas", - "Use this address to access your Files via WebDAV" : "Naudokite šį adresą norėdami pasiekti failus per WebDAV", - "No favorites" : "Nėra mėgstamiausių" + "New text file.txt" : "Naujas tekstinis failas.txt" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/apps/files/l10n/lv.js b/apps/files/l10n/lv.js index 2c06624af231b..616c39fff8b5b 100644 --- a/apps/files/l10n/lv.js +++ b/apps/files/l10n/lv.js @@ -24,7 +24,7 @@ OC.L10N.register( "Delete" : "Dzēst", "Disconnect storage" : "Atvienot glabātuvi", "Unshare" : "Pārtraukt koplietošanu", - "Could not load info for file \"{file}\"" : "Nevar ielādēt informāciju par failu \"{file}\"", + "Could not load info for file \"{file}\"" : "Nevar ielādēt informāciju par datni \"{file}\"", "Files" : "Datnes", "Details" : "Detaļas", "Select" : "Norādīt", @@ -117,25 +117,6 @@ OC.L10N.register( "Tags" : "Atzīmes", "Deleted files" : "Dzēstās datnes", "Text file" : "Teksta datne", - "New text file.txt" : "Jauna teksta datne.txt", - "Uploading..." : "Augšupielādē...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} stundas atlicis","{hours}:{minutes}:{seconds} stundas atlicis","{hours}:{minutes}:{seconds} stundas atlikušas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minūtes atlikušas","{minutes}:{seconds} minūtes atlikušas","{minutes}:{seconds} minūtes atlikušas"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekundes atlikušas","{seconds} sekundes atlikušas","{seconds} sekundes atlikušas"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Jebkurā brīdī tagad...", - "Soon..." : "Drīz...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde.", - "Move" : "Pārvietot", - "Copy local link" : "Kopēt lokālo saiti", - "Folder" : "Mape", - "Upload" : "Augšupielādēt", - "A new file or folder has been deleted" : "Fails vai mape tika dzēsts", - "A new file or folder has been restored" : "Fails vai mape tika atjaunots", - "Use this address to access your Files via WebDAV" : "Izmanto šo adresi, lai sasniegtu savas datnes caur WebDAV", - "No favorites" : "Nav favorītu" + "New text file.txt" : "Jauna teksta datne.txt" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/apps/files/l10n/lv.json b/apps/files/l10n/lv.json index 3a3f2eafd10ab..cc8ecb6bb0d00 100644 --- a/apps/files/l10n/lv.json +++ b/apps/files/l10n/lv.json @@ -22,7 +22,7 @@ "Delete" : "Dzēst", "Disconnect storage" : "Atvienot glabātuvi", "Unshare" : "Pārtraukt koplietošanu", - "Could not load info for file \"{file}\"" : "Nevar ielādēt informāciju par failu \"{file}\"", + "Could not load info for file \"{file}\"" : "Nevar ielādēt informāciju par datni \"{file}\"", "Files" : "Datnes", "Details" : "Detaļas", "Select" : "Norādīt", @@ -115,25 +115,6 @@ "Tags" : "Atzīmes", "Deleted files" : "Dzēstās datnes", "Text file" : "Teksta datne", - "New text file.txt" : "Jauna teksta datne.txt", - "Uploading..." : "Augšupielādē...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} stundas atlicis","{hours}:{minutes}:{seconds} stundas atlicis","{hours}:{minutes}:{seconds} stundas atlikušas"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minūtes atlikušas","{minutes}:{seconds} minūtes atlikušas","{minutes}:{seconds} minūtes atlikušas"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekundes atlikušas","{seconds} sekundes atlikušas","{seconds} sekundes atlikušas"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Jebkurā brīdī tagad...", - "Soon..." : "Drīz...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde.", - "Move" : "Pārvietot", - "Copy local link" : "Kopēt lokālo saiti", - "Folder" : "Mape", - "Upload" : "Augšupielādēt", - "A new file or folder has been deleted" : "Fails vai mape tika dzēsts", - "A new file or folder has been restored" : "Fails vai mape tika atjaunots", - "Use this address to access your Files via WebDAV" : "Izmanto šo adresi, lai sasniegtu savas datnes caur WebDAV", - "No favorites" : "Nav favorītu" + "New text file.txt" : "Jauna teksta datne.txt" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" } \ No newline at end of file diff --git a/apps/files/l10n/mn.js b/apps/files/l10n/mn.js index 994f002b48c71..058706de67761 100644 --- a/apps/files/l10n/mn.js +++ b/apps/files/l10n/mn.js @@ -1,22 +1,93 @@ OC.L10N.register( "files", { + "Storage is temporarily not available" : "Хадгалах төхөөрөмж нь түр хугацаанд ашиглах боломжгүй байна", + "Storage invalid" : "Хадгалах төхөөрөмж буруу байна", + "Unknown error" : "Үл мэдэгдэх алдаа", + "All files" : "Бүх файлууд", + "Recent" : "Сүүлийн үеийн", + "File could not be found" : "Файл олдсонгүй", + "Home" : "Нүүр хуудас", + "Close" : "Хаах", + "Favorites" : "Дуртай", + "Could not create folder \"{dir}\"" : "\"{dir}\" ийм хавтас үүсгэж болохгүй байна", + "Upload cancelled." : "Байршуулалт цуцлагдсан. ", + "Not enough free space, you are uploading {size1} but only {size2} is left" : "хангалттай зай үлдээгүй байна, та {size1} хэмжээтэй файл оруулж байна гэхдээ зөвхөн {size2} ийн хэмжээний сул зай үлдсэн байна", + "Not enough free space" : "Сул зай хүрэлцэхгүй байна", + "Actions" : "Үйл ажиллагаа", + "Download" : "Татаж авах ", + "Rename" : "Нэр өөрчлөх", + "Target folder" : "Заагч хавтас", + "Delete" : "Устгах", + "Disconnect storage" : "Хадгалах төхөөрөмж салгах", + "Unshare" : "Түгээлтийг зогсоох", "Files" : "Файлууд", - "Upload" : "Байршуулах", - "A new file or folder has been created" : "Файл эсвэл хавтас амжилттай үүсгэгдлээ", - "A file or folder has been changed" : "Файл эсвэл хавтас амжилттай солигдлоо", - "A file or folder has been deleted" : "Файл эсвэл хавтас амжилттай устгагдлаа", - "A file or folder has been restored" : "Файл эсвэл хавтас амжилттай сэргээгдлээ", - "You created %1$s" : "Та %1$s үүсгэлээ", - "%2$s created %1$s" : "%2$s %1$s-ийг үүсгэлээ", - "%1$s was created in a public folder" : "%1$s-ийг нийтийн хавтсанд үүсгэсэн байна", - "You changed %1$s" : "Та %1$s-ийг өөрчиллөө", - "%2$s changed %1$s" : "%2$s %1$s-ийг өөрчиллөө", - "You deleted %1$s" : "Та %1$s-ийг устгалаа", - "%2$s deleted %1$s" : "%2$s %1$s-ийг устгалаа", - "You restored %1$s" : "Та %1$s-ийг сэргээлээ", - "%2$s restored %1$s" : "%2$s %1$s-ийг сэргээлээ", - "Save" : "Хадгалах", - "Settings" : "Тохиргоо" + "Details" : "Дэлгэрэнгүй", + "Select" : "Сонгох", + "Pending" : "Хүлээгдэж байгаа", + "Unable to determine date" : "Огноог тодорхойлох боломжгүй", + "This operation is forbidden" : "Энэ үйлдэл хориотой", + "Could not move \"{file}\", target exists" : "\"{file}\" -г зөөж чадсангүй, алдаа: target exists ", + "Could not move \"{file}\"" : "Файлыг зөөж чадсангүй: \"{file}\"", + "{newName} already exists" : "{newName} нэр давцаж байна", + "Could not rename \"{fileName}\", it does not exist any more" : "\"{fileName}\" файлын нэрийг солих боломжгүй, энэ файл устгагдсан байна", + "Could not rename \"{fileName}\"" : "Файлын нэрийг сольж чадсангүй: \"{fileName}\"", + "Could not create file \"{file}\"" : "\"{file}\" файлыг үүсгэж чадсангүй", + "Could not create file \"{file}\" because it already exists" : "Ийм нэртэй файл байгаа учир \"{file}\"-г үүсгэж чадахгүй", + "Could not create folder \"{dir}\" because it already exists" : " \"{dir}\" хавтасыг үүсгэх боломжгүй, нэр нь давцаж байна", + "Error deleting file \"{fileName}\"." : "\"{fileName}\" файлыг устгахад алдаа гарлаа.", + "Name" : "Нэр", + "Size" : "Хэмжээ", + "Modified" : "Өөрчлөгдсөн", + "New" : "Шинэ", + "File name cannot be empty." : "Файлын нэр хоосон байж болохгүй.", + "View in folder" : "Хавтасыг нээх", + "Copied!" : "Хуулсан!", + "Path" : "Зам", + "Favorite" : "Дуртай", + "New folder" : "Шинэ хавтас", + "Upload file" : "Файл байршуулах", + "An error occurred while trying to update the tags" : "Tag шинэчлэхэд алдаа гарлаа", + "Added to favorites" : "Дуртай файлаар сонгов", + "You added {file} to your favorites" : "{file} дуртай файлаар сонгов", + "You removed {file} from your favorites" : "Та дуртай файлын жагсаалтаас {file}-г хасав", + "File changes" : "Файлын өөрчлөлтүүд", + "Created by {user}" : "{user} үүсгэсэн", + "Changed by {user}" : "{user} өөрчилсөн", + "Deleted by {user}" : "{user} устгасан", + "Restored by {user}" : "{user} сэргээсэн", + "Renamed by {user}" : "{user} нэр солисон", + "Moved by {user}" : "{user} зөөсөн", + "\"remote user\"" : "алсын хэрэглэгч", + "You created {file}" : "{file} файлыг та үүсгэв", + "{user} created {file}" : "{user} {file}-г үүсгэв", + "{file} was created in a public folder" : "{file} нийтийн хавтсанд үүсгэгдсэн", + "You changed {file}" : "Та {file} файлыг өөрчлөв", + "{user} changed {file}" : "{user} хэрэглэгч {file}-г өөрчлөв", + "You deleted {file}" : "Та {file} файлыг устгав", + "{user} deleted {file}" : "{user} хэрэглэгч {file} файлыг устгав", + "You restored {file}" : "Та {file} файлыг сэргээв", + "{user} restored {file}" : "{user} хэрэглэгч {file} файлыг сэргээв", + "You renamed {oldfile} to {newfile}" : "Та {oldfile} файлын нэрйиг {newfile} болгож өөрчлөв", + "{user} renamed {oldfile} to {newfile}" : "{user} хэрэглэгч {oldfile} файлын нэрийг {newfile} болгож өөрчлөв", + "You moved {oldfile} to {newfile}" : "Та {oldfile} файлыг {newfile} болгож зөөв", + "{user} moved {oldfile} to {newfile}" : "{user} хэрэглэгч {oldfile} файлыг {newfile} болгож зөөв", + "File handling" : "файлтай харьцах", + "Maximum upload size" : "хамгийн их байршуулах хэмжээ", + "max. possible: " : "боломжтой хамгийн их хэмжээ", + "Save" : "хадгалах", + "Settings" : "Тохиргоо", + "Show hidden files" : "Нууцлагдсан файлыг харах", + "No files in here" : "энэд файл байхгүй байна", + "No entries found in this folder" : "энэ хавтсан олдсон ч ямарч мэдээлэл олдохгүй байна", + "Select all" : "бүгдийг сонгох", + "Upload too large" : "маш том байршуулалт", + "The files you are trying to upload exceed the maximum size for file uploads on this server." : "Таны байршуулах гэж оролдсон файлууд нь энэ сервер дээр файл байршуулах дээд хэмжээнээс хэтэрч.", + "Shared with others" : "Бусдад түгээсэн", + "Shared by link" : "Холбоосоор түгээсэн", + "Tags" : "Тэгүүд", + "Deleted files" : "Устгасан файлууд", + "Text file" : "текст файл", + "New text file.txt" : "шинэ текст file.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/mn.json b/apps/files/l10n/mn.json index f1b58c7e13f3c..cacb2fef9a2c0 100644 --- a/apps/files/l10n/mn.json +++ b/apps/files/l10n/mn.json @@ -1,20 +1,91 @@ { "translations": { + "Storage is temporarily not available" : "Хадгалах төхөөрөмж нь түр хугацаанд ашиглах боломжгүй байна", + "Storage invalid" : "Хадгалах төхөөрөмж буруу байна", + "Unknown error" : "Үл мэдэгдэх алдаа", + "All files" : "Бүх файлууд", + "Recent" : "Сүүлийн үеийн", + "File could not be found" : "Файл олдсонгүй", + "Home" : "Нүүр хуудас", + "Close" : "Хаах", + "Favorites" : "Дуртай", + "Could not create folder \"{dir}\"" : "\"{dir}\" ийм хавтас үүсгэж болохгүй байна", + "Upload cancelled." : "Байршуулалт цуцлагдсан. ", + "Not enough free space, you are uploading {size1} but only {size2} is left" : "хангалттай зай үлдээгүй байна, та {size1} хэмжээтэй файл оруулж байна гэхдээ зөвхөн {size2} ийн хэмжээний сул зай үлдсэн байна", + "Not enough free space" : "Сул зай хүрэлцэхгүй байна", + "Actions" : "Үйл ажиллагаа", + "Download" : "Татаж авах ", + "Rename" : "Нэр өөрчлөх", + "Target folder" : "Заагч хавтас", + "Delete" : "Устгах", + "Disconnect storage" : "Хадгалах төхөөрөмж салгах", + "Unshare" : "Түгээлтийг зогсоох", "Files" : "Файлууд", - "Upload" : "Байршуулах", - "A new file or folder has been created" : "Файл эсвэл хавтас амжилттай үүсгэгдлээ", - "A file or folder has been changed" : "Файл эсвэл хавтас амжилттай солигдлоо", - "A file or folder has been deleted" : "Файл эсвэл хавтас амжилттай устгагдлаа", - "A file or folder has been restored" : "Файл эсвэл хавтас амжилттай сэргээгдлээ", - "You created %1$s" : "Та %1$s үүсгэлээ", - "%2$s created %1$s" : "%2$s %1$s-ийг үүсгэлээ", - "%1$s was created in a public folder" : "%1$s-ийг нийтийн хавтсанд үүсгэсэн байна", - "You changed %1$s" : "Та %1$s-ийг өөрчиллөө", - "%2$s changed %1$s" : "%2$s %1$s-ийг өөрчиллөө", - "You deleted %1$s" : "Та %1$s-ийг устгалаа", - "%2$s deleted %1$s" : "%2$s %1$s-ийг устгалаа", - "You restored %1$s" : "Та %1$s-ийг сэргээлээ", - "%2$s restored %1$s" : "%2$s %1$s-ийг сэргээлээ", - "Save" : "Хадгалах", - "Settings" : "Тохиргоо" + "Details" : "Дэлгэрэнгүй", + "Select" : "Сонгох", + "Pending" : "Хүлээгдэж байгаа", + "Unable to determine date" : "Огноог тодорхойлох боломжгүй", + "This operation is forbidden" : "Энэ үйлдэл хориотой", + "Could not move \"{file}\", target exists" : "\"{file}\" -г зөөж чадсангүй, алдаа: target exists ", + "Could not move \"{file}\"" : "Файлыг зөөж чадсангүй: \"{file}\"", + "{newName} already exists" : "{newName} нэр давцаж байна", + "Could not rename \"{fileName}\", it does not exist any more" : "\"{fileName}\" файлын нэрийг солих боломжгүй, энэ файл устгагдсан байна", + "Could not rename \"{fileName}\"" : "Файлын нэрийг сольж чадсангүй: \"{fileName}\"", + "Could not create file \"{file}\"" : "\"{file}\" файлыг үүсгэж чадсангүй", + "Could not create file \"{file}\" because it already exists" : "Ийм нэртэй файл байгаа учир \"{file}\"-г үүсгэж чадахгүй", + "Could not create folder \"{dir}\" because it already exists" : " \"{dir}\" хавтасыг үүсгэх боломжгүй, нэр нь давцаж байна", + "Error deleting file \"{fileName}\"." : "\"{fileName}\" файлыг устгахад алдаа гарлаа.", + "Name" : "Нэр", + "Size" : "Хэмжээ", + "Modified" : "Өөрчлөгдсөн", + "New" : "Шинэ", + "File name cannot be empty." : "Файлын нэр хоосон байж болохгүй.", + "View in folder" : "Хавтасыг нээх", + "Copied!" : "Хуулсан!", + "Path" : "Зам", + "Favorite" : "Дуртай", + "New folder" : "Шинэ хавтас", + "Upload file" : "Файл байршуулах", + "An error occurred while trying to update the tags" : "Tag шинэчлэхэд алдаа гарлаа", + "Added to favorites" : "Дуртай файлаар сонгов", + "You added {file} to your favorites" : "{file} дуртай файлаар сонгов", + "You removed {file} from your favorites" : "Та дуртай файлын жагсаалтаас {file}-г хасав", + "File changes" : "Файлын өөрчлөлтүүд", + "Created by {user}" : "{user} үүсгэсэн", + "Changed by {user}" : "{user} өөрчилсөн", + "Deleted by {user}" : "{user} устгасан", + "Restored by {user}" : "{user} сэргээсэн", + "Renamed by {user}" : "{user} нэр солисон", + "Moved by {user}" : "{user} зөөсөн", + "\"remote user\"" : "алсын хэрэглэгч", + "You created {file}" : "{file} файлыг та үүсгэв", + "{user} created {file}" : "{user} {file}-г үүсгэв", + "{file} was created in a public folder" : "{file} нийтийн хавтсанд үүсгэгдсэн", + "You changed {file}" : "Та {file} файлыг өөрчлөв", + "{user} changed {file}" : "{user} хэрэглэгч {file}-г өөрчлөв", + "You deleted {file}" : "Та {file} файлыг устгав", + "{user} deleted {file}" : "{user} хэрэглэгч {file} файлыг устгав", + "You restored {file}" : "Та {file} файлыг сэргээв", + "{user} restored {file}" : "{user} хэрэглэгч {file} файлыг сэргээв", + "You renamed {oldfile} to {newfile}" : "Та {oldfile} файлын нэрйиг {newfile} болгож өөрчлөв", + "{user} renamed {oldfile} to {newfile}" : "{user} хэрэглэгч {oldfile} файлын нэрийг {newfile} болгож өөрчлөв", + "You moved {oldfile} to {newfile}" : "Та {oldfile} файлыг {newfile} болгож зөөв", + "{user} moved {oldfile} to {newfile}" : "{user} хэрэглэгч {oldfile} файлыг {newfile} болгож зөөв", + "File handling" : "файлтай харьцах", + "Maximum upload size" : "хамгийн их байршуулах хэмжээ", + "max. possible: " : "боломжтой хамгийн их хэмжээ", + "Save" : "хадгалах", + "Settings" : "Тохиргоо", + "Show hidden files" : "Нууцлагдсан файлыг харах", + "No files in here" : "энэд файл байхгүй байна", + "No entries found in this folder" : "энэ хавтсан олдсон ч ямарч мэдээлэл олдохгүй байна", + "Select all" : "бүгдийг сонгох", + "Upload too large" : "маш том байршуулалт", + "The files you are trying to upload exceed the maximum size for file uploads on this server." : "Таны байршуулах гэж оролдсон файлууд нь энэ сервер дээр файл байршуулах дээд хэмжээнээс хэтэрч.", + "Shared with others" : "Бусдад түгээсэн", + "Shared by link" : "Холбоосоор түгээсэн", + "Tags" : "Тэгүүд", + "Deleted files" : "Устгасан файлууд", + "Text file" : "текст файл", + "New text file.txt" : "шинэ текст file.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/nb.js b/apps/files/l10n/nb.js index 45b9027f78215..f061c2ff95350 100644 --- a/apps/files/l10n/nb.js +++ b/apps/files/l10n/nb.js @@ -66,6 +66,7 @@ OC.L10N.register( "{used} used" : "{used} brukt", "\"{name}\" is an invalid file name." : "\"{name}\" er et uglydig filnavn.", "File name cannot be empty." : "Filnavn kan ikke være tomt.", + "\"/\" is not allowed inside a file name." : "\"/\" tillates ikke i et filnavn.", "\"{name}\" is not an allowed filetype" : "\"{name}\" er ikke en tillatt filtype", "Storage of {owner} is full, files can not be updated or synced anymore!" : "Lagringsplass for {owner} er full, filer kan ikke oppdateres eller synkroniseres lenger!", "Your storage is full, files can not be updated or synced anymore!" : "Lagringsplass er oppbrukt, filer kan ikke lenger oppdateres eller synkroniseres!", @@ -146,24 +147,9 @@ OC.L10N.register( "Deleted files" : "Slettede filer", "Text file" : "Tekstfil", "New text file.txt" : "Ny tekstfil.txt", - "Uploading..." : "Laster opp…", - "..." : "…", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} time igjen","{hours}:{minutes}:{seconds} timer igjen"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minutt igjen","{minutes}:{seconds} minutter igjen"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekund igjen","{seconds} sekunder igjen"], - "{seconds}s" : "{seconds}er", - "Any moment now..." : "Hvert øyeblikk nå…", - "Soon..." : "Snart…", - "File upload is in progress. Leaving the page now will cancel the upload." : "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen.", "Move" : "Flytt", - "Copy local link" : "Kopier lokal lenke", - "Folder" : "Mappe", - "Upload" : "Last opp", "A new file or folder has been deleted" : "En ny fil eller mappe har blitt slettet", "A new file or folder has been restored" : "En ny fil eller mappe har blitt gjenopprettet", - "Use this address to access your Files via WebDAV" : "Bruk adressen for å få tilgang til WebDAV", - "No favorites" : "Ingen favoritter" + "Use this address to access your Files via WebDAV" : "Bruk denne adressen for å få tilgang til dine filer via WebDAV" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/nb.json b/apps/files/l10n/nb.json index 0328ceb283af5..48477740621e0 100644 --- a/apps/files/l10n/nb.json +++ b/apps/files/l10n/nb.json @@ -64,6 +64,7 @@ "{used} used" : "{used} brukt", "\"{name}\" is an invalid file name." : "\"{name}\" er et uglydig filnavn.", "File name cannot be empty." : "Filnavn kan ikke være tomt.", + "\"/\" is not allowed inside a file name." : "\"/\" tillates ikke i et filnavn.", "\"{name}\" is not an allowed filetype" : "\"{name}\" er ikke en tillatt filtype", "Storage of {owner} is full, files can not be updated or synced anymore!" : "Lagringsplass for {owner} er full, filer kan ikke oppdateres eller synkroniseres lenger!", "Your storage is full, files can not be updated or synced anymore!" : "Lagringsplass er oppbrukt, filer kan ikke lenger oppdateres eller synkroniseres!", @@ -144,24 +145,9 @@ "Deleted files" : "Slettede filer", "Text file" : "Tekstfil", "New text file.txt" : "Ny tekstfil.txt", - "Uploading..." : "Laster opp…", - "..." : "…", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} time igjen","{hours}:{minutes}:{seconds} timer igjen"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minutt igjen","{minutes}:{seconds} minutter igjen"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekund igjen","{seconds} sekunder igjen"], - "{seconds}s" : "{seconds}er", - "Any moment now..." : "Hvert øyeblikk nå…", - "Soon..." : "Snart…", - "File upload is in progress. Leaving the page now will cancel the upload." : "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen.", "Move" : "Flytt", - "Copy local link" : "Kopier lokal lenke", - "Folder" : "Mappe", - "Upload" : "Last opp", "A new file or folder has been deleted" : "En ny fil eller mappe har blitt slettet", "A new file or folder has been restored" : "En ny fil eller mappe har blitt gjenopprettet", - "Use this address to access your Files via WebDAV" : "Bruk adressen for å få tilgang til WebDAV", - "No favorites" : "Ingen favoritter" + "Use this address to access your Files via WebDAV" : "Bruk denne adressen for å få tilgang til dine filer via WebDAV" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/nl.js b/apps/files/l10n/nl.js index 5ee5d8c618140..dd642d1434280 100644 --- a/apps/files/l10n/nl.js +++ b/apps/files/l10n/nl.js @@ -25,6 +25,7 @@ OC.L10N.register( "Download" : "Downloaden", "Rename" : "Naam wijzigen", "Move or copy" : "Verplaats of kopieer", + "Copy" : "Kopiëren", "Target folder" : "Doelmap", "Delete" : "Verwijderen", "Disconnect storage" : "Verbinding met opslag verbreken", @@ -99,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "Verplaatst door {user}", "\"remote user\"" : "\"externe gebruiker\"", "You created {file}" : "Je creëerde {file}", + "You created an encrypted file in {file}" : "Je creëerde een versleuteld bestand in {file}", "{user} created {file}" : "{user} creëerde {file}", + "{user} created an encrypted file in {file}" : "{user} creëerde een versleuteld bestand in {file}", "{file} was created in a public folder" : "{file} werd gecreëerd in een openbare map", "You changed {file}" : "Je wijzigde {file}", + "You changed an encrypted file in {file}" : "Je wijzigde een versleuteld bestand in {file}", "{user} changed {file}" : "{user} wijzigde {file}", + "{user} changed an encrypted file in {file}" : "{user} heeft een versleuteteld bestand veranderd in {file}", "You deleted {file}" : "Je verwijderde {file}", + "You deleted an encrypted file in {file}" : "Je hebt een versleuteld bestand gewist in {file}", "{user} deleted {file}" : "{user} verwijderde {file}", + "{user} deleted an encrypted file in {file}" : "{user} heeft een versleuteld bestand gewist in {file}", "You restored {file}" : "Je herstelde {file}", "{user} restored {file}" : "{user} herstelde {file}", "You renamed {oldfile} to {newfile}" : "Je hernoemde {oldfile} naar {newfile}", @@ -147,24 +154,9 @@ OC.L10N.register( "Deleted files" : "Verwijderde bestanden", "Text file" : "Tekstbestand", "New text file.txt" : "Nieuw tekstbestand.txt", - "Uploading..." : "Uploaden...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["nog {hours}:{minutes}:{seconds} uur","nog {hours}:{minutes}:{seconds} uur"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["nog {minutes}:{seconds} minuut","nog {minutes}:{seconds} minuten"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["nog {seconds} seconde","nog {seconds} seconden"], - "{seconds}s" : "{seconds}en", - "Any moment now..." : "Kan nu elk moment klaar zijn…", - "Soon..." : "Binnenkort...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", "Move" : "Verplaatsen", - "Copy local link" : "Kopiëren lokale link", - "Folder" : "Map", - "Upload" : "Uploaden", "A new file or folder has been deleted" : "Een nieuw bestand of nieuwe map is verwijderd", "A new file or folder has been restored" : "Een nieuw bestand of een nieuwe map is hersteld", - "Use this address to access your Files via WebDAV" : "Gebruik deze link om je bestanden via WebDAV te benaderen", - "No favorites" : "Geen favorieten" + "Use this address to access your Files via WebDAV" : "Gebruik deze link om je bestanden via WebDAV te benaderen" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/nl.json b/apps/files/l10n/nl.json index 2cc15f1f564d8..e809dd83fa73e 100644 --- a/apps/files/l10n/nl.json +++ b/apps/files/l10n/nl.json @@ -23,6 +23,7 @@ "Download" : "Downloaden", "Rename" : "Naam wijzigen", "Move or copy" : "Verplaats of kopieer", + "Copy" : "Kopiëren", "Target folder" : "Doelmap", "Delete" : "Verwijderen", "Disconnect storage" : "Verbinding met opslag verbreken", @@ -97,12 +98,18 @@ "Moved by {user}" : "Verplaatst door {user}", "\"remote user\"" : "\"externe gebruiker\"", "You created {file}" : "Je creëerde {file}", + "You created an encrypted file in {file}" : "Je creëerde een versleuteld bestand in {file}", "{user} created {file}" : "{user} creëerde {file}", + "{user} created an encrypted file in {file}" : "{user} creëerde een versleuteld bestand in {file}", "{file} was created in a public folder" : "{file} werd gecreëerd in een openbare map", "You changed {file}" : "Je wijzigde {file}", + "You changed an encrypted file in {file}" : "Je wijzigde een versleuteld bestand in {file}", "{user} changed {file}" : "{user} wijzigde {file}", + "{user} changed an encrypted file in {file}" : "{user} heeft een versleuteteld bestand veranderd in {file}", "You deleted {file}" : "Je verwijderde {file}", + "You deleted an encrypted file in {file}" : "Je hebt een versleuteld bestand gewist in {file}", "{user} deleted {file}" : "{user} verwijderde {file}", + "{user} deleted an encrypted file in {file}" : "{user} heeft een versleuteld bestand gewist in {file}", "You restored {file}" : "Je herstelde {file}", "{user} restored {file}" : "{user} herstelde {file}", "You renamed {oldfile} to {newfile}" : "Je hernoemde {oldfile} naar {newfile}", @@ -145,24 +152,9 @@ "Deleted files" : "Verwijderde bestanden", "Text file" : "Tekstbestand", "New text file.txt" : "Nieuw tekstbestand.txt", - "Uploading..." : "Uploaden...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["nog {hours}:{minutes}:{seconds} uur","nog {hours}:{minutes}:{seconds} uur"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["nog {minutes}:{seconds} minuut","nog {minutes}:{seconds} minuten"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["nog {seconds} seconde","nog {seconds} seconden"], - "{seconds}s" : "{seconds}en", - "Any moment now..." : "Kan nu elk moment klaar zijn…", - "Soon..." : "Binnenkort...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", "Move" : "Verplaatsen", - "Copy local link" : "Kopiëren lokale link", - "Folder" : "Map", - "Upload" : "Uploaden", "A new file or folder has been deleted" : "Een nieuw bestand of nieuwe map is verwijderd", "A new file or folder has been restored" : "Een nieuw bestand of een nieuwe map is hersteld", - "Use this address to access your Files via WebDAV" : "Gebruik deze link om je bestanden via WebDAV te benaderen", - "No favorites" : "Geen favorieten" + "Use this address to access your Files via WebDAV" : "Gebruik deze link om je bestanden via WebDAV te benaderen" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/pl.js b/apps/files/l10n/pl.js index 242fcc20334ec..f474b2429b6fd 100644 --- a/apps/files/l10n/pl.js +++ b/apps/files/l10n/pl.js @@ -25,6 +25,7 @@ OC.L10N.register( "Download" : "Pobierz", "Rename" : "Zmień nazwę", "Move or copy" : "Przenieś lub kopiuj", + "Copy" : "Kopiuj", "Target folder" : "Folder docelowy", "Delete" : "Usuń", "Disconnect storage" : "Odłącz magazyn", @@ -62,8 +63,11 @@ OC.L10N.register( "You don’t have permission to upload or create files here" : "Nie masz uprawnień do wysyłania lub tworzenia plików w tym miejscu", "_Uploading %n file_::_Uploading %n files_" : ["Wysyłanie %n pliku","Wysyłanie %n plików","Wysyłanie %n plików","Wysyłanie %n plików"], "New" : "Nowy", + "{used} of {quota} used" : "Wykorzystane {used} z {quota}", + "{used} used" : "Wykorzystane {used}", "\"{name}\" is an invalid file name." : "\"{name}\" jest nieprawidłową nazwą pliku.", "File name cannot be empty." : "Nazwa pliku nie może być pusta.", + "\"/\" is not allowed inside a file name." : "Znak \"/\" jest niedozwolony w nazwie pliku.", "\"{name}\" is not an allowed filetype" : "typ pliku \"{name}\" jest niedozwolony", "Storage of {owner} is full, files can not be updated or synced anymore!" : "Brak wolnego miejsca dla {owner}, pliki nie mogą zostać zaktualizowane lub zsynchronizowane!", "Your storage is full, files can not be updated or synced anymore!" : "Magazyn jest pełny. Pliki nie mogą zostać zaktualizowane lub zsynchronizowane!", @@ -96,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "Przeniesione przez {user}", "\"remote user\"" : "\"użytkownik zdalny\"", "You created {file}" : "Utworzy‭łeś {file}", + "You created an encrypted file in {file}" : "Stworzyłeś zaszyfrowany plik w {file}", "{user} created {file}" : "{user} utworzy‭ł {file}", + "{user} created an encrypted file in {file}" : "{user} utworzył zaszyfrowany plik w {file}", "{file} was created in a public folder" : "{file} został utworzony w folderze publicznym", "You changed {file}" : "Zmieniłeś {file}", + "You changed an encrypted file in {file}" : "Zmieniłeś zaszyfrowany plik w {file}", "{user} changed {file}" : "{user} zmienił {file}", + "{user} changed an encrypted file in {file}" : "{user} zmienił zaszyfrowany plik w {file}", "You deleted {file}" : "Usunąłeś {file}", + "You deleted an encrypted file in {file}" : "Usunąłeś zaszyfrowany plik w {file}", "{user} deleted {file}" : "{user} usunął {file}", + "{user} deleted an encrypted file in {file}" : "{user} usunął zaszyfrowany plik w {file}", "You restored {file}" : "Przywróciłeś {file}", "{user} restored {file}" : "{user} przywrócił {file}", "You renamed {oldfile} to {newfile}" : "Zmieniłeś {oldfile} na {newfile}", @@ -144,24 +154,9 @@ OC.L10N.register( "Deleted files" : "Usunięte pliki", "Text file" : "Plik tekstowy", "New text file.txt" : "Nowy plik tekstowy.txt", - "Uploading..." : "Wysyłanie....", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["Pozostała {hours}:{minutes}:{seconds} godzina","Pozostało {hours}:{minutes}:{seconds} godzin","Pozostało {hours}:{minutes}:{seconds} godzin"], - "{hours}:{minutes}h" : "{hours}h:{minutes}m", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["Pozostała {minutes}:{seconds} minuta","Pozostało {minutes}:{seconds} minut","Pozostało {minutes}:{seconds} minut"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}min.", - "_{seconds} second left_::_{seconds} seconds left_" : ["Pozostała {seconds} sekunda","Pozostało {seconds} sekund","Pozostało {seconds} sekund"], - "{seconds}s" : "{seconds} s", - "Any moment now..." : "Jeszcze chwilę...", - "Soon..." : "Wkrótce...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane.", "Move" : "Przenieś", - "Copy local link" : "Skopiuj link lokalny", - "Folder" : "Folder", - "Upload" : "Wyślij", - "A new file or folder has been deleted" : "Nowy plik lub folder został usunięty ", - "A new file or folder has been restored" : "Nowy plik lub folder został przywrócony", - "Use this address to access your Files via WebDAV" : "Użyj tego adresu aby uzyskać dostęp do swoich plików poprzez WebDAV", - "No favorites" : "Brak ulubionych" + "A new file or folder has been deleted" : "Nowy plik lub folder został usunięty", + "A new file or folder has been restored" : "Nowy plik lub folder został odtworzony", + "Use this address to access your Files via WebDAV" : "Użyj swojego adresu aby mieć dostęp do Plików przez WebDAV" }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/files/l10n/pl.json b/apps/files/l10n/pl.json index 25da511ea2129..187cc6a79d01a 100644 --- a/apps/files/l10n/pl.json +++ b/apps/files/l10n/pl.json @@ -23,6 +23,7 @@ "Download" : "Pobierz", "Rename" : "Zmień nazwę", "Move or copy" : "Przenieś lub kopiuj", + "Copy" : "Kopiuj", "Target folder" : "Folder docelowy", "Delete" : "Usuń", "Disconnect storage" : "Odłącz magazyn", @@ -60,8 +61,11 @@ "You don’t have permission to upload or create files here" : "Nie masz uprawnień do wysyłania lub tworzenia plików w tym miejscu", "_Uploading %n file_::_Uploading %n files_" : ["Wysyłanie %n pliku","Wysyłanie %n plików","Wysyłanie %n plików","Wysyłanie %n plików"], "New" : "Nowy", + "{used} of {quota} used" : "Wykorzystane {used} z {quota}", + "{used} used" : "Wykorzystane {used}", "\"{name}\" is an invalid file name." : "\"{name}\" jest nieprawidłową nazwą pliku.", "File name cannot be empty." : "Nazwa pliku nie może być pusta.", + "\"/\" is not allowed inside a file name." : "Znak \"/\" jest niedozwolony w nazwie pliku.", "\"{name}\" is not an allowed filetype" : "typ pliku \"{name}\" jest niedozwolony", "Storage of {owner} is full, files can not be updated or synced anymore!" : "Brak wolnego miejsca dla {owner}, pliki nie mogą zostać zaktualizowane lub zsynchronizowane!", "Your storage is full, files can not be updated or synced anymore!" : "Magazyn jest pełny. Pliki nie mogą zostać zaktualizowane lub zsynchronizowane!", @@ -94,12 +98,18 @@ "Moved by {user}" : "Przeniesione przez {user}", "\"remote user\"" : "\"użytkownik zdalny\"", "You created {file}" : "Utworzy‭łeś {file}", + "You created an encrypted file in {file}" : "Stworzyłeś zaszyfrowany plik w {file}", "{user} created {file}" : "{user} utworzy‭ł {file}", + "{user} created an encrypted file in {file}" : "{user} utworzył zaszyfrowany plik w {file}", "{file} was created in a public folder" : "{file} został utworzony w folderze publicznym", "You changed {file}" : "Zmieniłeś {file}", + "You changed an encrypted file in {file}" : "Zmieniłeś zaszyfrowany plik w {file}", "{user} changed {file}" : "{user} zmienił {file}", + "{user} changed an encrypted file in {file}" : "{user} zmienił zaszyfrowany plik w {file}", "You deleted {file}" : "Usunąłeś {file}", + "You deleted an encrypted file in {file}" : "Usunąłeś zaszyfrowany plik w {file}", "{user} deleted {file}" : "{user} usunął {file}", + "{user} deleted an encrypted file in {file}" : "{user} usunął zaszyfrowany plik w {file}", "You restored {file}" : "Przywróciłeś {file}", "{user} restored {file}" : "{user} przywrócił {file}", "You renamed {oldfile} to {newfile}" : "Zmieniłeś {oldfile} na {newfile}", @@ -142,24 +152,9 @@ "Deleted files" : "Usunięte pliki", "Text file" : "Plik tekstowy", "New text file.txt" : "Nowy plik tekstowy.txt", - "Uploading..." : "Wysyłanie....", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["Pozostała {hours}:{minutes}:{seconds} godzina","Pozostało {hours}:{minutes}:{seconds} godzin","Pozostało {hours}:{minutes}:{seconds} godzin"], - "{hours}:{minutes}h" : "{hours}h:{minutes}m", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["Pozostała {minutes}:{seconds} minuta","Pozostało {minutes}:{seconds} minut","Pozostało {minutes}:{seconds} minut"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}min.", - "_{seconds} second left_::_{seconds} seconds left_" : ["Pozostała {seconds} sekunda","Pozostało {seconds} sekund","Pozostało {seconds} sekund"], - "{seconds}s" : "{seconds} s", - "Any moment now..." : "Jeszcze chwilę...", - "Soon..." : "Wkrótce...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane.", "Move" : "Przenieś", - "Copy local link" : "Skopiuj link lokalny", - "Folder" : "Folder", - "Upload" : "Wyślij", - "A new file or folder has been deleted" : "Nowy plik lub folder został usunięty ", - "A new file or folder has been restored" : "Nowy plik lub folder został przywrócony", - "Use this address to access your Files via WebDAV" : "Użyj tego adresu aby uzyskać dostęp do swoich plików poprzez WebDAV", - "No favorites" : "Brak ulubionych" + "A new file or folder has been deleted" : "Nowy plik lub folder został usunięty", + "A new file or folder has been restored" : "Nowy plik lub folder został odtworzony", + "Use this address to access your Files via WebDAV" : "Użyj swojego adresu aby mieć dostęp do Plików przez WebDAV" },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" } \ No newline at end of file diff --git a/apps/files/l10n/pt_BR.js b/apps/files/l10n/pt_BR.js index 1120d2e769bb2..9d9f2064f983f 100644 --- a/apps/files/l10n/pt_BR.js +++ b/apps/files/l10n/pt_BR.js @@ -25,6 +25,7 @@ OC.L10N.register( "Download" : "Baixar", "Rename" : "Renomear", "Move or copy" : "Mover ou copiar", + "Copy" : "Copiar", "Target folder" : "Pasta destino", "Delete" : "Excluir", "Disconnect storage" : "Desconectar armazenamento", @@ -99,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "Movido por {user}", "\"remote user\"" : "\"usuário remoto\"", "You created {file}" : "Você criou o arquivo {file}", + "You created an encrypted file in {file}" : "Você criou um arquivo criptografado em {file}", "{user} created {file}" : "{user} criou {file}", + "{user} created an encrypted file in {file}" : "{user} criou um arquivo criptografado em {file}", "{file} was created in a public folder" : "O arquivo {file} foi criado em uma pasta pública", "You changed {file}" : "Você modificou o arquivo {file}", + "You changed an encrypted file in {file}" : "Você alterou um arquivo criptografado em {file}", "{user} changed {file}" : "{user} modificou {file}", + "{user} changed an encrypted file in {file}" : "{user} alterou um arquivo criptografado em {file}", "You deleted {file}" : "Você excluiu o arquivo {file}", + "You deleted an encrypted file in {file}" : "Você excluiu um arquivo criptografado em {file}", "{user} deleted {file}" : "{user} excluiu o arquivo {file}", + "{user} deleted an encrypted file in {file}" : "{user} excluiu um arquivo criptografado em {file}", "You restored {file}" : "Você restaurou o arquivo {file}", "{user} restored {file}" : "{user} restaurou {file}", "You renamed {oldfile} to {newfile}" : "Você renomeou o arquivo {oldfile} para {newfile}", @@ -133,13 +140,13 @@ OC.L10N.register( "Use this address to access your Files via WebDAV" : "Use este endereço para acessar seus arquivos via WebDAV", "Cancel upload" : "Cancelar envio", "No files in here" : "Nenhum arquivo aqui", - "Upload some content or sync with your devices!" : "Envie algum conteúdo ou sincronize com seus dispositivos!", + "Upload some content or sync with your devices!" : "Envie um arquivo ou sincronize com seus dispositivos!", "No entries found in this folder" : "Nenhuma entrada foi encontrada nesta pasta", "Select all" : "Selecionar tudo", "Upload too large" : "Arquivo muito grande para envio", "The files you are trying to upload exceed the maximum size for file uploads on this server." : "Os arquivos que você está tentando enviar excederam o tamanho máximo para arquivos no servidor.", - "No favorites yet" : "Sem favoritos ainda", - "Files and folders you mark as favorite will show up here" : "Arquivos e pastas que você marcou como favoritos serão mostrados aqui", + "No favorites yet" : "Você não possui favoritos!", + "Files and folders you mark as favorite will show up here" : "Suas pastas e arquivos favoritos serão exibidos aqui.", "Shared with you" : "Compartilhado com você", "Shared with others" : "Compartilhado com outros", "Shared by link" : "Compartilhado via link", @@ -147,24 +154,9 @@ OC.L10N.register( "Deleted files" : "Arquivos excluídos", "Text file" : "Arquivo texto", "New text file.txt" : "Novo texto file.txt", - "Uploading..." : "Enviando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} hora restante","{hours}:{minutes}:{seconds} horas restantes"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minutos retantes","{minutes}:{seconds} minutos restantes"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} segundos restantes","{seconds} segundos restantes"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "A qualquer momento...", - "Soon..." : "Logo...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Envio de arquivo em andamento. Sair da página agora cancelará o envio.", "Move" : "Mover", - "Copy local link" : "Copiar link local", - "Folder" : "Pasta", - "Upload" : "Enviar", - "A new file or folder has been deleted" : "Um novo arquivo ou pasta foi excluído ", - "A new file or folder has been restored" : "Um novo arquivo ou pasta foi recuperado ", - "Use this address to access your Files via WebDAV" : "Use este endereço para acessar seus arquivos via WebDAV", - "No favorites" : "Sem favoritos" + "A new file or folder has been deleted" : "Um novo arquivo ou pasta foi excluído", + "A new file or folder has been restored" : "Um novo arquivo ou pasta foi restaurado", + "Use this address to access your Files via WebDAV" : "Use este endereço para acessar seus Arquivos via WebDAV" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/files/l10n/pt_BR.json b/apps/files/l10n/pt_BR.json index 4f4a4e0de5a77..e1a7c4ce3b862 100644 --- a/apps/files/l10n/pt_BR.json +++ b/apps/files/l10n/pt_BR.json @@ -23,6 +23,7 @@ "Download" : "Baixar", "Rename" : "Renomear", "Move or copy" : "Mover ou copiar", + "Copy" : "Copiar", "Target folder" : "Pasta destino", "Delete" : "Excluir", "Disconnect storage" : "Desconectar armazenamento", @@ -97,12 +98,18 @@ "Moved by {user}" : "Movido por {user}", "\"remote user\"" : "\"usuário remoto\"", "You created {file}" : "Você criou o arquivo {file}", + "You created an encrypted file in {file}" : "Você criou um arquivo criptografado em {file}", "{user} created {file}" : "{user} criou {file}", + "{user} created an encrypted file in {file}" : "{user} criou um arquivo criptografado em {file}", "{file} was created in a public folder" : "O arquivo {file} foi criado em uma pasta pública", "You changed {file}" : "Você modificou o arquivo {file}", + "You changed an encrypted file in {file}" : "Você alterou um arquivo criptografado em {file}", "{user} changed {file}" : "{user} modificou {file}", + "{user} changed an encrypted file in {file}" : "{user} alterou um arquivo criptografado em {file}", "You deleted {file}" : "Você excluiu o arquivo {file}", + "You deleted an encrypted file in {file}" : "Você excluiu um arquivo criptografado em {file}", "{user} deleted {file}" : "{user} excluiu o arquivo {file}", + "{user} deleted an encrypted file in {file}" : "{user} excluiu um arquivo criptografado em {file}", "You restored {file}" : "Você restaurou o arquivo {file}", "{user} restored {file}" : "{user} restaurou {file}", "You renamed {oldfile} to {newfile}" : "Você renomeou o arquivo {oldfile} para {newfile}", @@ -131,13 +138,13 @@ "Use this address to access your Files via WebDAV" : "Use este endereço para acessar seus arquivos via WebDAV", "Cancel upload" : "Cancelar envio", "No files in here" : "Nenhum arquivo aqui", - "Upload some content or sync with your devices!" : "Envie algum conteúdo ou sincronize com seus dispositivos!", + "Upload some content or sync with your devices!" : "Envie um arquivo ou sincronize com seus dispositivos!", "No entries found in this folder" : "Nenhuma entrada foi encontrada nesta pasta", "Select all" : "Selecionar tudo", "Upload too large" : "Arquivo muito grande para envio", "The files you are trying to upload exceed the maximum size for file uploads on this server." : "Os arquivos que você está tentando enviar excederam o tamanho máximo para arquivos no servidor.", - "No favorites yet" : "Sem favoritos ainda", - "Files and folders you mark as favorite will show up here" : "Arquivos e pastas que você marcou como favoritos serão mostrados aqui", + "No favorites yet" : "Você não possui favoritos!", + "Files and folders you mark as favorite will show up here" : "Suas pastas e arquivos favoritos serão exibidos aqui.", "Shared with you" : "Compartilhado com você", "Shared with others" : "Compartilhado com outros", "Shared by link" : "Compartilhado via link", @@ -145,24 +152,9 @@ "Deleted files" : "Arquivos excluídos", "Text file" : "Arquivo texto", "New text file.txt" : "Novo texto file.txt", - "Uploading..." : "Enviando...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} hora restante","{hours}:{minutes}:{seconds} horas restantes"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minutos retantes","{minutes}:{seconds} minutos restantes"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} segundos restantes","{seconds} segundos restantes"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "A qualquer momento...", - "Soon..." : "Logo...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Envio de arquivo em andamento. Sair da página agora cancelará o envio.", "Move" : "Mover", - "Copy local link" : "Copiar link local", - "Folder" : "Pasta", - "Upload" : "Enviar", - "A new file or folder has been deleted" : "Um novo arquivo ou pasta foi excluído ", - "A new file or folder has been restored" : "Um novo arquivo ou pasta foi recuperado ", - "Use this address to access your Files via WebDAV" : "Use este endereço para acessar seus arquivos via WebDAV", - "No favorites" : "Sem favoritos" + "A new file or folder has been deleted" : "Um novo arquivo ou pasta foi excluído", + "A new file or folder has been restored" : "Um novo arquivo ou pasta foi restaurado", + "Use this address to access your Files via WebDAV" : "Use este endereço para acessar seus Arquivos via WebDAV" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/files/l10n/pt_PT.js b/apps/files/l10n/pt_PT.js index 2d47f139030ee..ffa95f4b93c43 100644 --- a/apps/files/l10n/pt_PT.js +++ b/apps/files/l10n/pt_PT.js @@ -1,10 +1,12 @@ OC.L10N.register( "files", { + "Storage is temporarily not available" : "Armazenamento temporariamente indisponível", "Storage invalid" : "Armazenamento inválido", "Unknown error" : "Erro desconhecido", - "Files" : "Ficheiros", "All files" : "Todos os ficheiros", + "Recent" : "Recentes", + "File could not be found" : "O ficheiro não foi encontrado", "Home" : "Início", "Close" : "Fechar", "Favorites" : "Favoritos", @@ -12,24 +14,23 @@ OC.L10N.register( "Upload cancelled." : "Envio cancelado.", "Unable to upload {filename} as it is a directory or has 0 bytes" : "Não é possível enviar {filename}, porque este é uma diretoria ou tem 0 bytes", "Not enough free space, you are uploading {size1} but only {size2} is left" : "Não existe espaço suficiente, está a enviar {size1} mas resta apenas {size2}", - "Uploading..." : "A enviar...", - "..." : "...", - "{hours}:{minutes}:{seconds} hour{plural_s} left" : "Tempo restante: {hours}:{minutes}:{seconds} hora{plural_s}", - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "{minutes}:{seconds} minute{plural_s} left" : "faltam: {minutes}:{seconds} minute{plural_s}", - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "{seconds} second{plural_s} left" : "faltam: {seconds} segundo{plural_s}", - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Agora, a qualquer momento...", - "Soon..." : "Brevemente...", + "Target folder \"{dir}\" does not exist any more" : "A pasta de destino \"{dir}\" já não existe", + "Not enough free space" : "Espaço insuficiente", + "Uploading …" : "A carregar ...", + "…" : "...", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} de {totalSize} ({bitrate})", - "File upload is in progress. Leaving the page now will cancel the upload." : "Envio de ficheiro em progresso. Se deixar a página agora, irá cancelar o envio.", + "Target folder does not exist any more" : "A pasta de destino já não existe", + "Error when assembling chunks, status code {status}" : "Erro ao agregar partições, código de estado: {estado}", "Actions" : "Ações", "Download" : "Transferir", "Rename" : "Renomear", + "Move or copy" : "Mover ou copiar", + "Target folder" : "Pasta de destino", "Delete" : "Eliminar", "Disconnect storage" : "Desligue o armazenamento", "Unshare" : "Cancelar partilha", + "Could not load info for file \"{file}\"" : "Não foi possível carregar informações do ficheiro \"{file}\"", + "Files" : "Ficheiros", "Details" : "Detalhes", "Select" : "Selecionar", "Pending" : "Pendente", @@ -38,6 +39,10 @@ OC.L10N.register( "This directory is unavailable, please check the logs or contact the administrator" : "Esta diretoria está indisponível, por favor, verifique os registos ou contacte o administrador", "Could not move \"{file}\", target exists" : "Não foi possível mover \"{file}\", destino já existe", "Could not move \"{file}\"" : "Não foi possivel mover o ficheiro \"{file}\"", + "Could not copy \"{file}\", target exists" : "Não foi possível copiar \"{file}\", o destino já existe", + "Could not copy \"{file}\"" : "Impossível copiar \"{file}\"", + "Copied {origin} inside {destination}" : "Copiado {origin} para {destination}", + "Copied {origin} and {nbfiles} other files inside {destination}" : "Copiados {origin} e {nbfiles} outros ficheiros para dentro de {destination}", "{newName} already exists" : "{newName} já existe", "Could not rename \"{fileName}\", it does not exist any more" : "Não foi possível renomear \"{fileName}\", este já não existe", "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "O nome \"{targetName}\" já está em utilização na pasta \"{dir}\". Por favor, escolha um nome diferente.", @@ -46,32 +51,73 @@ OC.L10N.register( "Could not create file \"{file}\" because it already exists" : "Não foi possível criar o ficheiro \"{file}\", porque este já existe", "Could not create folder \"{dir}\" because it already exists" : "Não foi possível criar a pasta \"{dir}\", porque esta já existe", "Error deleting file \"{fileName}\"." : "Erro ao eliminar o ficheiro \"{fileName}\".", + "No search results in other folders for {tag}{filter}{endtag}" : "Nenhum resultado noutras pastas para {tag}{filter}{endtag}", "Name" : "Nome", "Size" : "Tamanho", "Modified" : "Modificado", "_%n folder_::_%n folders_" : ["%n pasta","%n pastas"], "_%n file_::_%n files_" : ["%n ficheiro","%n ficheiros"], "{dirs} and {files}" : "{dirs} e {files}", + "_including %n hidden_::_including %n hidden_" : ["incluindo %n ocultos","incluindo %n ocultos"], "You don’t have permission to upload or create files here" : "Não tem permissão para enviar ou criar ficheiros aqui", "_Uploading %n file_::_Uploading %n files_" : ["A enviar %n ficheiro","A enviar %n ficheiros"], "New" : "Novo", + "{used} of {quota} used" : "{used} de {quota} utilizado", + "{used} used" : "{used} utilizado", "\"{name}\" is an invalid file name." : "\"{name}\" é um nome de ficheiro inválido.", "File name cannot be empty." : "O nome do ficheiro não pode estar em branco.", + "\"/\" is not allowed inside a file name." : "\"/\" não é permitido dentro de um nome de um ficheiro.", + "\"{name}\" is not an allowed filetype" : "\"{name}\" não é um tipo de ficheiro permitido", "Storage of {owner} is full, files can not be updated or synced anymore!" : "O armazenamento de {owner} está cheio. Os ficheiros já não podem ser atualizados ou sincronizados!", "Your storage is full, files can not be updated or synced anymore!" : "O seu armazenamento está cheio, os ficheiros já não podem ser atualizados ou sincronizados.", "Storage of {owner} is almost full ({usedSpacePercent}%)" : "O armazenamento de {owner} está quase cheio ({usedSpacePercent}%)", "Your storage is almost full ({usedSpacePercent}%)" : "O seu armazenamento está quase cheio ({usedSpacePercent}%)", "_matches '{filter}'_::_match '{filter}'_" : ["corresponde a '{filter}'","correspondem a '{filter}'"], + "View in folder" : "Ver na pasta", + "Copied!" : "Copiado!", + "Copy direct link (only works for users who have access to this file/folder)" : "Copiar hiperligação directa (apenas funciona para utilizadores que tenham acesso a este ficheiro/pasta)", "Path" : "Caminho", "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Favorited" : "Nos Favoritos", "Favorite" : "Favorito", - "Folder" : "Pasta", "New folder" : "Nova pasta", - "Upload" : "Enviar", + "Upload file" : "Enviar ficheiro", + "Not favorited" : "Não favorito", + "Remove from favorites" : "Remover dos favoritos", + "Add to favorites" : "Adicionar aos favoritos", "An error occurred while trying to update the tags" : "Ocorreu um erro ao tentar atualizar as etiquetas", + "Added to favorites" : "Adicionado aos favoritos", + "Removed from favorites" : "Removido dos favoritos", + "You added {file} to your favorites" : "Adicionou {file} aos favoritos", + "You removed {file} from your favorites" : "Removeu {file} dos favoritos", + "File changes" : "Alterações no ficheiro", + "Created by {user}" : "Criado por {user}", + "Changed by {user}" : "Modificado por {user}", + "Deleted by {user}" : "Apagado por {user}", + "Restored by {user}" : "Restaurado por {user}", + "Renamed by {user}" : "Renomeado por {user}", + "Moved by {user}" : "Movido por {user}", + "\"remote user\"" : "\"utilizador remoto\"", + "You created {file}" : "Criou {file}", + "{user} created {file}" : "{user} criou {file}", + "{file} was created in a public folder" : "{file} foi criado numa pasta pública", + "You changed {file}" : "Modificou {file}", + "{user} changed {file}" : "{user} modificou {file}", + "You deleted {file}" : "Eliminou {file}", + "{user} deleted {file}" : "{user} eliminou {file}", + "You restored {file}" : "Restaurou {file}", + "{user} restored {file}" : "{user} restaurou {file}", + "You renamed {oldfile} to {newfile}" : "Renomeou {oldfile} para {newfile}", + "{user} renamed {oldfile} to {newfile}" : "{user} renomeou {oldfile} para {newfile}", + "You moved {oldfile} to {newfile}" : "Moveu {oldfile} para {newfile}", + "{user} moved {oldfile} to {newfile}" : "{user} moveu {oldfile} para {newfile}", + "A file has been added to or removed from your favorites" : "Um ficheiro foi adicionado ou removido dos seus favoritos", + "A file or folder has been changed or renamed" : "Um ficheiro ou pasta foram modificados ou renomeados", "A new file or folder has been created" : "Foi criado um novo ficheiro ou pasta", + "A file or folder has been deleted" : "Um ficheiro ou pasta foram apagados", "Limit notifications about creation and changes to your favorite files (Stream only)" : "Limite as notificações sobre a criação e alterações para os seus ficheiros favoritos (apenas Emissão)", + "A file or folder has been restored" : "Um ficheiro ou pasta foram restaurados", + "Unlimited" : "Ilimitado", "Upload (max. %s)" : "Envio (máx. %s)", "File handling" : "Utilização do ficheiro", "Maximum upload size" : "Tamanho máximo de envio", @@ -79,56 +125,31 @@ OC.L10N.register( "Save" : "Guardar", "With PHP-FPM it might take 5 minutes for changes to be applied." : "Com o PHP-FPM poderá demorar 5 minutos até que as alterações sejam aplicadas.", "Missing permissions to edit from here." : "Faltam permissões para editar a partir daqui.", + "%s of %s used" : "%s de %s utilizado", + "%s used" : "%s utilizado", "Settings" : "Configurações", "Show hidden files" : "Mostrar ficheiros ocultos", "WebDAV" : "WebDAV", - "Use this address to access your Files via WebDAV" : "Utilize este endereço para aceder aos seus ficheiros via WebDAV", + "Use this address to access your Files via WebDAV" : "Utilize este endereço para aceder aos seus ficheiros por WebDAV", + "Cancel upload" : "Cancelar envio", "No files in here" : "Nenhuns ficheiros aqui", "Upload some content or sync with your devices!" : "Envie algum conteúdo ou sincronize com os seus dispositivos!", "No entries found in this folder" : "Não foram encontradas entradas nesta pasta", "Select all" : "Selecionar todos", "Upload too large" : "Envio muito grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." : "Os ficheiros que está a tentar enviar excedem o tamanho máximo para os envios de ficheiro neste servidor.", - "No favorites" : "Sem favoritos", + "No favorites yet" : "Sem favoritos", "Files and folders you mark as favorite will show up here" : "Os ficheiros e pastas que marcou como favoritos serão mostrados aqui", + "Shared with you" : "Partilhado consigo ", + "Shared with others" : "Partilhado com terceiros", + "Shared by link" : "Partilhado por hiperligação", + "Tags" : "Etiquetas", + "Deleted files" : "Ficheiros eliminados", "Text file" : "Ficheiro de Texto", "New text file.txt" : "Novo texto ficheiro.txt", - "Storage not available" : "Armazenamento indisponível", - "Unable to set upload directory." : "Não foi possível definir a diretoria de envio.", - "Invalid Token" : "Senha Inválida", - "No file was uploaded. Unknown error" : "Não foi enviado nenhum ficheiro. Erro desconhecido", - "There is no error, the file uploaded with success" : "Não ocorreram erros, o ficheiro foi enviado com sucesso", - "The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "O ficheiro enviado excede a diretiva php.ini upload_max_filesize no php.ini", - "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "O tamanho do ficheiro enviado excede a diretiva MAX_FILE_SIZE definida no formulário HTML", - "The uploaded file was only partially uploaded" : "O ficheiro enviado só foi parcialmente enviado", - "No file was uploaded" : "Não foi enviado nenhum ficheiro", - "Missing a temporary folder" : "A pasta temporária está em falta", - "Failed to write to disk" : "Não foi possível gravar no disco", - "Not enough storage available" : "Não há espaço suficiente em disco", - "The target folder has been moved or deleted." : "A pasta de destino foi movida ou eliminada.", - "Upload failed. Could not find uploaded file" : "Envio falhou. Não foi possível encontrar o ficheiro enviado", - "Upload failed. Could not get file info." : "Envio falhou. Não foi possível obter a informação do ficheiro.", - "Invalid directory." : "Diretoria inválida.", - "Total file size {size1} exceeds upload limit {size2}" : "O tamanho total do ficheiro {size1} excede o limite de envio {size2}", - "Error uploading file \"{fileName}\": {message}" : "Erro ao enviar o ficheiro \"{fileName}\": {message}", - "Could not get result from server." : "Não foi possível obter o resultado do servidor.", - "No entries in this folder match '{filter}'" : "Nenhumas entradas nesta pasta correspondem a '{filter}'", - "Local link" : "Hiperligação local", - "{newname} already exists" : "{newname} já existe", - "A file or folder has been changed" : "Foi alterado um ficheiro ou pasta", - "A file or folder has been deleted" : "Foi eliminado um ficheiro ou pasta", - "A file or folder has been restored" : "Foi restaurado um ficheiro ou pasta", - "You created %1$s" : "Criou %1$s", - "%2$s created %1$s" : "%2$s criou %1$s", - "%1$s was created in a public folder" : "%1$s foi criado numa pasta pública", - "You changed %1$s" : "Alterou %1$s", - "%2$s changed %1$s" : "%2$s alterou %1$s", - "You deleted %1$s" : "Eliminou %1$s", - "%2$s deleted %1$s" : "%2$s eliminou %1$s", - "You restored %1$s" : "Restaurou %1$s", - "%2$s restored %1$s" : "%2$s restaurou %1$s", - "Changed by %2$s" : "Alterado por %2$s", - "Deleted by %2$s" : "Eliminado por %2$s", - "Restored by %2$s" : "Restaurado por %2$s" + "Move" : "Mover", + "A new file or folder has been deleted" : "Um novo ficheiro ou pasta foi eliminado", + "A new file or folder has been restored" : "Um novo ficheiro ou pasta foi restaurado", + "Use this address to access your Files via WebDAV" : "Utilize este endereço para aceder aos seus ficheiros por WebDAV" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/pt_PT.json b/apps/files/l10n/pt_PT.json index fe984ec661281..31ecc0ef67da0 100644 --- a/apps/files/l10n/pt_PT.json +++ b/apps/files/l10n/pt_PT.json @@ -1,8 +1,10 @@ { "translations": { + "Storage is temporarily not available" : "Armazenamento temporariamente indisponível", "Storage invalid" : "Armazenamento inválido", "Unknown error" : "Erro desconhecido", - "Files" : "Ficheiros", "All files" : "Todos os ficheiros", + "Recent" : "Recentes", + "File could not be found" : "O ficheiro não foi encontrado", "Home" : "Início", "Close" : "Fechar", "Favorites" : "Favoritos", @@ -10,24 +12,23 @@ "Upload cancelled." : "Envio cancelado.", "Unable to upload {filename} as it is a directory or has 0 bytes" : "Não é possível enviar {filename}, porque este é uma diretoria ou tem 0 bytes", "Not enough free space, you are uploading {size1} but only {size2} is left" : "Não existe espaço suficiente, está a enviar {size1} mas resta apenas {size2}", - "Uploading..." : "A enviar...", - "..." : "...", - "{hours}:{minutes}:{seconds} hour{plural_s} left" : "Tempo restante: {hours}:{minutes}:{seconds} hora{plural_s}", - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "{minutes}:{seconds} minute{plural_s} left" : "faltam: {minutes}:{seconds} minute{plural_s}", - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "{seconds} second{plural_s} left" : "faltam: {seconds} segundo{plural_s}", - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Agora, a qualquer momento...", - "Soon..." : "Brevemente...", + "Target folder \"{dir}\" does not exist any more" : "A pasta de destino \"{dir}\" já não existe", + "Not enough free space" : "Espaço insuficiente", + "Uploading …" : "A carregar ...", + "…" : "...", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} de {totalSize} ({bitrate})", - "File upload is in progress. Leaving the page now will cancel the upload." : "Envio de ficheiro em progresso. Se deixar a página agora, irá cancelar o envio.", + "Target folder does not exist any more" : "A pasta de destino já não existe", + "Error when assembling chunks, status code {status}" : "Erro ao agregar partições, código de estado: {estado}", "Actions" : "Ações", "Download" : "Transferir", "Rename" : "Renomear", + "Move or copy" : "Mover ou copiar", + "Target folder" : "Pasta de destino", "Delete" : "Eliminar", "Disconnect storage" : "Desligue o armazenamento", "Unshare" : "Cancelar partilha", + "Could not load info for file \"{file}\"" : "Não foi possível carregar informações do ficheiro \"{file}\"", + "Files" : "Ficheiros", "Details" : "Detalhes", "Select" : "Selecionar", "Pending" : "Pendente", @@ -36,6 +37,10 @@ "This directory is unavailable, please check the logs or contact the administrator" : "Esta diretoria está indisponível, por favor, verifique os registos ou contacte o administrador", "Could not move \"{file}\", target exists" : "Não foi possível mover \"{file}\", destino já existe", "Could not move \"{file}\"" : "Não foi possivel mover o ficheiro \"{file}\"", + "Could not copy \"{file}\", target exists" : "Não foi possível copiar \"{file}\", o destino já existe", + "Could not copy \"{file}\"" : "Impossível copiar \"{file}\"", + "Copied {origin} inside {destination}" : "Copiado {origin} para {destination}", + "Copied {origin} and {nbfiles} other files inside {destination}" : "Copiados {origin} e {nbfiles} outros ficheiros para dentro de {destination}", "{newName} already exists" : "{newName} já existe", "Could not rename \"{fileName}\", it does not exist any more" : "Não foi possível renomear \"{fileName}\", este já não existe", "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "O nome \"{targetName}\" já está em utilização na pasta \"{dir}\". Por favor, escolha um nome diferente.", @@ -44,32 +49,73 @@ "Could not create file \"{file}\" because it already exists" : "Não foi possível criar o ficheiro \"{file}\", porque este já existe", "Could not create folder \"{dir}\" because it already exists" : "Não foi possível criar a pasta \"{dir}\", porque esta já existe", "Error deleting file \"{fileName}\"." : "Erro ao eliminar o ficheiro \"{fileName}\".", + "No search results in other folders for {tag}{filter}{endtag}" : "Nenhum resultado noutras pastas para {tag}{filter}{endtag}", "Name" : "Nome", "Size" : "Tamanho", "Modified" : "Modificado", "_%n folder_::_%n folders_" : ["%n pasta","%n pastas"], "_%n file_::_%n files_" : ["%n ficheiro","%n ficheiros"], "{dirs} and {files}" : "{dirs} e {files}", + "_including %n hidden_::_including %n hidden_" : ["incluindo %n ocultos","incluindo %n ocultos"], "You don’t have permission to upload or create files here" : "Não tem permissão para enviar ou criar ficheiros aqui", "_Uploading %n file_::_Uploading %n files_" : ["A enviar %n ficheiro","A enviar %n ficheiros"], "New" : "Novo", + "{used} of {quota} used" : "{used} de {quota} utilizado", + "{used} used" : "{used} utilizado", "\"{name}\" is an invalid file name." : "\"{name}\" é um nome de ficheiro inválido.", "File name cannot be empty." : "O nome do ficheiro não pode estar em branco.", + "\"/\" is not allowed inside a file name." : "\"/\" não é permitido dentro de um nome de um ficheiro.", + "\"{name}\" is not an allowed filetype" : "\"{name}\" não é um tipo de ficheiro permitido", "Storage of {owner} is full, files can not be updated or synced anymore!" : "O armazenamento de {owner} está cheio. Os ficheiros já não podem ser atualizados ou sincronizados!", "Your storage is full, files can not be updated or synced anymore!" : "O seu armazenamento está cheio, os ficheiros já não podem ser atualizados ou sincronizados.", "Storage of {owner} is almost full ({usedSpacePercent}%)" : "O armazenamento de {owner} está quase cheio ({usedSpacePercent}%)", "Your storage is almost full ({usedSpacePercent}%)" : "O seu armazenamento está quase cheio ({usedSpacePercent}%)", "_matches '{filter}'_::_match '{filter}'_" : ["corresponde a '{filter}'","correspondem a '{filter}'"], + "View in folder" : "Ver na pasta", + "Copied!" : "Copiado!", + "Copy direct link (only works for users who have access to this file/folder)" : "Copiar hiperligação directa (apenas funciona para utilizadores que tenham acesso a este ficheiro/pasta)", "Path" : "Caminho", "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Favorited" : "Nos Favoritos", "Favorite" : "Favorito", - "Folder" : "Pasta", "New folder" : "Nova pasta", - "Upload" : "Enviar", + "Upload file" : "Enviar ficheiro", + "Not favorited" : "Não favorito", + "Remove from favorites" : "Remover dos favoritos", + "Add to favorites" : "Adicionar aos favoritos", "An error occurred while trying to update the tags" : "Ocorreu um erro ao tentar atualizar as etiquetas", + "Added to favorites" : "Adicionado aos favoritos", + "Removed from favorites" : "Removido dos favoritos", + "You added {file} to your favorites" : "Adicionou {file} aos favoritos", + "You removed {file} from your favorites" : "Removeu {file} dos favoritos", + "File changes" : "Alterações no ficheiro", + "Created by {user}" : "Criado por {user}", + "Changed by {user}" : "Modificado por {user}", + "Deleted by {user}" : "Apagado por {user}", + "Restored by {user}" : "Restaurado por {user}", + "Renamed by {user}" : "Renomeado por {user}", + "Moved by {user}" : "Movido por {user}", + "\"remote user\"" : "\"utilizador remoto\"", + "You created {file}" : "Criou {file}", + "{user} created {file}" : "{user} criou {file}", + "{file} was created in a public folder" : "{file} foi criado numa pasta pública", + "You changed {file}" : "Modificou {file}", + "{user} changed {file}" : "{user} modificou {file}", + "You deleted {file}" : "Eliminou {file}", + "{user} deleted {file}" : "{user} eliminou {file}", + "You restored {file}" : "Restaurou {file}", + "{user} restored {file}" : "{user} restaurou {file}", + "You renamed {oldfile} to {newfile}" : "Renomeou {oldfile} para {newfile}", + "{user} renamed {oldfile} to {newfile}" : "{user} renomeou {oldfile} para {newfile}", + "You moved {oldfile} to {newfile}" : "Moveu {oldfile} para {newfile}", + "{user} moved {oldfile} to {newfile}" : "{user} moveu {oldfile} para {newfile}", + "A file has been added to or removed from your favorites" : "Um ficheiro foi adicionado ou removido dos seus favoritos", + "A file or folder has been changed or renamed" : "Um ficheiro ou pasta foram modificados ou renomeados", "A new file or folder has been created" : "Foi criado um novo ficheiro ou pasta", + "A file or folder has been deleted" : "Um ficheiro ou pasta foram apagados", "Limit notifications about creation and changes to your favorite files (Stream only)" : "Limite as notificações sobre a criação e alterações para os seus ficheiros favoritos (apenas Emissão)", + "A file or folder has been restored" : "Um ficheiro ou pasta foram restaurados", + "Unlimited" : "Ilimitado", "Upload (max. %s)" : "Envio (máx. %s)", "File handling" : "Utilização do ficheiro", "Maximum upload size" : "Tamanho máximo de envio", @@ -77,56 +123,31 @@ "Save" : "Guardar", "With PHP-FPM it might take 5 minutes for changes to be applied." : "Com o PHP-FPM poderá demorar 5 minutos até que as alterações sejam aplicadas.", "Missing permissions to edit from here." : "Faltam permissões para editar a partir daqui.", + "%s of %s used" : "%s de %s utilizado", + "%s used" : "%s utilizado", "Settings" : "Configurações", "Show hidden files" : "Mostrar ficheiros ocultos", "WebDAV" : "WebDAV", - "Use this address to access your Files via WebDAV" : "Utilize este endereço para aceder aos seus ficheiros via WebDAV", + "Use this address to access your Files via WebDAV" : "Utilize este endereço para aceder aos seus ficheiros por WebDAV", + "Cancel upload" : "Cancelar envio", "No files in here" : "Nenhuns ficheiros aqui", "Upload some content or sync with your devices!" : "Envie algum conteúdo ou sincronize com os seus dispositivos!", "No entries found in this folder" : "Não foram encontradas entradas nesta pasta", "Select all" : "Selecionar todos", "Upload too large" : "Envio muito grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." : "Os ficheiros que está a tentar enviar excedem o tamanho máximo para os envios de ficheiro neste servidor.", - "No favorites" : "Sem favoritos", + "No favorites yet" : "Sem favoritos", "Files and folders you mark as favorite will show up here" : "Os ficheiros e pastas que marcou como favoritos serão mostrados aqui", + "Shared with you" : "Partilhado consigo ", + "Shared with others" : "Partilhado com terceiros", + "Shared by link" : "Partilhado por hiperligação", + "Tags" : "Etiquetas", + "Deleted files" : "Ficheiros eliminados", "Text file" : "Ficheiro de Texto", "New text file.txt" : "Novo texto ficheiro.txt", - "Storage not available" : "Armazenamento indisponível", - "Unable to set upload directory." : "Não foi possível definir a diretoria de envio.", - "Invalid Token" : "Senha Inválida", - "No file was uploaded. Unknown error" : "Não foi enviado nenhum ficheiro. Erro desconhecido", - "There is no error, the file uploaded with success" : "Não ocorreram erros, o ficheiro foi enviado com sucesso", - "The uploaded file exceeds the upload_max_filesize directive in php.ini: " : "O ficheiro enviado excede a diretiva php.ini upload_max_filesize no php.ini", - "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "O tamanho do ficheiro enviado excede a diretiva MAX_FILE_SIZE definida no formulário HTML", - "The uploaded file was only partially uploaded" : "O ficheiro enviado só foi parcialmente enviado", - "No file was uploaded" : "Não foi enviado nenhum ficheiro", - "Missing a temporary folder" : "A pasta temporária está em falta", - "Failed to write to disk" : "Não foi possível gravar no disco", - "Not enough storage available" : "Não há espaço suficiente em disco", - "The target folder has been moved or deleted." : "A pasta de destino foi movida ou eliminada.", - "Upload failed. Could not find uploaded file" : "Envio falhou. Não foi possível encontrar o ficheiro enviado", - "Upload failed. Could not get file info." : "Envio falhou. Não foi possível obter a informação do ficheiro.", - "Invalid directory." : "Diretoria inválida.", - "Total file size {size1} exceeds upload limit {size2}" : "O tamanho total do ficheiro {size1} excede o limite de envio {size2}", - "Error uploading file \"{fileName}\": {message}" : "Erro ao enviar o ficheiro \"{fileName}\": {message}", - "Could not get result from server." : "Não foi possível obter o resultado do servidor.", - "No entries in this folder match '{filter}'" : "Nenhumas entradas nesta pasta correspondem a '{filter}'", - "Local link" : "Hiperligação local", - "{newname} already exists" : "{newname} já existe", - "A file or folder has been changed" : "Foi alterado um ficheiro ou pasta", - "A file or folder has been deleted" : "Foi eliminado um ficheiro ou pasta", - "A file or folder has been restored" : "Foi restaurado um ficheiro ou pasta", - "You created %1$s" : "Criou %1$s", - "%2$s created %1$s" : "%2$s criou %1$s", - "%1$s was created in a public folder" : "%1$s foi criado numa pasta pública", - "You changed %1$s" : "Alterou %1$s", - "%2$s changed %1$s" : "%2$s alterou %1$s", - "You deleted %1$s" : "Eliminou %1$s", - "%2$s deleted %1$s" : "%2$s eliminou %1$s", - "You restored %1$s" : "Restaurou %1$s", - "%2$s restored %1$s" : "%2$s restaurou %1$s", - "Changed by %2$s" : "Alterado por %2$s", - "Deleted by %2$s" : "Eliminado por %2$s", - "Restored by %2$s" : "Restaurado por %2$s" + "Move" : "Mover", + "A new file or folder has been deleted" : "Um novo ficheiro ou pasta foi eliminado", + "A new file or folder has been restored" : "Um novo ficheiro ou pasta foi restaurado", + "Use this address to access your Files via WebDAV" : "Utilize este endereço para aceder aos seus ficheiros por WebDAV" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/ro.js b/apps/files/l10n/ro.js index 285604b1ea179..d65e369aca4da 100644 --- a/apps/files/l10n/ro.js +++ b/apps/files/l10n/ro.js @@ -133,21 +133,6 @@ OC.L10N.register( "Tags" : "Etichete", "Deleted files" : "Fișiere șterse", "Text file" : "Fișier text", - "New text file.txt" : "New text file.txt", - "Uploading..." : "Încărcare", - "..." : "...", - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "{seconds}s" : "{seconds}s", - "Any moment now..." : "În orice moment...", - "Soon..." : "În curând...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.", - "Move" : "Mută", - "Folder" : "Dosar", - "Upload" : "Încărcă", - "A new file or folder has been deleted" : "Un nou fișier sau director a fost șters", - "A new file or folder has been restored" : "Un fișier sau director a fost restaurat", - "Use this address to access your Files via WebDAV" : "Folosește această adresă pentru a accesa Fișierele prin WebDAV", - "No favorites" : "Fără favorite" + "New text file.txt" : "New text file.txt" }, "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"); diff --git a/apps/files/l10n/ro.json b/apps/files/l10n/ro.json index 8d41bb52adcb6..f9a45685bb66c 100644 --- a/apps/files/l10n/ro.json +++ b/apps/files/l10n/ro.json @@ -131,21 +131,6 @@ "Tags" : "Etichete", "Deleted files" : "Fișiere șterse", "Text file" : "Fișier text", - "New text file.txt" : "New text file.txt", - "Uploading..." : "Încărcare", - "..." : "...", - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "{seconds}s" : "{seconds}s", - "Any moment now..." : "În orice moment...", - "Soon..." : "În curând...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.", - "Move" : "Mută", - "Folder" : "Dosar", - "Upload" : "Încărcă", - "A new file or folder has been deleted" : "Un nou fișier sau director a fost șters", - "A new file or folder has been restored" : "Un fișier sau director a fost restaurat", - "Use this address to access your Files via WebDAV" : "Folosește această adresă pentru a accesa Fișierele prin WebDAV", - "No favorites" : "Fără favorite" + "New text file.txt" : "New text file.txt" },"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/apps/files/l10n/ru.js b/apps/files/l10n/ru.js index 9878e2f78dd95..a3a5900c46140 100644 --- a/apps/files/l10n/ru.js +++ b/apps/files/l10n/ru.js @@ -25,6 +25,7 @@ OC.L10N.register( "Download" : "Скачать", "Rename" : "Переименовать", "Move or copy" : "Переместить или копировать", + "Copy" : "Копировать", "Target folder" : "Целевой каталог", "Delete" : "Удалить", "Disconnect storage" : "Отсоединить хранилище", @@ -81,7 +82,7 @@ OC.L10N.register( "Favorited" : "Избранное", "Favorite" : "Добавить в избранное", "New folder" : "Новый каталог", - "Upload file" : "Зарузить файл", + "Upload file" : "Загрузить файл", "Not favorited" : "Не избранное", "Remove from favorites" : "Удалить из избранных", "Add to favorites" : "Добавить в избранное", @@ -99,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "Перемещено {user}", "\"remote user\"" : "«пользователь с другого сервера»", "You created {file}" : "Вы создали «{file}»", + "You created an encrypted file in {file}" : "Вы создали зашифрованный файл в «{file}»", "{user} created {file}" : "{user} создал(а) «{file}»", + "{user} created an encrypted file in {file}" : "{user} создал(а) зашифрованный файл в «{file}»", "{file} was created in a public folder" : "«{file}» создан в общедоступом каталоге", "You changed {file}" : "Вы изменили «{file}»", + "You changed an encrypted file in {file}" : "Вы изменили зашифрованный файл в «{file}»", "{user} changed {file}" : "{user} изменил(а) «{file}»", + "{user} changed an encrypted file in {file}" : "{user} изменил(а) зашифрованный файл в «{file}»", "You deleted {file}" : "Вы удалили «{file}»", + "You deleted an encrypted file in {file}" : "Вы удалили зашифрованный файл в «{file}»", "{user} deleted {file}" : "{user} удалил(а) «{file}»", + "{user} deleted an encrypted file in {file}" : " {user} удалил(а) зашифрованный файл в «{file}»", "You restored {file}" : "Вы восстановили «{file}»", "{user} restored {file}" : "{user} восстановил(а) «{file}»", "You renamed {oldfile} to {newfile}" : "Вы переименовали «{oldfile}» в «{newfile}»", @@ -147,24 +154,9 @@ OC.L10N.register( "Deleted files" : "Корзина", "Text file" : "Текстовый файл", "New text file.txt" : "Новый текстовый файл.txt", - "Uploading..." : "Загрузка...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["Остался {hours}:{minutes}:{seconds} час","Осталось {hours}:{minutes}:{seconds} часа","Осталось {hours}:{minutes}:{seconds} часов","Осталось {hours}:{minutes}:{seconds} часов"], - "{hours}:{minutes}h" : "{hours}:{minutes}ч", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["осталась {minutes}:{seconds} минута","осталось {minutes}:{seconds} минуты","осталось {minutes}:{seconds} минут","осталось {minutes}:{seconds} минут"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}м", - "_{seconds} second left_::_{seconds} seconds left_" : ["осталась {seconds} секунда","осталось {seconds} секунды","осталось {seconds} секунд","осталось {seconds} секунд"], - "{seconds}s" : "{seconds}с", - "Any moment now..." : "В любой момент...", - "Soon..." : "Скоро...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Выполняется передача файла. Покинув страницу, вы прервёте загрузку.", - "Move" : "Перенести", - "Copy local link" : "Скопировать локальную ссылку", - "Folder" : "Каталог", - "Upload" : "Загрузить", + "Move" : "Переместить", "A new file or folder has been deleted" : "Новый файл или каталог был удален", "A new file or folder has been restored" : "Новый файл или каталог был восстановлен", - "Use this address to access your Files via WebDAV" : "Используйте этот адрес для доступа по WebDAV", - "No favorites" : "Нет избранного" + "Use this address to access your Files via WebDAV" : "Используйте этот адрес для доступа по WebDAV" }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/apps/files/l10n/ru.json b/apps/files/l10n/ru.json index be07497fda45e..9da1a3c121a75 100644 --- a/apps/files/l10n/ru.json +++ b/apps/files/l10n/ru.json @@ -23,6 +23,7 @@ "Download" : "Скачать", "Rename" : "Переименовать", "Move or copy" : "Переместить или копировать", + "Copy" : "Копировать", "Target folder" : "Целевой каталог", "Delete" : "Удалить", "Disconnect storage" : "Отсоединить хранилище", @@ -79,7 +80,7 @@ "Favorited" : "Избранное", "Favorite" : "Добавить в избранное", "New folder" : "Новый каталог", - "Upload file" : "Зарузить файл", + "Upload file" : "Загрузить файл", "Not favorited" : "Не избранное", "Remove from favorites" : "Удалить из избранных", "Add to favorites" : "Добавить в избранное", @@ -97,12 +98,18 @@ "Moved by {user}" : "Перемещено {user}", "\"remote user\"" : "«пользователь с другого сервера»", "You created {file}" : "Вы создали «{file}»", + "You created an encrypted file in {file}" : "Вы создали зашифрованный файл в «{file}»", "{user} created {file}" : "{user} создал(а) «{file}»", + "{user} created an encrypted file in {file}" : "{user} создал(а) зашифрованный файл в «{file}»", "{file} was created in a public folder" : "«{file}» создан в общедоступом каталоге", "You changed {file}" : "Вы изменили «{file}»", + "You changed an encrypted file in {file}" : "Вы изменили зашифрованный файл в «{file}»", "{user} changed {file}" : "{user} изменил(а) «{file}»", + "{user} changed an encrypted file in {file}" : "{user} изменил(а) зашифрованный файл в «{file}»", "You deleted {file}" : "Вы удалили «{file}»", + "You deleted an encrypted file in {file}" : "Вы удалили зашифрованный файл в «{file}»", "{user} deleted {file}" : "{user} удалил(а) «{file}»", + "{user} deleted an encrypted file in {file}" : " {user} удалил(а) зашифрованный файл в «{file}»", "You restored {file}" : "Вы восстановили «{file}»", "{user} restored {file}" : "{user} восстановил(а) «{file}»", "You renamed {oldfile} to {newfile}" : "Вы переименовали «{oldfile}» в «{newfile}»", @@ -145,24 +152,9 @@ "Deleted files" : "Корзина", "Text file" : "Текстовый файл", "New text file.txt" : "Новый текстовый файл.txt", - "Uploading..." : "Загрузка...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["Остался {hours}:{minutes}:{seconds} час","Осталось {hours}:{minutes}:{seconds} часа","Осталось {hours}:{minutes}:{seconds} часов","Осталось {hours}:{minutes}:{seconds} часов"], - "{hours}:{minutes}h" : "{hours}:{minutes}ч", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["осталась {minutes}:{seconds} минута","осталось {minutes}:{seconds} минуты","осталось {minutes}:{seconds} минут","осталось {minutes}:{seconds} минут"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}м", - "_{seconds} second left_::_{seconds} seconds left_" : ["осталась {seconds} секунда","осталось {seconds} секунды","осталось {seconds} секунд","осталось {seconds} секунд"], - "{seconds}s" : "{seconds}с", - "Any moment now..." : "В любой момент...", - "Soon..." : "Скоро...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Выполняется передача файла. Покинув страницу, вы прервёте загрузку.", - "Move" : "Перенести", - "Copy local link" : "Скопировать локальную ссылку", - "Folder" : "Каталог", - "Upload" : "Загрузить", + "Move" : "Переместить", "A new file or folder has been deleted" : "Новый файл или каталог был удален", "A new file or folder has been restored" : "Новый файл или каталог был восстановлен", - "Use this address to access your Files via WebDAV" : "Используйте этот адрес для доступа по WebDAV", - "No favorites" : "Нет избранного" + "Use this address to access your Files via WebDAV" : "Используйте этот адрес для доступа по WebDAV" },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } \ No newline at end of file diff --git a/apps/files/l10n/sk.js b/apps/files/l10n/sk.js index 5ebd9fc168ba8..4d74625a007ea 100644 --- a/apps/files/l10n/sk.js +++ b/apps/files/l10n/sk.js @@ -19,10 +19,13 @@ OC.L10N.register( "Uploading …" : "Nahrávanie...", "…" : "...", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} z {totalSize} ({bitrate})", + "Target folder does not exist any more" : "Cieľový priečinok už neexistuje", + "Error when assembling chunks, status code {status}" : "Chyba pri zostavovaní kusov, kód chyby {status}", "Actions" : "Akcie", "Download" : "Sťahovanie", "Rename" : "Premenovať", "Move or copy" : "Presunúť alebo kopírovať", + "Copy" : "Kopírovať", "Target folder" : "Cieľový priečinok", "Delete" : "Zmazať", "Disconnect storage" : "Odpojiť úložisko", @@ -60,8 +63,11 @@ OC.L10N.register( "You don’t have permission to upload or create files here" : "Nemáte oprávnenie sem nahrávať alebo vytvoriť súbory", "_Uploading %n file_::_Uploading %n files_" : ["Nahrávam %n súbor","Nahrávam %n súbory","Nahrávam %n súborov"], "New" : "Nový", + "{used} of {quota} used" : "použitých {used} z {quota}", + "{used} used" : "{used} použitých", "\"{name}\" is an invalid file name." : "\"{name}\" je neplatné meno súboru.", "File name cannot be empty." : "Meno súboru nemôže byť prázdne", + "\"/\" is not allowed inside a file name." : "Znak \"/\" nie je povolený v názve súboru.", "\"{name}\" is not an allowed filetype" : "\"{name}\" nie je povolený typ súboru", "Storage of {owner} is full, files can not be updated or synced anymore!" : "Úložisko používateľa {owner} je plné, súbory sa viac nedajú aktualizovať ani synchronizovať.", "Your storage is full, files can not be updated or synced anymore!" : "Vaše úložisko je plné. Súbory nemožno aktualizovať ani synchronizovať!", @@ -142,24 +148,9 @@ OC.L10N.register( "Deleted files" : "Zmazané súbory", "Text file" : "Textový súbor", "New text file.txt" : "Nový text file.txt", - "Uploading..." : "Nahrávam...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["zostáva {hours}:{minutes}:{seconds} hodina","zostáva {hours}:{minutes}:{seconds} hodín","zostáva {hours}:{minutes}:{seconds} hodín"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["zostáva {minutes}:{seconds} minúta","zostáva {minutes}:{seconds} minút","zostáva {minutes}:{seconds} minút"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["zostáva {seconds} sekunda","zostáva {seconds} sekúnd","zostáva {seconds} sekúnd"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Už každú chvíľu…", - "Soon..." : "Čoskoro…", - "File upload is in progress. Leaving the page now will cancel the upload." : "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.", "Move" : "Presunúť", - "Copy local link" : "Kopíruj lokálny odkaz", - "Folder" : "Priečinok", - "Upload" : "Nahrať", "A new file or folder has been deleted" : "Nový súbor alebo priečinok bol zmazaný", "A new file or folder has been restored" : "Nový súbor alebo priečinok bolobnovený", - "Use this address to access your Files via WebDAV" : "Použi túto adresu pre prístup ku svojím súborom cez WebDAV", - "No favorites" : "Žiadne obľúbené" + "Use this address to access your Files via WebDAV" : "Použi túto adresu pre prístup ku svojím súborom cez WebDAV" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/files/l10n/sk.json b/apps/files/l10n/sk.json index 19d7d7b72c476..304a9e8dd798c 100644 --- a/apps/files/l10n/sk.json +++ b/apps/files/l10n/sk.json @@ -17,10 +17,13 @@ "Uploading …" : "Nahrávanie...", "…" : "...", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} z {totalSize} ({bitrate})", + "Target folder does not exist any more" : "Cieľový priečinok už neexistuje", + "Error when assembling chunks, status code {status}" : "Chyba pri zostavovaní kusov, kód chyby {status}", "Actions" : "Akcie", "Download" : "Sťahovanie", "Rename" : "Premenovať", "Move or copy" : "Presunúť alebo kopírovať", + "Copy" : "Kopírovať", "Target folder" : "Cieľový priečinok", "Delete" : "Zmazať", "Disconnect storage" : "Odpojiť úložisko", @@ -58,8 +61,11 @@ "You don’t have permission to upload or create files here" : "Nemáte oprávnenie sem nahrávať alebo vytvoriť súbory", "_Uploading %n file_::_Uploading %n files_" : ["Nahrávam %n súbor","Nahrávam %n súbory","Nahrávam %n súborov"], "New" : "Nový", + "{used} of {quota} used" : "použitých {used} z {quota}", + "{used} used" : "{used} použitých", "\"{name}\" is an invalid file name." : "\"{name}\" je neplatné meno súboru.", "File name cannot be empty." : "Meno súboru nemôže byť prázdne", + "\"/\" is not allowed inside a file name." : "Znak \"/\" nie je povolený v názve súboru.", "\"{name}\" is not an allowed filetype" : "\"{name}\" nie je povolený typ súboru", "Storage of {owner} is full, files can not be updated or synced anymore!" : "Úložisko používateľa {owner} je plné, súbory sa viac nedajú aktualizovať ani synchronizovať.", "Your storage is full, files can not be updated or synced anymore!" : "Vaše úložisko je plné. Súbory nemožno aktualizovať ani synchronizovať!", @@ -140,24 +146,9 @@ "Deleted files" : "Zmazané súbory", "Text file" : "Textový súbor", "New text file.txt" : "Nový text file.txt", - "Uploading..." : "Nahrávam...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["zostáva {hours}:{minutes}:{seconds} hodina","zostáva {hours}:{minutes}:{seconds} hodín","zostáva {hours}:{minutes}:{seconds} hodín"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["zostáva {minutes}:{seconds} minúta","zostáva {minutes}:{seconds} minút","zostáva {minutes}:{seconds} minút"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["zostáva {seconds} sekunda","zostáva {seconds} sekúnd","zostáva {seconds} sekúnd"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Už každú chvíľu…", - "Soon..." : "Čoskoro…", - "File upload is in progress. Leaving the page now will cancel the upload." : "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.", "Move" : "Presunúť", - "Copy local link" : "Kopíruj lokálny odkaz", - "Folder" : "Priečinok", - "Upload" : "Nahrať", "A new file or folder has been deleted" : "Nový súbor alebo priečinok bol zmazaný", "A new file or folder has been restored" : "Nový súbor alebo priečinok bolobnovený", - "Use this address to access your Files via WebDAV" : "Použi túto adresu pre prístup ku svojím súborom cez WebDAV", - "No favorites" : "Žiadne obľúbené" + "Use this address to access your Files via WebDAV" : "Použi túto adresu pre prístup ku svojím súborom cez WebDAV" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/files/l10n/sl.js b/apps/files/l10n/sl.js index b072637e183a6..aa82a034ba229 100644 --- a/apps/files/l10n/sl.js +++ b/apps/files/l10n/sl.js @@ -16,12 +16,16 @@ OC.L10N.register( "Not enough free space, you are uploading {size1} but only {size2} is left" : "Na voljo ni dovolj prostora. Velikost poslane datoteke je {size1}, na voljo pa je je {size2}.", "Target folder \"{dir}\" does not exist any more" : "Ciljna mapa \"{dir}\" ne obstaja več", "Not enough free space" : "Ni dovolj prostora", + "Uploading …" : "Nalaganje ...", "…" : "...", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} od {totalSize} ({bitrate})", + "Target folder does not exist any more" : "Ciljna mapa ne obstaja več", + "Error when assembling chunks, status code {status}" : "Napaka pri sestavljanju kosov, statusna koda {status}", "Actions" : "Dejanja", "Download" : "Prejmi", "Rename" : "Preimenuj", "Move or copy" : "Premakni ali kopiraj", + "Copy" : "Kopiraj", "Target folder" : "Ciljna mapa", "Delete" : "Izbriši", "Disconnect storage" : "Odklopi shrambo", @@ -36,6 +40,10 @@ OC.L10N.register( "This directory is unavailable, please check the logs or contact the administrator" : "Mapa ni na voljo. Preverite dnevnik in stopite v stik s skrbnikom sistema.", "Could not move \"{file}\", target exists" : "Datoteke \"{file}\" ni mogoče premakniti, ker cilj že obstaja", "Could not move \"{file}\"" : "Ni mogoče premakniti \"{file}\"", + "Could not copy \"{file}\", target exists" : "Datoteke \"{file}\" ni mogoče kopirati, ker cilj že obstaja", + "Could not copy \"{file}\"" : "Ni mogoče kopirati \"{file}\"", + "Copied {origin} inside {destination}" : "Kopirano {origin} v {destination}", + "Copied {origin} and {nbfiles} other files inside {destination}" : "Kopirano {origin} in {nbfiles} ostale datoteke v {destination}", "{newName} already exists" : "{newName} že obstaja", "Could not rename \"{fileName}\", it does not exist any more" : "Ni mogoče preimenovati \"{fileName}\", ker datoteka ne obstaja več", "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "Ime \"{targetName}\" je že v uporabi v mapi \"{dir}\". Izberite drugo ime ali drugo mapo.", @@ -55,6 +63,8 @@ OC.L10N.register( "You don’t have permission to upload or create files here" : "Ni ustreznih dovoljenj za pošiljanje ali ustvarjanje datotek na tem mestu.", "_Uploading %n file_::_Uploading %n files_" : ["Posodabljanje %n datoteke","Posodabljanje %n datotek","Posodabljanje %n datotek","Posodabljanje %n datotek"], "New" : "Novo", + "{used} of {quota} used" : "{used} od {quota} uporabljeno", + "{used} used" : "{used} uporabljeno", "\"{name}\" is an invalid file name." : "\"{name}\" je neveljavno ime datoteke.", "File name cannot be empty." : "Ime datoteke ne sme biti prazno polje.", "\"{name}\" is not an allowed filetype" : "\"{name}\" ni dovoljena vrsta datoteke", @@ -72,6 +82,9 @@ OC.L10N.register( "Favorite" : "Priljubljene", "New folder" : "Nova mapa", "Upload file" : "Naloži datoteko", + "Not favorited" : "Ni priljubljeno", + "Remove from favorites" : "Odstrani iz priljubljenega", + "Add to favorites" : "Dodaj v priljubljeno", "An error occurred while trying to update the tags" : "Prišlo je do napake med posodabljanjem oznak", "Added to favorites" : "Dodano med priljubljene", "Removed from favorites" : "Odstranjeno iz priljubljenih", @@ -86,9 +99,12 @@ OC.L10N.register( "Moved by {user}" : "Premaknjeno od {user}", "\"remote user\"" : "\"oddaljeni uporabnik\"", "You created {file}" : "Ustvaril(a) si {file}", + "You created an encrypted file in {file}" : "Ustvaril(a) si kodirano datoteko v {file}", "{user} created {file}" : "{user} ustvaril(a) {file}", + "{user} created an encrypted file in {file}" : "{user} ustvaril(a) kodirano datoteko {file}", "{file} was created in a public folder" : "{file} ustvarjena je bila v javni mapi", "You changed {file}" : "Spremenil(a) si {file}", + "You changed an encrypted file in {file}" : "Spremenil(a) si kodirano datoteko v {file}", "{user} changed {file}" : "{user} spremenil/a {file}", "You deleted {file}" : "Izbrisal(a) si {file}", "{user} deleted {file}" : "{user} izbrisal(a) {file}", @@ -133,24 +149,9 @@ OC.L10N.register( "Deleted files" : "Izbrisane datoteke", "Text file" : "Besedilna datoteka", "New text file.txt" : "Nova datoteka.txt", - "Uploading..." : "Poteka pošiljanje ...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} ura še","{hours}:{minutes}:{seconds} uri še","{hours}:{minutes}:{seconds} ure še","{hours}:{minutes}:{seconds} ur še"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minuta še","{minutes}:{seconds} minuti še","{minutes}:{seconds} minute še","{minutes}:{seconds} minut še"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}min", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekund še","{seconds} sekundi še","{seconds} sekunde še","{seconds} sekund še"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Vsak trenutek ...", - "Soon..." : "Kmalu", - "File upload is in progress. Leaving the page now will cancel the upload." : "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano.", "Move" : "Premakni", - "Copy local link" : "Kopiraj lokalno povezavo", - "Folder" : "Mapa", - "Upload" : "Pošlji", - "A new file or folder has been deleted" : "Nova datoteka ali mapa je bila pobrisana", + "A new file or folder has been deleted" : "Nova datoteka ali mapa je bila izbrisana", "A new file or folder has been restored" : "Nova datoteka ali mapa je bila obnovljena", - "Use this address to access your Files via WebDAV" : "Uporabite naslov za dostop do datotek prek sistema WebDAV.", - "No favorites" : "Ni priljubljenih predmetov" + "Use this address to access your Files via WebDAV" : "Uporabite povezavo zadostop do datotek preko WebDAV" }, "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); diff --git a/apps/files/l10n/sl.json b/apps/files/l10n/sl.json index af904ba8b2907..e697cee6e75b2 100644 --- a/apps/files/l10n/sl.json +++ b/apps/files/l10n/sl.json @@ -14,12 +14,16 @@ "Not enough free space, you are uploading {size1} but only {size2} is left" : "Na voljo ni dovolj prostora. Velikost poslane datoteke je {size1}, na voljo pa je je {size2}.", "Target folder \"{dir}\" does not exist any more" : "Ciljna mapa \"{dir}\" ne obstaja več", "Not enough free space" : "Ni dovolj prostora", + "Uploading …" : "Nalaganje ...", "…" : "...", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} od {totalSize} ({bitrate})", + "Target folder does not exist any more" : "Ciljna mapa ne obstaja več", + "Error when assembling chunks, status code {status}" : "Napaka pri sestavljanju kosov, statusna koda {status}", "Actions" : "Dejanja", "Download" : "Prejmi", "Rename" : "Preimenuj", "Move or copy" : "Premakni ali kopiraj", + "Copy" : "Kopiraj", "Target folder" : "Ciljna mapa", "Delete" : "Izbriši", "Disconnect storage" : "Odklopi shrambo", @@ -34,6 +38,10 @@ "This directory is unavailable, please check the logs or contact the administrator" : "Mapa ni na voljo. Preverite dnevnik in stopite v stik s skrbnikom sistema.", "Could not move \"{file}\", target exists" : "Datoteke \"{file}\" ni mogoče premakniti, ker cilj že obstaja", "Could not move \"{file}\"" : "Ni mogoče premakniti \"{file}\"", + "Could not copy \"{file}\", target exists" : "Datoteke \"{file}\" ni mogoče kopirati, ker cilj že obstaja", + "Could not copy \"{file}\"" : "Ni mogoče kopirati \"{file}\"", + "Copied {origin} inside {destination}" : "Kopirano {origin} v {destination}", + "Copied {origin} and {nbfiles} other files inside {destination}" : "Kopirano {origin} in {nbfiles} ostale datoteke v {destination}", "{newName} already exists" : "{newName} že obstaja", "Could not rename \"{fileName}\", it does not exist any more" : "Ni mogoče preimenovati \"{fileName}\", ker datoteka ne obstaja več", "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "Ime \"{targetName}\" je že v uporabi v mapi \"{dir}\". Izberite drugo ime ali drugo mapo.", @@ -53,6 +61,8 @@ "You don’t have permission to upload or create files here" : "Ni ustreznih dovoljenj za pošiljanje ali ustvarjanje datotek na tem mestu.", "_Uploading %n file_::_Uploading %n files_" : ["Posodabljanje %n datoteke","Posodabljanje %n datotek","Posodabljanje %n datotek","Posodabljanje %n datotek"], "New" : "Novo", + "{used} of {quota} used" : "{used} od {quota} uporabljeno", + "{used} used" : "{used} uporabljeno", "\"{name}\" is an invalid file name." : "\"{name}\" je neveljavno ime datoteke.", "File name cannot be empty." : "Ime datoteke ne sme biti prazno polje.", "\"{name}\" is not an allowed filetype" : "\"{name}\" ni dovoljena vrsta datoteke", @@ -70,6 +80,9 @@ "Favorite" : "Priljubljene", "New folder" : "Nova mapa", "Upload file" : "Naloži datoteko", + "Not favorited" : "Ni priljubljeno", + "Remove from favorites" : "Odstrani iz priljubljenega", + "Add to favorites" : "Dodaj v priljubljeno", "An error occurred while trying to update the tags" : "Prišlo je do napake med posodabljanjem oznak", "Added to favorites" : "Dodano med priljubljene", "Removed from favorites" : "Odstranjeno iz priljubljenih", @@ -84,9 +97,12 @@ "Moved by {user}" : "Premaknjeno od {user}", "\"remote user\"" : "\"oddaljeni uporabnik\"", "You created {file}" : "Ustvaril(a) si {file}", + "You created an encrypted file in {file}" : "Ustvaril(a) si kodirano datoteko v {file}", "{user} created {file}" : "{user} ustvaril(a) {file}", + "{user} created an encrypted file in {file}" : "{user} ustvaril(a) kodirano datoteko {file}", "{file} was created in a public folder" : "{file} ustvarjena je bila v javni mapi", "You changed {file}" : "Spremenil(a) si {file}", + "You changed an encrypted file in {file}" : "Spremenil(a) si kodirano datoteko v {file}", "{user} changed {file}" : "{user} spremenil/a {file}", "You deleted {file}" : "Izbrisal(a) si {file}", "{user} deleted {file}" : "{user} izbrisal(a) {file}", @@ -131,24 +147,9 @@ "Deleted files" : "Izbrisane datoteke", "Text file" : "Besedilna datoteka", "New text file.txt" : "Nova datoteka.txt", - "Uploading..." : "Poteka pošiljanje ...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} ura še","{hours}:{minutes}:{seconds} uri še","{hours}:{minutes}:{seconds} ure še","{hours}:{minutes}:{seconds} ur še"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minuta še","{minutes}:{seconds} minuti še","{minutes}:{seconds} minute še","{minutes}:{seconds} minut še"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}min", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekund še","{seconds} sekundi še","{seconds} sekunde še","{seconds} sekund še"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Vsak trenutek ...", - "Soon..." : "Kmalu", - "File upload is in progress. Leaving the page now will cancel the upload." : "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano.", "Move" : "Premakni", - "Copy local link" : "Kopiraj lokalno povezavo", - "Folder" : "Mapa", - "Upload" : "Pošlji", - "A new file or folder has been deleted" : "Nova datoteka ali mapa je bila pobrisana", + "A new file or folder has been deleted" : "Nova datoteka ali mapa je bila izbrisana", "A new file or folder has been restored" : "Nova datoteka ali mapa je bila obnovljena", - "Use this address to access your Files via WebDAV" : "Uporabite naslov za dostop do datotek prek sistema WebDAV.", - "No favorites" : "Ni priljubljenih predmetov" + "Use this address to access your Files via WebDAV" : "Uporabite povezavo zadostop do datotek preko WebDAV" },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" } \ No newline at end of file diff --git a/apps/files/l10n/sq.js b/apps/files/l10n/sq.js index 3a399954442ff..10e86214d9e88 100644 --- a/apps/files/l10n/sq.js +++ b/apps/files/l10n/sq.js @@ -115,6 +115,7 @@ OC.L10N.register( "Settings" : "Rregullime", "Show hidden files" : "Shfaq kartela të fshehura", "WebDAV" : "WebDAV", + "Cancel upload" : "Anulo ngarkimin", "No files in here" : "S’ka kartela këtu", "Upload some content or sync with your devices!" : "Ngarkoni ca lëndë ose bëni njëkohësim me pajisjet tuaja!", "No entries found in this folder" : "Në këtë dosje s’u gjetën zëra", @@ -129,25 +130,6 @@ OC.L10N.register( "Tags" : "Etiketë", "Deleted files" : "Skedar të fshirë", "Text file" : "Kartelë tekst", - "New text file.txt" : "Kartelë e re file.txt", - "Uploading..." : "Po ngarkohet...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} orë të mbetura","{hours}:{minutes}:{seconds} orë të mbetura"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minuta të mbetura","{minutes}:{seconds} minuta të mbetura"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekonda të mbetura","{seconds} sekonda të mbetura"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Në çdo çast tani…", - "Soon..." : "Së shpejti…", - "File upload is in progress. Leaving the page now will cancel the upload." : "Ngarkimi i skedarit është në punë e sipër. Largimi nga faqja do të anulojë ngarkimin.", - "Move" : "Lëvize", - "Copy local link" : "Kopjo linkun lokale", - "Folder" : "Dosje", - "Upload" : "Ngarkoje", - "A new file or folder has been deleted" : "Një skedar ose dosje e re është fshirë", - "A new file or folder has been restored" : "Një skedar ose dosje e re është rikthyer", - "Use this address to access your Files via WebDAV" : "Përdorni këtë adresë për të hyrë te Kartelat tuaja përmes WebDAV-it", - "No favorites" : "Pa të parapëlqyera" + "New text file.txt" : "Kartelë e re file.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/sq.json b/apps/files/l10n/sq.json index 2baf0c01927ff..e1762e1c76658 100644 --- a/apps/files/l10n/sq.json +++ b/apps/files/l10n/sq.json @@ -113,6 +113,7 @@ "Settings" : "Rregullime", "Show hidden files" : "Shfaq kartela të fshehura", "WebDAV" : "WebDAV", + "Cancel upload" : "Anulo ngarkimin", "No files in here" : "S’ka kartela këtu", "Upload some content or sync with your devices!" : "Ngarkoni ca lëndë ose bëni njëkohësim me pajisjet tuaja!", "No entries found in this folder" : "Në këtë dosje s’u gjetën zëra", @@ -127,25 +128,6 @@ "Tags" : "Etiketë", "Deleted files" : "Skedar të fshirë", "Text file" : "Kartelë tekst", - "New text file.txt" : "Kartelë e re file.txt", - "Uploading..." : "Po ngarkohet...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} orë të mbetura","{hours}:{minutes}:{seconds} orë të mbetura"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minuta të mbetura","{minutes}:{seconds} minuta të mbetura"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekonda të mbetura","{seconds} sekonda të mbetura"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Në çdo çast tani…", - "Soon..." : "Së shpejti…", - "File upload is in progress. Leaving the page now will cancel the upload." : "Ngarkimi i skedarit është në punë e sipër. Largimi nga faqja do të anulojë ngarkimin.", - "Move" : "Lëvize", - "Copy local link" : "Kopjo linkun lokale", - "Folder" : "Dosje", - "Upload" : "Ngarkoje", - "A new file or folder has been deleted" : "Një skedar ose dosje e re është fshirë", - "A new file or folder has been restored" : "Një skedar ose dosje e re është rikthyer", - "Use this address to access your Files via WebDAV" : "Përdorni këtë adresë për të hyrë te Kartelat tuaja përmes WebDAV-it", - "No favorites" : "Pa të parapëlqyera" + "New text file.txt" : "Kartelë e re file.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/sr.js b/apps/files/l10n/sr.js index 735bd24853dc4..15f7ea4163279 100644 --- a/apps/files/l10n/sr.js +++ b/apps/files/l10n/sr.js @@ -25,6 +25,7 @@ OC.L10N.register( "Download" : "Преузми", "Rename" : "Преименуј", "Move or copy" : "Помери или копирај", + "Copy" : "Копирај", "Target folder" : "Одредишна фасцикла", "Delete" : "Обриши", "Disconnect storage" : "Искључи складиште", @@ -99,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "Померио {user}", "\"remote user\"" : "„удаљени корисник“", "You created {file}" : "Направили сте {file}", + "You created an encrypted file in {file}" : "Направили сте шифровани фајл {file}", "{user} created {file}" : "{user} је направио {file}", + "{user} created an encrypted file in {file}" : "{user} је направио шифровани фајл {file}", "{file} was created in a public folder" : "{file} је направљен у јавној фасцикли", "You changed {file}" : "Изменили сте {file}", + "You changed an encrypted file in {file}" : "Изменили сте шифровани фајл {file}", "{user} changed {file}" : "{user} је изменио {file}", + "{user} changed an encrypted file in {file}" : "{user} је изменио шифровани фајл {file}", "You deleted {file}" : "Обрисали сте {file}", + "You deleted an encrypted file in {file}" : "Обрисали сте шифровани фајл {file}", "{user} deleted {file}" : "{user} је обрисао {file}", + "{user} deleted an encrypted file in {file}" : "{user} је обрисао шифровани фајл {file}", "You restored {file}" : "Повратили сте {file}", "{user} restored {file}" : "{user} је повратио {file}", "You renamed {oldfile} to {newfile}" : "Преименовали сте {oldfile} на {newfile}", @@ -147,24 +154,9 @@ OC.L10N.register( "Deleted files" : "Обрисани фајлови", "Text file" : "Tекстуални фајл", "New text file.txt" : "Нов текстуални фајл.txt", - "Uploading..." : "Отпремам…", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} сат преостао","{hours}:{minutes}:{seconds} сата преостала","{hours}:{minutes}:{seconds} сати преостало"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} минут преостало","{minutes}:{seconds} минута преостало","{minutes}:{seconds} минута преостало "], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} секунда преостала","{seconds} секунде преостало","{seconds} секунди преостало"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Сваког тренутка...", - "Soon..." : "Ускоро...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Отпремање фајла је у току. Ако сада напустите страницу, отказаћете отпремање.", "Move" : "Премести", - "Copy local link" : "Копирај локалну везу", - "Folder" : "Фасцикла", - "Upload" : "Отпреми", "A new file or folder has been deleted" : "Нови фајл или фасцикла су обрисани", "A new file or folder has been restored" : "Нови фајл или фасцикла су враћени", - "Use this address to access your Files via WebDAV" : "Користи ову адресу да приступате Вашим фајловима преко ВебДАВа", - "No favorites" : "Нема омиљених" + "Use this address to access your Files via WebDAV" : "Користи ову адресу да приступате Вашим фајловима преко ВебДАВа" }, "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/apps/files/l10n/sr.json b/apps/files/l10n/sr.json index 7a01d46436243..d3c968d8832e8 100644 --- a/apps/files/l10n/sr.json +++ b/apps/files/l10n/sr.json @@ -23,6 +23,7 @@ "Download" : "Преузми", "Rename" : "Преименуј", "Move or copy" : "Помери или копирај", + "Copy" : "Копирај", "Target folder" : "Одредишна фасцикла", "Delete" : "Обриши", "Disconnect storage" : "Искључи складиште", @@ -97,12 +98,18 @@ "Moved by {user}" : "Померио {user}", "\"remote user\"" : "„удаљени корисник“", "You created {file}" : "Направили сте {file}", + "You created an encrypted file in {file}" : "Направили сте шифровани фајл {file}", "{user} created {file}" : "{user} је направио {file}", + "{user} created an encrypted file in {file}" : "{user} је направио шифровани фајл {file}", "{file} was created in a public folder" : "{file} је направљен у јавној фасцикли", "You changed {file}" : "Изменили сте {file}", + "You changed an encrypted file in {file}" : "Изменили сте шифровани фајл {file}", "{user} changed {file}" : "{user} је изменио {file}", + "{user} changed an encrypted file in {file}" : "{user} је изменио шифровани фајл {file}", "You deleted {file}" : "Обрисали сте {file}", + "You deleted an encrypted file in {file}" : "Обрисали сте шифровани фајл {file}", "{user} deleted {file}" : "{user} је обрисао {file}", + "{user} deleted an encrypted file in {file}" : "{user} је обрисао шифровани фајл {file}", "You restored {file}" : "Повратили сте {file}", "{user} restored {file}" : "{user} је повратио {file}", "You renamed {oldfile} to {newfile}" : "Преименовали сте {oldfile} на {newfile}", @@ -145,24 +152,9 @@ "Deleted files" : "Обрисани фајлови", "Text file" : "Tекстуални фајл", "New text file.txt" : "Нов текстуални фајл.txt", - "Uploading..." : "Отпремам…", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} сат преостао","{hours}:{minutes}:{seconds} сата преостала","{hours}:{minutes}:{seconds} сати преостало"], - "{hours}:{minutes}h" : "{hours}:{minutes}h", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} минут преостало","{minutes}:{seconds} минута преостало","{minutes}:{seconds} минута преостало "], - "{minutes}:{seconds}m" : "{minutes}:{seconds}m", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} секунда преостала","{seconds} секунде преостало","{seconds} секунди преостало"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Сваког тренутка...", - "Soon..." : "Ускоро...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Отпремање фајла је у току. Ако сада напустите страницу, отказаћете отпремање.", "Move" : "Премести", - "Copy local link" : "Копирај локалну везу", - "Folder" : "Фасцикла", - "Upload" : "Отпреми", "A new file or folder has been deleted" : "Нови фајл или фасцикла су обрисани", "A new file or folder has been restored" : "Нови фајл или фасцикла су враћени", - "Use this address to access your Files via WebDAV" : "Користи ову адресу да приступате Вашим фајловима преко ВебДАВа", - "No favorites" : "Нема омиљених" + "Use this address to access your Files via WebDAV" : "Користи ову адресу да приступате Вашим фајловима преко ВебДАВа" },"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);" } \ No newline at end of file diff --git a/apps/files/l10n/sv.js b/apps/files/l10n/sv.js index efbd472788d44..c893216a3bf79 100644 --- a/apps/files/l10n/sv.js +++ b/apps/files/l10n/sv.js @@ -20,6 +20,7 @@ OC.L10N.register( "…" : "...", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} av {totalSize} ({bitrate})", "Target folder does not exist any more" : "Målmapp existerar inte längre", + "Error when assembling chunks, status code {status}" : "Fel vid ihopsättning av bitarna: statuskod: {status}", "Actions" : "Åtgärder", "Download" : "Ladda ned", "Rename" : "Byt namn", @@ -61,8 +62,11 @@ OC.L10N.register( "You don’t have permission to upload or create files here" : "Du har ej tillåtelse att ladda upp eller skapa filer här", "_Uploading %n file_::_Uploading %n files_" : ["Laddar upp %n fil","Laddar upp %n filer"], "New" : "Ny", + "{used} of {quota} used" : "{used} av {quota} använt", + "{used} used" : "{used} använt", "\"{name}\" is an invalid file name." : "\"{name}\" är ett ogiltigt filnamn.", "File name cannot be empty." : "Filnamn kan inte vara tomt.", + "\"/\" is not allowed inside a file name." : "\"/\" är inte tillåtet i ett filnamn.", "\"{name}\" is not an allowed filetype" : "\"{name}\" är inte en tillåten filtyp", "Storage of {owner} is full, files can not be updated or synced anymore!" : "Lagring av {owner} är full, filer kan inte uppdateras eller synkroniseras längre!", "Your storage is full, files can not be updated or synced anymore!" : "Ditt lagringsutrymme är fullt, filer kan inte längre uppdateras eller synkroniseras!", @@ -141,25 +145,6 @@ OC.L10N.register( "Tags" : "Taggar", "Deleted files" : "Raderade filer", "Text file" : "Textfil", - "New text file.txt" : "nytextfil.txt", - "Uploading..." : "Laddar upp...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} timme kvar","{hours}:{minutes}:{seconds} timmar kvar"], - "{hours}:{minutes}h" : "{hours}:{minutes}", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minut kvar","{minutes}:{seconds} minuter kvar"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekund kvar","{seconds} sekunder kvar"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Alldeles strax...", - "Soon..." : "Snart...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.", - "Move" : "Flytta", - "Copy local link" : "Kopiera den lokala länken", - "Folder" : "Mapp", - "Upload" : "Ladda upp", - "A new file or folder has been deleted" : "En ny fil har blivit raderad", - "A new file or folder has been restored" : "En ny fil eller mapp har blivit återställd", - "Use this address to access your Files via WebDAV" : "Använd den här adressen för att komma åt dina filer via WebDAV", - "No favorites" : "Inga favoriter" + "New text file.txt" : "nytextfil.txt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files/l10n/sv.json b/apps/files/l10n/sv.json index dfce9322d2a99..24586c07bbf68 100644 --- a/apps/files/l10n/sv.json +++ b/apps/files/l10n/sv.json @@ -18,6 +18,7 @@ "…" : "...", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} av {totalSize} ({bitrate})", "Target folder does not exist any more" : "Målmapp existerar inte längre", + "Error when assembling chunks, status code {status}" : "Fel vid ihopsättning av bitarna: statuskod: {status}", "Actions" : "Åtgärder", "Download" : "Ladda ned", "Rename" : "Byt namn", @@ -59,8 +60,11 @@ "You don’t have permission to upload or create files here" : "Du har ej tillåtelse att ladda upp eller skapa filer här", "_Uploading %n file_::_Uploading %n files_" : ["Laddar upp %n fil","Laddar upp %n filer"], "New" : "Ny", + "{used} of {quota} used" : "{used} av {quota} använt", + "{used} used" : "{used} använt", "\"{name}\" is an invalid file name." : "\"{name}\" är ett ogiltigt filnamn.", "File name cannot be empty." : "Filnamn kan inte vara tomt.", + "\"/\" is not allowed inside a file name." : "\"/\" är inte tillåtet i ett filnamn.", "\"{name}\" is not an allowed filetype" : "\"{name}\" är inte en tillåten filtyp", "Storage of {owner} is full, files can not be updated or synced anymore!" : "Lagring av {owner} är full, filer kan inte uppdateras eller synkroniseras längre!", "Your storage is full, files can not be updated or synced anymore!" : "Ditt lagringsutrymme är fullt, filer kan inte längre uppdateras eller synkroniseras!", @@ -139,25 +143,6 @@ "Tags" : "Taggar", "Deleted files" : "Raderade filer", "Text file" : "Textfil", - "New text file.txt" : "nytextfil.txt", - "Uploading..." : "Laddar upp...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} timme kvar","{hours}:{minutes}:{seconds} timmar kvar"], - "{hours}:{minutes}h" : "{hours}:{minutes}", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} minut kvar","{minutes}:{seconds} minuter kvar"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} sekund kvar","{seconds} sekunder kvar"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "Alldeles strax...", - "Soon..." : "Snart...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.", - "Move" : "Flytta", - "Copy local link" : "Kopiera den lokala länken", - "Folder" : "Mapp", - "Upload" : "Ladda upp", - "A new file or folder has been deleted" : "En ny fil har blivit raderad", - "A new file or folder has been restored" : "En ny fil eller mapp har blivit återställd", - "Use this address to access your Files via WebDAV" : "Använd den här adressen för att komma åt dina filer via WebDAV", - "No favorites" : "Inga favoriter" + "New text file.txt" : "nytextfil.txt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files/l10n/th.js b/apps/files/l10n/th.js new file mode 100644 index 0000000000000..2b914479d0714 --- /dev/null +++ b/apps/files/l10n/th.js @@ -0,0 +1,81 @@ +OC.L10N.register( + "files", + { + "Storage invalid" : "การจัดเก็บข้อมูลไม่ถูกต้อง", + "Unknown error" : "ข้อผิดพลาดที่ไม่ทราบสาเหตุ", + "All files" : "ไฟล์ทั้งหมด", + "Home" : "บ้าน", + "Close" : "ปิด", + "Favorites" : "รายการโปรด", + "Could not create folder \"{dir}\"" : "ไม่สามารถสร้างโฟลเดอร์ \"{dir}\"", + "Upload cancelled." : "การอัพโหลดถูกยกเลิก", + "Unable to upload {filename} as it is a directory or has 0 bytes" : "ไม่สามารถอัพโหลด {filename} มันเป็นไดเรกทอรีหรือมี 0 ไบต์", + "Not enough free space, you are uploading {size1} but only {size2} is left" : "พื้นที่ว่างไม่เพียงพอคุณจะอัพโหลด {size1} แต่มีพืนที่แค่ {size2}", + "Actions" : "การกระทำ", + "Download" : "ดาวน์โหลด", + "Rename" : "เปลี่ยนชื่อ", + "Delete" : "ลบ", + "Disconnect storage" : "ยกเลิกการเชื่อมต่อการจัดเก็บข้อมูล", + "Unshare" : "ยกเลิกการแชร์", + "Files" : "ไฟล์", + "Details" : "รายละเอียด", + "Select" : "เลือก", + "Pending" : "อยู่ระหว่างดำเนินการ", + "Unable to determine date" : "ไม่สามารถกำหนดวัน", + "This operation is forbidden" : "การดำเนินการนี้ถูกห้าม", + "This directory is unavailable, please check the logs or contact the administrator" : "ไม่สามารถใช้งานไดเรกทอรีนี้โปรดตรวจสอบบันทึกหรือติดต่อผู้ดูแลระบบ", + "Could not move \"{file}\", target exists" : "ไม่สามารถย้ายไฟล์ \"{file}\" ไม่มีไฟล์นั้นอยู่", + "Could not move \"{file}\"" : "ไม่สามารถย้ายไฟล์ \"{file}\"", + "{newName} already exists" : "{newName} มีอยู่แล้ว", + "Could not rename \"{fileName}\", it does not exist any more" : "ไม่สามารถเปลี่ยนชื่อไฟล์ \"{fileName}\" ไฟล์นั้นไม่มีอยู่", + "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "ชื่อโฟลเดอร์ \"{targetName}\" มีอยู่แล้วใน \"{dir}\" กรุณาใช้ชื่อที่แตกต่างกัน", + "Could not rename \"{fileName}\"" : "ไม่สามารถเปลี่ยนชื่อไฟล์ \"{fileName}\"", + "Could not create file \"{file}\"" : "ไม่สามารถสร้างไฟล์ \"{file}\"", + "Could not create file \"{file}\" because it already exists" : "ไม่สามารถสร้างไฟล์ \"{file}\" เพราะมันมีอยู่แล้ว", + "Could not create folder \"{dir}\" because it already exists" : "ไม่สามารถสร้างโฟลเดอร์ \"{dir}\" เพราะมันมีอยู่แล้ว", + "Error deleting file \"{fileName}\"." : "เกิดข้อผิดพลาดขณะลบไฟล์ \"{fileName}\"", + "Name" : "ชื่อ", + "Size" : "ขนาด", + "Modified" : "แก้ไขเมื่อ", + "_%n folder_::_%n folders_" : ["%n โฟลเดอร์"], + "_%n file_::_%n files_" : ["%n ไฟล์"], + "{dirs} and {files}" : "{dirs} และ {files}", + "You don’t have permission to upload or create files here" : "คุณไม่ได้รับอนุญาตให้อัพโหลดหรือสร้างไฟล์ที่นี่", + "_Uploading %n file_::_Uploading %n files_" : ["อัพโหลด %n ไฟล์"], + "New" : "ใหม่", + "\"{name}\" is an invalid file name." : "\"{name}\" เป็นชื่อไฟล์ที่ไม่ถูกต้อง", + "File name cannot be empty." : "ชื่อไฟล์ไม่สามารถเว้นว่างได้", + "Storage of {owner} is full, files can not be updated or synced anymore!" : "พื้นที่จัดเก็บข้อมูลของ {owner} เต็มแล้ว ไฟล์ไม่สามารถอัพเดทหรือประสานข้อมูลได้อีก!", + "Your storage is full, files can not be updated or synced anymore!" : "พื้นที่จัดเก็บข้อมูลของคุณเต็มแล้ว ไม่สามารถอัพเดทหรือประสานข้อมูลได้อีก!", + "Storage of {owner} is almost full ({usedSpacePercent}%)" : "พื้นที่จัดเก็บข้อมูลของ {owner} ใกล้เต็มแล้ว\nใช้พื้นที่ไปแล้ว: ({usedSpacePercent}%)", + "Your storage is almost full ({usedSpacePercent}%)" : "พื้นที่จัดเก็บข้อมูลของคุณใกล้เต็มแล้ว \nใช้พื้นที่ไปแล้ว: ({usedSpacePercent}%)", + "_matches '{filter}'_::_match '{filter}'_" : ["ตรงกับ '{filter}'"], + "Path" : "เส้นทาง", + "_%n byte_::_%n bytes_" : ["%n ไบต์"], + "Favorited" : "รายการโปรด", + "Favorite" : "รายการโปรด", + "New folder" : "โฟลเดอร์ใหม่", + "An error occurred while trying to update the tags" : "เกิดข้อผิดพลาดขณะที่พยายามจะปรับปรุงแท็ก", + "A new file or folder has been created" : "มีไฟล์ใหม่หรือโฟลเดอร์ได้ถูก สร้างขึ้น!", + "Limit notifications about creation and changes to your favorite files (Stream only)" : "จำกัดการแจ้งเตือนเกี่ยวกับการสร้างและการเปลี่ยนแปลงของคุณ ไฟล์ที่ชื่นชอบ (สตรีมเท่านั้น)", + "Upload (max. %s)" : "อัพโหลด (สูงสุด %s)", + "File handling" : "การจัดการไฟล์", + "Maximum upload size" : "ขนาดไฟล์สูงสุดที่สามารถอัพโหลดได้", + "max. possible: " : "จำนวนสูงสุดที่สามารถทำได้: ", + "Save" : "บันทึก", + "With PHP-FPM it might take 5 minutes for changes to be applied." : "หากใช้ร่วมกับ PHP-FPM อาจใช้เวลาเปลี่ยนแปลงประมาณ 5 นาที", + "Missing permissions to edit from here." : "สิทธิ์ในการแก้ไขส่วนนี้หายไป", + "Settings" : "ตั้งค่า", + "Show hidden files" : "แสดงไฟล์ที่ซ่อนอยู่", + "WebDAV" : "WebDAV", + "No files in here" : "ไม่มีไฟล์ที่นี่", + "Upload some content or sync with your devices!" : "อัพโหลดเนื้อหาบางส่วนหรือประสานข้อมูลกับอุปกรณ์ของคุณ! อีกครั้ง", + "No entries found in this folder" : "ไม่พบรายการในโฟลเดอร์นี้", + "Select all" : "เลือกทั้งหมด", + "Upload too large" : "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป", + "The files you are trying to upload exceed the maximum size for file uploads on this server." : "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้", + "Files and folders you mark as favorite will show up here" : "ไฟล์และโฟลเดอร์ที่คุณทำเครื่องหมายเป็นรายการโปรดจะปรากฏขึ้นที่นี่", + "Text file" : "ไฟล์ข้อความ", + "New text file.txt" : "ไฟล์ข้อความใหม่ .txt" +}, +"nplurals=1; plural=0;"); diff --git a/apps/files/l10n/th.json b/apps/files/l10n/th.json new file mode 100644 index 0000000000000..593d601749434 --- /dev/null +++ b/apps/files/l10n/th.json @@ -0,0 +1,79 @@ +{ "translations": { + "Storage invalid" : "การจัดเก็บข้อมูลไม่ถูกต้อง", + "Unknown error" : "ข้อผิดพลาดที่ไม่ทราบสาเหตุ", + "All files" : "ไฟล์ทั้งหมด", + "Home" : "บ้าน", + "Close" : "ปิด", + "Favorites" : "รายการโปรด", + "Could not create folder \"{dir}\"" : "ไม่สามารถสร้างโฟลเดอร์ \"{dir}\"", + "Upload cancelled." : "การอัพโหลดถูกยกเลิก", + "Unable to upload {filename} as it is a directory or has 0 bytes" : "ไม่สามารถอัพโหลด {filename} มันเป็นไดเรกทอรีหรือมี 0 ไบต์", + "Not enough free space, you are uploading {size1} but only {size2} is left" : "พื้นที่ว่างไม่เพียงพอคุณจะอัพโหลด {size1} แต่มีพืนที่แค่ {size2}", + "Actions" : "การกระทำ", + "Download" : "ดาวน์โหลด", + "Rename" : "เปลี่ยนชื่อ", + "Delete" : "ลบ", + "Disconnect storage" : "ยกเลิกการเชื่อมต่อการจัดเก็บข้อมูล", + "Unshare" : "ยกเลิกการแชร์", + "Files" : "ไฟล์", + "Details" : "รายละเอียด", + "Select" : "เลือก", + "Pending" : "อยู่ระหว่างดำเนินการ", + "Unable to determine date" : "ไม่สามารถกำหนดวัน", + "This operation is forbidden" : "การดำเนินการนี้ถูกห้าม", + "This directory is unavailable, please check the logs or contact the administrator" : "ไม่สามารถใช้งานไดเรกทอรีนี้โปรดตรวจสอบบันทึกหรือติดต่อผู้ดูแลระบบ", + "Could not move \"{file}\", target exists" : "ไม่สามารถย้ายไฟล์ \"{file}\" ไม่มีไฟล์นั้นอยู่", + "Could not move \"{file}\"" : "ไม่สามารถย้ายไฟล์ \"{file}\"", + "{newName} already exists" : "{newName} มีอยู่แล้ว", + "Could not rename \"{fileName}\", it does not exist any more" : "ไม่สามารถเปลี่ยนชื่อไฟล์ \"{fileName}\" ไฟล์นั้นไม่มีอยู่", + "The name \"{targetName}\" is already used in the folder \"{dir}\". Please choose a different name." : "ชื่อโฟลเดอร์ \"{targetName}\" มีอยู่แล้วใน \"{dir}\" กรุณาใช้ชื่อที่แตกต่างกัน", + "Could not rename \"{fileName}\"" : "ไม่สามารถเปลี่ยนชื่อไฟล์ \"{fileName}\"", + "Could not create file \"{file}\"" : "ไม่สามารถสร้างไฟล์ \"{file}\"", + "Could not create file \"{file}\" because it already exists" : "ไม่สามารถสร้างไฟล์ \"{file}\" เพราะมันมีอยู่แล้ว", + "Could not create folder \"{dir}\" because it already exists" : "ไม่สามารถสร้างโฟลเดอร์ \"{dir}\" เพราะมันมีอยู่แล้ว", + "Error deleting file \"{fileName}\"." : "เกิดข้อผิดพลาดขณะลบไฟล์ \"{fileName}\"", + "Name" : "ชื่อ", + "Size" : "ขนาด", + "Modified" : "แก้ไขเมื่อ", + "_%n folder_::_%n folders_" : ["%n โฟลเดอร์"], + "_%n file_::_%n files_" : ["%n ไฟล์"], + "{dirs} and {files}" : "{dirs} และ {files}", + "You don’t have permission to upload or create files here" : "คุณไม่ได้รับอนุญาตให้อัพโหลดหรือสร้างไฟล์ที่นี่", + "_Uploading %n file_::_Uploading %n files_" : ["อัพโหลด %n ไฟล์"], + "New" : "ใหม่", + "\"{name}\" is an invalid file name." : "\"{name}\" เป็นชื่อไฟล์ที่ไม่ถูกต้อง", + "File name cannot be empty." : "ชื่อไฟล์ไม่สามารถเว้นว่างได้", + "Storage of {owner} is full, files can not be updated or synced anymore!" : "พื้นที่จัดเก็บข้อมูลของ {owner} เต็มแล้ว ไฟล์ไม่สามารถอัพเดทหรือประสานข้อมูลได้อีก!", + "Your storage is full, files can not be updated or synced anymore!" : "พื้นที่จัดเก็บข้อมูลของคุณเต็มแล้ว ไม่สามารถอัพเดทหรือประสานข้อมูลได้อีก!", + "Storage of {owner} is almost full ({usedSpacePercent}%)" : "พื้นที่จัดเก็บข้อมูลของ {owner} ใกล้เต็มแล้ว\nใช้พื้นที่ไปแล้ว: ({usedSpacePercent}%)", + "Your storage is almost full ({usedSpacePercent}%)" : "พื้นที่จัดเก็บข้อมูลของคุณใกล้เต็มแล้ว \nใช้พื้นที่ไปแล้ว: ({usedSpacePercent}%)", + "_matches '{filter}'_::_match '{filter}'_" : ["ตรงกับ '{filter}'"], + "Path" : "เส้นทาง", + "_%n byte_::_%n bytes_" : ["%n ไบต์"], + "Favorited" : "รายการโปรด", + "Favorite" : "รายการโปรด", + "New folder" : "โฟลเดอร์ใหม่", + "An error occurred while trying to update the tags" : "เกิดข้อผิดพลาดขณะที่พยายามจะปรับปรุงแท็ก", + "A new file or folder has been created" : "มีไฟล์ใหม่หรือโฟลเดอร์ได้ถูก สร้างขึ้น!", + "Limit notifications about creation and changes to your favorite files (Stream only)" : "จำกัดการแจ้งเตือนเกี่ยวกับการสร้างและการเปลี่ยนแปลงของคุณ ไฟล์ที่ชื่นชอบ (สตรีมเท่านั้น)", + "Upload (max. %s)" : "อัพโหลด (สูงสุด %s)", + "File handling" : "การจัดการไฟล์", + "Maximum upload size" : "ขนาดไฟล์สูงสุดที่สามารถอัพโหลดได้", + "max. possible: " : "จำนวนสูงสุดที่สามารถทำได้: ", + "Save" : "บันทึก", + "With PHP-FPM it might take 5 minutes for changes to be applied." : "หากใช้ร่วมกับ PHP-FPM อาจใช้เวลาเปลี่ยนแปลงประมาณ 5 นาที", + "Missing permissions to edit from here." : "สิทธิ์ในการแก้ไขส่วนนี้หายไป", + "Settings" : "ตั้งค่า", + "Show hidden files" : "แสดงไฟล์ที่ซ่อนอยู่", + "WebDAV" : "WebDAV", + "No files in here" : "ไม่มีไฟล์ที่นี่", + "Upload some content or sync with your devices!" : "อัพโหลดเนื้อหาบางส่วนหรือประสานข้อมูลกับอุปกรณ์ของคุณ! อีกครั้ง", + "No entries found in this folder" : "ไม่พบรายการในโฟลเดอร์นี้", + "Select all" : "เลือกทั้งหมด", + "Upload too large" : "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป", + "The files you are trying to upload exceed the maximum size for file uploads on this server." : "ไฟล์ที่คุณพยายามที่จะอัพโหลดมีขนาดเกินกว่าขนาดสูงสุดที่กำหนดไว้ให้อัพโหลดได้สำหรับเซิร์ฟเวอร์นี้", + "Files and folders you mark as favorite will show up here" : "ไฟล์และโฟลเดอร์ที่คุณทำเครื่องหมายเป็นรายการโปรดจะปรากฏขึ้นที่นี่", + "Text file" : "ไฟล์ข้อความ", + "New text file.txt" : "ไฟล์ข้อความใหม่ .txt" +},"pluralForm" :"nplurals=1; plural=0;" +} \ No newline at end of file diff --git a/apps/files/l10n/tr.js b/apps/files/l10n/tr.js index e1252d20b1899..3fcd5bc2b4766 100644 --- a/apps/files/l10n/tr.js +++ b/apps/files/l10n/tr.js @@ -25,6 +25,7 @@ OC.L10N.register( "Download" : "İndir", "Rename" : "Yeniden Adlandır", "Move or copy" : "Taşı ya da kopyala", + "Copy" : "Kopyala", "Target folder" : "Hedef klasör", "Delete" : "Sil", "Disconnect storage" : "Depolama bağlantısını kes", @@ -99,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "{user} tarafından taşındı", "\"remote user\"" : "\"uzak kullanıcı\"", "You created {file}" : "{file} dosyasını eklediniz", + "You created an encrypted file in {file}" : "{file} içinde şifrelenmiş bir dosya oluşturdunuz", "{user} created {file}" : "{user}, {file} dosyasını ekledi", + "{user} created an encrypted file in {file}" : "{user} kullanıcısı {file} içinde şifrelenmiş bir dosya oluşturdu", "{file} was created in a public folder" : "{file} dosyası herkese açık klasör içine eklendi", "You changed {file}" : "{file} dosyasını değiştirdiniz", + "You changed an encrypted file in {file}" : "{file} içindeki şifrelenmiş bir dosyayı değiştirdiniz", "{user} changed {file}" : "{user}, {file} dosyasını değiştirdi", + "{user} changed an encrypted file in {file}" : "{user} kullanıcısı {file} içindeki şifrelenmiş bir dosyayı değiştirdi", "You deleted {file}" : "{file} dosyasını sildiniz", + "You deleted an encrypted file in {file}" : "{file} içindeki şifrelenmiş bir dosyayı sildiniz", "{user} deleted {file}" : "{user}, {file} dosyasını sildi", + "{user} deleted an encrypted file in {file}" : "{user} kullanıcısı {file} içindeki şifrelenmiş bir dosyayı sildi", "You restored {file}" : "{file} dosyasını geri yüklediniz", "{user} restored {file}" : "{user}, {file} dosyasını geri yükledi", "You renamed {oldfile} to {newfile}" : "{oldfile} dosyasının adını {newfile} olarak değiştirdiniz", @@ -147,24 +154,9 @@ OC.L10N.register( "Deleted files" : "Silinmiş dosyalar", "Text file" : "Metin dosyası", "New text file.txt" : "Yeni metin dosyası.txt", - "Uploading..." : "Yükleniyor...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} saat kaldı","{hours}:{minutes}:{seconds} saat kaldı"], - "{hours}:{minutes}h" : "{hours}:{minutes} saat", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} dakika kaldı","{minutes}:{seconds} dakika kaldı"], - "{minutes}:{seconds}m" : "{minutes}:{seconds} dakika", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} saniye kaldı","{seconds} saniye kaldı"], - "{seconds}s" : "{seconds} saniye", - "Any moment now..." : "Hemen şimdi...", - "Soon..." : "Yakında...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Dosya yükleme işlemi sürüyor. Sayfadan ayrılırsanız yükleme işlemi iptal edilir.", "Move" : "Taşı", - "Copy local link" : "Bağlantıyı kopyala", - "Folder" : "Klasör", - "Upload" : "Yükle", "A new file or folder has been deleted" : "Yeni bir dosya ya da klasör silindi", "A new file or folder has been restored" : "Yeni bir dosya ya da klasör geri yüklendi", - "Use this address to access your Files via WebDAV" : "Dosyalarınıza WebDAV üzerinden erişmek için bu adresi kullanın", - "No favorites" : "Sık kullanılan bir öge yok" + "Use this address to access your Files via WebDAV" : "Dosyalarınıza WebDAV üzerinden erişmek için bu adresi kullanın" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/files/l10n/tr.json b/apps/files/l10n/tr.json index ca8bfbf802841..2d3a779e2476f 100644 --- a/apps/files/l10n/tr.json +++ b/apps/files/l10n/tr.json @@ -23,6 +23,7 @@ "Download" : "İndir", "Rename" : "Yeniden Adlandır", "Move or copy" : "Taşı ya da kopyala", + "Copy" : "Kopyala", "Target folder" : "Hedef klasör", "Delete" : "Sil", "Disconnect storage" : "Depolama bağlantısını kes", @@ -97,12 +98,18 @@ "Moved by {user}" : "{user} tarafından taşındı", "\"remote user\"" : "\"uzak kullanıcı\"", "You created {file}" : "{file} dosyasını eklediniz", + "You created an encrypted file in {file}" : "{file} içinde şifrelenmiş bir dosya oluşturdunuz", "{user} created {file}" : "{user}, {file} dosyasını ekledi", + "{user} created an encrypted file in {file}" : "{user} kullanıcısı {file} içinde şifrelenmiş bir dosya oluşturdu", "{file} was created in a public folder" : "{file} dosyası herkese açık klasör içine eklendi", "You changed {file}" : "{file} dosyasını değiştirdiniz", + "You changed an encrypted file in {file}" : "{file} içindeki şifrelenmiş bir dosyayı değiştirdiniz", "{user} changed {file}" : "{user}, {file} dosyasını değiştirdi", + "{user} changed an encrypted file in {file}" : "{user} kullanıcısı {file} içindeki şifrelenmiş bir dosyayı değiştirdi", "You deleted {file}" : "{file} dosyasını sildiniz", + "You deleted an encrypted file in {file}" : "{file} içindeki şifrelenmiş bir dosyayı sildiniz", "{user} deleted {file}" : "{user}, {file} dosyasını sildi", + "{user} deleted an encrypted file in {file}" : "{user} kullanıcısı {file} içindeki şifrelenmiş bir dosyayı sildi", "You restored {file}" : "{file} dosyasını geri yüklediniz", "{user} restored {file}" : "{user}, {file} dosyasını geri yükledi", "You renamed {oldfile} to {newfile}" : "{oldfile} dosyasının adını {newfile} olarak değiştirdiniz", @@ -145,24 +152,9 @@ "Deleted files" : "Silinmiş dosyalar", "Text file" : "Metin dosyası", "New text file.txt" : "Yeni metin dosyası.txt", - "Uploading..." : "Yükleniyor...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} saat kaldı","{hours}:{minutes}:{seconds} saat kaldı"], - "{hours}:{minutes}h" : "{hours}:{minutes} saat", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} dakika kaldı","{minutes}:{seconds} dakika kaldı"], - "{minutes}:{seconds}m" : "{minutes}:{seconds} dakika", - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} saniye kaldı","{seconds} saniye kaldı"], - "{seconds}s" : "{seconds} saniye", - "Any moment now..." : "Hemen şimdi...", - "Soon..." : "Yakında...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Dosya yükleme işlemi sürüyor. Sayfadan ayrılırsanız yükleme işlemi iptal edilir.", "Move" : "Taşı", - "Copy local link" : "Bağlantıyı kopyala", - "Folder" : "Klasör", - "Upload" : "Yükle", "A new file or folder has been deleted" : "Yeni bir dosya ya da klasör silindi", "A new file or folder has been restored" : "Yeni bir dosya ya da klasör geri yüklendi", - "Use this address to access your Files via WebDAV" : "Dosyalarınıza WebDAV üzerinden erişmek için bu adresi kullanın", - "No favorites" : "Sık kullanılan bir öge yok" + "Use this address to access your Files via WebDAV" : "Dosyalarınıza WebDAV üzerinden erişmek için bu adresi kullanın" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/files/l10n/uk.js b/apps/files/l10n/uk.js index 236240817bac0..c5b9b7938c37e 100644 --- a/apps/files/l10n/uk.js +++ b/apps/files/l10n/uk.js @@ -16,6 +16,7 @@ OC.L10N.register( "Not enough free space, you are uploading {size1} but only {size2} is left" : "Недостатньо вільного місця, ви вивантажуєте {size1}, а залишилося лише {size2}", "Target folder \"{dir}\" does not exist any more" : "Теки призначення \"{dir}\" більше не існує.", "Not enough free space" : "Недостатньо вільного місця", + "Uploading …" : "Вивантаження …", "…" : "...", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} з {totalSize} ({bitrate})", "Actions" : "Дії", @@ -132,21 +133,6 @@ OC.L10N.register( "Tags" : "Теги", "Deleted files" : "Видалені файли", "Text file" : "Текстовий файл", - "New text file.txt" : "Новий текстовий файл file.txt", - "Uploading..." : "Вивантаження...", - "..." : "...", - "{hours}:{minutes}h" : "{hours}:{minutes} год", - "{seconds}s" : "{seconds} сек", - "Any moment now..." : "В будь-який момент...", - "Soon..." : "Незабаром...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Виконується вивантаження файлу. Закриття цієї сторінки приведе до скасування вивантаження.", - "Move" : "Перемістити", - "Copy local link" : "Копіювати посилання", - "Folder" : "Тека", - "Upload" : "Вивантажити", - "A new file or folder has been deleted" : "Новий файл або теку було видалено", - "A new file or folder has been restored" : "Новий файл або теку було відновлено", - "Use this address to access your Files via WebDAV" : "Використайте цю адресу для доступу через WebDAV", - "No favorites" : "Немає улюблених" + "New text file.txt" : "Новий текстовий файл file.txt" }, "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/apps/files/l10n/uk.json b/apps/files/l10n/uk.json index a82339a58a3a3..01f37c48ffa79 100644 --- a/apps/files/l10n/uk.json +++ b/apps/files/l10n/uk.json @@ -14,6 +14,7 @@ "Not enough free space, you are uploading {size1} but only {size2} is left" : "Недостатньо вільного місця, ви вивантажуєте {size1}, а залишилося лише {size2}", "Target folder \"{dir}\" does not exist any more" : "Теки призначення \"{dir}\" більше не існує.", "Not enough free space" : "Недостатньо вільного місця", + "Uploading …" : "Вивантаження …", "…" : "...", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} з {totalSize} ({bitrate})", "Actions" : "Дії", @@ -130,21 +131,6 @@ "Tags" : "Теги", "Deleted files" : "Видалені файли", "Text file" : "Текстовий файл", - "New text file.txt" : "Новий текстовий файл file.txt", - "Uploading..." : "Вивантаження...", - "..." : "...", - "{hours}:{minutes}h" : "{hours}:{minutes} год", - "{seconds}s" : "{seconds} сек", - "Any moment now..." : "В будь-який момент...", - "Soon..." : "Незабаром...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Виконується вивантаження файлу. Закриття цієї сторінки приведе до скасування вивантаження.", - "Move" : "Перемістити", - "Copy local link" : "Копіювати посилання", - "Folder" : "Тека", - "Upload" : "Вивантажити", - "A new file or folder has been deleted" : "Новий файл або теку було видалено", - "A new file or folder has been restored" : "Новий файл або теку було відновлено", - "Use this address to access your Files via WebDAV" : "Використайте цю адресу для доступу через WebDAV", - "No favorites" : "Немає улюблених" + "New text file.txt" : "Новий текстовий файл file.txt" },"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);" } \ No newline at end of file diff --git a/apps/files/l10n/vi.js b/apps/files/l10n/vi.js index 84be1c6173f26..f57b63ab68b7a 100644 --- a/apps/files/l10n/vi.js +++ b/apps/files/l10n/vi.js @@ -124,20 +124,6 @@ OC.L10N.register( "Shared by link" : "Được chia sẻ bởi liên kết", "Tags" : "Nhãn", "Deleted files" : "Thùng rác", - "Text file" : "Tập tin văn bản", - "Uploading..." : "tải lên...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} giờ còn lại"], - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} phút còn lại"], - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} giây còn lại"], - "Any moment now..." : "Sắp xong rồi...", - "Soon..." : "Sớm thôi...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này.", - "Move" : "Di chuyển", - "Copy local link" : "Sao chép liên kết cục bộ", - "Folder" : "Thư mục", - "Upload" : "Tải lên", - "A new file or folder has been restored" : "Một tập tin hoặc thư mục mới đã được khôi phục", - "Use this address to access your Files via WebDAV" : "Sử dụng địa chỉ này để Truy cập tệp của bạn qua WebDAV", - "No favorites" : "Không có mục ưa thích nào" + "Text file" : "Tập tin văn bản" }, "nplurals=1; plural=0;"); diff --git a/apps/files/l10n/vi.json b/apps/files/l10n/vi.json index c630045a4ece6..1210b8fabbfbb 100644 --- a/apps/files/l10n/vi.json +++ b/apps/files/l10n/vi.json @@ -122,20 +122,6 @@ "Shared by link" : "Được chia sẻ bởi liên kết", "Tags" : "Nhãn", "Deleted files" : "Thùng rác", - "Text file" : "Tập tin văn bản", - "Uploading..." : "tải lên...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["{hours}:{minutes}:{seconds} giờ còn lại"], - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["{minutes}:{seconds} phút còn lại"], - "_{seconds} second left_::_{seconds} seconds left_" : ["{seconds} giây còn lại"], - "Any moment now..." : "Sắp xong rồi...", - "Soon..." : "Sớm thôi...", - "File upload is in progress. Leaving the page now will cancel the upload." : "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này.", - "Move" : "Di chuyển", - "Copy local link" : "Sao chép liên kết cục bộ", - "Folder" : "Thư mục", - "Upload" : "Tải lên", - "A new file or folder has been restored" : "Một tập tin hoặc thư mục mới đã được khôi phục", - "Use this address to access your Files via WebDAV" : "Sử dụng địa chỉ này để Truy cập tệp của bạn qua WebDAV", - "No favorites" : "Không có mục ưa thích nào" + "Text file" : "Tập tin văn bản" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files/l10n/zh_CN.js b/apps/files/l10n/zh_CN.js index 1aceaa6eaf47b..f1e0d376991c2 100644 --- a/apps/files/l10n/zh_CN.js +++ b/apps/files/l10n/zh_CN.js @@ -17,8 +17,9 @@ OC.L10N.register( "Target folder \"{dir}\" does not exist any more" : "目标目录 \"{dir}\" 不存在", "Not enough free space" : "可用空间不足", "Uploading …" : "上传中…", - "…" : "undefined", + "…" : "…", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} / {totalSize} ({bitrate})", + "Target folder does not exist any more" : "目标文件夹不存在", "Actions" : "操作", "Download" : "下载", "Rename" : "重命名", @@ -60,8 +61,11 @@ OC.L10N.register( "You don’t have permission to upload or create files here" : "您没有权限在此上传或创建文件", "_Uploading %n file_::_Uploading %n files_" : ["上传 %n 个文件"], "New" : "新建", + "{used} of {quota} used" : "已使用{used} /{quota}", + "{used} used" : "{used} 已使用", "\"{name}\" is an invalid file name." : "\"{name}\" 是一个无效的文件名", "File name cannot be empty." : "文件名不能为空.", + "\"/\" is not allowed inside a file name." : "文件名不能包含“/”", "\"{name}\" is not an allowed filetype" : "\"{name}\" 不是允许的文件类型", "Storage of {owner} is full, files can not be updated or synced anymore!" : "{owner} 的存储空间已满, 文件将无法更新或同步!", "Your storage is full, files can not be updated or synced anymore!" : "您的存储空间已满, 文件将无法更新或同步!", @@ -77,6 +81,9 @@ OC.L10N.register( "Favorite" : "收藏", "New folder" : "新建文件夹", "Upload file" : "上传文件", + "Not favorited" : "不受欢迎的", + "Remove from favorites" : "取消收藏", + "Add to favorites" : "收藏", "An error occurred while trying to update the tags" : "更新标签时出错", "Added to favorites" : "已添加到收藏", "Removed from favorites" : "取消收藏", @@ -117,7 +124,7 @@ OC.L10N.register( "Save" : "保存", "With PHP-FPM it might take 5 minutes for changes to be applied." : "对于 PHP-FPM 这个值改变后可能需要 5 分钟才会生效.", "Missing permissions to edit from here." : "没有权限编辑", - "%s of %s used" : " %s 的%s 已使用", + "%s of %s used" : "%s 已使用 (共 %s)", "%s used" : "%s 已使用", "Settings" : "设置", "Show hidden files" : "显示隐藏文件", @@ -137,25 +144,7 @@ OC.L10N.register( "Tags" : "标签", "Deleted files" : "已删除的文件", "Text file" : "文本文件", - "New text file.txt" : "创建文本文件 .txt", - "Uploading..." : "正在上传...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["剩余 {hours}:{minutes}:{seconds} 小时"], - "{hours}:{minutes}h" : "{hours}:{minutes}", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["剩余 {minutes}:{seconds} 分钟"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}", - "_{seconds} second left_::_{seconds} seconds left_" : ["剩余 {seconds} 秒"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "现在任何时候...", - "Soon..." : "很快...", - "File upload is in progress. Leaving the page now will cancel the upload." : "文件正在上传中. 离开此页将会取消上传.", - "Move" : "移动", - "Copy local link" : "复制本地链接", - "Folder" : "文件夹", - "Upload" : "上传", - "A new file or folder has been deleted" : "新的文件/文件夹已经 删除", - "A new file or folder has been restored" : "新的文件/文件夹已经恢复", - "Use this address to access your Files via WebDAV" : "使用这个地址 通过 WebDAV 访问您的文件", - "No favorites" : "无收藏" + "New text file.txt" : "新建文本文件.txt", + "Move" : "移动" }, "nplurals=1; plural=0;"); diff --git a/apps/files/l10n/zh_CN.json b/apps/files/l10n/zh_CN.json index d326104673bc2..f2396a979ec42 100644 --- a/apps/files/l10n/zh_CN.json +++ b/apps/files/l10n/zh_CN.json @@ -15,8 +15,9 @@ "Target folder \"{dir}\" does not exist any more" : "目标目录 \"{dir}\" 不存在", "Not enough free space" : "可用空间不足", "Uploading …" : "上传中…", - "…" : "undefined", + "…" : "…", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize} / {totalSize} ({bitrate})", + "Target folder does not exist any more" : "目标文件夹不存在", "Actions" : "操作", "Download" : "下载", "Rename" : "重命名", @@ -58,8 +59,11 @@ "You don’t have permission to upload or create files here" : "您没有权限在此上传或创建文件", "_Uploading %n file_::_Uploading %n files_" : ["上传 %n 个文件"], "New" : "新建", + "{used} of {quota} used" : "已使用{used} /{quota}", + "{used} used" : "{used} 已使用", "\"{name}\" is an invalid file name." : "\"{name}\" 是一个无效的文件名", "File name cannot be empty." : "文件名不能为空.", + "\"/\" is not allowed inside a file name." : "文件名不能包含“/”", "\"{name}\" is not an allowed filetype" : "\"{name}\" 不是允许的文件类型", "Storage of {owner} is full, files can not be updated or synced anymore!" : "{owner} 的存储空间已满, 文件将无法更新或同步!", "Your storage is full, files can not be updated or synced anymore!" : "您的存储空间已满, 文件将无法更新或同步!", @@ -75,6 +79,9 @@ "Favorite" : "收藏", "New folder" : "新建文件夹", "Upload file" : "上传文件", + "Not favorited" : "不受欢迎的", + "Remove from favorites" : "取消收藏", + "Add to favorites" : "收藏", "An error occurred while trying to update the tags" : "更新标签时出错", "Added to favorites" : "已添加到收藏", "Removed from favorites" : "取消收藏", @@ -115,7 +122,7 @@ "Save" : "保存", "With PHP-FPM it might take 5 minutes for changes to be applied." : "对于 PHP-FPM 这个值改变后可能需要 5 分钟才会生效.", "Missing permissions to edit from here." : "没有权限编辑", - "%s of %s used" : " %s 的%s 已使用", + "%s of %s used" : "%s 已使用 (共 %s)", "%s used" : "%s 已使用", "Settings" : "设置", "Show hidden files" : "显示隐藏文件", @@ -135,25 +142,7 @@ "Tags" : "标签", "Deleted files" : "已删除的文件", "Text file" : "文本文件", - "New text file.txt" : "创建文本文件 .txt", - "Uploading..." : "正在上传...", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["剩余 {hours}:{minutes}:{seconds} 小时"], - "{hours}:{minutes}h" : "{hours}:{minutes}", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["剩余 {minutes}:{seconds} 分钟"], - "{minutes}:{seconds}m" : "{minutes}:{seconds}", - "_{seconds} second left_::_{seconds} seconds left_" : ["剩余 {seconds} 秒"], - "{seconds}s" : "{seconds}s", - "Any moment now..." : "现在任何时候...", - "Soon..." : "很快...", - "File upload is in progress. Leaving the page now will cancel the upload." : "文件正在上传中. 离开此页将会取消上传.", - "Move" : "移动", - "Copy local link" : "复制本地链接", - "Folder" : "文件夹", - "Upload" : "上传", - "A new file or folder has been deleted" : "新的文件/文件夹已经 删除", - "A new file or folder has been restored" : "新的文件/文件夹已经恢复", - "Use this address to access your Files via WebDAV" : "使用这个地址 通过 WebDAV 访问您的文件", - "No favorites" : "无收藏" + "New text file.txt" : "新建文本文件.txt", + "Move" : "移动" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files/l10n/zh_TW.js b/apps/files/l10n/zh_TW.js index 20c998274a10c..4d1569741d38d 100644 --- a/apps/files/l10n/zh_TW.js +++ b/apps/files/l10n/zh_TW.js @@ -25,6 +25,7 @@ OC.L10N.register( "Download" : "下載", "Rename" : "重新命名", "Move or copy" : "移動或複製", + "Copy" : "複製", "Target folder" : "目標資料夾", "Delete" : "刪除", "Disconnect storage" : "斷開儲存空間連接", @@ -62,8 +63,11 @@ OC.L10N.register( "You don’t have permission to upload or create files here" : "您沒有權限在這裡上傳或建立檔案", "_Uploading %n file_::_Uploading %n files_" : ["正在上傳 %n 個檔案"], "New" : "新增", + "{used} of {quota} used" : "已使用 {quota} 當中的 {used}", + "{used} used" : "已使用 {used}", "\"{name}\" is an invalid file name." : "{name} 是無效的檔名", "File name cannot be empty." : "檔名不能為空", + "\"/\" is not allowed inside a file name." : "不允許檔名中出現 \"/\"", "\"{name}\" is not an allowed filetype" : "\"{name}\" 是不允許的檔案類型", "Storage of {owner} is full, files can not be updated or synced anymore!" : "{owner} 的儲存空間已滿,沒有辦法再更新或是同步檔案!", "Your storage is full, files can not be updated or synced anymore!" : "您的儲存空間已滿,沒有辦法再更新或是同步檔案!", @@ -96,12 +100,18 @@ OC.L10N.register( "Moved by {user}" : "由 {user} 移動", "\"remote user\"" : "「遠端用戶」", "You created {file}" : "您建立了 {file}", + "You created an encrypted file in {file}" : "您在 {file} 建立了一個加密的檔案", "{user} created {file}" : "{user} 建立了 {file}", + "{user} created an encrypted file in {file}" : "{user} 在 {file} 建立了一個加密的檔案", "{file} was created in a public folder" : "{file} 已建立於共享資料夾", "You changed {file}" : "您變更了 {file}", + "You changed an encrypted file in {file}" : "您在 {file} 修改了一個加密的檔案", "{user} changed {file}" : "{user} 變更了 {file}", + "{user} changed an encrypted file in {file}" : "{user} 在 {file} 修改了一個加密的檔案", "You deleted {file}" : "您刪除了 {file}", + "You deleted an encrypted file in {file}" : "您在 {file} 刪除了一個加密的檔案", "{user} deleted {file}" : "{user} 刪除了 {file}", + "{user} deleted an encrypted file in {file}" : "{user} 在 {file} 刪除了一個加密的檔案", "You restored {file}" : "您還原了 {file}", "{user} restored {file}" : "{user} 還原了 {file}", "You renamed {oldfile} to {newfile}" : "您變更 {oldfile} 為 {newfile}", @@ -144,24 +154,9 @@ OC.L10N.register( "Deleted files" : "回收桶", "Text file" : "文字檔", "New text file.txt" : "新文字檔.txt", - "Uploading..." : "上傳中…", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["剩下 {hours}:{minutes}:{seconds} 小時"], - "{hours}:{minutes}h" : "{hours}:{minutes} 小時", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["剩下 {minutes}:{seconds} 分鐘"], - "{minutes}:{seconds}m" : "{minutes}:{seconds} 分", - "_{seconds} second left_::_{seconds} seconds left_" : ["剩下 {seconds} 秒"], - "{seconds}s" : "{seconds} 秒", - "Any moment now..." : "即將完成…", - "Soon..." : "即將完成…", - "File upload is in progress. Leaving the page now will cancel the upload." : "檔案上傳中,離開此頁面將會取消上傳", "Move" : "移動", - "Copy local link" : "複製本地連結", - "Folder" : "資料夾", - "Upload" : "上傳", - "A new file or folder has been deleted" : "檔案或目錄已被 刪除", - "A new file or folder has been restored" : "檔案或目錄已被 恢復", - "Use this address to access your Files via WebDAV" : "使用這個位址來使用 WebDAV 存取檔案", - "No favorites" : "沒有最愛" + "A new file or folder has been deleted" : "一個新的檔案或資料夾已經被刪除", + "A new file or folder has been restored" : "一個新的檔案或資料夾已經被還原", + "Use this address to access your Files via WebDAV" : "使用這個地址來透過 WebDAV 存取您的檔案" }, "nplurals=1; plural=0;"); diff --git a/apps/files/l10n/zh_TW.json b/apps/files/l10n/zh_TW.json index cd52bc82a7973..b1403be8cb398 100644 --- a/apps/files/l10n/zh_TW.json +++ b/apps/files/l10n/zh_TW.json @@ -23,6 +23,7 @@ "Download" : "下載", "Rename" : "重新命名", "Move or copy" : "移動或複製", + "Copy" : "複製", "Target folder" : "目標資料夾", "Delete" : "刪除", "Disconnect storage" : "斷開儲存空間連接", @@ -60,8 +61,11 @@ "You don’t have permission to upload or create files here" : "您沒有權限在這裡上傳或建立檔案", "_Uploading %n file_::_Uploading %n files_" : ["正在上傳 %n 個檔案"], "New" : "新增", + "{used} of {quota} used" : "已使用 {quota} 當中的 {used}", + "{used} used" : "已使用 {used}", "\"{name}\" is an invalid file name." : "{name} 是無效的檔名", "File name cannot be empty." : "檔名不能為空", + "\"/\" is not allowed inside a file name." : "不允許檔名中出現 \"/\"", "\"{name}\" is not an allowed filetype" : "\"{name}\" 是不允許的檔案類型", "Storage of {owner} is full, files can not be updated or synced anymore!" : "{owner} 的儲存空間已滿,沒有辦法再更新或是同步檔案!", "Your storage is full, files can not be updated or synced anymore!" : "您的儲存空間已滿,沒有辦法再更新或是同步檔案!", @@ -94,12 +98,18 @@ "Moved by {user}" : "由 {user} 移動", "\"remote user\"" : "「遠端用戶」", "You created {file}" : "您建立了 {file}", + "You created an encrypted file in {file}" : "您在 {file} 建立了一個加密的檔案", "{user} created {file}" : "{user} 建立了 {file}", + "{user} created an encrypted file in {file}" : "{user} 在 {file} 建立了一個加密的檔案", "{file} was created in a public folder" : "{file} 已建立於共享資料夾", "You changed {file}" : "您變更了 {file}", + "You changed an encrypted file in {file}" : "您在 {file} 修改了一個加密的檔案", "{user} changed {file}" : "{user} 變更了 {file}", + "{user} changed an encrypted file in {file}" : "{user} 在 {file} 修改了一個加密的檔案", "You deleted {file}" : "您刪除了 {file}", + "You deleted an encrypted file in {file}" : "您在 {file} 刪除了一個加密的檔案", "{user} deleted {file}" : "{user} 刪除了 {file}", + "{user} deleted an encrypted file in {file}" : "{user} 在 {file} 刪除了一個加密的檔案", "You restored {file}" : "您還原了 {file}", "{user} restored {file}" : "{user} 還原了 {file}", "You renamed {oldfile} to {newfile}" : "您變更 {oldfile} 為 {newfile}", @@ -142,24 +152,9 @@ "Deleted files" : "回收桶", "Text file" : "文字檔", "New text file.txt" : "新文字檔.txt", - "Uploading..." : "上傳中…", - "..." : "...", - "_{hours}:{minutes}:{seconds} hour left_::_{hours}:{minutes}:{seconds} hours left_" : ["剩下 {hours}:{minutes}:{seconds} 小時"], - "{hours}:{minutes}h" : "{hours}:{minutes} 小時", - "_{minutes}:{seconds} minute left_::_{minutes}:{seconds} minutes left_" : ["剩下 {minutes}:{seconds} 分鐘"], - "{minutes}:{seconds}m" : "{minutes}:{seconds} 分", - "_{seconds} second left_::_{seconds} seconds left_" : ["剩下 {seconds} 秒"], - "{seconds}s" : "{seconds} 秒", - "Any moment now..." : "即將完成…", - "Soon..." : "即將完成…", - "File upload is in progress. Leaving the page now will cancel the upload." : "檔案上傳中,離開此頁面將會取消上傳", "Move" : "移動", - "Copy local link" : "複製本地連結", - "Folder" : "資料夾", - "Upload" : "上傳", - "A new file or folder has been deleted" : "檔案或目錄已被 刪除", - "A new file or folder has been restored" : "檔案或目錄已被 恢復", - "Use this address to access your Files via WebDAV" : "使用這個位址來使用 WebDAV 存取檔案", - "No favorites" : "沒有最愛" + "A new file or folder has been deleted" : "一個新的檔案或資料夾已經被刪除", + "A new file or folder has been restored" : "一個新的檔案或資料夾已經被還原", + "Use this address to access your Files via WebDAV" : "使用這個地址來透過 WebDAV 存取您的檔案" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files/lib/Activity/Provider.php b/apps/files/lib/Activity/Provider.php index 3da1f3c115750..e868e1c464adc 100644 --- a/apps/files/lib/Activity/Provider.php +++ b/apps/files/lib/Activity/Provider.php @@ -28,6 +28,11 @@ use OCP\Activity\IEventMerger; use OCP\Activity\IManager; use OCP\Activity\IProvider; +use OCP\Files\Folder; +use OCP\Files\InvalidPathException; +use OCP\Files\IRootFolder; +use OCP\Files\Node; +use OCP\Files\NotFoundException; use OCP\IL10N; use OCP\IURLGenerator; use OCP\IUser; @@ -53,24 +58,31 @@ class Provider implements IProvider { /** @var IUserManager */ protected $userManager; + /** @var IRootFolder */ + protected $rootFolder; + /** @var IEventMerger */ protected $eventMerger; /** @var string[] cached displayNames - key is the UID and value the displayname */ protected $displayNames = []; + protected $fileIsEncrypted = false; + /** * @param IFactory $languageFactory * @param IURLGenerator $url * @param IManager $activityManager * @param IUserManager $userManager + * @param IRootFolder $rootFolder * @param IEventMerger $eventMerger */ - public function __construct(IFactory $languageFactory, IURLGenerator $url, IManager $activityManager, IUserManager $userManager, IEventMerger $eventMerger) { + public function __construct(IFactory $languageFactory, IURLGenerator $url, IManager $activityManager, IUserManager $userManager, IRootFolder $rootFolder, IEventMerger $eventMerger) { $this->languageFactory = $languageFactory; $this->url = $url; $this->activityManager = $activityManager; $this->userManager = $userManager; + $this->rootFolder = $rootFolder; $this->eventMerger = $eventMerger; } @@ -101,6 +113,14 @@ public function parse($language, IEvent $event, IEvent $previousEvent = null) { return $this->parseLongVersion($event, $previousEvent); } + protected function setIcon(IEvent $event, $icon) { + if ($this->activityManager->getRequirePNG()) { + $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', $icon . '.png'))); + } else { + $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', $icon . '.svg'))); + } + } + /** * @param IEvent $event * @param IEvent|null $previousEvent @@ -113,41 +133,21 @@ public function parseShortVersion(IEvent $event, IEvent $previousEvent = null) { if ($event->getSubject() === 'created_by') { $subject = $this->l->t('Created by {user}'); - if ($this->activityManager->getRequirePNG()) { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'add-color.png'))); - } else { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'add-color.svg'))); - } + $this->setIcon($event, 'add-color'); } else if ($event->getSubject() === 'changed_by') { $subject = $this->l->t('Changed by {user}'); - if ($this->activityManager->getRequirePNG()) { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.png'))); - } else { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.svg'))); - } + $this->setIcon($event, 'change'); } else if ($event->getSubject() === 'deleted_by') { $subject = $this->l->t('Deleted by {user}'); - if ($this->activityManager->getRequirePNG()) { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'delete-color.png'))); - } else { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'delete-color.svg'))); - } + $this->setIcon($event, 'delete-color'); } else if ($event->getSubject() === 'restored_by') { $subject = $this->l->t('Restored by {user}'); } else if ($event->getSubject() === 'renamed_by') { $subject = $this->l->t('Renamed by {user}'); - if ($this->activityManager->getRequirePNG()) { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.png'))); - } else { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.svg'))); - } + $this->setIcon($event, 'change'); } else if ($event->getSubject() === 'moved_by') { $subject = $this->l->t('Moved by {user}'); - if ($this->activityManager->getRequirePNG()) { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.png'))); - } else { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.svg'))); - } + $this->setIcon($event, 'change'); } else { throw new \InvalidArgumentException(); } @@ -170,93 +170,72 @@ public function parseShortVersion(IEvent $event, IEvent $previousEvent = null) { * @since 11.0.0 */ public function parseLongVersion(IEvent $event, IEvent $previousEvent = null) { + $this->fileIsEncrypted = false; $parsedParameters = $this->getParameters($event); if ($event->getSubject() === 'created_self') { $subject = $this->l->t('You created {file}'); - if ($this->activityManager->getRequirePNG()) { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'add-color.png'))); - } else { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'add-color.svg'))); + if ($this->fileIsEncrypted) { + $subject = $this->l->t('You created an encrypted file in {file}'); } + $this->setIcon($event, 'add-color'); } else if ($event->getSubject() === 'created_by') { $subject = $this->l->t('{user} created {file}'); - if ($this->activityManager->getRequirePNG()) { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'add-color.png'))); - } else { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'add-color.svg'))); + if ($this->fileIsEncrypted) { + $subject = $this->l->t('{user} created an encrypted file in {file}'); } + $this->setIcon($event, 'add-color'); } else if ($event->getSubject() === 'created_public') { $subject = $this->l->t('{file} was created in a public folder'); - if ($this->activityManager->getRequirePNG()) { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'add-color.png'))); - } else { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'add-color.svg'))); - } + $this->setIcon($event, 'add-color'); } else if ($event->getSubject() === 'changed_self') { $subject = $this->l->t('You changed {file}'); - if ($this->activityManager->getRequirePNG()) { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.png'))); - } else { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.svg'))); + if ($this->fileIsEncrypted) { + $subject = $this->l->t('You changed an encrypted file in {file}'); } + $this->setIcon($event, 'change'); } else if ($event->getSubject() === 'changed_by') { $subject = $this->l->t('{user} changed {file}'); - if ($this->activityManager->getRequirePNG()) { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.png'))); - } else { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.svg'))); + if ($this->fileIsEncrypted) { + $subject = $this->l->t('{user} changed an encrypted file in {file}'); } + $this->setIcon($event, 'change'); } else if ($event->getSubject() === 'deleted_self') { $subject = $this->l->t('You deleted {file}'); - if ($this->activityManager->getRequirePNG()) { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'delete-color.png'))); - } else { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'delete-color.svg'))); + if ($this->fileIsEncrypted) { + $subject = $this->l->t('You deleted an encrypted file in {file}'); } + $this->setIcon($event, 'delete-color'); } else if ($event->getSubject() === 'deleted_by') { $subject = $this->l->t('{user} deleted {file}'); - if ($this->activityManager->getRequirePNG()) { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'delete-color.png'))); - } else { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'delete-color.svg'))); + if ($this->fileIsEncrypted) { + $subject = $this->l->t('{user} deleted an encrypted file in {file}'); } + $this->setIcon($event, 'delete-color'); } else if ($event->getSubject() === 'restored_self') { $subject = $this->l->t('You restored {file}'); } else if ($event->getSubject() === 'restored_by') { $subject = $this->l->t('{user} restored {file}'); } else if ($event->getSubject() === 'renamed_self') { $subject = $this->l->t('You renamed {oldfile} to {newfile}'); - if ($this->activityManager->getRequirePNG()) { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.png'))); - } else { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.svg'))); - } + $this->setIcon($event, 'change'); } else if ($event->getSubject() === 'renamed_by') { $subject = $this->l->t('{user} renamed {oldfile} to {newfile}'); - if ($this->activityManager->getRequirePNG()) { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.png'))); - } else { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.svg'))); - } + $this->setIcon($event, 'change'); } else if ($event->getSubject() === 'moved_self') { $subject = $this->l->t('You moved {oldfile} to {newfile}'); - if ($this->activityManager->getRequirePNG()) { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.png'))); - } else { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.svg'))); - } + $this->setIcon($event, 'change'); } else if ($event->getSubject() === 'moved_by') { $subject = $this->l->t('{user} moved {oldfile} to {newfile}'); - if ($this->activityManager->getRequirePNG()) { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.png'))); - } else { - $event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', 'change.svg'))); - } + $this->setIcon($event, 'change'); } else { throw new \InvalidArgumentException(); } + if ($this->fileIsEncrypted) { + $event->setSubject($event->getSubject() . '_enc', $event->getSubjectParameters()); + } + if (!isset($parsedParameters['user'])) { // External user via public link share $subject = str_replace('{user}', $this->activityLang->t('"remote user"'), $subject); @@ -361,6 +340,30 @@ protected function getFile($parameter, IEvent $event = null) { throw new \InvalidArgumentException('Could not generate file parameter'); } + $encryptionContainer = $this->getEndToEndEncryptionContainer($id, $path); + if ($encryptionContainer instanceof Folder) { + $this->fileIsEncrypted = true; + try { + $fullPath = rtrim($encryptionContainer->getPath(), '/'); + // Remove /user/files/... + list(,,, $path) = explode('/', $fullPath, 4); + if (!$path) { + throw new InvalidPathException('Path could not be split correctly'); + } + + return [ + 'type' => 'file', + 'id' => $encryptionContainer->getId(), + 'name' => $encryptionContainer->getName(), + 'path' => $path, + 'link' => $this->url->linkToRouteAbsolute('files.viewcontroller.showFile', ['fileid' => $encryptionContainer->getId()]), + ]; + } catch (\Exception $e) { + // fall back to the normal one + $this->fileIsEncrypted = false; + } + } + return [ 'type' => 'file', 'id' => $id, @@ -370,6 +373,101 @@ protected function getFile($parameter, IEvent $event = null) { ]; } + protected $fileEncrypted = []; + + /** + * Check if a file is end2end encrypted + * @param int $fileId + * @param string $path + * @return Folder|null + */ + protected function getEndToEndEncryptionContainer($fileId, $path) { + if (isset($this->fileEncrypted[$fileId])) { + return $this->fileEncrypted[$fileId]; + } + + $fileName = basename($path); + if (!preg_match('/^[0-9a-fA-F]{32}$/', $fileName)) { + $this->fileEncrypted[$fileId] = false; + return $this->fileEncrypted[$fileId]; + } + + $userFolder = $this->rootFolder->getUserFolder($this->activityManager->getCurrentUserId()); + $files = $userFolder->getById($fileId); + if (empty($files)) { + try { + // Deleted, try with parent + $file = $this->findExistingParent($userFolder, dirname($path)); + } catch (NotFoundException $e) { + return null; + } + + if (!$file instanceof Folder || !$file->isEncrypted()) { + return null; + } + + $this->fileEncrypted[$fileId] = $file; + return $file; + } + + $file = array_shift($files); + + if ($file instanceof Folder && $file->isEncrypted()) { + // If the folder is encrypted, it is the Container, + // but can be the name is just fine. + $this->fileEncrypted[$fileId] = true; + return null; + } + + $this->fileEncrypted[$fileId] = $this->getParentEndToEndEncryptionContainer($userFolder, $file); + return $this->fileEncrypted[$fileId]; + } + + /** + * @param Folder $userFolder + * @param string $path + * @return Folder + * @throws NotFoundException + */ + protected function findExistingParent(Folder $userFolder, $path) { + if ($path === '/') { + throw new NotFoundException('Reached the root'); + } + + try { + $folder = $userFolder->get(dirname($path)); + } catch (NotFoundException $e) { + return $this->findExistingParent($userFolder, dirname($path)); + } + + return $folder; + } + + /** + * Check all parents until the user's root folder if one is encrypted + * + * @param Folder $userFolder + * @param Node $file + * @return Node|null + */ + protected function getParentEndToEndEncryptionContainer(Folder $userFolder, Node $file) { + try { + $parent = $file->getParent(); + + if ($userFolder->getId() === $parent->getId()) { + return null; + } + } catch (\Exception $e) { + return null; + } + + if ($parent->isEncrypted()) { + return $parent; + } + + return $this->getParentEndToEndEncryptionContainer($userFolder, $parent); + } + /** * @param string $uid * @return array diff --git a/apps/files/tests/Activity/ProviderTest.php b/apps/files/tests/Activity/ProviderTest.php index 4a835f42d751a..f178ff195e4c6 100644 --- a/apps/files/tests/Activity/ProviderTest.php +++ b/apps/files/tests/Activity/ProviderTest.php @@ -28,6 +28,7 @@ use OCP\Activity\IEvent; use OCP\Activity\IEventMerger; use OCP\Activity\IManager; +use OCP\Files\IRootFolder; use OCP\IURLGenerator; use OCP\IUser; use OCP\IUserManager; @@ -49,6 +50,8 @@ class ProviderTest extends TestCase { protected $activityManager; /** @var IUserManager|\PHPUnit_Framework_MockObject_MockObject */ protected $userManager; + /** @var IRootFolder|\PHPUnit_Framework_MockObject_MockObject */ + protected $rootFolder; /** @var IEventMerger|\PHPUnit_Framework_MockObject_MockObject */ protected $eventMerger; @@ -59,6 +62,7 @@ public function setUp() { $this->url = $this->createMock(IURLGenerator::class); $this->activityManager = $this->createMock(IManager::class); $this->userManager = $this->createMock(IUserManager::class); + $this->rootFolder = $this->createMock(IRootFolder::class); $this->eventMerger = $this->createMock(IEventMerger::class); } @@ -74,6 +78,7 @@ protected function getProvider(array $methods = []) { $this->url, $this->activityManager, $this->userManager, + $this->rootFolder, $this->eventMerger, ]) ->setMethods($methods) @@ -84,6 +89,7 @@ protected function getProvider(array $methods = []) { $this->url, $this->activityManager, $this->userManager, + $this->rootFolder, $this->eventMerger ); } diff --git a/apps/files/tests/js/breadcrumbSpec.js b/apps/files/tests/js/breadcrumbSpec.js index 5ec5ad2d6e8c6..14ad42a915dae 100644 --- a/apps/files/tests/js/breadcrumbSpec.js +++ b/apps/files/tests/js/breadcrumbSpec.js @@ -175,10 +175,6 @@ describe('OCA.Files.BreadCrumb tests', function() { beforeEach(function() { dummyDir = '/one/two/three/four/five' - $('div.crumb').each(function(index){ - $(this).css('width', 50); - }); - bc = new BreadCrumb(); // append dummy navigation and controls // as they are currently used for measurements @@ -187,12 +183,23 @@ describe('OCA.Files.BreadCrumb tests', function() { ); $('#controls').append(bc.$el); - // Shrink to show popovermenu - bc.setMaxWidth(300); - - // triggers resize implicitly bc.setDirectory(dummyDir); + $('div.crumb').each(function(index){ + $(this).css('width', 50); + $(this).css('padding', 0); + $(this).css('margin', 0); + }); + $('div.crumbhome').css('width', 51); + $('div.crumbmenu').css('width', 51); + + $('#controls').width(1000); + bc._resize(); + + // Shrink to show popovermenu + $('#controls').width(300); + bc._resize(); + $crumbmenuLink = bc.$el.find('.crumbmenu > a'); $popovermenu = $crumbmenuLink.next('.popovermenu'); }); @@ -236,7 +243,11 @@ describe('OCA.Files.BreadCrumb tests', function() { }); describe('Resizing', function() { - var bc, dummyDir, widths; + var bc, dummyDir, widths, paddings, margins; + + // cit() will skip tests if running on PhantomJS because it does not + // have proper support for flexboxes. + var cit = window.isPhantom?xit:it; beforeEach(function() { dummyDir = '/short name/longer name/looooooooooooonger/' + @@ -257,22 +268,30 @@ describe('OCA.Files.BreadCrumb tests', function() { // results on different browsers due to font engine differences // 51px is default size for menu and home widths = [51, 51, 106, 112, 160, 257, 251, 91]; + // using hard-coded paddings and margins to avoid depending on the + // current CSS values used in the server + paddings = [0, 0, 0, 0, 0, 0, 0, 0]; + margins = [0, 0, 0, 0, 0, 0, 0, 0]; $('div.crumb').each(function(index){ $(this).css('width', widths[index]); + $(this).css('padding', paddings[index]); + $(this).css('margin', margins[index]); }); }); afterEach(function() { bc = null; }); - it('Hides breadcrumbs to fit max allowed width', function() { + it('Hides breadcrumbs to fit available width', function() { var $crumbs; - bc.setMaxWidth(500); + $('#controls').width(500); + bc._resize(); $crumbs = bc.$el.find('.crumb'); - // Menu and home are always visible + // Second, third, fourth and fifth crumb are hidden and everything + // else is visible expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); @@ -283,14 +302,15 @@ describe('OCA.Files.BreadCrumb tests', function() { expect($crumbs.eq(6).hasClass('hidden')).toEqual(true); expect($crumbs.eq(7).hasClass('hidden')).toEqual(false); }); - it('Hides breadcrumbs to fit max allowed width', function() { + it('Hides breadcrumbs to fit available width', function() { var $crumbs; - bc.setMaxWidth(700); + $('#controls').width(700); + bc._resize(); $crumbs = bc.$el.find('.crumb'); - // Menu and home are always visible + // Third and fourth crumb are hidden and everything else is visible expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); @@ -301,23 +321,363 @@ describe('OCA.Files.BreadCrumb tests', function() { expect($crumbs.eq(6).hasClass('hidden')).toEqual(false); expect($crumbs.eq(7).hasClass('hidden')).toEqual(false); }); - it('Updates the breadcrumbs when reducing max allowed width', function() { + it('Hides breadcrumbs to fit available width taking paddings into account', function() { + var $crumbs; + + // Each element is 20px wider + paddings = [10, 10, 10, 10, 10, 10, 10, 10]; + + $('div.crumb').each(function(index){ + $(this).css('padding', paddings[index]); + }); + + $('#controls').width(700); + bc._resize(); + + $crumbs = bc.$el.find('.crumb'); + + // Second, third and fourth crumb are hidden and everything else is + // visible + expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); + + expect($crumbs.eq(2).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(3).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(4).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(5).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(6).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(7).hasClass('hidden')).toEqual(false); + }); + it('Hides breadcrumbs to fit available width taking margins into account', function() { + var $crumbs; + + // Each element is 20px wider + margins = [10, 10, 10, 10, 10, 10, 10, 10]; + + $('div.crumb').each(function(index){ + $(this).css('margin', margins[index]); + }); + + $('#controls').width(700); + bc._resize(); + + $crumbs = bc.$el.find('.crumb'); + + // Second, third and fourth crumb are hidden and everything else is + // visible + expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); + + expect($crumbs.eq(2).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(3).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(4).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(5).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(6).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(7).hasClass('hidden')).toEqual(false); + }); + it('Hides breadcrumbs to fit available width left by siblings', function() { + var $crumbs; + + $('#controls').width(700); + bc._resize(); + + $crumbs = bc.$el.find('.crumb'); + + // Third and fourth crumb are hidden and everything else is visible + expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); + + expect($crumbs.eq(2).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(3).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(4).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(5).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(6).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(7).hasClass('hidden')).toEqual(false); + + // Visible sibling widths add up to 200px + var $previousSibling = $('
'); + // Set both the width and the min-width to even differences in width + // handling in the browsers used to run the tests. + $previousSibling.css('width', '50px'); + $previousSibling.css('min-width', '50px'); + $('#controls').prepend($previousSibling); + + var $creatableActions = $('
'); + // Set both the width and the min-width to even differences in width + // handling in the browsers used to run the tests. + $creatableActions.css('width', '100px'); + $creatableActions.css('min-width', '100px'); + $('#controls').append($creatableActions); + + var $nextHiddenSibling = $(''); + // Set both the width and the min-width to even differences in width + // handling in the browsers used to run the tests. + $nextHiddenSibling.css('width', '200px'); + $nextHiddenSibling.css('min-width', '200px'); + $('#controls').append($nextHiddenSibling); + + var $nextSibling = $('
'); + // Set both the width and the min-width to even differences in width + // handling in the browsers used to run the tests. + $nextSibling.css('width', '50px'); + $nextSibling.css('min-width', '50px'); + $('#controls').append($nextSibling); + + bc._resize(); + + // Second, third, fourth and fifth crumb are hidden and everything + // else is visible + expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); + + expect($crumbs.eq(2).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(3).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(4).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(5).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(6).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(7).hasClass('hidden')).toEqual(false); + }); + it('Hides breadcrumbs to fit available width left by siblings with paddings and margins', function() { + var $crumbs; + + $('#controls').width(700); + bc._resize(); + + $crumbs = bc.$el.find('.crumb'); + + // Third and fourth crumb are hidden and everything else is visible + expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); + + expect($crumbs.eq(2).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(3).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(4).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(5).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(6).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(7).hasClass('hidden')).toEqual(false); + + // Visible sibling widths add up to 200px + var $previousSibling = $('
'); + // Set both the width and the min-width to even differences in width + // handling in the browsers used to run the tests. + $previousSibling.css('width', '10px'); + $previousSibling.css('min-width', '10px'); + $previousSibling.css('margin', '20px'); + $('#controls').prepend($previousSibling); + + var $creatableActions = $('
'); + // Set both the width and the min-width to even differences in width + // handling in the browsers used to run the tests. + $creatableActions.css('width', '20px'); + $creatableActions.css('min-width', '20px'); + $creatableActions.css('margin-left', '40px'); + $creatableActions.css('padding-right', '40px'); + $('#controls').append($creatableActions); + + var $nextHiddenSibling = $(''); + // Set both the width and the min-width to even differences in width + // handling in the browsers used to run the tests. + $nextHiddenSibling.css('width', '200px'); + $nextHiddenSibling.css('min-width', '200px'); + $('#controls').append($nextHiddenSibling); + + var $nextSibling = $('
'); + // Set both the width and the min-width to even differences in width + // handling in the browsers used to run the tests. + $nextSibling.css('width', '10px'); + $nextSibling.css('min-width', '10px'); + $nextSibling.css('padding', '20px'); + $('#controls').append($nextSibling); + + bc._resize(); + + // Second, third, fourth and fifth crumb are hidden and everything + // else is visible + expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); + + expect($crumbs.eq(2).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(3).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(4).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(5).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(6).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(7).hasClass('hidden')).toEqual(false); + }); + it('Updates the breadcrumbs when reducing available width', function() { var $crumbs; // enough space - bc.setMaxWidth(1800); + $('#controls').width(1800); + bc._resize(); + $crumbs = bc.$el.find('.crumb'); // Menu is hidden expect($crumbs.eq(0).hasClass('hidden')).toEqual(true); - // triggers resize implicitly - bc.setDirectory(dummyDir); + // simulate decrease + $('#controls').width(950); + bc._resize(); + + // Third crumb is hidden and everything else is visible + expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); + + expect($crumbs.eq(2).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(3).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(4).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(5).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(6).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(7).hasClass('hidden')).toEqual(false); + }); + it('Updates the breadcrumbs when reducing available width taking into account the menu width', function() { + var $crumbs; + + // enough space + $('#controls').width(1800); + bc._resize(); + + $crumbs = bc.$el.find('.crumb'); + + // Menu is hidden + expect($crumbs.eq(0).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); + + expect($crumbs.eq(2).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(3).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(4).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(5).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(6).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(7).hasClass('hidden')).toEqual(false); // simulate decrease - bc.setMaxWidth(950); + // 650 is enough for all the crumbs except the third and fourth + // ones, but not enough for the menu and all the crumbs except the + // third and fourth ones; the second one has to be hidden too. + $('#controls').width(650); + bc._resize(); + + // Second, third and fourth crumb are hidden and everything else is + // visible + expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); + + expect($crumbs.eq(2).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(3).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(4).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(5).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(6).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(7).hasClass('hidden')).toEqual(false); + }); + it('Updates the breadcrumbs when increasing available width', function() { + var $crumbs; + + // limited space + $('#controls').width(850); + bc._resize(); + + $crumbs = bc.$el.find('.crumb'); + + // Third and fourth crumb are hidden and everything else is visible + expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); + + expect($crumbs.eq(2).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(3).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(4).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(5).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(6).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(7).hasClass('hidden')).toEqual(false); + + // simulate increase + $('#controls').width(1000); + bc._resize(); + + // Third crumb is hidden and everything else is visible + expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); + + expect($crumbs.eq(2).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(3).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(4).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(5).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(6).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(7).hasClass('hidden')).toEqual(false); + }); + it('Updates the breadcrumbs when increasing available width taking into account the menu width', function() { + var $crumbs; + + // limited space + $('#controls').width(850); + bc._resize(); + + $crumbs = bc.$el.find('.crumb'); + + // Third and fourth crumb are hidden and everything else is visible + expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); + + expect($crumbs.eq(2).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(3).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(4).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(5).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(6).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(7).hasClass('hidden')).toEqual(false); + + // simulate increase + // 1030 is enough for all the crumbs if the menu is hidden. + $('#controls').width(1030); + bc._resize(); + + // Menu is hidden and everything else is visible + expect($crumbs.eq(0).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); + + expect($crumbs.eq(2).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(3).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(4).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(5).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(6).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(7).hasClass('hidden')).toEqual(false); + }); + cit('Updates the breadcrumbs when increasing available width with an expanding sibling', function() { + var $crumbs; + + // The sibling expands to fill all the width left by the breadcrumbs + var $nextSibling = $('
'); + // Set both the width and the min-width to even differences in width + // handling in the browsers used to run the tests. + $nextSibling.css('width', '10px'); + $nextSibling.css('min-width', '10px'); + $nextSibling.css('display', 'flex'); + $nextSibling.css('flex', '1 1'); + var $nextSiblingChild = $('
'); + $nextSiblingChild.css('margin-left', 'auto'); + $nextSibling.append($nextSiblingChild); + $('#controls').append($nextSibling); + + // limited space + $('#controls').width(850); + bc._resize(); + + $crumbs = bc.$el.find('.crumb'); + + // Third and fourth crumb are hidden and everything else is visible + expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); + + expect($crumbs.eq(2).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(3).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(4).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(5).hasClass('hidden')).toEqual(true); + expect($crumbs.eq(6).hasClass('hidden')).toEqual(false); + expect($crumbs.eq(7).hasClass('hidden')).toEqual(false); + + // simulate increase + $('#controls').width(1000); + bc._resize(); - // Menu and home are always visible + // Third crumb is hidden and everything else is visible expect($crumbs.eq(0).hasClass('hidden')).toEqual(false); expect($crumbs.eq(1).hasClass('hidden')).toEqual(false); diff --git a/apps/files_external/3rdparty/.gitignore b/apps/files_external/3rdparty/.gitignore index a7913dd430820..ce8b521ff544c 100644 --- a/apps/files_external/3rdparty/.gitignore +++ b/apps/files_external/3rdparty/.gitignore @@ -1,6 +1,7 @@ example.php icewind/smb/tests icewind/smb/install_libsmbclient.sh +icewind/smb/Makefile icewind/smb/.travis.yml icewind/smb/.scrutinizer.yml icewind/streams/tests diff --git a/apps/files_external/3rdparty/composer.json b/apps/files_external/3rdparty/composer.json index 307a062c7e0e0..99e9a81e6a9bc 100644 --- a/apps/files_external/3rdparty/composer.json +++ b/apps/files_external/3rdparty/composer.json @@ -8,7 +8,7 @@ "classmap-authoritative": true }, "require": { - "icewind/smb": "2.0.3", + "icewind/smb": "2.0.5", "icewind/streams": "0.5.2" } } diff --git a/apps/files_external/3rdparty/composer.lock b/apps/files_external/3rdparty/composer.lock index e00a7bd80e41b..6bdf1959dd87d 100644 --- a/apps/files_external/3rdparty/composer.lock +++ b/apps/files_external/3rdparty/composer.lock @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", "This file is @generated automatically" ], - "content-hash": "b6a304e8ab2effa3791b513007fadcbc", + "content-hash": "eaf0f7c6a692656b30a592fe47024ed4", "packages": [ { "name": "icewind/smb", - "version": "v2.0.3", + "version": "v2.0.5", "source": { "type": "git", "url": "https://github.com/icewind1991/SMB.git", - "reference": "8394551bf29a37b884edb33dae8acde369177f32" + "reference": "b888dd81bd05532677e1469849d9065011256a33" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/icewind1991/SMB/zipball/8394551bf29a37b884edb33dae8acde369177f32", - "reference": "8394551bf29a37b884edb33dae8acde369177f32", + "url": "https://api.github.com/repos/icewind1991/SMB/zipball/b888dd81bd05532677e1469849d9065011256a33", + "reference": "b888dd81bd05532677e1469849d9065011256a33", "shasum": "" }, "require": { @@ -45,7 +45,7 @@ } ], "description": "php wrapper for smbclient and libsmbclient-php", - "time": "2017-10-18T16:21:10+00:00" + "time": "2018-03-28T13:51:31+00:00" }, { "name": "icewind/streams", diff --git a/apps/files_external/3rdparty/composer/ClassLoader.php b/apps/files_external/3rdparty/composer/ClassLoader.php index 2c72175e7723a..dc02dfb114fb6 100644 --- a/apps/files_external/3rdparty/composer/ClassLoader.php +++ b/apps/files_external/3rdparty/composer/ClassLoader.php @@ -379,9 +379,9 @@ private function findFileWithExtension($class, $ext) $subPath = substr($subPath, 0, $lastPos); $search = $subPath.'\\'; if (isset($this->prefixDirsPsr4[$search])) { + $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); foreach ($this->prefixDirsPsr4[$search] as $dir) { - $length = $this->prefixLengthsPsr4[$first][$search]; - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $length))) { + if (file_exists($file = $dir . $pathEnd)) { return $file; } } diff --git a/apps/files_external/3rdparty/composer/autoload_classmap.php b/apps/files_external/3rdparty/composer/autoload_classmap.php index 257bdb64eb5cf..b4a1d64eb0fe6 100644 --- a/apps/files_external/3rdparty/composer/autoload_classmap.php +++ b/apps/files_external/3rdparty/composer/autoload_classmap.php @@ -21,6 +21,7 @@ 'Icewind\\SMB\\Exception\\FileInUseException' => $vendorDir . '/icewind/smb/src/Exception/FileInUseException.php', 'Icewind\\SMB\\Exception\\ForbiddenException' => $vendorDir . '/icewind/smb/src/Exception/ForbiddenException.php', 'Icewind\\SMB\\Exception\\HostDownException' => $vendorDir . '/icewind/smb/src/Exception/HostDownException.php', + 'Icewind\\SMB\\Exception\\InvalidArgumentException' => $vendorDir . '/icewind/smb/src/Exception/InvalidArgumentException.php', 'Icewind\\SMB\\Exception\\InvalidHostException' => $vendorDir . '/icewind/smb/src/Exception/InvalidHostException.php', 'Icewind\\SMB\\Exception\\InvalidParameterException' => $vendorDir . '/icewind/smb/src/Exception/InvalidParameterException.php', 'Icewind\\SMB\\Exception\\InvalidPathException' => $vendorDir . '/icewind/smb/src/Exception/InvalidPathException.php', @@ -51,13 +52,13 @@ 'Icewind\\SMB\\Server' => $vendorDir . '/icewind/smb/src/Server.php', 'Icewind\\SMB\\Share' => $vendorDir . '/icewind/smb/src/Share.php', 'Icewind\\SMB\\System' => $vendorDir . '/icewind/smb/src/System.php', - 'Icewind\\SMB\\Test\\AbstractShare' => $vendorDir . '/icewind/smb/tests/AbstractShare.php', - 'Icewind\\SMB\\Test\\NativeShare' => $vendorDir . '/icewind/smb/tests/NativeShare.php', - 'Icewind\\SMB\\Test\\NativeStream' => $vendorDir . '/icewind/smb/tests/NativeStream.php', + 'Icewind\\SMB\\Test\\AbstractShareTest' => $vendorDir . '/icewind/smb/tests/AbstractShareTest.php', + 'Icewind\\SMB\\Test\\NativeShareTestTest' => $vendorDir . '/icewind/smb/tests/NativeShareTestTest.php', + 'Icewind\\SMB\\Test\\NativeStreamTest' => $vendorDir . '/icewind/smb/tests/NativeStreamTest.php', 'Icewind\\SMB\\Test\\NotifyHandlerTest' => $vendorDir . '/icewind/smb/tests/NotifyHandlerTest.php', - 'Icewind\\SMB\\Test\\Parser' => $vendorDir . '/icewind/smb/tests/Parser.php', - 'Icewind\\SMB\\Test\\Server' => $vendorDir . '/icewind/smb/tests/Server.php', - 'Icewind\\SMB\\Test\\Share' => $vendorDir . '/icewind/smb/tests/Share.php', + 'Icewind\\SMB\\Test\\ParserTest' => $vendorDir . '/icewind/smb/tests/ParserTest.php', + 'Icewind\\SMB\\Test\\ServerTest' => $vendorDir . '/icewind/smb/tests/ServerTest.php', + 'Icewind\\SMB\\Test\\ShareTestTest' => $vendorDir . '/icewind/smb/tests/ShareTestTest.php', 'Icewind\\SMB\\Test\\TestCase' => $vendorDir . '/icewind/smb/tests/TestCase.php', 'Icewind\\SMB\\TimeZoneProvider' => $vendorDir . '/icewind/smb/src/TimeZoneProvider.php', 'Icewind\\Streams\\CallbackWrapper' => $vendorDir . '/icewind/streams/src/CallbackWrapper.php', @@ -71,20 +72,21 @@ 'Icewind\\Streams\\PathWrapper' => $vendorDir . '/icewind/streams/src/PathWrapper.php', 'Icewind\\Streams\\RetryWrapper' => $vendorDir . '/icewind/streams/src/RetryWrapper.php', 'Icewind\\Streams\\SeekableWrapper' => $vendorDir . '/icewind/streams/src/SeekableWrapper.php', - 'Icewind\\Streams\\Tests\\CallbackWrapper' => $vendorDir . '/icewind/streams/tests/CallbackWrapper.php', + 'Icewind\\Streams\\Tests\\CallbackWrapperTest' => $vendorDir . '/icewind/streams/tests/CallbackWrapperTest.php', + 'Icewind\\Streams\\Tests\\CountWrapperTest' => $vendorDir . '/icewind/streams/tests/CountWrapperTest.php', 'Icewind\\Streams\\Tests\\DirectoryFilter' => $vendorDir . '/icewind/streams/tests/DirectoryFilter.php', 'Icewind\\Streams\\Tests\\DirectoryWrapper' => $vendorDir . '/icewind/streams/tests/DirectoryWrapper.php', 'Icewind\\Streams\\Tests\\DirectoryWrapperDummy' => $vendorDir . '/icewind/streams/tests/DirectoryWrapper.php', 'Icewind\\Streams\\Tests\\DirectoryWrapperNull' => $vendorDir . '/icewind/streams/tests/DirectoryWrapper.php', 'Icewind\\Streams\\Tests\\FailWrapper' => $vendorDir . '/icewind/streams/tests/RetryWrapper.php', 'Icewind\\Streams\\Tests\\IteratorDirectory' => $vendorDir . '/icewind/streams/tests/IteratorDirectory.php', - 'Icewind\\Streams\\Tests\\NullWrapper' => $vendorDir . '/icewind/streams/tests/NullWrapper.php', + 'Icewind\\Streams\\Tests\\NullWrapperTest' => $vendorDir . '/icewind/streams/tests/NullWrapperTest.php', 'Icewind\\Streams\\Tests\\PartialWrapper' => $vendorDir . '/icewind/streams/tests/RetryWrapper.php', 'Icewind\\Streams\\Tests\\PathWrapper' => $vendorDir . '/icewind/streams/tests/PathWrapper.php', - 'Icewind\\Streams\\Tests\\RetryWrapper' => $vendorDir . '/icewind/streams/tests/RetryWrapper.php', + 'Icewind\\Streams\\Tests\\RetryWrapperTest' => $vendorDir . '/icewind/streams/tests/RetryWrapper.php', 'Icewind\\Streams\\Tests\\SeekableWrapper' => $vendorDir . '/icewind/streams/tests/SeekableWrapper.php', 'Icewind\\Streams\\Tests\\UrlCallBack' => $vendorDir . '/icewind/streams/tests/UrlCallBack.php', - 'Icewind\\Streams\\Tests\\Wrapper' => $vendorDir . '/icewind/streams/tests/Wrapper.php', + 'Icewind\\Streams\\Tests\\WrapperTest' => $vendorDir . '/icewind/streams/tests/WrapperTest.php', 'Icewind\\Streams\\Url' => $vendorDir . '/icewind/streams/src/Url.php', 'Icewind\\Streams\\UrlCallback' => $vendorDir . '/icewind/streams/src/UrlCallBack.php', 'Icewind\\Streams\\Wrapper' => $vendorDir . '/icewind/streams/src/Wrapper.php', diff --git a/apps/files_external/3rdparty/composer/autoload_static.php b/apps/files_external/3rdparty/composer/autoload_static.php index 62be2df6a0d41..68698ad1bf8a6 100644 --- a/apps/files_external/3rdparty/composer/autoload_static.php +++ b/apps/files_external/3rdparty/composer/autoload_static.php @@ -51,6 +51,7 @@ class ComposerStaticInit98fe9b281934250b3a93f69a5ce843b3 'Icewind\\SMB\\Exception\\FileInUseException' => __DIR__ . '/..' . '/icewind/smb/src/Exception/FileInUseException.php', 'Icewind\\SMB\\Exception\\ForbiddenException' => __DIR__ . '/..' . '/icewind/smb/src/Exception/ForbiddenException.php', 'Icewind\\SMB\\Exception\\HostDownException' => __DIR__ . '/..' . '/icewind/smb/src/Exception/HostDownException.php', + 'Icewind\\SMB\\Exception\\InvalidArgumentException' => __DIR__ . '/..' . '/icewind/smb/src/Exception/InvalidArgumentException.php', 'Icewind\\SMB\\Exception\\InvalidHostException' => __DIR__ . '/..' . '/icewind/smb/src/Exception/InvalidHostException.php', 'Icewind\\SMB\\Exception\\InvalidParameterException' => __DIR__ . '/..' . '/icewind/smb/src/Exception/InvalidParameterException.php', 'Icewind\\SMB\\Exception\\InvalidPathException' => __DIR__ . '/..' . '/icewind/smb/src/Exception/InvalidPathException.php', @@ -81,13 +82,13 @@ class ComposerStaticInit98fe9b281934250b3a93f69a5ce843b3 'Icewind\\SMB\\Server' => __DIR__ . '/..' . '/icewind/smb/src/Server.php', 'Icewind\\SMB\\Share' => __DIR__ . '/..' . '/icewind/smb/src/Share.php', 'Icewind\\SMB\\System' => __DIR__ . '/..' . '/icewind/smb/src/System.php', - 'Icewind\\SMB\\Test\\AbstractShare' => __DIR__ . '/..' . '/icewind/smb/tests/AbstractShare.php', - 'Icewind\\SMB\\Test\\NativeShare' => __DIR__ . '/..' . '/icewind/smb/tests/NativeShare.php', - 'Icewind\\SMB\\Test\\NativeStream' => __DIR__ . '/..' . '/icewind/smb/tests/NativeStream.php', + 'Icewind\\SMB\\Test\\AbstractShareTest' => __DIR__ . '/..' . '/icewind/smb/tests/AbstractShareTest.php', + 'Icewind\\SMB\\Test\\NativeShareTestTest' => __DIR__ . '/..' . '/icewind/smb/tests/NativeShareTestTest.php', + 'Icewind\\SMB\\Test\\NativeStreamTest' => __DIR__ . '/..' . '/icewind/smb/tests/NativeStreamTest.php', 'Icewind\\SMB\\Test\\NotifyHandlerTest' => __DIR__ . '/..' . '/icewind/smb/tests/NotifyHandlerTest.php', - 'Icewind\\SMB\\Test\\Parser' => __DIR__ . '/..' . '/icewind/smb/tests/Parser.php', - 'Icewind\\SMB\\Test\\Server' => __DIR__ . '/..' . '/icewind/smb/tests/Server.php', - 'Icewind\\SMB\\Test\\Share' => __DIR__ . '/..' . '/icewind/smb/tests/Share.php', + 'Icewind\\SMB\\Test\\ParserTest' => __DIR__ . '/..' . '/icewind/smb/tests/ParserTest.php', + 'Icewind\\SMB\\Test\\ServerTest' => __DIR__ . '/..' . '/icewind/smb/tests/ServerTest.php', + 'Icewind\\SMB\\Test\\ShareTestTest' => __DIR__ . '/..' . '/icewind/smb/tests/ShareTestTest.php', 'Icewind\\SMB\\Test\\TestCase' => __DIR__ . '/..' . '/icewind/smb/tests/TestCase.php', 'Icewind\\SMB\\TimeZoneProvider' => __DIR__ . '/..' . '/icewind/smb/src/TimeZoneProvider.php', 'Icewind\\Streams\\CallbackWrapper' => __DIR__ . '/..' . '/icewind/streams/src/CallbackWrapper.php', @@ -101,20 +102,21 @@ class ComposerStaticInit98fe9b281934250b3a93f69a5ce843b3 'Icewind\\Streams\\PathWrapper' => __DIR__ . '/..' . '/icewind/streams/src/PathWrapper.php', 'Icewind\\Streams\\RetryWrapper' => __DIR__ . '/..' . '/icewind/streams/src/RetryWrapper.php', 'Icewind\\Streams\\SeekableWrapper' => __DIR__ . '/..' . '/icewind/streams/src/SeekableWrapper.php', - 'Icewind\\Streams\\Tests\\CallbackWrapper' => __DIR__ . '/..' . '/icewind/streams/tests/CallbackWrapper.php', + 'Icewind\\Streams\\Tests\\CallbackWrapperTest' => __DIR__ . '/..' . '/icewind/streams/tests/CallbackWrapperTest.php', + 'Icewind\\Streams\\Tests\\CountWrapperTest' => __DIR__ . '/..' . '/icewind/streams/tests/CountWrapperTest.php', 'Icewind\\Streams\\Tests\\DirectoryFilter' => __DIR__ . '/..' . '/icewind/streams/tests/DirectoryFilter.php', 'Icewind\\Streams\\Tests\\DirectoryWrapper' => __DIR__ . '/..' . '/icewind/streams/tests/DirectoryWrapper.php', 'Icewind\\Streams\\Tests\\DirectoryWrapperDummy' => __DIR__ . '/..' . '/icewind/streams/tests/DirectoryWrapper.php', 'Icewind\\Streams\\Tests\\DirectoryWrapperNull' => __DIR__ . '/..' . '/icewind/streams/tests/DirectoryWrapper.php', 'Icewind\\Streams\\Tests\\FailWrapper' => __DIR__ . '/..' . '/icewind/streams/tests/RetryWrapper.php', 'Icewind\\Streams\\Tests\\IteratorDirectory' => __DIR__ . '/..' . '/icewind/streams/tests/IteratorDirectory.php', - 'Icewind\\Streams\\Tests\\NullWrapper' => __DIR__ . '/..' . '/icewind/streams/tests/NullWrapper.php', + 'Icewind\\Streams\\Tests\\NullWrapperTest' => __DIR__ . '/..' . '/icewind/streams/tests/NullWrapperTest.php', 'Icewind\\Streams\\Tests\\PartialWrapper' => __DIR__ . '/..' . '/icewind/streams/tests/RetryWrapper.php', 'Icewind\\Streams\\Tests\\PathWrapper' => __DIR__ . '/..' . '/icewind/streams/tests/PathWrapper.php', - 'Icewind\\Streams\\Tests\\RetryWrapper' => __DIR__ . '/..' . '/icewind/streams/tests/RetryWrapper.php', + 'Icewind\\Streams\\Tests\\RetryWrapperTest' => __DIR__ . '/..' . '/icewind/streams/tests/RetryWrapper.php', 'Icewind\\Streams\\Tests\\SeekableWrapper' => __DIR__ . '/..' . '/icewind/streams/tests/SeekableWrapper.php', 'Icewind\\Streams\\Tests\\UrlCallBack' => __DIR__ . '/..' . '/icewind/streams/tests/UrlCallBack.php', - 'Icewind\\Streams\\Tests\\Wrapper' => __DIR__ . '/..' . '/icewind/streams/tests/Wrapper.php', + 'Icewind\\Streams\\Tests\\WrapperTest' => __DIR__ . '/..' . '/icewind/streams/tests/WrapperTest.php', 'Icewind\\Streams\\Url' => __DIR__ . '/..' . '/icewind/streams/src/Url.php', 'Icewind\\Streams\\UrlCallback' => __DIR__ . '/..' . '/icewind/streams/src/UrlCallBack.php', 'Icewind\\Streams\\Wrapper' => __DIR__ . '/..' . '/icewind/streams/src/Wrapper.php', diff --git a/apps/files_external/3rdparty/composer/installed.json b/apps/files_external/3rdparty/composer/installed.json index 6855971a9f15a..61929b065a2cd 100644 --- a/apps/files_external/3rdparty/composer/installed.json +++ b/apps/files_external/3rdparty/composer/installed.json @@ -1,33 +1,33 @@ [ { - "name": "icewind/streams", - "version": "0.5.2", - "version_normalized": "0.5.2.0", + "name": "icewind/smb", + "version": "v2.0.5", + "version_normalized": "2.0.5.0", "source": { "type": "git", - "url": "https://github.com/icewind1991/Streams.git", - "reference": "6bfd2fdbd99319f5e010d0a684409189a562cb1e" + "url": "https://github.com/icewind1991/SMB.git", + "reference": "b888dd81bd05532677e1469849d9065011256a33" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/icewind1991/Streams/zipball/6bfd2fdbd99319f5e010d0a684409189a562cb1e", - "reference": "6bfd2fdbd99319f5e010d0a684409189a562cb1e", + "url": "https://api.github.com/repos/icewind1991/SMB/zipball/b888dd81bd05532677e1469849d9065011256a33", + "reference": "b888dd81bd05532677e1469849d9065011256a33", "shasum": "" }, "require": { - "php": ">=5.3" + "icewind/streams": ">=0.2.0", + "php": ">=5.4" }, "require-dev": { - "phpunit/phpunit": "^4.8", - "satooshi/php-coveralls": "v1.0.0" + "phpunit/phpunit": "^4.8" }, - "time": "2016-12-02T14:21:23+00:00", + "time": "2018-03-28T13:51:31+00:00", "type": "library", - "installation-source": "dist", + "installation-source": "source", "autoload": { "psr-4": { - "Icewind\\Streams\\Tests\\": "tests/", - "Icewind\\Streams\\": "src/" + "Icewind\\SMB\\": "src/", + "Icewind\\SMB\\Test\\": "tests/" } }, "notification-url": "https://packagist.org/downloads/", @@ -40,37 +40,37 @@ "email": "icewind@owncloud.com" } ], - "description": "A set of generic stream wrappers" + "description": "php wrapper for smbclient and libsmbclient-php" }, { - "name": "icewind/smb", - "version": "v2.0.3", - "version_normalized": "2.0.3.0", + "name": "icewind/streams", + "version": "0.5.2", + "version_normalized": "0.5.2.0", "source": { "type": "git", - "url": "https://github.com/icewind1991/SMB.git", - "reference": "8394551bf29a37b884edb33dae8acde369177f32" + "url": "https://github.com/icewind1991/Streams.git", + "reference": "6bfd2fdbd99319f5e010d0a684409189a562cb1e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/icewind1991/SMB/zipball/8394551bf29a37b884edb33dae8acde369177f32", - "reference": "8394551bf29a37b884edb33dae8acde369177f32", + "url": "https://api.github.com/repos/icewind1991/Streams/zipball/6bfd2fdbd99319f5e010d0a684409189a562cb1e", + "reference": "6bfd2fdbd99319f5e010d0a684409189a562cb1e", "shasum": "" }, "require": { - "icewind/streams": ">=0.2.0", - "php": ">=5.4" + "php": ">=5.3" }, "require-dev": { - "phpunit/phpunit": "^4.8" + "phpunit/phpunit": "^4.8", + "satooshi/php-coveralls": "v1.0.0" }, - "time": "2017-10-18T16:21:10+00:00", + "time": "2016-12-02T14:21:23+00:00", "type": "library", - "installation-source": "source", + "installation-source": "dist", "autoload": { "psr-4": { - "Icewind\\SMB\\": "src/", - "Icewind\\SMB\\Test\\": "tests/" + "Icewind\\Streams\\Tests\\": "tests/", + "Icewind\\Streams\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -83,6 +83,6 @@ "email": "icewind@owncloud.com" } ], - "description": "php wrapper for smbclient and libsmbclient-php" + "description": "A set of generic stream wrappers" } ] diff --git a/apps/files_external/3rdparty/icewind/smb/src/AbstractShare.php b/apps/files_external/3rdparty/icewind/smb/src/AbstractShare.php index a5cfe59a3c444..0af03ff56988d 100644 --- a/apps/files_external/3rdparty/icewind/smb/src/AbstractShare.php +++ b/apps/files_external/3rdparty/icewind/smb/src/AbstractShare.php @@ -23,4 +23,8 @@ protected function verifyPath($path) { } } } + + public function setForbiddenChars(array $charList) { + $this->forbiddenCharacters = $charList; + } } diff --git a/apps/files_external/3rdparty/icewind/smb/src/Connection.php b/apps/files_external/3rdparty/icewind/smb/src/Connection.php index c1ebb861711a8..661a361ec544b 100644 --- a/apps/files_external/3rdparty/icewind/smb/src/Connection.php +++ b/apps/files_external/3rdparty/icewind/smb/src/Connection.php @@ -34,6 +34,19 @@ public function write($input) { parent::write($input . PHP_EOL); } + /** + * @throws ConnectException + */ + public function clearTillPrompt() { + $this->write(''); + do { + $promptLine = $this->readLine(); + $this->parser->checkConnectionError($promptLine); + } while (!$this->isPrompt($promptLine)); + $this->write(''); + $this->readLine(); + } + /** * get all unprocessed output from smbclient until the next prompt * diff --git a/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidArgumentException.php b/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidArgumentException.php new file mode 100644 index 0000000000000..f12bb3a348952 --- /dev/null +++ b/apps/files_external/3rdparty/icewind/smb/src/Exception/InvalidArgumentException.php @@ -0,0 +1,10 @@ + + * This file is licensed under the Licensed under the MIT license: + * http://opensource.org/licenses/MIT + */ + +namespace Icewind\SMB\Exception; + +class InvalidArgumentException extends InvalidRequestException {} diff --git a/apps/files_external/3rdparty/icewind/smb/src/NativeShare.php b/apps/files_external/3rdparty/icewind/smb/src/NativeShare.php index 228d9cd7d2ea2..9653e6064b2c9 100644 --- a/apps/files_external/3rdparty/icewind/smb/src/NativeShare.php +++ b/apps/files_external/3rdparty/icewind/smb/src/NativeShare.php @@ -34,7 +34,6 @@ public function __construct($server, $name) { parent::__construct(); $this->server = $server; $this->name = $name; - $this->state = new NativeState(); } /** @@ -42,12 +41,14 @@ public function __construct($server, $name) { * @throws \Icewind\SMB\Exception\AuthenticationException * @throws \Icewind\SMB\Exception\InvalidHostException */ - protected function connect() { - if ($this->state and $this->state instanceof NativeShare) { - return; + protected function getState() { + if ($this->state and $this->state instanceof NativeState) { + return $this->state; } + $this->state = new NativeState(); $this->state->init($this->server->getWorkgroup(), $this->server->getUser(), $this->server->getPassword()); + return $this->state; } /** @@ -60,7 +61,6 @@ public function getName() { } private function buildUrl($path) { - $this->connect(); $this->verifyPath($path); $url = sprintf('smb://%s/%s', $this->server->getHost(), $this->name); if ($path) { @@ -83,15 +83,15 @@ private function buildUrl($path) { public function dir($path) { $files = array(); - $dh = $this->state->opendir($this->buildUrl($path)); - while ($file = $this->state->readdir($dh)) { + $dh = $this->getState()->opendir($this->buildUrl($path)); + while ($file = $this->getState()->readdir($dh)) { $name = $file['name']; if ($name !== '.' and $name !== '..') { $files [] = new NativeFileInfo($this, $path . '/' . $name, $name); } } - $this->state->closedir($dh); + $this->getState()->closedir($dh); return $files; } @@ -104,7 +104,7 @@ public function stat($path) { } public function getStat($path) { - return $this->state->stat($this->buildUrl($path)); + return $this->getState()->stat($this->buildUrl($path)); } /** @@ -117,7 +117,7 @@ public function getStat($path) { * @throws \Icewind\SMB\Exception\AlreadyExistsException */ public function mkdir($path) { - return $this->state->mkdir($this->buildUrl($path)); + return $this->getState()->mkdir($this->buildUrl($path)); } /** @@ -130,7 +130,7 @@ public function mkdir($path) { * @throws \Icewind\SMB\Exception\InvalidTypeException */ public function rmdir($path) { - return $this->state->rmdir($this->buildUrl($path)); + return $this->getState()->rmdir($this->buildUrl($path)); } /** @@ -143,7 +143,7 @@ public function rmdir($path) { * @throws \Icewind\SMB\Exception\InvalidTypeException */ public function del($path) { - return $this->state->unlink($this->buildUrl($path)); + return $this->getState()->unlink($this->buildUrl($path)); } /** @@ -157,7 +157,7 @@ public function del($path) { * @throws \Icewind\SMB\Exception\AlreadyExistsException */ public function rename($from, $to) { - return $this->state->rename($this->buildUrl($from), $this->buildUrl($to)); + return $this->getState()->rename($this->buildUrl($from), $this->buildUrl($to)); } /** @@ -172,12 +172,12 @@ public function rename($from, $to) { */ public function put($source, $target) { $sourceHandle = fopen($source, 'rb'); - $targetHandle = $this->state->create($this->buildUrl($target)); + $targetHandle = $this->getState()->create($this->buildUrl($target)); while ($data = fread($sourceHandle, NativeReadStream::CHUNK_SIZE)) { - $this->state->write($targetHandle, $data); + $this->getState()->write($targetHandle, $data); } - $this->state->close($targetHandle); + $this->getState()->close($targetHandle); return true; } @@ -208,16 +208,16 @@ public function get($source, $target) { throw new InvalidResourceException('Failed opening local file "' . $target . '" for writing: ' . $reason); } - $sourceHandle = $this->state->open($this->buildUrl($source), 'r'); + $sourceHandle = $this->getState()->open($this->buildUrl($source), 'r'); if (!$sourceHandle) { fclose($targetHandle); throw new InvalidResourceException('Failed opening remote file "' . $source . '" for reading'); } - while ($data = $this->state->read($sourceHandle, NativeReadStream::CHUNK_SIZE)) { + while ($data = $this->getState()->read($sourceHandle, NativeReadStream::CHUNK_SIZE)) { fwrite($targetHandle, $data); } - $this->state->close($sourceHandle); + $this->getState()->close($sourceHandle); return true; } @@ -232,8 +232,8 @@ public function get($source, $target) { */ public function read($source) { $url = $this->buildUrl($source); - $handle = $this->state->open($url, 'r'); - return NativeReadStream::wrap($this->state, $handle, 'r', $url); + $handle = $this->getState()->open($url, 'r'); + return NativeReadStream::wrap($this->getState(), $handle, 'r', $url); } /** @@ -247,8 +247,8 @@ public function read($source) { */ public function write($source) { $url = $this->buildUrl($source); - $handle = $this->state->create($url); - return NativeWriteStream::wrap($this->state, $handle, 'w', $url); + $handle = $this->getState()->create($url); + return NativeWriteStream::wrap($this->getState(), $handle, 'w', $url); } /** @@ -259,7 +259,7 @@ public function write($source) { * @return string the attribute value */ public function getAttribute($path, $attribute) { - return $this->state->getxattr($this->buildUrl($path), $attribute); + return $this->getState()->getxattr($this->buildUrl($path), $attribute); } /** @@ -276,7 +276,7 @@ public function setAttribute($path, $attribute, $value) { $value = '0x' . dechex($value); } - return $this->state->setxattr($this->buildUrl($path), $attribute, $value); + return $this->getState()->setxattr($this->buildUrl($path), $attribute, $value); } /** diff --git a/apps/files_external/3rdparty/icewind/smb/src/NativeState.php b/apps/files_external/3rdparty/icewind/smb/src/NativeState.php index 45e0441d2523e..036a02550488b 100644 --- a/apps/files_external/3rdparty/icewind/smb/src/NativeState.php +++ b/apps/files_external/3rdparty/icewind/smb/src/NativeState.php @@ -10,7 +10,7 @@ use Icewind\SMB\Exception\Exception; /** - * Low level wrapper for libsmbclient-php for error handling + * Low level wrapper for libsmbclient-php with error handling */ class NativeState { /** @@ -28,9 +28,11 @@ class NativeState { 1 => '\Icewind\SMB\Exception\ForbiddenException', 2 => '\Icewind\SMB\Exception\NotFoundException', 13 => '\Icewind\SMB\Exception\ForbiddenException', + 16 => '\Icewind\SMB\Exception\FileInUseException', 17 => '\Icewind\SMB\Exception\AlreadyExistsException', 20 => '\Icewind\SMB\Exception\InvalidTypeException', 21 => '\Icewind\SMB\Exception\InvalidTypeException', + 22 => '\Icewind\SMB\Exception\InvalidArgumentException', 28 => '\Icewind\SMB\Exception\OutOfSpaceException', 39 => '\Icewind\SMB\Exception\NotEmptyException', 110 => '\Icewind\SMB\Exception\TimedOutException', @@ -71,6 +73,7 @@ public function init($workGroup, $user, $password) { return true; } $this->state = smbclient_state_new(); + smbclient_option_set($this->state, SMBCLIENT_OPT_AUTO_ANONYMOUS_LOGIN, false); $result = @smbclient_state_init($this->state, $workGroup, $user, $password); $this->testResult($result, ''); diff --git a/apps/files_external/3rdparty/icewind/smb/src/Parser.php b/apps/files_external/3rdparty/icewind/smb/src/Parser.php index 3142f9c29e042..a30032178b1a4 100644 --- a/apps/files_external/3rdparty/icewind/smb/src/Parser.php +++ b/apps/files_external/3rdparty/icewind/smb/src/Parser.php @@ -81,6 +81,7 @@ public function checkForError($output, $path) { * @throws AuthenticationException * @throws InvalidHostException * @throws NoLoginServerException + * @throws AccessDeniedException */ public function checkConnectionError($line) { $line = rtrim($line, ')'); @@ -99,6 +100,9 @@ public function checkConnectionError($line) { if (substr($line, -26) === ErrorCodes::NoLogonServers) { throw new NoLoginServerException('No login server'); } + if (substr($line, -23) === ErrorCodes::AccessDenied) { + throw new AccessDeniedException('Access denied'); + } } public function parseMode($mode) { @@ -133,7 +137,7 @@ public function parseStat($output) { return [ 'mtime' => strtotime($data['write_time']), 'mode' => hexdec(substr($data['attributes'], strpos($data['attributes'], '('), -1)), - 'size' => isset($data['stream']) ? intval(explode(' ', $data['stream'])[1]) : 0 + 'size' => isset($data['stream']) ? (int)(explode(' ', $data['stream'])[1]) : 0 ]; } diff --git a/apps/files_external/3rdparty/icewind/smb/src/Share.php b/apps/files_external/3rdparty/icewind/smb/src/Share.php index 542eaf0887eb1..be1ba02550837 100644 --- a/apps/files_external/3rdparty/icewind/smb/src/Share.php +++ b/apps/files_external/3rdparty/icewind/smb/src/Share.php @@ -72,6 +72,8 @@ protected function getConnection() { if (!$connection->isValid()) { throw new ConnectionException($connection->readLine()); } + // some versions of smbclient add a help message in first of the first prompt + $connection->clearTillPrompt(); return $connection; } @@ -125,6 +127,7 @@ public function dir($path) { //check output for errors $this->parseOutput($output, $path); $output = $this->execute('dir'); + $this->execute('cd /'); return $this->parser->parseDir($output, $path); @@ -367,8 +370,7 @@ public function notify($path) { protected function execute($command) { $this->connect(); $this->connection->write($command . PHP_EOL); - $output = $this->connection->read(); - return $output; + return $this->connection->read(); } /** diff --git a/apps/files_external/js/settings.js b/apps/files_external/js/settings.js index cb9b7ad6822ac..12ad285c52b54 100644 --- a/apps/files_external/js/settings.js +++ b/apps/files_external/js/settings.js @@ -960,6 +960,7 @@ MountConfigListView.prototype = _.extend({ if (result.length === 0 && mainForm.attr('data-can-create') === 'false') { mainForm.hide(); $('a[href="#external-storage"]').parent().hide(); + $('#emptycontent').show(); } onCompletion.resolve(); } diff --git a/apps/files_external/js/statusmanager.js b/apps/files_external/js/statusmanager.js index 3850351d21315..563f8a76493fc 100644 --- a/apps/files_external/js/statusmanager.js +++ b/apps/files_external/js/statusmanager.js @@ -560,9 +560,6 @@ OCA.External.StatusManager.Utils = { case 'windows_network_drive': icon = OC.imagePath('windows_network_drive', 'folder-windows'); break; - case 'sharepoint': - icon = OC.imagePath('sharepoint', 'folder-sharepoint'); - break; } return icon; diff --git a/apps/files_external/l10n/ast.js b/apps/files_external/l10n/ast.js index 0fab7b15e81f2..ec04ba5af8dc5 100644 --- a/apps/files_external/l10n/ast.js +++ b/apps/files_external/l10n/ast.js @@ -1,24 +1,41 @@ OC.L10N.register( "files_external", { - "Step 1 failed. Exception: %s" : "Pasu 1 fallíu. Esceición: %s", - "Step 2 failed. Exception: %s" : "Pasu 2 fallíu. Esceición: %s", - "External storage" : "Almacenamientu esternu", + "External storages" : "Almacenamientos internos", "Personal" : "Personal", "System" : "Sistema", "Grant access" : "Conceder accesu", + "Error configuring OAuth1" : "Fallu configurando Oauth1", + "Error configuring OAuth2" : "Fallu configurando OAuth2", + "Generate keys" : "Xenerar claves", + "Error generating key pair" : "Fallu xenerando'l par de claves", "All users. Type to select user or group." : "Tolos usuarios. Escribe pa seleccionar usuariu o grupu.", "(group)" : "(grupu)", + "Delete storage?" : "¿Desaniciar almacenamientu?", "Saved" : "Guardáu", + "Saving..." : "Guardando...", + "Save" : "Guardar", + "Empty response from the server" : "Rempuesta balera del sirvidor", + "Couldn't access. Please log out and in again to activate this mount point" : "Nun pudo accedese. Volvi aniciar sesión p'activar esti puntu de montaxe, por favor", + "Couldn't get the list of external mount points: {type}" : "Nun pudo consiguise'l llistáu de puntos esternos de montaxe: {type}", + "There was an error with message: " : "Hebo un fallu col mensaxe:", + "External mount error" : "Fallu de montaxe esternu", "Username" : "Nome d'usuariu", "Password" : "Contraseña", - "Save" : "Guardar", + "Invalid mount point" : "Puntu de montaxe non válidu", + "%s" : "%s", + "Secret key" : "Clave secreta", "None" : "Dengún", - "App key" : "App principal", - "App secret" : "App secreta", + "OAuth1" : "OAuth1", + "App key" : "Clave d'aplicación", + "OAuth2" : "OAuth2", "Client ID" : "ID de veceru", "Client secret" : "Veceru secretu", + "Domain" : "Dominiu", "API key" : "clave API", + "Global credentials" : "Credenciales global", + "Username and password" : "Nome d'usuariu y contraseña", + "RSA public key" : "Clave RSA pública", "Public key" : "Clave pública", "Amazon S3" : "Amazon S3", "Bucket" : "Depósitu", @@ -30,31 +47,34 @@ OC.L10N.register( "WebDAV" : "WebDAV", "URL" : "URL", "Remote subfolder" : "Subcarpeta remota", - "Secure https://" : "Secure https://", - "Dropbox" : "Dropbox", "Host" : "Sirvidor", - "Secure ftps://" : "Secure ftps://", "Local" : "Llocal", "Location" : "Llocalización", - "ownCloud" : "ownCloud", + "Nextcloud" : "Nextcloud", + "SFTP" : "SFTP", "Root" : "Raíz", + "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", "SMB / CIFS using OC login" : "SMB / CIFS usando accesu OC", "Username as share" : "Nome d'usuariu como Compartición", "OpenStack Object Storage" : "OpenStack Object Storage", - "Note: " : "Nota: ", - "Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nota: El soporte de cURL en PHP nun ta activáu o instaláu. Nun pue montase %s. Pídi-y al alministrador de sistema que lu instale.", - "Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nota: El soporte de FTP en PHP nun ta activáu o instaláu. Nun pue montase %s. Pídi-y al alministrador de sistema que lu instale.", - "Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nota: \"%s\" nun ta instaláu. Nun pue montase %s. Pídi-y al alministrador de sistema que lu instale.", + "Service name" : "Nome del serviciu", "Name" : "Nome", "Storage type" : "Triba d'almacenamientu", "Scope" : "Ámbitu", - "External Storage" : "Almacenamientu esternu", + "Enable encryption" : "Habilitar cifráu", + "Never" : "Enxamás", "Folder name" : "Nome de la carpeta", + "External storage" : "Almacenamientu esternu", + "Authentication" : "Autenticación", "Configuration" : "Configuración", "Available for" : "Disponible pa", "Add storage" : "Amestar almacenamientu", + "Advanced settings" : "Axustes avanzaos", "Delete" : "Desaniciar", - "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamientu esternu" + "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamientu esternu", + "OpenStack" : "OpenStack", + "No external storage configured" : "Nun se configuraron almacenamientos esternos", + "You can add external storages in the personal settings" : "Pues amestar almacenamientos enternos nos axustes personales" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/ast.json b/apps/files_external/l10n/ast.json index 56bfc2757ea4e..1997431577ce0 100644 --- a/apps/files_external/l10n/ast.json +++ b/apps/files_external/l10n/ast.json @@ -1,22 +1,39 @@ { "translations": { - "Step 1 failed. Exception: %s" : "Pasu 1 fallíu. Esceición: %s", - "Step 2 failed. Exception: %s" : "Pasu 2 fallíu. Esceición: %s", - "External storage" : "Almacenamientu esternu", + "External storages" : "Almacenamientos internos", "Personal" : "Personal", "System" : "Sistema", "Grant access" : "Conceder accesu", + "Error configuring OAuth1" : "Fallu configurando Oauth1", + "Error configuring OAuth2" : "Fallu configurando OAuth2", + "Generate keys" : "Xenerar claves", + "Error generating key pair" : "Fallu xenerando'l par de claves", "All users. Type to select user or group." : "Tolos usuarios. Escribe pa seleccionar usuariu o grupu.", "(group)" : "(grupu)", + "Delete storage?" : "¿Desaniciar almacenamientu?", "Saved" : "Guardáu", + "Saving..." : "Guardando...", + "Save" : "Guardar", + "Empty response from the server" : "Rempuesta balera del sirvidor", + "Couldn't access. Please log out and in again to activate this mount point" : "Nun pudo accedese. Volvi aniciar sesión p'activar esti puntu de montaxe, por favor", + "Couldn't get the list of external mount points: {type}" : "Nun pudo consiguise'l llistáu de puntos esternos de montaxe: {type}", + "There was an error with message: " : "Hebo un fallu col mensaxe:", + "External mount error" : "Fallu de montaxe esternu", "Username" : "Nome d'usuariu", "Password" : "Contraseña", - "Save" : "Guardar", + "Invalid mount point" : "Puntu de montaxe non válidu", + "%s" : "%s", + "Secret key" : "Clave secreta", "None" : "Dengún", - "App key" : "App principal", - "App secret" : "App secreta", + "OAuth1" : "OAuth1", + "App key" : "Clave d'aplicación", + "OAuth2" : "OAuth2", "Client ID" : "ID de veceru", "Client secret" : "Veceru secretu", + "Domain" : "Dominiu", "API key" : "clave API", + "Global credentials" : "Credenciales global", + "Username and password" : "Nome d'usuariu y contraseña", + "RSA public key" : "Clave RSA pública", "Public key" : "Clave pública", "Amazon S3" : "Amazon S3", "Bucket" : "Depósitu", @@ -28,31 +45,34 @@ "WebDAV" : "WebDAV", "URL" : "URL", "Remote subfolder" : "Subcarpeta remota", - "Secure https://" : "Secure https://", - "Dropbox" : "Dropbox", "Host" : "Sirvidor", - "Secure ftps://" : "Secure ftps://", "Local" : "Llocal", "Location" : "Llocalización", - "ownCloud" : "ownCloud", + "Nextcloud" : "Nextcloud", + "SFTP" : "SFTP", "Root" : "Raíz", + "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", "SMB / CIFS using OC login" : "SMB / CIFS usando accesu OC", "Username as share" : "Nome d'usuariu como Compartición", "OpenStack Object Storage" : "OpenStack Object Storage", - "Note: " : "Nota: ", - "Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nota: El soporte de cURL en PHP nun ta activáu o instaláu. Nun pue montase %s. Pídi-y al alministrador de sistema que lu instale.", - "Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nota: El soporte de FTP en PHP nun ta activáu o instaláu. Nun pue montase %s. Pídi-y al alministrador de sistema que lu instale.", - "Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nota: \"%s\" nun ta instaláu. Nun pue montase %s. Pídi-y al alministrador de sistema que lu instale.", + "Service name" : "Nome del serviciu", "Name" : "Nome", "Storage type" : "Triba d'almacenamientu", "Scope" : "Ámbitu", - "External Storage" : "Almacenamientu esternu", + "Enable encryption" : "Habilitar cifráu", + "Never" : "Enxamás", "Folder name" : "Nome de la carpeta", + "External storage" : "Almacenamientu esternu", + "Authentication" : "Autenticación", "Configuration" : "Configuración", "Available for" : "Disponible pa", "Add storage" : "Amestar almacenamientu", + "Advanced settings" : "Axustes avanzaos", "Delete" : "Desaniciar", - "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamientu esternu" + "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamientu esternu", + "OpenStack" : "OpenStack", + "No external storage configured" : "Nun se configuraron almacenamientos esternos", + "You can add external storages in the personal settings" : "Pues amestar almacenamientos enternos nos axustes personales" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/bg.js b/apps/files_external/l10n/bg.js new file mode 100644 index 0000000000000..38c23eb8247e7 --- /dev/null +++ b/apps/files_external/l10n/bg.js @@ -0,0 +1,69 @@ +OC.L10N.register( + "files_external", + { + "External storages" : "Външни хранилища", + "Personal" : "Личен", + "System" : "Системен", + "Grant access" : "Разреши достъп", + "Generate keys" : "Генериране на криптографски ключове", + "Error generating key pair" : "Грешка при генериране на криптографски ключове", + "All users. Type to select user or group." : "Всички потребители. Пишете, за да изберете потребител или група.", + "(group)" : "(група)", + "Saved" : "Запазено", + "Saving..." : "Запазване...", + "Save" : "Запис", + "external-storage" : "външно хранилище", + "Username" : "Потребител", + "Password" : "Парола", + "Invalid mount point" : "Невалиден път за мониторане на файлова система", + "%s" : "%s", + "Secret key" : "Секретен ключ", + "None" : "Няма", + "OAuth1" : "OAuth1", + "OAuth2" : "OAuth2", + "Client ID" : "Client ID", + "API key" : "API ключ", + "Public key" : "Публичен ключ", + "Amazon S3" : "Amazon S3", + "Bucket" : "Bucket", + "Hostname" : "Сървър", + "Port" : "Порт", + "Region" : "Регион", + "Enable SSL" : "Включи SSL", + "WebDAV" : "WebDAV", + "URL" : "URL", + "Remote subfolder" : "Външна подпапка", + "Secure https://" : "Подсигурен https://", + "FTP" : "FTP", + "Host" : "Сървър", + "Secure ftps://" : "Сигурен ftps://", + "Local" : "Локално", + "Location" : "Местоположение", + "Nextcloud" : "Nextcloud", + "SFTP" : "SFTP", + "Root" : "Root", + "SMB / CIFS" : "SMB / CIFS", + "Share" : "Споделяне", + "Domain" : "Домейн", + "SMB / CIFS using OC login" : "SMB / CIFS използвайки OC профил", + "Username as share" : "Потребителско име като споделена папка", + "OpenStack Object Storage" : "OpenStack Object Storage", + "Service name" : "Име на услугата", + "No external storage configured" : "Няма настроени външни хранища", + "You can add external storages in the personal settings" : "Външни хранилища се добавят от личните настройки", + "Name" : "Име", + "Storage type" : "Тип хранилище", + "Scope" : "Обхват", + "Check for changes" : "Проверка за промени", + "Never" : "Никога", + "Folder name" : "Име на папката", + "External storage" : "Външно хранилище", + "Configuration" : "Настройки", + "Available for" : "Достъпно за", + "Add storage" : "Добави хранилище", + "Advanced settings" : "Разширени настройки", + "Delete" : "Изтрий", + "Allow users to mount external storage" : "Разреши на потребителите да монтират външни хранилища", + "Allow users to mount the following external storage" : "Разреши на потребителите да монтират следното външно хранилище" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/bg.json b/apps/files_external/l10n/bg.json new file mode 100644 index 0000000000000..afab1d544b07c --- /dev/null +++ b/apps/files_external/l10n/bg.json @@ -0,0 +1,67 @@ +{ "translations": { + "External storages" : "Външни хранилища", + "Personal" : "Личен", + "System" : "Системен", + "Grant access" : "Разреши достъп", + "Generate keys" : "Генериране на криптографски ключове", + "Error generating key pair" : "Грешка при генериране на криптографски ключове", + "All users. Type to select user or group." : "Всички потребители. Пишете, за да изберете потребител или група.", + "(group)" : "(група)", + "Saved" : "Запазено", + "Saving..." : "Запазване...", + "Save" : "Запис", + "external-storage" : "външно хранилище", + "Username" : "Потребител", + "Password" : "Парола", + "Invalid mount point" : "Невалиден път за мониторане на файлова система", + "%s" : "%s", + "Secret key" : "Секретен ключ", + "None" : "Няма", + "OAuth1" : "OAuth1", + "OAuth2" : "OAuth2", + "Client ID" : "Client ID", + "API key" : "API ключ", + "Public key" : "Публичен ключ", + "Amazon S3" : "Amazon S3", + "Bucket" : "Bucket", + "Hostname" : "Сървър", + "Port" : "Порт", + "Region" : "Регион", + "Enable SSL" : "Включи SSL", + "WebDAV" : "WebDAV", + "URL" : "URL", + "Remote subfolder" : "Външна подпапка", + "Secure https://" : "Подсигурен https://", + "FTP" : "FTP", + "Host" : "Сървър", + "Secure ftps://" : "Сигурен ftps://", + "Local" : "Локално", + "Location" : "Местоположение", + "Nextcloud" : "Nextcloud", + "SFTP" : "SFTP", + "Root" : "Root", + "SMB / CIFS" : "SMB / CIFS", + "Share" : "Споделяне", + "Domain" : "Домейн", + "SMB / CIFS using OC login" : "SMB / CIFS използвайки OC профил", + "Username as share" : "Потребителско име като споделена папка", + "OpenStack Object Storage" : "OpenStack Object Storage", + "Service name" : "Име на услугата", + "No external storage configured" : "Няма настроени външни хранища", + "You can add external storages in the personal settings" : "Външни хранилища се добавят от личните настройки", + "Name" : "Име", + "Storage type" : "Тип хранилище", + "Scope" : "Обхват", + "Check for changes" : "Проверка за промени", + "Never" : "Никога", + "Folder name" : "Име на папката", + "External storage" : "Външно хранилище", + "Configuration" : "Настройки", + "Available for" : "Достъпно за", + "Add storage" : "Добави хранилище", + "Advanced settings" : "Разширени настройки", + "Delete" : "Изтрий", + "Allow users to mount external storage" : "Разреши на потребителите да монтират външни хранилища", + "Allow users to mount the following external storage" : "Разреши на потребителите да монтират следното външно хранилище" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/apps/files_external/l10n/ca.js b/apps/files_external/l10n/ca.js index f147a2af8b2a7..18558e754cde5 100644 --- a/apps/files_external/l10n/ca.js +++ b/apps/files_external/l10n/ca.js @@ -1,9 +1,7 @@ OC.L10N.register( "files_external", { - "Step 1 failed. Exception: %s" : "El pas 1 ha fallat. Excepció: %s", - "Step 2 failed. Exception: %s" : "El pas 2 ha fallat. Excepció: %s", - "External storage" : "Emmagatzemament extern", + "External storages" : "Emmagatzemament extern", "Personal" : "Personal", "System" : "Sistema", "Grant access" : "Concedeix accés", @@ -11,19 +9,27 @@ OC.L10N.register( "Error generating key pair" : "Error en generar el parell de claus", "All users. Type to select user or group." : "Tots els usuaris. Escriu per seleccionar un usuari o grup.", "(group)" : "(grup)", + "Admin defined" : "Administrador definit", "Saved" : "Desat", + "Saving..." : "Desant...", + "Save" : "Desa", + "external-storage" : "Emmagatzemament extern", "Username" : "Nom d'usuari", "Password" : "Contrasenya", - "Save" : "Desa", - "Storage with id \"%i\" not found" : "No s'ha trobat emmagatzematge amb id \"%i\"", + "Credentials saved" : "Credencials desades", "Invalid mount point" : "Punt de muntatge no vàlid", "Invalid storage backend \"%s\"" : "Motor d'emmagatzematge no vàlid \"%s\"", + "%s" : "%s", + "Access key" : "Clau d'accés", + "Secret key" : "Clau secreta", "None" : "Cap", "App key" : "Clau de l'aplicació", "App secret" : "Secret de l'aplicació", "Client ID" : "Client ID", "Client secret" : "Secret del client", + "Domain" : "Domini", "API key" : "codi API", + "Username and password" : "Nom d'usuari i contrasenya", "Public key" : "Clau pública", "Amazon S3" : "Amazon S3", "Bucket" : "Cub", @@ -36,38 +42,40 @@ OC.L10N.register( "URL" : "URL", "Remote subfolder" : "Subcarpeta remota", "Secure https://" : "Protocol segur https://", + "FTP" : "FTP", "Host" : "Equip remot", "Secure ftps://" : "Protocol segur ftps://", "Local" : "Local", "Location" : "Ubicació", - "ownCloud" : "ownCloud", + "Nextcloud" : "Nextcloud", + "SFTP" : "SFTP", "Root" : "Arrel", "SFTP with secret key login" : "Inici de sessió SFTP amb clau secreta", + "SMB / CIFS" : "SMB / CIFS", "Share" : "Comparteix", "SMB / CIFS using OC login" : "SMB / CIFS usant acreditació OC", "Username as share" : "Nom d'usuari per compartir", "OpenStack Object Storage" : "OpenStack Object Storage", - "Note: " : "Nota: ", - "Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nota: El suport cURL no està activat o instal·lat a PHP. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li.", - "Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nota: El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li.", - "Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nota: %s no està instal·lat. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li.", - "No external storage configured" : "Sense emmagatzematge extern configurat", - "You can add external storages in the personal settings" : "Pot agregar emmagatzematges externs en la configuració personal", + "Service name" : "Nom del servei", "Name" : "Nom", "Storage type" : "Tipus d'emmagatzemament", "Scope" : "Abast", "Enable encryption" : "Habilitar xifrat", "Enable previews" : "Habilitar vistes prèvies", + "Enable sharing" : "Habilita la compartició", "Check for changes" : "Comproveu si hi ha canvis", "Never" : "Mai", "Once every direct access" : "Un cop cada accés directe", - "External Storage" : "Emmagatzemament extern", "Folder name" : "Nom de la carpeta", + "External storage" : "Emmagatzemament extern", + "Authentication" : "Autenticació", "Configuration" : "Configuració", "Available for" : "Disponible per", "Add storage" : "Afegeix emmagatzemament", "Advanced settings" : "Configuració avançada", "Delete" : "Esborra", - "Allow users to mount the following external storage" : "Permet als usuaris muntar els dispositius externs següents" + "Allow users to mount the following external storage" : "Permet als usuaris muntar els dispositius externs següents", + "No external storage configured" : "Sense emmagatzematge extern configurat", + "You can add external storages in the personal settings" : "Pot agregar emmagatzematges externs en la configuració personal" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/ca.json b/apps/files_external/l10n/ca.json index de96ec6faad5f..6cfa9357df746 100644 --- a/apps/files_external/l10n/ca.json +++ b/apps/files_external/l10n/ca.json @@ -1,7 +1,5 @@ { "translations": { - "Step 1 failed. Exception: %s" : "El pas 1 ha fallat. Excepció: %s", - "Step 2 failed. Exception: %s" : "El pas 2 ha fallat. Excepció: %s", - "External storage" : "Emmagatzemament extern", + "External storages" : "Emmagatzemament extern", "Personal" : "Personal", "System" : "Sistema", "Grant access" : "Concedeix accés", @@ -9,19 +7,27 @@ "Error generating key pair" : "Error en generar el parell de claus", "All users. Type to select user or group." : "Tots els usuaris. Escriu per seleccionar un usuari o grup.", "(group)" : "(grup)", + "Admin defined" : "Administrador definit", "Saved" : "Desat", + "Saving..." : "Desant...", + "Save" : "Desa", + "external-storage" : "Emmagatzemament extern", "Username" : "Nom d'usuari", "Password" : "Contrasenya", - "Save" : "Desa", - "Storage with id \"%i\" not found" : "No s'ha trobat emmagatzematge amb id \"%i\"", + "Credentials saved" : "Credencials desades", "Invalid mount point" : "Punt de muntatge no vàlid", "Invalid storage backend \"%s\"" : "Motor d'emmagatzematge no vàlid \"%s\"", + "%s" : "%s", + "Access key" : "Clau d'accés", + "Secret key" : "Clau secreta", "None" : "Cap", "App key" : "Clau de l'aplicació", "App secret" : "Secret de l'aplicació", "Client ID" : "Client ID", "Client secret" : "Secret del client", + "Domain" : "Domini", "API key" : "codi API", + "Username and password" : "Nom d'usuari i contrasenya", "Public key" : "Clau pública", "Amazon S3" : "Amazon S3", "Bucket" : "Cub", @@ -34,38 +40,40 @@ "URL" : "URL", "Remote subfolder" : "Subcarpeta remota", "Secure https://" : "Protocol segur https://", + "FTP" : "FTP", "Host" : "Equip remot", "Secure ftps://" : "Protocol segur ftps://", "Local" : "Local", "Location" : "Ubicació", - "ownCloud" : "ownCloud", + "Nextcloud" : "Nextcloud", + "SFTP" : "SFTP", "Root" : "Arrel", "SFTP with secret key login" : "Inici de sessió SFTP amb clau secreta", + "SMB / CIFS" : "SMB / CIFS", "Share" : "Comparteix", "SMB / CIFS using OC login" : "SMB / CIFS usant acreditació OC", "Username as share" : "Nom d'usuari per compartir", "OpenStack Object Storage" : "OpenStack Object Storage", - "Note: " : "Nota: ", - "Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nota: El suport cURL no està activat o instal·lat a PHP. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li.", - "Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nota: El suport FTP per PHP no està activat o no està instal·lat. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li.", - "Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nota: %s no està instal·lat. No es pot muntar %s. Demaneu a l'administrador del sistema que l'instal·li.", - "No external storage configured" : "Sense emmagatzematge extern configurat", - "You can add external storages in the personal settings" : "Pot agregar emmagatzematges externs en la configuració personal", + "Service name" : "Nom del servei", "Name" : "Nom", "Storage type" : "Tipus d'emmagatzemament", "Scope" : "Abast", "Enable encryption" : "Habilitar xifrat", "Enable previews" : "Habilitar vistes prèvies", + "Enable sharing" : "Habilita la compartició", "Check for changes" : "Comproveu si hi ha canvis", "Never" : "Mai", "Once every direct access" : "Un cop cada accés directe", - "External Storage" : "Emmagatzemament extern", "Folder name" : "Nom de la carpeta", + "External storage" : "Emmagatzemament extern", + "Authentication" : "Autenticació", "Configuration" : "Configuració", "Available for" : "Disponible per", "Add storage" : "Afegeix emmagatzemament", "Advanced settings" : "Configuració avançada", "Delete" : "Esborra", - "Allow users to mount the following external storage" : "Permet als usuaris muntar els dispositius externs següents" + "Allow users to mount the following external storage" : "Permet als usuaris muntar els dispositius externs següents", + "No external storage configured" : "Sense emmagatzematge extern configurat", + "You can add external storages in the personal settings" : "Pot agregar emmagatzematges externs en la configuració personal" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/cs.js b/apps/files_external/l10n/cs.js index 8ed161fd61b4a..af9a0666f5f57 100644 --- a/apps/files_external/l10n/cs.js +++ b/apps/files_external/l10n/cs.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(skupina)", "Compatibility with Mac NFD encoding (slow)" : "Kompatibilita s Mac NFD kódováním (pomalé)", "Admin defined" : "Nastaveno administrátorem", - "Are you sure you want to delete this external storage" : "Opravdu chcete odstranit toto externí úložiště", "Delete storage?" : "Odstranit úložiště?", "Saved" : "Uloženo", "Saving..." : "Ukládá se...", @@ -34,7 +33,7 @@ OC.L10N.register( "Credentials saved" : "Přihlašovací údaje uloženy", "Credentials saving failed" : "Uložení přihlašovacích údajů selhalo", "Credentials required" : "Vyžadovány přihlašovací údaje", - "Storage with ID \"%d\" not found" : "Úložiště s ID \"%d\" nebylo nalezeno", + "Storage with ID \"%d\" not found" : "Úložiště s identifikátorem „%d“ nebylo nalezeno", "Invalid backend or authentication mechanism class" : "Neplatný backend nebo třída ověřovacího mechanismu", "Invalid mount point" : "Neplatný přípojný bod", "Objectstore forbidden" : "Úložiště objektů zakázáno", @@ -56,9 +55,11 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Klientské ID", "Client secret" : "Klientské tajemství", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Jméno vlastníka", "Identity endpoint URL" : "Identifikační koncový bod URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Doména", "Rackspace" : "Rackspace", "API key" : "Klíč API", "Global credentials" : "Globální přihlašovací údaje", @@ -90,7 +91,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP login s tajným klíčem", "SMB / CIFS" : "SMB / CIFS", "Share" : "Sdílet", - "Domain" : "Doména", "SMB / CIFS using OC login" : "SMB / CIFS za použití přihlašovacího jména OC", "Username as share" : "Uživatelské jméno jako sdílený adresář", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +99,8 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cURL podpora v PHP není povolena nebo nainstalována. Není možné připojit %s. Prosím požádejte svého správce systému ať ji nainstaluje.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP podpora v PHP není povolena nebo nainstalována. Není možné připojit %s. Prosím požádejte svého správce systému ať ji nainstaluje.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" není instalováno. Není možné připojit %s. Prosím požádejte svého správce systému o instalaci.", - "No external storage configured" : "Není nakonfigurováno žádné externí úložiště", - "You can add external storages in the personal settings" : "Externí úložiště můžete přidat v osobních nastaveních", + "External storage support" : "Podpora Externího úložiště", + "No external storage configured or you don't have the permission to configure them" : "Nemáte oprávněni pro nastavení externího úložiště", "Name" : "Název", "Storage type" : "Typ úložiště", "Scope" : "Rozsah", @@ -115,20 +115,19 @@ OC.L10N.register( "Authentication" : "Ověření", "Configuration" : "Nastavení", "Available for" : "Dostupné pro", + "Click to recheck the configuration" : "Klikněte pro opětovnou kontrolu konfigurace", "Add storage" : "Přidat úložiště", "Advanced settings" : "Pokročilá nastavení", "Delete" : "Smazat", "Allow users to mount external storage" : "Povolit uživatelům připojení externího úložiště", "Allow users to mount the following external storage" : "Povolit uživatelů připojit následující externí úložiště", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Získání přístupových tokenů selhalo. Ověřte že klíč aplikace a tajné heslo jsou správné.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Získání přístupových tokenů selhalo. Ověřte že klíč aplikace a tajné heslo jsou správné.", - "Step 1 failed. Exception: %s" : "Selhal krok 1. Výjimka: %s", - "Step 2 failed. Exception: %s" : "Selhal krok 2. Výjimka: %s", - "Dropbox App Configuration" : "Nastavení aplikace Dropbox", - "Google Drive App Configuration" : "Nastavení aplikace Disk Google", - "Storage with id \"%i\" not found" : "Úložiště s id \"%i\" nebylo nalezeno", - "Storage with id \"%i\" is not user editable" : "Úložiště s id \"%i\" uživatelé nemohou upravovat", + "Dropbox App Configuration" : "Nastavení APP pro Dropbox", + "Google Drive App Configuration" : "Nastavení APP pro Disk Google", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Disk Google", + "No external storage configured" : "Není nakonfigurováno žádné externí úložiště", + "You can add external storages in the personal settings" : "Externí úložiště můžete přidat v osobních nastaveních", + "Are you sure you want to delete this external storage" : "Opravdu chcete odstranit toto externí úložiště" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/files_external/l10n/cs.json b/apps/files_external/l10n/cs.json index 0bd210caab1a2..57f2782b1d161 100644 --- a/apps/files_external/l10n/cs.json +++ b/apps/files_external/l10n/cs.json @@ -12,7 +12,6 @@ "(group)" : "(skupina)", "Compatibility with Mac NFD encoding (slow)" : "Kompatibilita s Mac NFD kódováním (pomalé)", "Admin defined" : "Nastaveno administrátorem", - "Are you sure you want to delete this external storage" : "Opravdu chcete odstranit toto externí úložiště", "Delete storage?" : "Odstranit úložiště?", "Saved" : "Uloženo", "Saving..." : "Ukládá se...", @@ -32,7 +31,7 @@ "Credentials saved" : "Přihlašovací údaje uloženy", "Credentials saving failed" : "Uložení přihlašovacích údajů selhalo", "Credentials required" : "Vyžadovány přihlašovací údaje", - "Storage with ID \"%d\" not found" : "Úložiště s ID \"%d\" nebylo nalezeno", + "Storage with ID \"%d\" not found" : "Úložiště s identifikátorem „%d“ nebylo nalezeno", "Invalid backend or authentication mechanism class" : "Neplatný backend nebo třída ověřovacího mechanismu", "Invalid mount point" : "Neplatný přípojný bod", "Objectstore forbidden" : "Úložiště objektů zakázáno", @@ -54,9 +53,11 @@ "OAuth2" : "OAuth2", "Client ID" : "Klientské ID", "Client secret" : "Klientské tajemství", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Jméno vlastníka", "Identity endpoint URL" : "Identifikační koncový bod URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Doména", "Rackspace" : "Rackspace", "API key" : "Klíč API", "Global credentials" : "Globální přihlašovací údaje", @@ -88,7 +89,6 @@ "SFTP with secret key login" : "SFTP login s tajným klíčem", "SMB / CIFS" : "SMB / CIFS", "Share" : "Sdílet", - "Domain" : "Doména", "SMB / CIFS using OC login" : "SMB / CIFS za použití přihlašovacího jména OC", "Username as share" : "Uživatelské jméno jako sdílený adresář", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +97,8 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cURL podpora v PHP není povolena nebo nainstalována. Není možné připojit %s. Prosím požádejte svého správce systému ať ji nainstaluje.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP podpora v PHP není povolena nebo nainstalována. Není možné připojit %s. Prosím požádejte svého správce systému ať ji nainstaluje.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" není instalováno. Není možné připojit %s. Prosím požádejte svého správce systému o instalaci.", - "No external storage configured" : "Není nakonfigurováno žádné externí úložiště", - "You can add external storages in the personal settings" : "Externí úložiště můžete přidat v osobních nastaveních", + "External storage support" : "Podpora Externího úložiště", + "No external storage configured or you don't have the permission to configure them" : "Nemáte oprávněni pro nastavení externího úložiště", "Name" : "Název", "Storage type" : "Typ úložiště", "Scope" : "Rozsah", @@ -113,20 +113,19 @@ "Authentication" : "Ověření", "Configuration" : "Nastavení", "Available for" : "Dostupné pro", + "Click to recheck the configuration" : "Klikněte pro opětovnou kontrolu konfigurace", "Add storage" : "Přidat úložiště", "Advanced settings" : "Pokročilá nastavení", "Delete" : "Smazat", "Allow users to mount external storage" : "Povolit uživatelům připojení externího úložiště", "Allow users to mount the following external storage" : "Povolit uživatelů připojit následující externí úložiště", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Získání přístupových tokenů selhalo. Ověřte že klíč aplikace a tajné heslo jsou správné.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Získání přístupových tokenů selhalo. Ověřte že klíč aplikace a tajné heslo jsou správné.", - "Step 1 failed. Exception: %s" : "Selhal krok 1. Výjimka: %s", - "Step 2 failed. Exception: %s" : "Selhal krok 2. Výjimka: %s", - "Dropbox App Configuration" : "Nastavení aplikace Dropbox", - "Google Drive App Configuration" : "Nastavení aplikace Disk Google", - "Storage with id \"%i\" not found" : "Úložiště s id \"%i\" nebylo nalezeno", - "Storage with id \"%i\" is not user editable" : "Úložiště s id \"%i\" uživatelé nemohou upravovat", + "Dropbox App Configuration" : "Nastavení APP pro Dropbox", + "Google Drive App Configuration" : "Nastavení APP pro Disk Google", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Disk Google", + "No external storage configured" : "Není nakonfigurováno žádné externí úložiště", + "You can add external storages in the personal settings" : "Externí úložiště můžete přidat v osobních nastaveních", + "Are you sure you want to delete this external storage" : "Opravdu chcete odstranit toto externí úložiště" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/files_external/l10n/da.js b/apps/files_external/l10n/da.js index 078063a62fc19..fea7419431d32 100644 --- a/apps/files_external/l10n/da.js +++ b/apps/files_external/l10n/da.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(gruppe)", "Compatibility with Mac NFD encoding (slow)" : "Kompatibilitet med Mac NFD encoding (langsom)", "Admin defined" : "Bestemt af administrator", - "Are you sure you want to delete this external storage" : "Er du sikker på at du vil slette denne eksterne lager?", "Delete storage?" : "Slet lager?", "Saved" : "Gemt", "Saving..." : "Gemmer...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Klient-ID", "Client secret" : "Klient hemmelighed", - "OpenStack" : "OpenStack", "Tenant name" : "Lejernavn", "Identity endpoint URL" : "Identificer afslutnings URL", + "Domain" : "Domæne", "Rackspace" : "Hyldeplads", "API key" : "API nøgle", "Global credentials" : "Globale brugeroplysninger", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP med hemmelig nøglelogin", "SMB / CIFS" : "SMB / CIFS", "Share" : "Del", - "Domain" : "Domæne", "SMB / CIFS using OC login" : "SMB / CIFS med OC-login", "Username as share" : "Brugernavn som deling", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cURL-understøttelsen i PHP er enten ikke aktiveret eller installeret. Monteringen af %s er ikke mulig. Anmod din systemadministrator om at installere det.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP understøttelsen i PHP er enten ikke aktiveret eller installeret. Montering af %s er ikke muligt. Anmod din systemadministrator om at installere det.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" er ikke installeret. Monteringen af %s er ikke mulig. Anmod din systemadministrator om at installere det.", - "No external storage configured" : "Der er ingen konfigurerede eksterne lagre", - "You can add external storages in the personal settings" : "Du kan tilføje eksterne lagerenheder i de personlige indstillinger", "Name" : "Navn", "Storage type" : "Lagertype", "Scope" : "Anvendelsesområde", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Slet", "Allow users to mount external storage" : "Tillad brugere at montere eksternt lager", "Allow users to mount the following external storage" : "Tillad brugere at montere følgende som eksternt lager", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Tokener til anmodning om hentning mislykkedes. Verificér at dine app-nøgle og -hemmelighed er korrekte.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Tokener for adgang til hentning fejlede. Verificér at dine app-nøgle og -hemmelighed er korrekte.", - "Step 1 failed. Exception: %s" : "Trin 1 mislykkedes. Undtagelse: %s", - "Step 2 failed. Exception: %s" : "Trin 2 mislykkedes. Undtagelse: %s", - "Dropbox App Configuration" : "Dropbox App konfiguration", - "Google Drive App Configuration" : "Google Drive App konfiguration", - "Storage with id \"%i\" not found" : "Lager med ID'et \"%i% er ikke fundet", - "Storage with id \"%i\" is not user editable" : "Lageret med id \"%i\" kan ikke redigeres af bruger", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drev" + "OpenStack" : "OpenStack", + "No external storage configured" : "Der er ingen konfigurerede eksterne lagre", + "You can add external storages in the personal settings" : "Du kan tilføje eksterne lagerenheder i de personlige indstillinger", + "Are you sure you want to delete this external storage" : "Er du sikker på at du vil slette denne eksterne lager?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/da.json b/apps/files_external/l10n/da.json index 048a779681a3a..48d1fbca979a8 100644 --- a/apps/files_external/l10n/da.json +++ b/apps/files_external/l10n/da.json @@ -12,7 +12,6 @@ "(group)" : "(gruppe)", "Compatibility with Mac NFD encoding (slow)" : "Kompatibilitet med Mac NFD encoding (langsom)", "Admin defined" : "Bestemt af administrator", - "Are you sure you want to delete this external storage" : "Er du sikker på at du vil slette denne eksterne lager?", "Delete storage?" : "Slet lager?", "Saved" : "Gemt", "Saving..." : "Gemmer...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "Klient-ID", "Client secret" : "Klient hemmelighed", - "OpenStack" : "OpenStack", "Tenant name" : "Lejernavn", "Identity endpoint URL" : "Identificer afslutnings URL", + "Domain" : "Domæne", "Rackspace" : "Hyldeplads", "API key" : "API nøgle", "Global credentials" : "Globale brugeroplysninger", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "SFTP med hemmelig nøglelogin", "SMB / CIFS" : "SMB / CIFS", "Share" : "Del", - "Domain" : "Domæne", "SMB / CIFS using OC login" : "SMB / CIFS med OC-login", "Username as share" : "Brugernavn som deling", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cURL-understøttelsen i PHP er enten ikke aktiveret eller installeret. Monteringen af %s er ikke mulig. Anmod din systemadministrator om at installere det.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP understøttelsen i PHP er enten ikke aktiveret eller installeret. Montering af %s er ikke muligt. Anmod din systemadministrator om at installere det.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" er ikke installeret. Monteringen af %s er ikke mulig. Anmod din systemadministrator om at installere det.", - "No external storage configured" : "Der er ingen konfigurerede eksterne lagre", - "You can add external storages in the personal settings" : "Du kan tilføje eksterne lagerenheder i de personlige indstillinger", "Name" : "Navn", "Storage type" : "Lagertype", "Scope" : "Anvendelsesområde", @@ -118,15 +114,9 @@ "Delete" : "Slet", "Allow users to mount external storage" : "Tillad brugere at montere eksternt lager", "Allow users to mount the following external storage" : "Tillad brugere at montere følgende som eksternt lager", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Tokener til anmodning om hentning mislykkedes. Verificér at dine app-nøgle og -hemmelighed er korrekte.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Tokener for adgang til hentning fejlede. Verificér at dine app-nøgle og -hemmelighed er korrekte.", - "Step 1 failed. Exception: %s" : "Trin 1 mislykkedes. Undtagelse: %s", - "Step 2 failed. Exception: %s" : "Trin 2 mislykkedes. Undtagelse: %s", - "Dropbox App Configuration" : "Dropbox App konfiguration", - "Google Drive App Configuration" : "Google Drive App konfiguration", - "Storage with id \"%i\" not found" : "Lager med ID'et \"%i% er ikke fundet", - "Storage with id \"%i\" is not user editable" : "Lageret med id \"%i\" kan ikke redigeres af bruger", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drev" + "OpenStack" : "OpenStack", + "No external storage configured" : "Der er ingen konfigurerede eksterne lagre", + "You can add external storages in the personal settings" : "Du kan tilføje eksterne lagerenheder i de personlige indstillinger", + "Are you sure you want to delete this external storage" : "Er du sikker på at du vil slette denne eksterne lager?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/de.js b/apps/files_external/l10n/de.js index eb8fbdf0d8c4b..6fafc3e54890a 100644 --- a/apps/files_external/l10n/de.js +++ b/apps/files_external/l10n/de.js @@ -14,7 +14,7 @@ OC.L10N.register( "(group)" : "(group)", "Compatibility with Mac NFD encoding (slow)" : "Kompatibilität mit MAC NFD-Kodierung (langsam)", "Admin defined" : "Vom Administrator festgelegt", - "Are you sure you want to delete this external storage" : "Möchtest Du wirklich diesen externen Speicher löschen?", + "Are you sure you want to delete this external storage?" : "Möchtest du wirklich diesen externen Speicher löschen?", "Delete storage?" : "Speicher löschen?", "Saved" : "Gespeichert", "Saving..." : "Speichere…", @@ -56,9 +56,11 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Client-ID", "Client secret" : "Geheime Zeichenkette des Client", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Name des Mieters", "Identity endpoint URL" : "Identität Endpunkt-URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Domain", "Rackspace" : "Rackspace", "API key" : "API-Schlüssel", "Global credentials" : "Globale Anmeldeinformationen", @@ -91,7 +93,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP mit der Anmeldung über einen geheimen Schlüssel", "SMB / CIFS" : "SMB / CIFS", "Share" : "Share", - "Domain" : "Domain", "SMB / CIFS using OC login" : "SMB / CIFS mit OC-Anmeldung", "Username as share" : "Benutzername als Freigabe", "OpenStack Object Storage" : "Openstack-Objektspeicher", @@ -100,8 +101,8 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Die cURL-Unterstützung von PHP ist deaktiviert oder nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wende Dich zur Installation an den Systemadministrator.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Die FTP-Unterstützung von PHP ist deaktiviert oder nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wende Dich zur Installation an den Systemadministrator.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" ist nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wende Dich zur Installation an den Administrator.", - "No external storage configured" : "Kein externer Speicher konfiguriert", - "You can add external storages in the personal settings" : "Externe Speicher können in den persönlichen Einstellungen hinzugefügt werden", + "External storage support" : "Unterstützung für externen Speicher", + "No external storage configured or you don't have the permission to configure them" : "Es ist kein externer Speicher eingerichtet oder Du hast keine Berechtigung dies zu tun.", "Name" : "Name", "Storage type" : "Speichertyp", "Scope" : "Anwendungsbereich", @@ -116,6 +117,7 @@ OC.L10N.register( "Authentication" : "Authentifizierung", "Configuration" : "Konfiguration", "Available for" : "Verfügbar für", + "Click to recheck the configuration" : "Hier klicken um die Konfiguration erneut zu prüfen", "Add storage" : "Speicher hinzufügen", "Advanced settings" : "Erweiterte Einstellungen", "Delete" : "Löschen", @@ -126,10 +128,12 @@ OC.L10N.register( "Step 1 failed. Exception: %s" : "Schritt 1 fehlgeschlagen. Fehlermeldung: %s", "Step 2 failed. Exception: %s" : "Schritt 2 fehlgeschlagen. Fehlermeldung: %s", "Dropbox App Configuration" : "Dropbox-App Konfiguration", - "Google Drive App Configuration" : "Google Drive - App Konfiguration", - "Storage with id \"%i\" not found" : "Der Speicher mit der ID „%i“ wurde nicht gefunden", - "Storage with id \"%i\" is not user editable" : "Der Speicher mit der ID \"%i\" kann nicht vom Benutzer bearbeitet werden", + "Google Drive App Configuration" : "Google Drive-App Konfiguration", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Kein externer Speicher konfiguriert", + "You can add external storages in the personal settings" : "Externe Speicher können in den persönlichen Einstellungen hinzugefügt werden", + "Are you sure you want to delete this external storage" : "Möchtest Du wirklich diesen externen Speicher löschen?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/de.json b/apps/files_external/l10n/de.json index 53fd2e422fa96..89f089605b91a 100644 --- a/apps/files_external/l10n/de.json +++ b/apps/files_external/l10n/de.json @@ -12,7 +12,7 @@ "(group)" : "(group)", "Compatibility with Mac NFD encoding (slow)" : "Kompatibilität mit MAC NFD-Kodierung (langsam)", "Admin defined" : "Vom Administrator festgelegt", - "Are you sure you want to delete this external storage" : "Möchtest Du wirklich diesen externen Speicher löschen?", + "Are you sure you want to delete this external storage?" : "Möchtest du wirklich diesen externen Speicher löschen?", "Delete storage?" : "Speicher löschen?", "Saved" : "Gespeichert", "Saving..." : "Speichere…", @@ -54,9 +54,11 @@ "OAuth2" : "OAuth2", "Client ID" : "Client-ID", "Client secret" : "Geheime Zeichenkette des Client", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Name des Mieters", "Identity endpoint URL" : "Identität Endpunkt-URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Domain", "Rackspace" : "Rackspace", "API key" : "API-Schlüssel", "Global credentials" : "Globale Anmeldeinformationen", @@ -89,7 +91,6 @@ "SFTP with secret key login" : "SFTP mit der Anmeldung über einen geheimen Schlüssel", "SMB / CIFS" : "SMB / CIFS", "Share" : "Share", - "Domain" : "Domain", "SMB / CIFS using OC login" : "SMB / CIFS mit OC-Anmeldung", "Username as share" : "Benutzername als Freigabe", "OpenStack Object Storage" : "Openstack-Objektspeicher", @@ -98,8 +99,8 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Die cURL-Unterstützung von PHP ist deaktiviert oder nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wende Dich zur Installation an den Systemadministrator.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Die FTP-Unterstützung von PHP ist deaktiviert oder nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wende Dich zur Installation an den Systemadministrator.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" ist nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wende Dich zur Installation an den Administrator.", - "No external storage configured" : "Kein externer Speicher konfiguriert", - "You can add external storages in the personal settings" : "Externe Speicher können in den persönlichen Einstellungen hinzugefügt werden", + "External storage support" : "Unterstützung für externen Speicher", + "No external storage configured or you don't have the permission to configure them" : "Es ist kein externer Speicher eingerichtet oder Du hast keine Berechtigung dies zu tun.", "Name" : "Name", "Storage type" : "Speichertyp", "Scope" : "Anwendungsbereich", @@ -114,6 +115,7 @@ "Authentication" : "Authentifizierung", "Configuration" : "Konfiguration", "Available for" : "Verfügbar für", + "Click to recheck the configuration" : "Hier klicken um die Konfiguration erneut zu prüfen", "Add storage" : "Speicher hinzufügen", "Advanced settings" : "Erweiterte Einstellungen", "Delete" : "Löschen", @@ -124,10 +126,12 @@ "Step 1 failed. Exception: %s" : "Schritt 1 fehlgeschlagen. Fehlermeldung: %s", "Step 2 failed. Exception: %s" : "Schritt 2 fehlgeschlagen. Fehlermeldung: %s", "Dropbox App Configuration" : "Dropbox-App Konfiguration", - "Google Drive App Configuration" : "Google Drive - App Konfiguration", - "Storage with id \"%i\" not found" : "Der Speicher mit der ID „%i“ wurde nicht gefunden", - "Storage with id \"%i\" is not user editable" : "Der Speicher mit der ID \"%i\" kann nicht vom Benutzer bearbeitet werden", + "Google Drive App Configuration" : "Google Drive-App Konfiguration", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Kein externer Speicher konfiguriert", + "You can add external storages in the personal settings" : "Externe Speicher können in den persönlichen Einstellungen hinzugefügt werden", + "Are you sure you want to delete this external storage" : "Möchtest Du wirklich diesen externen Speicher löschen?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/de_DE.js b/apps/files_external/l10n/de_DE.js index 5f01b5179de59..ca2d37523b22f 100644 --- a/apps/files_external/l10n/de_DE.js +++ b/apps/files_external/l10n/de_DE.js @@ -14,7 +14,7 @@ OC.L10N.register( "(group)" : "(group)", "Compatibility with Mac NFD encoding (slow)" : "Kompatibilität mit MAC NFD-Kodierung (langsam)", "Admin defined" : "Vom Administrator festgelegt", - "Are you sure you want to delete this external storage" : "Möchten Sie wirklich diesen externen Speicher löschen?", + "Are you sure you want to delete this external storage?" : "Möchten Sie wirklich diesen externen Speicher löschen?", "Delete storage?" : "Speicher löschen?", "Saved" : "Gespeichert", "Saving..." : "Speichere …", @@ -56,9 +56,11 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Client-ID", "Client secret" : "Geheime Zeichenkette des Client", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Name des Mieters", "Identity endpoint URL" : "Identität Endpunkt-URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Domain", "Rackspace" : "Rackspace", "API key" : "API-Schlüssel", "Global credentials" : "Globale Anmeldeinformationen", @@ -91,7 +93,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP mit der Anmeldung über einen geheimen Schlüssel", "SMB / CIFS" : "SMB / CIFS", "Share" : "Share", - "Domain" : "Domain", "SMB / CIFS using OC login" : "SMB / CIFS mit OC-Anmeldung", "Username as share" : "Benutzername als Freigabe", "OpenStack Object Storage" : "Openstack-Objektspeicher", @@ -100,8 +101,8 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Die cURL-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich bezüglich Aktivierung oder Installation an Ihren Administrator.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Die FTP-Unterstützung von PHP ist deaktiviert oder nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich bezüglich Aktivierung oder Installation an Ihren Administrator.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" ist nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich zur Installation an Ihren Administrator.", - "No external storage configured" : "Kein externer Speicher konfiguriert", - "You can add external storages in the personal settings" : "Externe Speicher können in den persönlichen Einstellungen hinzugefügt werden", + "External storage support" : "Unterstützung für externen Speicher", + "No external storage configured or you don't have the permission to configure them" : "Es ist kein externer Speicher eingerichtet oder Sie haben keine Berechtigung dies zu tun.", "Name" : "Name", "Storage type" : "Speichertyp", "Scope" : "Anwendungsbereich", @@ -116,20 +117,23 @@ OC.L10N.register( "Authentication" : "Authentifizierung", "Configuration" : "Konfiguration", "Available for" : "Verfügbar für", + "Click to recheck the configuration" : "Hier klicken um die Konfiguration erneut zu prüfen", "Add storage" : "Speicher hinzufügen", "Advanced settings" : "Erweiterte Einstellungen", "Delete" : "Löschen", "Allow users to mount external storage" : "Benutzern erlauben, externen Speicher einzubinden", "Allow users to mount the following external storage" : "Benutzern erlauben, den folgenden externen Speicher einzubinden:", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Abrufen des Anfrage-Tokens fehlgeschlagen. Stellen Sie sicher, dass der Anwendungsschlüssel und Sicherheitsschlüssel korrekt sind.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Abrufen des Zugriff-Tokens fehlgeschlagen. Stellen Sie sicher, dass der Anwendungsschlüssel und Sicherheitsschlüssel korrekt sind.", + "Fetching request tokens failed. Verify that your app key and secret are correct." : "Abrufen des Anfrage-Tokens fehlgeschlagen. Bitte sicherstellen, dass der Anwendungsschlüssel und Sicherheitsschlüssel korrekt sind.", + "Fetching access tokens failed. Verify that your app key and secret are correct." : "Abrufen des Zugriff-Tokens fehlgeschlagen. Bitte sicherstellen, dass der Anwendungsschlüssel und Sicherheitsschlüssel korrekt sind.", "Step 1 failed. Exception: %s" : "Schritt 1 fehlgeschlagen. Fehlermeldung: %s", "Step 2 failed. Exception: %s" : "Schritt 2 fehlgeschlagen. Fehlermeldung: %s", "Dropbox App Configuration" : "Dropbox-App Konfiguration", - "Google Drive App Configuration" : "Google Drive - App Konfiguration", - "Storage with id \"%i\" not found" : "Der Speicher mit der ID „%i“ wurde nicht gefunden", - "Storage with id \"%i\" is not user editable" : "Der Speicher mit der ID \"%i\" kann nicht vom Benutzer bearbeitet werden", + "Google Drive App Configuration" : "Google Drive-App Konfiguration", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Kein externer Speicher konfiguriert", + "You can add external storages in the personal settings" : "Externe Speicher können in den persönlichen Einstellungen hinzugefügt werden", + "Are you sure you want to delete this external storage" : "Möchten Sie wirklich diesen externen Speicher löschen?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/de_DE.json b/apps/files_external/l10n/de_DE.json index e5f25c97a1fdd..4ab53e25cbcd5 100644 --- a/apps/files_external/l10n/de_DE.json +++ b/apps/files_external/l10n/de_DE.json @@ -12,7 +12,7 @@ "(group)" : "(group)", "Compatibility with Mac NFD encoding (slow)" : "Kompatibilität mit MAC NFD-Kodierung (langsam)", "Admin defined" : "Vom Administrator festgelegt", - "Are you sure you want to delete this external storage" : "Möchten Sie wirklich diesen externen Speicher löschen?", + "Are you sure you want to delete this external storage?" : "Möchten Sie wirklich diesen externen Speicher löschen?", "Delete storage?" : "Speicher löschen?", "Saved" : "Gespeichert", "Saving..." : "Speichere …", @@ -54,9 +54,11 @@ "OAuth2" : "OAuth2", "Client ID" : "Client-ID", "Client secret" : "Geheime Zeichenkette des Client", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Name des Mieters", "Identity endpoint URL" : "Identität Endpunkt-URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Domain", "Rackspace" : "Rackspace", "API key" : "API-Schlüssel", "Global credentials" : "Globale Anmeldeinformationen", @@ -89,7 +91,6 @@ "SFTP with secret key login" : "SFTP mit der Anmeldung über einen geheimen Schlüssel", "SMB / CIFS" : "SMB / CIFS", "Share" : "Share", - "Domain" : "Domain", "SMB / CIFS using OC login" : "SMB / CIFS mit OC-Anmeldung", "Username as share" : "Benutzername als Freigabe", "OpenStack Object Storage" : "Openstack-Objektspeicher", @@ -98,8 +99,8 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Die cURL-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich bezüglich Aktivierung oder Installation an Ihren Administrator.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Die FTP-Unterstützung von PHP ist deaktiviert oder nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich bezüglich Aktivierung oder Installation an Ihren Administrator.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" ist nicht installiert. Das Hinzufügen von %s ist nicht möglich. Bitte wenden Sie sich zur Installation an Ihren Administrator.", - "No external storage configured" : "Kein externer Speicher konfiguriert", - "You can add external storages in the personal settings" : "Externe Speicher können in den persönlichen Einstellungen hinzugefügt werden", + "External storage support" : "Unterstützung für externen Speicher", + "No external storage configured or you don't have the permission to configure them" : "Es ist kein externer Speicher eingerichtet oder Sie haben keine Berechtigung dies zu tun.", "Name" : "Name", "Storage type" : "Speichertyp", "Scope" : "Anwendungsbereich", @@ -114,20 +115,23 @@ "Authentication" : "Authentifizierung", "Configuration" : "Konfiguration", "Available for" : "Verfügbar für", + "Click to recheck the configuration" : "Hier klicken um die Konfiguration erneut zu prüfen", "Add storage" : "Speicher hinzufügen", "Advanced settings" : "Erweiterte Einstellungen", "Delete" : "Löschen", "Allow users to mount external storage" : "Benutzern erlauben, externen Speicher einzubinden", "Allow users to mount the following external storage" : "Benutzern erlauben, den folgenden externen Speicher einzubinden:", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Abrufen des Anfrage-Tokens fehlgeschlagen. Stellen Sie sicher, dass der Anwendungsschlüssel und Sicherheitsschlüssel korrekt sind.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Abrufen des Zugriff-Tokens fehlgeschlagen. Stellen Sie sicher, dass der Anwendungsschlüssel und Sicherheitsschlüssel korrekt sind.", + "Fetching request tokens failed. Verify that your app key and secret are correct." : "Abrufen des Anfrage-Tokens fehlgeschlagen. Bitte sicherstellen, dass der Anwendungsschlüssel und Sicherheitsschlüssel korrekt sind.", + "Fetching access tokens failed. Verify that your app key and secret are correct." : "Abrufen des Zugriff-Tokens fehlgeschlagen. Bitte sicherstellen, dass der Anwendungsschlüssel und Sicherheitsschlüssel korrekt sind.", "Step 1 failed. Exception: %s" : "Schritt 1 fehlgeschlagen. Fehlermeldung: %s", "Step 2 failed. Exception: %s" : "Schritt 2 fehlgeschlagen. Fehlermeldung: %s", "Dropbox App Configuration" : "Dropbox-App Konfiguration", - "Google Drive App Configuration" : "Google Drive - App Konfiguration", - "Storage with id \"%i\" not found" : "Der Speicher mit der ID „%i“ wurde nicht gefunden", - "Storage with id \"%i\" is not user editable" : "Der Speicher mit der ID \"%i\" kann nicht vom Benutzer bearbeitet werden", + "Google Drive App Configuration" : "Google Drive-App Konfiguration", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Kein externer Speicher konfiguriert", + "You can add external storages in the personal settings" : "Externe Speicher können in den persönlichen Einstellungen hinzugefügt werden", + "Are you sure you want to delete this external storage" : "Möchten Sie wirklich diesen externen Speicher löschen?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/el.js b/apps/files_external/l10n/el.js index 2149dd4f7a064..d32c4a2378543 100644 --- a/apps/files_external/l10n/el.js +++ b/apps/files_external/l10n/el.js @@ -54,9 +54,11 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID πελάτη", "Client secret" : "Μυστικό πελάτη", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Όνομα \"ένοικου\"", "Identity endpoint URL" : "URL τελικού σημείου ταυτοποίησης", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Τομέας", "Rackspace" : "Rackspace", "API key" : "Κλειδί API", "Global credentials" : "Παγκόσμια διαπιστευτήρια", @@ -88,7 +90,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP με σύνδεση με κρυφό κλειδί", "SMB / CIFS" : "SMB / CIFS", "Share" : "Διαμοιράστε", - "Domain" : "Τομέας", "SMB / CIFS using OC login" : "SMB / CIFS χρησιμοποιώντας λογαριασμό OC", "Username as share" : "Όνομα χρήστη ως διαμοιραζόμενος φάκελος", "OpenStack Object Storage" : "Αποθήκη αντικειμένων OpenStack", @@ -97,8 +98,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Η cURL υποστήριξη στην PHP δεν είναι ενεργοποιημένη. Η προσάρτηση του %s δεν είναι δυνατή. Παρακαλούμε ζητήστε από τον διαχειριστή του συστήματός σας να το εγκαταστήσει. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Η FTP υποστήριξη στην PHP δεν είναι ενεργοποιημένη ή εγκατεστημένη. Η προσάρτηση του %s δεν είναι δυνατή. Παρακαλούμε ζητήστε τον διαχειριστή του συστήματός σας να το εγκατασταστήσει. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" δεν είναι εγκατεστημένο. Η προσάρτηση του %s δεν είναι δυνατή. Παρακαλούμε ζητήστε τον διαχειριστή του συστήματός σας να το εγκαταστήσει. ", - "No external storage configured" : "Δεν έχει ρυθμιστεί κανένα εξωτερικό μέσο αποθήκευσης", - "You can add external storages in the personal settings" : "Μπορείτε να προσθέσετε εξωτερικά μέσα αποθήκευσης στις προσωπικές ρυθμίσεις", "Name" : "Όνομα", "Storage type" : "Τύπος αποθηκευτικού χώρου", "Scope" : "Εύρος", @@ -118,15 +117,8 @@ OC.L10N.register( "Delete" : "Διαγραφή", "Allow users to mount external storage" : "Να επιτρέπεται στους χρήστες η σύνδεση εξωτερικού χώρου", "Allow users to mount the following external storage" : "Χορήγηση άδειας στους χρήστες να συνδέσουν τα παρακάτω εξωτερικά μέσα αποθήκευσης", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Η λήψη των τεκμηρίων αιτήματος απέτυχε. Βεβαιώστε ότι το κλειδί εφαρμογής και το μυστικό είναι ορθά.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Η λήψη των τεκμηρίων πρόσβασης απέτυχε. Βεβαιώστε ότι το κλειδί εφαρμογής και το μυστικό είναι ορθά.", - "Step 1 failed. Exception: %s" : "Το βήμα 1 απέτυχε. Εξαίρεση: %s", - "Step 2 failed. Exception: %s" : "Το βήμα 2 απέτυχε. Εξαίρεση: %s", - "Dropbox App Configuration" : "Ρυθμίσεις εφαρμογής Dropbox", - "Google Drive App Configuration" : "Ρυθμίσεις εφαρμογής Google Drive", - "Storage with id \"%i\" not found" : "Αποθήκευση με id \"%i\" δεν βρέθηκε", - "Storage with id \"%i\" is not user editable" : "Αποθηκευτικός χώρος με ID \"%i\" δεν είναι επεξεργάσιμος από τον χρήστη ", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "Δεν έχει ρυθμιστεί κανένα εξωτερικό μέσο αποθήκευσης", + "You can add external storages in the personal settings" : "Μπορείτε να προσθέσετε εξωτερικά μέσα αποθήκευσης στις προσωπικές ρυθμίσεις" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/el.json b/apps/files_external/l10n/el.json index 0035fc902c77e..a25735ba42af6 100644 --- a/apps/files_external/l10n/el.json +++ b/apps/files_external/l10n/el.json @@ -52,9 +52,11 @@ "OAuth2" : "OAuth2", "Client ID" : "ID πελάτη", "Client secret" : "Μυστικό πελάτη", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Όνομα \"ένοικου\"", "Identity endpoint URL" : "URL τελικού σημείου ταυτοποίησης", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Τομέας", "Rackspace" : "Rackspace", "API key" : "Κλειδί API", "Global credentials" : "Παγκόσμια διαπιστευτήρια", @@ -86,7 +88,6 @@ "SFTP with secret key login" : "SFTP με σύνδεση με κρυφό κλειδί", "SMB / CIFS" : "SMB / CIFS", "Share" : "Διαμοιράστε", - "Domain" : "Τομέας", "SMB / CIFS using OC login" : "SMB / CIFS χρησιμοποιώντας λογαριασμό OC", "Username as share" : "Όνομα χρήστη ως διαμοιραζόμενος φάκελος", "OpenStack Object Storage" : "Αποθήκη αντικειμένων OpenStack", @@ -95,8 +96,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Η cURL υποστήριξη στην PHP δεν είναι ενεργοποιημένη. Η προσάρτηση του %s δεν είναι δυνατή. Παρακαλούμε ζητήστε από τον διαχειριστή του συστήματός σας να το εγκαταστήσει. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Η FTP υποστήριξη στην PHP δεν είναι ενεργοποιημένη ή εγκατεστημένη. Η προσάρτηση του %s δεν είναι δυνατή. Παρακαλούμε ζητήστε τον διαχειριστή του συστήματός σας να το εγκατασταστήσει. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" δεν είναι εγκατεστημένο. Η προσάρτηση του %s δεν είναι δυνατή. Παρακαλούμε ζητήστε τον διαχειριστή του συστήματός σας να το εγκαταστήσει. ", - "No external storage configured" : "Δεν έχει ρυθμιστεί κανένα εξωτερικό μέσο αποθήκευσης", - "You can add external storages in the personal settings" : "Μπορείτε να προσθέσετε εξωτερικά μέσα αποθήκευσης στις προσωπικές ρυθμίσεις", "Name" : "Όνομα", "Storage type" : "Τύπος αποθηκευτικού χώρου", "Scope" : "Εύρος", @@ -116,15 +115,8 @@ "Delete" : "Διαγραφή", "Allow users to mount external storage" : "Να επιτρέπεται στους χρήστες η σύνδεση εξωτερικού χώρου", "Allow users to mount the following external storage" : "Χορήγηση άδειας στους χρήστες να συνδέσουν τα παρακάτω εξωτερικά μέσα αποθήκευσης", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Η λήψη των τεκμηρίων αιτήματος απέτυχε. Βεβαιώστε ότι το κλειδί εφαρμογής και το μυστικό είναι ορθά.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Η λήψη των τεκμηρίων πρόσβασης απέτυχε. Βεβαιώστε ότι το κλειδί εφαρμογής και το μυστικό είναι ορθά.", - "Step 1 failed. Exception: %s" : "Το βήμα 1 απέτυχε. Εξαίρεση: %s", - "Step 2 failed. Exception: %s" : "Το βήμα 2 απέτυχε. Εξαίρεση: %s", - "Dropbox App Configuration" : "Ρυθμίσεις εφαρμογής Dropbox", - "Google Drive App Configuration" : "Ρυθμίσεις εφαρμογής Google Drive", - "Storage with id \"%i\" not found" : "Αποθήκευση με id \"%i\" δεν βρέθηκε", - "Storage with id \"%i\" is not user editable" : "Αποθηκευτικός χώρος με ID \"%i\" δεν είναι επεξεργάσιμος από τον χρήστη ", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "Δεν έχει ρυθμιστεί κανένα εξωτερικό μέσο αποθήκευσης", + "You can add external storages in the personal settings" : "Μπορείτε να προσθέσετε εξωτερικά μέσα αποθήκευσης στις προσωπικές ρυθμίσεις" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/en_GB.js b/apps/files_external/l10n/en_GB.js index 45fe58c0b3681..cc4b1000d6d95 100644 --- a/apps/files_external/l10n/en_GB.js +++ b/apps/files_external/l10n/en_GB.js @@ -14,7 +14,7 @@ OC.L10N.register( "(group)" : "(group)", "Compatibility with Mac NFD encoding (slow)" : "Compatibility with Mac NFD encoding (slow)", "Admin defined" : "Admin defined", - "Are you sure you want to delete this external storage" : "Are you sure you want to delete this external storage", + "Are you sure you want to delete this external storage?" : "Are you sure you want to delete this external storage?", "Delete storage?" : "Delete storage?", "Saved" : "Saved", "Saving..." : "Saving...", @@ -56,9 +56,11 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Client secret", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Tenant name", "Identity endpoint URL" : "Identity endpoint URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Domain", "Rackspace" : "Rackspace", "API key" : "API key", "Global credentials" : "Global credentials", @@ -91,7 +93,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP with secret key login", "SMB / CIFS" : "SMB / CIFS", "Share" : "Share", - "Domain" : "Domain", "SMB / CIFS using OC login" : "SMB / CIFS using OC login", "Username as share" : "Username as share", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -100,8 +101,8 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it.", - "No external storage configured" : "No external storage configured", - "You can add external storages in the personal settings" : "You can add external storages in the personal settings", + "External storage support" : "External storage support", + "No external storage configured or you don't have the permission to configure them" : "No external storage configured or you don't have the permission to configure them", "Name" : "Name", "Storage type" : "Storage type", "Scope" : "Scope", @@ -116,6 +117,7 @@ OC.L10N.register( "Authentication" : "Authentication", "Configuration" : "Configuration", "Available for" : "Available for", + "Click to recheck the configuration" : "Click to recheck the configuration", "Add storage" : "Add storage", "Advanced settings" : "Advanced settings", "Delete" : "Delete", @@ -127,9 +129,11 @@ OC.L10N.register( "Step 2 failed. Exception: %s" : "Step 2 failed. Exception: %s", "Dropbox App Configuration" : "Dropbox App Configuration", "Google Drive App Configuration" : "Google Drive App Configuration", - "Storage with id \"%i\" not found" : "Storage with id \"%i\" not found", - "Storage with id \"%i\" is not user editable" : "Storage with id \"%i\" is not user editable", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "No external storage configured", + "You can add external storages in the personal settings" : "You can add external storages in the personal settings", + "Are you sure you want to delete this external storage" : "Are you sure you want to delete this external storage" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/en_GB.json b/apps/files_external/l10n/en_GB.json index f7ac7290e7ac0..7ff4fcb7b55d9 100644 --- a/apps/files_external/l10n/en_GB.json +++ b/apps/files_external/l10n/en_GB.json @@ -12,7 +12,7 @@ "(group)" : "(group)", "Compatibility with Mac NFD encoding (slow)" : "Compatibility with Mac NFD encoding (slow)", "Admin defined" : "Admin defined", - "Are you sure you want to delete this external storage" : "Are you sure you want to delete this external storage", + "Are you sure you want to delete this external storage?" : "Are you sure you want to delete this external storage?", "Delete storage?" : "Delete storage?", "Saved" : "Saved", "Saving..." : "Saving...", @@ -54,9 +54,11 @@ "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Client secret", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Tenant name", "Identity endpoint URL" : "Identity endpoint URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Domain", "Rackspace" : "Rackspace", "API key" : "API key", "Global credentials" : "Global credentials", @@ -89,7 +91,6 @@ "SFTP with secret key login" : "SFTP with secret key login", "SMB / CIFS" : "SMB / CIFS", "Share" : "Share", - "Domain" : "Domain", "SMB / CIFS using OC login" : "SMB / CIFS using OC login", "Username as share" : "Username as share", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -98,8 +99,8 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it.", - "No external storage configured" : "No external storage configured", - "You can add external storages in the personal settings" : "You can add external storages in the personal settings", + "External storage support" : "External storage support", + "No external storage configured or you don't have the permission to configure them" : "No external storage configured or you don't have the permission to configure them", "Name" : "Name", "Storage type" : "Storage type", "Scope" : "Scope", @@ -114,6 +115,7 @@ "Authentication" : "Authentication", "Configuration" : "Configuration", "Available for" : "Available for", + "Click to recheck the configuration" : "Click to recheck the configuration", "Add storage" : "Add storage", "Advanced settings" : "Advanced settings", "Delete" : "Delete", @@ -125,9 +127,11 @@ "Step 2 failed. Exception: %s" : "Step 2 failed. Exception: %s", "Dropbox App Configuration" : "Dropbox App Configuration", "Google Drive App Configuration" : "Google Drive App Configuration", - "Storage with id \"%i\" not found" : "Storage with id \"%i\" not found", - "Storage with id \"%i\" is not user editable" : "Storage with id \"%i\" is not user editable", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "No external storage configured", + "You can add external storages in the personal settings" : "You can add external storages in the personal settings", + "Are you sure you want to delete this external storage" : "Are you sure you want to delete this external storage" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es.js b/apps/files_external/l10n/es.js index 7bfed57158d27..f607c38b6d702 100644 --- a/apps/files_external/l10n/es.js +++ b/apps/files_external/l10n/es.js @@ -14,7 +14,7 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac MFD (lento)", "Admin defined" : "Admin definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres eliminar este almacenamiento externo?", + "Are you sure you want to delete this external storage?" : "¿Estás seguro de querer eliminar el almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -23,7 +23,7 @@ OC.L10N.register( "Couldn't access. Please log out and in again to activate this mount point" : "No se ha podido acceder. Por favor, sal de la cuenta y vuelve a entrar para activar este punto de montaje", "Couldn't get the information from the remote server: {code} {type}" : "No se pudo obtener la información del servidor remoto: {code} {type}", "Couldn't get the list of external mount points: {type}" : "No se puede obtener la lista de los puntos de montaje externos: {type}", - "There was an error with message: " : "Hubo un error con el mensaje:", + "There was an error with message: " : "Ha habido un error con el mensaje:", "External mount error" : "Error de montaje externo", "external-storage" : "almacenamiento-externo", "Couldn't fetch list of Windows network drive mount points: Empty response from server" : "No se ha podido recuperar la lista de puntos de montaje de las unidades de red de Windows: respuesta vacía del servidor", @@ -56,11 +56,13 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID de Cliente", "Client secret" : "Cliente secreto", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Nombre del inquilino", "Identity endpoint URL" : "Identidad de punto final URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Dominio", "Rackspace" : "Espacio de Rack", - "API key" : "Clave API", + "API key" : "Clave de la API", "Global credentials" : "Credenciales global", "Log-in credentials, save in database" : "Credenciales de inicio de sesión, salvar en la base de datos", "Username and password" : "Nombre de usuario y contraseña", @@ -91,7 +93,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con clave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS que usan acceso OC", "Username as share" : "Nombre de usuario como compartir", "OpenStack Object Storage" : "Almacenamiento de objeto OpenStack", @@ -100,8 +101,8 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte de cURL en PHP no está activado o instalado. No se puede montar %s. Pídale al administrador del sistema que lo instale.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP desde PHP no esta habilitado o instalado. Montar el %s no ha sido posible. Por favor consulta al administrador de tu sistema para que lo instale.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no está instalado. El montaje de %s no es posible. Por favor, pregunte a su administrador del sistema para instalarlo.", - "No external storage configured" : "No hay ningún almacenamiento externo configurado", - "You can add external storages in the personal settings" : "Puede agregar almacenamientos externos en la configuración personal", + "External storage support" : "Soporte de almacenamiento externo", + "No external storage configured or you don't have the permission to configure them" : "No se ha configurado ningún almacenamiento externo o no tienes permiso para configurarlos", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Ámbito", @@ -116,20 +117,23 @@ OC.L10N.register( "Authentication" : "Autentificación", "Configuration" : "Configuración", "Available for" : "Disponible para", + "Click to recheck the configuration" : "Clic para volver a comprobar la configuración", "Add storage" : "Añadir almacenamiento", "Advanced settings" : "Configuración avanzada", "Delete" : "Eliminar", "Allow users to mount external storage" : "Permitir a los usuarios montar un almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Falló al acceder a los tokens solicitados. Verifique que su clave de app y la clave secreta sean correctas.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Falló al acceder a los tokens solicitados. Verifique que su clave de app y la clave secreta sean correctas.", - "Step 1 failed. Exception: %s" : "El paso 1 falló. Excepción: %s", - "Step 2 failed. Exception: %s" : "El paso 2 falló. Excepción: %s", + "Fetching request tokens failed. Verify that your app key and secret are correct." : "Fallo al recuperar los tokens de peticiones. Verifica que tu clave de aplicación y secreto son correctos.", + "Fetching access tokens failed. Verify that your app key and secret are correct." : "Fallo al recuperar los tokens de peticiones. Verifica que tu clave de aplicación y secreto son correctos.", + "Step 1 failed. Exception: %s" : "El paso 1 ha fallado. Excepción: %s", + "Step 2 failed. Exception: %s" : "El paso 2 ha fallado. Excepción: %s", "Dropbox App Configuration" : "Configuración de la app de Dropbox", "Google Drive App Configuration" : "Configuración de la app de Google Drive", - "Storage with id \"%i\" not found" : "No se ha encontrado almacenamiento con id \"%i\"", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no es editable por usuarios", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "No hay ningún almacenamiento externo configurado", + "You can add external storages in the personal settings" : "Puede agregar almacenamientos externos en la configuración personal", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres eliminar este almacenamiento externo?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es.json b/apps/files_external/l10n/es.json index 79c81accd5801..90800745fee56 100644 --- a/apps/files_external/l10n/es.json +++ b/apps/files_external/l10n/es.json @@ -12,7 +12,7 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac MFD (lento)", "Admin defined" : "Admin definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres eliminar este almacenamiento externo?", + "Are you sure you want to delete this external storage?" : "¿Estás seguro de querer eliminar el almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -21,7 +21,7 @@ "Couldn't access. Please log out and in again to activate this mount point" : "No se ha podido acceder. Por favor, sal de la cuenta y vuelve a entrar para activar este punto de montaje", "Couldn't get the information from the remote server: {code} {type}" : "No se pudo obtener la información del servidor remoto: {code} {type}", "Couldn't get the list of external mount points: {type}" : "No se puede obtener la lista de los puntos de montaje externos: {type}", - "There was an error with message: " : "Hubo un error con el mensaje:", + "There was an error with message: " : "Ha habido un error con el mensaje:", "External mount error" : "Error de montaje externo", "external-storage" : "almacenamiento-externo", "Couldn't fetch list of Windows network drive mount points: Empty response from server" : "No se ha podido recuperar la lista de puntos de montaje de las unidades de red de Windows: respuesta vacía del servidor", @@ -54,11 +54,13 @@ "OAuth2" : "OAuth2", "Client ID" : "ID de Cliente", "Client secret" : "Cliente secreto", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Nombre del inquilino", "Identity endpoint URL" : "Identidad de punto final URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Dominio", "Rackspace" : "Espacio de Rack", - "API key" : "Clave API", + "API key" : "Clave de la API", "Global credentials" : "Credenciales global", "Log-in credentials, save in database" : "Credenciales de inicio de sesión, salvar en la base de datos", "Username and password" : "Nombre de usuario y contraseña", @@ -89,7 +91,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con clave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS que usan acceso OC", "Username as share" : "Nombre de usuario como compartir", "OpenStack Object Storage" : "Almacenamiento de objeto OpenStack", @@ -98,8 +99,8 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte de cURL en PHP no está activado o instalado. No se puede montar %s. Pídale al administrador del sistema que lo instale.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP desde PHP no esta habilitado o instalado. Montar el %s no ha sido posible. Por favor consulta al administrador de tu sistema para que lo instale.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no está instalado. El montaje de %s no es posible. Por favor, pregunte a su administrador del sistema para instalarlo.", - "No external storage configured" : "No hay ningún almacenamiento externo configurado", - "You can add external storages in the personal settings" : "Puede agregar almacenamientos externos en la configuración personal", + "External storage support" : "Soporte de almacenamiento externo", + "No external storage configured or you don't have the permission to configure them" : "No se ha configurado ningún almacenamiento externo o no tienes permiso para configurarlos", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Ámbito", @@ -114,20 +115,23 @@ "Authentication" : "Autentificación", "Configuration" : "Configuración", "Available for" : "Disponible para", + "Click to recheck the configuration" : "Clic para volver a comprobar la configuración", "Add storage" : "Añadir almacenamiento", "Advanced settings" : "Configuración avanzada", "Delete" : "Eliminar", "Allow users to mount external storage" : "Permitir a los usuarios montar un almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Falló al acceder a los tokens solicitados. Verifique que su clave de app y la clave secreta sean correctas.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Falló al acceder a los tokens solicitados. Verifique que su clave de app y la clave secreta sean correctas.", - "Step 1 failed. Exception: %s" : "El paso 1 falló. Excepción: %s", - "Step 2 failed. Exception: %s" : "El paso 2 falló. Excepción: %s", + "Fetching request tokens failed. Verify that your app key and secret are correct." : "Fallo al recuperar los tokens de peticiones. Verifica que tu clave de aplicación y secreto son correctos.", + "Fetching access tokens failed. Verify that your app key and secret are correct." : "Fallo al recuperar los tokens de peticiones. Verifica que tu clave de aplicación y secreto son correctos.", + "Step 1 failed. Exception: %s" : "El paso 1 ha fallado. Excepción: %s", + "Step 2 failed. Exception: %s" : "El paso 2 ha fallado. Excepción: %s", "Dropbox App Configuration" : "Configuración de la app de Dropbox", "Google Drive App Configuration" : "Configuración de la app de Google Drive", - "Storage with id \"%i\" not found" : "No se ha encontrado almacenamiento con id \"%i\"", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no es editable por usuarios", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "No hay ningún almacenamiento externo configurado", + "You can add external storages in the personal settings" : "Puede agregar almacenamientos externos en la configuración personal", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres eliminar este almacenamiento externo?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es_419.js b/apps/files_external/l10n/es_419.js index 720a7c663d25d..725d4f0a2b581 100644 --- a/apps/files_external/l10n/es_419.js +++ b/apps/files_external/l10n/es_419.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es_419.json b/apps/files_external/l10n/es_419.json index 59b9db811b32f..fe287dc57155a 100644 --- a/apps/files_external/l10n/es_419.json +++ b/apps/files_external/l10n/es_419.json @@ -12,7 +12,6 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -118,15 +114,9 @@ "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es_AR.js b/apps/files_external/l10n/es_AR.js index 12ce70b40c155..be098bbd56c68 100644 --- a/apps/files_external/l10n/es_AR.js +++ b/apps/files_external/l10n/es_AR.js @@ -52,9 +52,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "¡No se encontraron archivos en su búsqueda que hayan sido modificados\n\n en los últimos 7 días! ", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -86,7 +86,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Nombre de usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -95,8 +94,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Favor de solicitar a su administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Favor de solicitar a su administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Favor de solicitar a su administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Usted puede agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -116,15 +113,8 @@ OC.L10N.register( "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Favor de verificar que su llave de aplicación y su secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Favor de verificar que su llave de aplicación y su secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Usted puede agregar almacenamiento externo en las configuraciones personales" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es_AR.json b/apps/files_external/l10n/es_AR.json index d8deb6aad68e1..cd6a83efe4111 100644 --- a/apps/files_external/l10n/es_AR.json +++ b/apps/files_external/l10n/es_AR.json @@ -50,9 +50,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "¡No se encontraron archivos en su búsqueda que hayan sido modificados\n\n en los últimos 7 días! ", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -84,7 +84,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Nombre de usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -93,8 +92,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Favor de solicitar a su administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Favor de solicitar a su administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Favor de solicitar a su administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Usted puede agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -114,15 +111,8 @@ "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Favor de verificar que su llave de aplicación y su secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Favor de verificar que su llave de aplicación y su secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Usted puede agregar almacenamiento externo en las configuraciones personales" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es_CL.js b/apps/files_external/l10n/es_CL.js index 720a7c663d25d..725d4f0a2b581 100644 --- a/apps/files_external/l10n/es_CL.js +++ b/apps/files_external/l10n/es_CL.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es_CL.json b/apps/files_external/l10n/es_CL.json index 59b9db811b32f..fe287dc57155a 100644 --- a/apps/files_external/l10n/es_CL.json +++ b/apps/files_external/l10n/es_CL.json @@ -12,7 +12,6 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -118,15 +114,9 @@ "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es_CO.js b/apps/files_external/l10n/es_CO.js index 720a7c663d25d..725d4f0a2b581 100644 --- a/apps/files_external/l10n/es_CO.js +++ b/apps/files_external/l10n/es_CO.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es_CO.json b/apps/files_external/l10n/es_CO.json index 59b9db811b32f..fe287dc57155a 100644 --- a/apps/files_external/l10n/es_CO.json +++ b/apps/files_external/l10n/es_CO.json @@ -12,7 +12,6 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -118,15 +114,9 @@ "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es_CR.js b/apps/files_external/l10n/es_CR.js index 720a7c663d25d..725d4f0a2b581 100644 --- a/apps/files_external/l10n/es_CR.js +++ b/apps/files_external/l10n/es_CR.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es_CR.json b/apps/files_external/l10n/es_CR.json index 59b9db811b32f..fe287dc57155a 100644 --- a/apps/files_external/l10n/es_CR.json +++ b/apps/files_external/l10n/es_CR.json @@ -12,7 +12,6 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -118,15 +114,9 @@ "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es_DO.js b/apps/files_external/l10n/es_DO.js index 720a7c663d25d..725d4f0a2b581 100644 --- a/apps/files_external/l10n/es_DO.js +++ b/apps/files_external/l10n/es_DO.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es_DO.json b/apps/files_external/l10n/es_DO.json index 59b9db811b32f..fe287dc57155a 100644 --- a/apps/files_external/l10n/es_DO.json +++ b/apps/files_external/l10n/es_DO.json @@ -12,7 +12,6 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -118,15 +114,9 @@ "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es_EC.js b/apps/files_external/l10n/es_EC.js index 720a7c663d25d..725d4f0a2b581 100644 --- a/apps/files_external/l10n/es_EC.js +++ b/apps/files_external/l10n/es_EC.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es_EC.json b/apps/files_external/l10n/es_EC.json index 59b9db811b32f..fe287dc57155a 100644 --- a/apps/files_external/l10n/es_EC.json +++ b/apps/files_external/l10n/es_EC.json @@ -12,7 +12,6 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -118,15 +114,9 @@ "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es_GT.js b/apps/files_external/l10n/es_GT.js index 720a7c663d25d..725d4f0a2b581 100644 --- a/apps/files_external/l10n/es_GT.js +++ b/apps/files_external/l10n/es_GT.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es_GT.json b/apps/files_external/l10n/es_GT.json index 59b9db811b32f..fe287dc57155a 100644 --- a/apps/files_external/l10n/es_GT.json +++ b/apps/files_external/l10n/es_GT.json @@ -12,7 +12,6 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -118,15 +114,9 @@ "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es_HN.js b/apps/files_external/l10n/es_HN.js index 720a7c663d25d..725d4f0a2b581 100644 --- a/apps/files_external/l10n/es_HN.js +++ b/apps/files_external/l10n/es_HN.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es_HN.json b/apps/files_external/l10n/es_HN.json index 59b9db811b32f..fe287dc57155a 100644 --- a/apps/files_external/l10n/es_HN.json +++ b/apps/files_external/l10n/es_HN.json @@ -12,7 +12,6 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -118,15 +114,9 @@ "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es_MX.js b/apps/files_external/l10n/es_MX.js index 720a7c663d25d..3a5084dc55dd8 100644 --- a/apps/files_external/l10n/es_MX.js +++ b/apps/files_external/l10n/es_MX.js @@ -14,7 +14,7 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", + "Are you sure you want to delete this external storage?" : "¿Estás seguro que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -56,9 +56,11 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -75,6 +77,7 @@ OC.L10N.register( "Region" : "Región", "Enable SSL" : "Habilitar SSL", "Enable Path Style" : "Habilitar Estilo de Ruta", + "Legacy (v2) authentication" : "Autenticación legada (v2)", "WebDAV" : "WebDAV", "URL" : "URL", "Remote subfolder" : "Subcarpeta remota", @@ -90,7 +93,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +101,8 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "External storage support" : "Soporte de almacenamiento externo", + "No external storage configured or you don't have the permission to configure them" : "No se ha configurado almacenamiento externo o bien no cuentas con los permisos para configurarlos", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -115,6 +117,7 @@ OC.L10N.register( "Authentication" : "Autenticación", "Configuration" : "Configuración", "Available for" : "Disponible para", + "Click to recheck the configuration" : "Haz click para volver a marcar la configuración", "Add storage" : "Agregar almacenamiento", "Advanced settings" : "Configuraciones avanzadas", "Delete" : "Borrar", @@ -122,13 +125,15 @@ OC.L10N.register( "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", + "Step 1 failed. Exception: %s" : "Paso 1 falló. Excepción: %s", "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", + "Google Drive App Configuration" : "Configuración de la Aplicación de Google Drive", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es_MX.json b/apps/files_external/l10n/es_MX.json index 59b9db811b32f..084edf9a09b75 100644 --- a/apps/files_external/l10n/es_MX.json +++ b/apps/files_external/l10n/es_MX.json @@ -12,7 +12,7 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", + "Are you sure you want to delete this external storage?" : "¿Estás seguro que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -54,9 +54,11 @@ "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -73,6 +75,7 @@ "Region" : "Región", "Enable SSL" : "Habilitar SSL", "Enable Path Style" : "Habilitar Estilo de Ruta", + "Legacy (v2) authentication" : "Autenticación legada (v2)", "WebDAV" : "WebDAV", "URL" : "URL", "Remote subfolder" : "Subcarpeta remota", @@ -88,7 +91,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +99,8 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "External storage support" : "Soporte de almacenamiento externo", + "No external storage configured or you don't have the permission to configure them" : "No se ha configurado almacenamiento externo o bien no cuentas con los permisos para configurarlos", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -113,6 +115,7 @@ "Authentication" : "Autenticación", "Configuration" : "Configuración", "Available for" : "Disponible para", + "Click to recheck the configuration" : "Haz click para volver a marcar la configuración", "Add storage" : "Agregar almacenamiento", "Advanced settings" : "Configuraciones avanzadas", "Delete" : "Borrar", @@ -120,13 +123,15 @@ "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", + "Step 1 failed. Exception: %s" : "Paso 1 falló. Excepción: %s", "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", + "Google Drive App Configuration" : "Configuración de la Aplicación de Google Drive", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es_NI.js b/apps/files_external/l10n/es_NI.js index 720a7c663d25d..725d4f0a2b581 100644 --- a/apps/files_external/l10n/es_NI.js +++ b/apps/files_external/l10n/es_NI.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es_NI.json b/apps/files_external/l10n/es_NI.json index 59b9db811b32f..fe287dc57155a 100644 --- a/apps/files_external/l10n/es_NI.json +++ b/apps/files_external/l10n/es_NI.json @@ -12,7 +12,6 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -118,15 +114,9 @@ "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es_PA.js b/apps/files_external/l10n/es_PA.js index 720a7c663d25d..725d4f0a2b581 100644 --- a/apps/files_external/l10n/es_PA.js +++ b/apps/files_external/l10n/es_PA.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es_PA.json b/apps/files_external/l10n/es_PA.json index 59b9db811b32f..fe287dc57155a 100644 --- a/apps/files_external/l10n/es_PA.json +++ b/apps/files_external/l10n/es_PA.json @@ -12,7 +12,6 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -118,15 +114,9 @@ "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es_PE.js b/apps/files_external/l10n/es_PE.js index 720a7c663d25d..725d4f0a2b581 100644 --- a/apps/files_external/l10n/es_PE.js +++ b/apps/files_external/l10n/es_PE.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es_PE.json b/apps/files_external/l10n/es_PE.json index 59b9db811b32f..fe287dc57155a 100644 --- a/apps/files_external/l10n/es_PE.json +++ b/apps/files_external/l10n/es_PE.json @@ -12,7 +12,6 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -118,15 +114,9 @@ "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es_PR.js b/apps/files_external/l10n/es_PR.js index 720a7c663d25d..725d4f0a2b581 100644 --- a/apps/files_external/l10n/es_PR.js +++ b/apps/files_external/l10n/es_PR.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es_PR.json b/apps/files_external/l10n/es_PR.json index 59b9db811b32f..fe287dc57155a 100644 --- a/apps/files_external/l10n/es_PR.json +++ b/apps/files_external/l10n/es_PR.json @@ -12,7 +12,6 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -118,15 +114,9 @@ "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es_PY.js b/apps/files_external/l10n/es_PY.js index 720a7c663d25d..725d4f0a2b581 100644 --- a/apps/files_external/l10n/es_PY.js +++ b/apps/files_external/l10n/es_PY.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es_PY.json b/apps/files_external/l10n/es_PY.json index 59b9db811b32f..fe287dc57155a 100644 --- a/apps/files_external/l10n/es_PY.json +++ b/apps/files_external/l10n/es_PY.json @@ -12,7 +12,6 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -118,15 +114,9 @@ "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es_SV.js b/apps/files_external/l10n/es_SV.js index 720a7c663d25d..725d4f0a2b581 100644 --- a/apps/files_external/l10n/es_SV.js +++ b/apps/files_external/l10n/es_SV.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es_SV.json b/apps/files_external/l10n/es_SV.json index 59b9db811b32f..fe287dc57155a 100644 --- a/apps/files_external/l10n/es_SV.json +++ b/apps/files_external/l10n/es_SV.json @@ -12,7 +12,6 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -118,15 +114,9 @@ "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/es_UY.js b/apps/files_external/l10n/es_UY.js index 720a7c663d25d..725d4f0a2b581 100644 --- a/apps/files_external/l10n/es_UY.js +++ b/apps/files_external/l10n/es_UY.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/es_UY.json b/apps/files_external/l10n/es_UY.json index 59b9db811b32f..fe287dc57155a 100644 --- a/apps/files_external/l10n/es_UY.json +++ b/apps/files_external/l10n/es_UY.json @@ -12,7 +12,6 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidad con codificación Mac NFD (lenta)", "Admin defined" : "Administrador definido", - "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?", "Delete storage?" : "¿Borrar almacenamiento?", "Saved" : "Guardado", "Saving..." : "Guardando...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", - "OpenStack" : "OpenStack", "Tenant name" : "Nombre de inquilino", "Identity endpoint URL" : "URL del punto de enlace de Identidad", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Llave de API", "Global credentials" : "Credenciales globales", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "Inicio de sesión SFTP con llave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartir", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS usando inicio de sesión OC", "Username as share" : "Usuario como elemento compartido", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para cURL en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "El soporte para FTP en PHP no se encuentra habilitado o instalado. El montaje de %s no es posible. Por favor solicita a tu administador su instalación. ", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" no se encuentra instalado. El montaje de %s no es posible. Por favor solicita a tu administrador su instalación. ", - "No external storage configured" : "No se ha configurado el almacenamiento externo", - "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", "Name" : "Nombre", "Storage type" : "Tipo de almacenamiento", "Scope" : "Alcance", @@ -118,15 +114,9 @@ "Delete" : "Borrar", "Allow users to mount external storage" : "Permitir a los usuarios montar almacenamiento externo", "Allow users to mount the following external storage" : "Permitir a los usuarios montar el siguiente almacenamiento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de solicitud. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Se presentó una falla al buscar las fichas de acceso. Por favor verifica que tu llave de aplicación y tu secreto sean correctos. ", - "Step 1 failed. Exception: %s" : "Falla en el paso 1: Excepción %s", - "Step 2 failed. Exception: %s" : "Paso 2 falló. Excepción: %s", - "Dropbox App Configuration" : "Configuración de la aplicación Dropbox", - "Google Drive App Configuration" : "Configuración de Aplicación Google Drive", - "Storage with id \"%i\" not found" : "El almacenamiento con id \"%i\" no fue encontrado", - "Storage with id \"%i\" is not user editable" : "El almacenamiento con id \"%i\" no puede ser editado por el usuario", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "No se ha configurado el almacenamiento externo", + "You can add external storages in the personal settings" : "Puedes agregar almacenamiento externo en las configuraciones personales", + "Are you sure you want to delete this external storage" : "¿Estás seguro de que quieres borrar este almacenamiento externo?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/et_EE.js b/apps/files_external/l10n/et_EE.js index 56fd4b06177be..add9b9914a28e 100644 --- a/apps/files_external/l10n/et_EE.js +++ b/apps/files_external/l10n/et_EE.js @@ -1,9 +1,7 @@ OC.L10N.register( "files_external", { - "Step 1 failed. Exception: %s" : "Samm 1 ebaõnnestus. Erind: %s", - "Step 2 failed. Exception: %s" : "Samm 2 ebaõnnestus. Erind: %s", - "External storage" : "Väline andmehoidla", + "External storages" : "Välised andmehoidlad", "Personal" : "Isiklik", "System" : "Süsteem", "Grant access" : "Anna ligipääs", @@ -24,7 +22,6 @@ OC.L10N.register( "Username" : "Kasutajanimi", "Password" : "Parool", "Credentials required" : "Kasutajatunnused on nõutud", - "Storage with id \"%i\" not found" : "Salvestuskohta ID-ga \"%i\" ei leitud", "Invalid mount point" : "Vigane ühenduspunkt", "Objectstore forbidden" : "Objectstore on keelatud", "Invalid storage backend \"%s\"" : "Vigane salvestuskoha taustsüsteem \"%s\"", @@ -41,7 +38,7 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Kliendi ID", "Client secret" : "Kliendi salasõna", - "OpenStack" : "OpenStack", + "Domain" : "Domeen", "API key" : "API võti", "RSA public key" : "RSA avalik võti", "Public key" : "Avalik võti", @@ -56,30 +53,20 @@ OC.L10N.register( "URL" : "URL", "Remote subfolder" : "Mujahl olev alamkaust", "Secure https://" : "Turvaline https://", - "Dropbox" : "Dropbox", "FTP" : "FTP", "Host" : "Host", "Secure ftps://" : "Turvaline ftps://", - "Google Drive" : "Google Drive", "Local" : "Kohalik", "Location" : "Asukoht", - "ownCloud" : "ownCloud", "SFTP" : "SFTP", "Root" : "Juur", "SFTP with secret key login" : "SFTP koos salajase võtmega logimisega", "SMB / CIFS" : "SMB / CIFS", "Share" : "Jaga", - "Domain" : "Domeen", "SMB / CIFS using OC login" : "SMB / CIFS kasutades OC logimist", "Username as share" : "Kasutajanimi kui jagamine", "OpenStack Object Storage" : "OpenStack Object Storage", "Service name" : "Teenuse nimi", - "Note: " : "Märkus:", - "Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Märkus: cURL tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata cURL tugi.", - "Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Märkus: FTP tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi.", - "Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Märkus: \"%s\" pole paigaldatud. Hoidla %s ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata vajalik tugi.", - "No external storage configured" : "Välist salvestuskohta pole seadistatud", - "You can add external storages in the personal settings" : "Sa võid lisada välise salvestuskoha isiklikes seadetes", "Name" : "Nimi", "Storage type" : "Andmehoidla tüüp", "Scope" : "Skoop", @@ -89,14 +76,17 @@ OC.L10N.register( "Check for changes" : "Otsi uuendusi", "Never" : "Mitte kunagi", "Once every direct access" : "Kord iga otsese pöördumise korral", - "External Storage" : "Väline salvestuskoht", "Folder name" : "Kausta nimi", + "External storage" : "Väline andmehoidla", "Authentication" : "Autentimine", "Configuration" : "Seadistamine", "Available for" : "Saadaval", "Add storage" : "Lisa andmehoidla", "Advanced settings" : "Lisavalikud", "Delete" : "Kustuta", - "Allow users to mount the following external storage" : "Võimalda kasutajatel ühendada järgmist välist andmehoidlat" + "Allow users to mount the following external storage" : "Võimalda kasutajatel ühendada järgmist välist andmehoidlat", + "OpenStack" : "OpenStack", + "No external storage configured" : "Välist salvestuskohta pole seadistatud", + "You can add external storages in the personal settings" : "Sa võid lisada välise salvestuskoha isiklikes seadetes" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/et_EE.json b/apps/files_external/l10n/et_EE.json index 4ff193c2d3d06..c42c320a85d72 100644 --- a/apps/files_external/l10n/et_EE.json +++ b/apps/files_external/l10n/et_EE.json @@ -1,7 +1,5 @@ { "translations": { - "Step 1 failed. Exception: %s" : "Samm 1 ebaõnnestus. Erind: %s", - "Step 2 failed. Exception: %s" : "Samm 2 ebaõnnestus. Erind: %s", - "External storage" : "Väline andmehoidla", + "External storages" : "Välised andmehoidlad", "Personal" : "Isiklik", "System" : "Süsteem", "Grant access" : "Anna ligipääs", @@ -22,7 +20,6 @@ "Username" : "Kasutajanimi", "Password" : "Parool", "Credentials required" : "Kasutajatunnused on nõutud", - "Storage with id \"%i\" not found" : "Salvestuskohta ID-ga \"%i\" ei leitud", "Invalid mount point" : "Vigane ühenduspunkt", "Objectstore forbidden" : "Objectstore on keelatud", "Invalid storage backend \"%s\"" : "Vigane salvestuskoha taustsüsteem \"%s\"", @@ -39,7 +36,7 @@ "OAuth2" : "OAuth2", "Client ID" : "Kliendi ID", "Client secret" : "Kliendi salasõna", - "OpenStack" : "OpenStack", + "Domain" : "Domeen", "API key" : "API võti", "RSA public key" : "RSA avalik võti", "Public key" : "Avalik võti", @@ -54,30 +51,20 @@ "URL" : "URL", "Remote subfolder" : "Mujahl olev alamkaust", "Secure https://" : "Turvaline https://", - "Dropbox" : "Dropbox", "FTP" : "FTP", "Host" : "Host", "Secure ftps://" : "Turvaline ftps://", - "Google Drive" : "Google Drive", "Local" : "Kohalik", "Location" : "Asukoht", - "ownCloud" : "ownCloud", "SFTP" : "SFTP", "Root" : "Juur", "SFTP with secret key login" : "SFTP koos salajase võtmega logimisega", "SMB / CIFS" : "SMB / CIFS", "Share" : "Jaga", - "Domain" : "Domeen", "SMB / CIFS using OC login" : "SMB / CIFS kasutades OC logimist", "Username as share" : "Kasutajanimi kui jagamine", "OpenStack Object Storage" : "OpenStack Object Storage", "Service name" : "Teenuse nimi", - "Note: " : "Märkus:", - "Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Märkus: cURL tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata cURL tugi.", - "Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Märkus: FTP tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi.", - "Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Märkus: \"%s\" pole paigaldatud. Hoidla %s ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata vajalik tugi.", - "No external storage configured" : "Välist salvestuskohta pole seadistatud", - "You can add external storages in the personal settings" : "Sa võid lisada välise salvestuskoha isiklikes seadetes", "Name" : "Nimi", "Storage type" : "Andmehoidla tüüp", "Scope" : "Skoop", @@ -87,14 +74,17 @@ "Check for changes" : "Otsi uuendusi", "Never" : "Mitte kunagi", "Once every direct access" : "Kord iga otsese pöördumise korral", - "External Storage" : "Väline salvestuskoht", "Folder name" : "Kausta nimi", + "External storage" : "Väline andmehoidla", "Authentication" : "Autentimine", "Configuration" : "Seadistamine", "Available for" : "Saadaval", "Add storage" : "Lisa andmehoidla", "Advanced settings" : "Lisavalikud", "Delete" : "Kustuta", - "Allow users to mount the following external storage" : "Võimalda kasutajatel ühendada järgmist välist andmehoidlat" + "Allow users to mount the following external storage" : "Võimalda kasutajatel ühendada järgmist välist andmehoidlat", + "OpenStack" : "OpenStack", + "No external storage configured" : "Välist salvestuskohta pole seadistatud", + "You can add external storages in the personal settings" : "Sa võid lisada välise salvestuskoha isiklikes seadetes" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/fi.js b/apps/files_external/l10n/fi.js index 3015ada9ac179..5b9a2b243b390 100644 --- a/apps/files_external/l10n/fi.js +++ b/apps/files_external/l10n/fi.js @@ -1,7 +1,7 @@ OC.L10N.register( "files_external", { - "External storages" : "Ulkoiset tallennustilat", + "External storages" : "Erilliset tallennustilat", "Personal" : "Henkilökohtainen", "System" : "Järjestelmä", "Grant access" : "Salli pääsy", @@ -14,7 +14,7 @@ OC.L10N.register( "(group)" : "(ryhmä)", "Compatibility with Mac NFD encoding (slow)" : "Yhteensopivuus Mac NFD -enkoodauksen kanssa (hidas)", "Admin defined" : "Ylläpitäjän määrittämä", - "Are you sure you want to delete this external storage" : "Haluatko varmasti poistaa tämän erillisen tallennustilan", + "Are you sure you want to delete this external storage?" : "Haluatko varmasti poistaa tämän erillisen tallennustilan?", "Delete storage?" : "Poistetaanko tallennustila?", "Saved" : "Tallennettu", "Saving..." : "Tallennetaan...", @@ -24,8 +24,8 @@ OC.L10N.register( "Couldn't get the information from the remote server: {code} {type}" : "Tietojen saaminen etäpalvelimelta epäonnistui: {code} {type}", "Couldn't get the list of external mount points: {type}" : "Erillisten liitospisteiden listauksen noutaminen epäonnistui: {type}", "There was an error with message: " : "Tapahtui virhe viestillä:", - "External mount error" : "Ulkoinen liitosvirhe", - "external-storage" : "ulkoinen taltio", + "External mount error" : "Erillisen liitosvirhe", + "external-storage" : "external-storage", "Couldn't fetch list of Windows network drive mount points: Empty response from server" : "Ei voitu noutaa listaa Windows-verkkoasemien liitoskohdista: tyhjä vastaus palvelimelta", "Some of the configured external mount points are not connected. Please click on the red row(s) for more information" : "Jotkin määritetyt erilliset liitospisteet eivät ole yhdistettynä. Napsauta punaisia rivejä saadaksesi lisätietoja", "Please enter the credentials for the {mount} mount" : "Anna kirjautumistiedot liitokselle {mount}", @@ -56,9 +56,11 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Asiakkaan tunniste", "Client secret" : "Asiakassalaisuus", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Tenant nimi", "Identity endpoint URL" : "Määritä URL-päätepiste", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Domaini", "Rackspace" : "Rackspace", "API key" : "API-avain", "Global credentials" : "Globaalit valtuudet", @@ -75,6 +77,7 @@ OC.L10N.register( "Region" : "Alue", "Enable SSL" : "Käytä SSL:ää", "Enable Path Style" : "Aktivoi polun tyyli", + "Legacy (v2) authentication" : "Vanha (v2) tunnistautuminen", "WebDAV" : "WebDAV", "URL" : "Verkko-osoite", "Remote subfolder" : "Etäalikansio", @@ -90,7 +93,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP salaisen avaimen kirjautumisella", "SMB / CIFS" : "SMB / CIFS", "Share" : "Jaa", - "Domain" : "Domaini", "SMB / CIFS using OC login" : "SMB / CIFS käyttäen OC-kirjautumista", "Username as share" : "Käyttäjänimi jakona", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +101,8 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cULR tuki PHPsta ei ole aktivoitu tai asennettu. Kohteen %s liittäminen ei ole mahdollista. Ota yhteyttä järjestelmänvalvojaan asentaaksesi puuttuvan osan.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP tuki PHPsta ei ole aktivoitu tai asennettu. Kohteen %s liittäminen ei ole mahdollista. Ota yhteyttä järjestelmänvalvojaan asentaaksesi puuttuvan osan.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" ei ole asennettu. Kohteen %s liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää asentamaan puuttuva kohde.", - "No external storage configured" : "Erillistä tallennustilaa ei ole määritetty", - "You can add external storages in the personal settings" : "Voit lisätä erillisiä tallennustiloja henkilökohtaisista asetuksistasi", + "External storage support" : "Erillisen tallennustilan tuki", + "No external storage configured or you don't have the permission to configure them" : "Erillistä tallennustilaa ei ole määritelty tai sinulla ei ole oikeuksia määrittää erillisiä tallennustiloja", "Name" : "Nimi", "Storage type" : "Tallennustilan tyyppi", "Scope" : "Näkyvyysalue", @@ -111,7 +113,7 @@ OC.L10N.register( "Never" : "Ei koskaan", "Once every direct access" : "Kerran aina suoran käytön yhteydessä", "Folder name" : "Kansion nimi", - "External storage" : "Ulkoinen tallennustila", + "External storage" : "Erillinen tallennustila", "Authentication" : "Tunnistautuminen", "Configuration" : "Asetukset", "Available for" : "Saatavuus", @@ -120,15 +122,15 @@ OC.L10N.register( "Delete" : "Poista", "Allow users to mount external storage" : "Salli käyttäjien liittää erillisiä tallennustiloja", "Allow users to mount the following external storage" : "Salli käyttäjien liittää seuraavat erilliset tallennusvälineet", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Pyyntötunnisteen nouto epäonnistui. Tarkista että sovellusavaimesi ja -salaisuutesi ovat oikein.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Pyyntötunnisteen haku epäonnistui. Tarkista että sovellusavaimesi ja -salaisuutesi ovat oikein.", "Step 1 failed. Exception: %s" : "Vaihe 1 epäonnistui. Poikkeus: %s", "Step 2 failed. Exception: %s" : "Vaihe 2 epäonnistui. Poikkeus: %s", - "Dropbox App Configuration" : "Dropbox-sovelluksen määritys", - "Google Drive App Configuration" : "Google Drive -sovelluksen määritys", - "Storage with id \"%i\" not found" : "Tallennustilaa tunnisteella \"%i\" ei löytynyt", - "Storage with id \"%i\" is not user editable" : "Tallennustila, jolla on \"%i\" id, ei ole muokattavissa.", + "Dropbox App Configuration" : "Dropbox-sovelluksen määritykset", + "Google Drive App Configuration" : "Google Drive -sovelluksen määritykset", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Erillistä tallennustilaa ei ole määritetty", + "You can add external storages in the personal settings" : "Voit lisätä erillisiä tallennustiloja henkilökohtaisista asetuksistasi", + "Are you sure you want to delete this external storage" : "Haluatko varmasti poistaa tämän erillisen tallennustilan" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/fi.json b/apps/files_external/l10n/fi.json index a4372667eb14f..b2bd0c3539ab5 100644 --- a/apps/files_external/l10n/fi.json +++ b/apps/files_external/l10n/fi.json @@ -1,5 +1,5 @@ { "translations": { - "External storages" : "Ulkoiset tallennustilat", + "External storages" : "Erilliset tallennustilat", "Personal" : "Henkilökohtainen", "System" : "Järjestelmä", "Grant access" : "Salli pääsy", @@ -12,7 +12,7 @@ "(group)" : "(ryhmä)", "Compatibility with Mac NFD encoding (slow)" : "Yhteensopivuus Mac NFD -enkoodauksen kanssa (hidas)", "Admin defined" : "Ylläpitäjän määrittämä", - "Are you sure you want to delete this external storage" : "Haluatko varmasti poistaa tämän erillisen tallennustilan", + "Are you sure you want to delete this external storage?" : "Haluatko varmasti poistaa tämän erillisen tallennustilan?", "Delete storage?" : "Poistetaanko tallennustila?", "Saved" : "Tallennettu", "Saving..." : "Tallennetaan...", @@ -22,8 +22,8 @@ "Couldn't get the information from the remote server: {code} {type}" : "Tietojen saaminen etäpalvelimelta epäonnistui: {code} {type}", "Couldn't get the list of external mount points: {type}" : "Erillisten liitospisteiden listauksen noutaminen epäonnistui: {type}", "There was an error with message: " : "Tapahtui virhe viestillä:", - "External mount error" : "Ulkoinen liitosvirhe", - "external-storage" : "ulkoinen taltio", + "External mount error" : "Erillisen liitosvirhe", + "external-storage" : "external-storage", "Couldn't fetch list of Windows network drive mount points: Empty response from server" : "Ei voitu noutaa listaa Windows-verkkoasemien liitoskohdista: tyhjä vastaus palvelimelta", "Some of the configured external mount points are not connected. Please click on the red row(s) for more information" : "Jotkin määritetyt erilliset liitospisteet eivät ole yhdistettynä. Napsauta punaisia rivejä saadaksesi lisätietoja", "Please enter the credentials for the {mount} mount" : "Anna kirjautumistiedot liitokselle {mount}", @@ -54,9 +54,11 @@ "OAuth2" : "OAuth2", "Client ID" : "Asiakkaan tunniste", "Client secret" : "Asiakassalaisuus", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Tenant nimi", "Identity endpoint URL" : "Määritä URL-päätepiste", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Domaini", "Rackspace" : "Rackspace", "API key" : "API-avain", "Global credentials" : "Globaalit valtuudet", @@ -73,6 +75,7 @@ "Region" : "Alue", "Enable SSL" : "Käytä SSL:ää", "Enable Path Style" : "Aktivoi polun tyyli", + "Legacy (v2) authentication" : "Vanha (v2) tunnistautuminen", "WebDAV" : "WebDAV", "URL" : "Verkko-osoite", "Remote subfolder" : "Etäalikansio", @@ -88,7 +91,6 @@ "SFTP with secret key login" : "SFTP salaisen avaimen kirjautumisella", "SMB / CIFS" : "SMB / CIFS", "Share" : "Jaa", - "Domain" : "Domaini", "SMB / CIFS using OC login" : "SMB / CIFS käyttäen OC-kirjautumista", "Username as share" : "Käyttäjänimi jakona", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +99,8 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cULR tuki PHPsta ei ole aktivoitu tai asennettu. Kohteen %s liittäminen ei ole mahdollista. Ota yhteyttä järjestelmänvalvojaan asentaaksesi puuttuvan osan.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP tuki PHPsta ei ole aktivoitu tai asennettu. Kohteen %s liittäminen ei ole mahdollista. Ota yhteyttä järjestelmänvalvojaan asentaaksesi puuttuvan osan.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" ei ole asennettu. Kohteen %s liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää asentamaan puuttuva kohde.", - "No external storage configured" : "Erillistä tallennustilaa ei ole määritetty", - "You can add external storages in the personal settings" : "Voit lisätä erillisiä tallennustiloja henkilökohtaisista asetuksistasi", + "External storage support" : "Erillisen tallennustilan tuki", + "No external storage configured or you don't have the permission to configure them" : "Erillistä tallennustilaa ei ole määritelty tai sinulla ei ole oikeuksia määrittää erillisiä tallennustiloja", "Name" : "Nimi", "Storage type" : "Tallennustilan tyyppi", "Scope" : "Näkyvyysalue", @@ -109,7 +111,7 @@ "Never" : "Ei koskaan", "Once every direct access" : "Kerran aina suoran käytön yhteydessä", "Folder name" : "Kansion nimi", - "External storage" : "Ulkoinen tallennustila", + "External storage" : "Erillinen tallennustila", "Authentication" : "Tunnistautuminen", "Configuration" : "Asetukset", "Available for" : "Saatavuus", @@ -118,15 +120,15 @@ "Delete" : "Poista", "Allow users to mount external storage" : "Salli käyttäjien liittää erillisiä tallennustiloja", "Allow users to mount the following external storage" : "Salli käyttäjien liittää seuraavat erilliset tallennusvälineet", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Pyyntötunnisteen nouto epäonnistui. Tarkista että sovellusavaimesi ja -salaisuutesi ovat oikein.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Pyyntötunnisteen haku epäonnistui. Tarkista että sovellusavaimesi ja -salaisuutesi ovat oikein.", "Step 1 failed. Exception: %s" : "Vaihe 1 epäonnistui. Poikkeus: %s", "Step 2 failed. Exception: %s" : "Vaihe 2 epäonnistui. Poikkeus: %s", - "Dropbox App Configuration" : "Dropbox-sovelluksen määritys", - "Google Drive App Configuration" : "Google Drive -sovelluksen määritys", - "Storage with id \"%i\" not found" : "Tallennustilaa tunnisteella \"%i\" ei löytynyt", - "Storage with id \"%i\" is not user editable" : "Tallennustila, jolla on \"%i\" id, ei ole muokattavissa.", + "Dropbox App Configuration" : "Dropbox-sovelluksen määritykset", + "Google Drive App Configuration" : "Google Drive -sovelluksen määritykset", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Erillistä tallennustilaa ei ole määritetty", + "You can add external storages in the personal settings" : "Voit lisätä erillisiä tallennustiloja henkilökohtaisista asetuksistasi", + "Are you sure you want to delete this external storage" : "Haluatko varmasti poistaa tämän erillisen tallennustilan" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/fr.js b/apps/files_external/l10n/fr.js index dee98fd65c690..7533b976a14e3 100644 --- a/apps/files_external/l10n/fr.js +++ b/apps/files_external/l10n/fr.js @@ -14,7 +14,7 @@ OC.L10N.register( "(group)" : "(groupe)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilité avec l'encodage Mac NFD (lent)", "Admin defined" : "Défini par l'administrateur", - "Are you sure you want to delete this external storage" : "Êtes-vous sûr de vouloir supprimer ce stockage externe ?", + "Are you sure you want to delete this external storage?" : "Êtes-vous sûr de vouloir supprimer ce stockage externe ?", "Delete storage?" : "Supprimer ce support de stockage ?", "Saved" : "Sauvegardé", "Saving..." : "Enregistrement...", @@ -56,9 +56,11 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID Client", "Client secret" : "Secret client", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Tenant name", "Identity endpoint URL" : "Identity endpoint URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Domaine", "Rackspace" : "Rackspace", "API key" : "Clé API", "Global credentials" : "Informations d'identification globales", @@ -75,6 +77,7 @@ OC.L10N.register( "Region" : "Région", "Enable SSL" : "Activer SSL", "Enable Path Style" : "Accès par path", + "Legacy (v2) authentication" : "Authentification héritée (v2)", "WebDAV" : "WebDAV", "URL" : "URL", "Remote subfolder" : "Sous-dossier distant", @@ -90,7 +93,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP avec identification par clé", "SMB / CIFS" : "SMB / CIFS", "Share" : "Partage", - "Domain" : "Domaine", "SMB / CIFS using OC login" : "SMB / CIFS en utilisant les identifiants OC", "Username as share" : "Nom d'utilisateur comme nom de partage", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +101,8 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Le support de cURL dans PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Veuillez demander à votre administrateur système de l'installer.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Le support du FTP dans PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Merci de demander à votre administrateur de l'installer.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" n'est pas installé. Le montage de %s n'est pas possible. Merci de demander à l'administrateur système de l'installer.", - "No external storage configured" : "Aucun stockage externe configuré", - "You can add external storages in the personal settings" : "Vous pouvez ajouter des stockages externes via vos paramètres personnels", + "External storage support" : "Support de stockage externe", + "No external storage configured or you don't have the permission to configure them" : "Aucun stockage externe configuré ou vous n'avez pas l'autorisation de les configurer", "Name" : "Nom", "Storage type" : "Type de stockage", "Scope" : "Portée", @@ -115,6 +117,7 @@ OC.L10N.register( "Authentication" : "Authentification", "Configuration" : "Configuration", "Available for" : "Disponible pour", + "Click to recheck the configuration" : "Cliquer pour revérifier la configuration", "Add storage" : "Ajouter un support de stockage", "Advanced settings" : "Paramètres avancés", "Delete" : "Supprimer", @@ -122,13 +125,15 @@ OC.L10N.register( "Allow users to mount the following external storage" : "Autoriser les utilisateurs à monter les stockages externes suivants", "Fetching request tokens failed. Verify that your app key and secret are correct." : "L'obtention des jetons de requête a échoué. Vérifiez que votre clé d'application et votre mot de passe sont corrects.", "Fetching access tokens failed. Verify that your app key and secret are correct." : "L'obtention des jetons d'accès a échoué. Vérifiez que votre clé d'application et votre mot de passe sont corrects.", - "Step 1 failed. Exception: %s" : "L’étape 1 a échoué. Erreur : %s", - "Step 2 failed. Exception: %s" : "L’étape 2 a échoué. Erreur : %s", + "Step 1 failed. Exception: %s" : "L’étape 1 a échoué. Exception : %s", + "Step 2 failed. Exception: %s" : "L’étape 2 a échoué. Exception : %s", "Dropbox App Configuration" : "Configuration de l'application Dropbox", "Google Drive App Configuration" : "Configuration de l'application Google Drive", - "Storage with id \"%i\" not found" : "Stockage avec l'id \"%i\" non trouvé", - "Storage with id \"%i\" is not user editable" : "Le support de stockage d'id \"%i\" n'est pas modifiable par les utilisateurs", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Aucun stockage externe configuré", + "You can add external storages in the personal settings" : "Vous pouvez ajouter des stockages externes via vos paramètres personnels", + "Are you sure you want to delete this external storage" : "Êtes-vous sûr de vouloir supprimer ce stockage externe ?" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/files_external/l10n/fr.json b/apps/files_external/l10n/fr.json index d1834c87a2315..73b8bc28c5b3c 100644 --- a/apps/files_external/l10n/fr.json +++ b/apps/files_external/l10n/fr.json @@ -12,7 +12,7 @@ "(group)" : "(groupe)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilité avec l'encodage Mac NFD (lent)", "Admin defined" : "Défini par l'administrateur", - "Are you sure you want to delete this external storage" : "Êtes-vous sûr de vouloir supprimer ce stockage externe ?", + "Are you sure you want to delete this external storage?" : "Êtes-vous sûr de vouloir supprimer ce stockage externe ?", "Delete storage?" : "Supprimer ce support de stockage ?", "Saved" : "Sauvegardé", "Saving..." : "Enregistrement...", @@ -54,9 +54,11 @@ "OAuth2" : "OAuth2", "Client ID" : "ID Client", "Client secret" : "Secret client", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Tenant name", "Identity endpoint URL" : "Identity endpoint URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Domaine", "Rackspace" : "Rackspace", "API key" : "Clé API", "Global credentials" : "Informations d'identification globales", @@ -73,6 +75,7 @@ "Region" : "Région", "Enable SSL" : "Activer SSL", "Enable Path Style" : "Accès par path", + "Legacy (v2) authentication" : "Authentification héritée (v2)", "WebDAV" : "WebDAV", "URL" : "URL", "Remote subfolder" : "Sous-dossier distant", @@ -88,7 +91,6 @@ "SFTP with secret key login" : "SFTP avec identification par clé", "SMB / CIFS" : "SMB / CIFS", "Share" : "Partage", - "Domain" : "Domaine", "SMB / CIFS using OC login" : "SMB / CIFS en utilisant les identifiants OC", "Username as share" : "Nom d'utilisateur comme nom de partage", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +99,8 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Le support de cURL dans PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Veuillez demander à votre administrateur système de l'installer.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Le support du FTP dans PHP n'est pas activé ou installé. Le montage de %s n'est pas possible. Merci de demander à votre administrateur de l'installer.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" n'est pas installé. Le montage de %s n'est pas possible. Merci de demander à l'administrateur système de l'installer.", - "No external storage configured" : "Aucun stockage externe configuré", - "You can add external storages in the personal settings" : "Vous pouvez ajouter des stockages externes via vos paramètres personnels", + "External storage support" : "Support de stockage externe", + "No external storage configured or you don't have the permission to configure them" : "Aucun stockage externe configuré ou vous n'avez pas l'autorisation de les configurer", "Name" : "Nom", "Storage type" : "Type de stockage", "Scope" : "Portée", @@ -113,6 +115,7 @@ "Authentication" : "Authentification", "Configuration" : "Configuration", "Available for" : "Disponible pour", + "Click to recheck the configuration" : "Cliquer pour revérifier la configuration", "Add storage" : "Ajouter un support de stockage", "Advanced settings" : "Paramètres avancés", "Delete" : "Supprimer", @@ -120,13 +123,15 @@ "Allow users to mount the following external storage" : "Autoriser les utilisateurs à monter les stockages externes suivants", "Fetching request tokens failed. Verify that your app key and secret are correct." : "L'obtention des jetons de requête a échoué. Vérifiez que votre clé d'application et votre mot de passe sont corrects.", "Fetching access tokens failed. Verify that your app key and secret are correct." : "L'obtention des jetons d'accès a échoué. Vérifiez que votre clé d'application et votre mot de passe sont corrects.", - "Step 1 failed. Exception: %s" : "L’étape 1 a échoué. Erreur : %s", - "Step 2 failed. Exception: %s" : "L’étape 2 a échoué. Erreur : %s", + "Step 1 failed. Exception: %s" : "L’étape 1 a échoué. Exception : %s", + "Step 2 failed. Exception: %s" : "L’étape 2 a échoué. Exception : %s", "Dropbox App Configuration" : "Configuration de l'application Dropbox", "Google Drive App Configuration" : "Configuration de l'application Google Drive", - "Storage with id \"%i\" not found" : "Stockage avec l'id \"%i\" non trouvé", - "Storage with id \"%i\" is not user editable" : "Le support de stockage d'id \"%i\" n'est pas modifiable par les utilisateurs", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Aucun stockage externe configuré", + "You can add external storages in the personal settings" : "Vous pouvez ajouter des stockages externes via vos paramètres personnels", + "Are you sure you want to delete this external storage" : "Êtes-vous sûr de vouloir supprimer ce stockage externe ?" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/he.js b/apps/files_external/l10n/he.js index 73014a5896663..fc4227e8142d5 100644 --- a/apps/files_external/l10n/he.js +++ b/apps/files_external/l10n/he.js @@ -47,9 +47,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "זיהוי לקוח", "Client secret" : "סוד לקוח", - "OpenStack" : "OpenStack", "Tenant name" : "שם דייר", "Identity endpoint URL" : "זהות נתיב נקודת קצה", + "Domain" : "שם תחום", "Rackspace" : "חץ אחורה", "API key" : "מפתח API", "Username and password" : "שם משתמש וסיסמא", @@ -77,14 +77,11 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP עם מפתח כניסה סודי", "SMB / CIFS" : "SMB / CIFS", "Share" : "שיתוף", - "Domain" : "שם תחום", "SMB / CIFS using OC login" : "SMB / CIFS בשימוש עם כניסת OC", "Username as share" : "שם משתמש כשיתוף", "OpenStack Object Storage" : "אחסון אובייקט OpenStack", "Service name" : "שם שירות", "Request timeout (seconds)" : "פסק זמן מבוקש (שניות)", - "No external storage configured" : "לא מוגדר אחסון חיצוני", - "You can add external storages in the personal settings" : "ניתן להוסיף אחסונים חיצוניים בהגדרות האישיות", "Name" : "שם", "Storage type" : "סוג אחסון", "Scope" : "היקף", @@ -104,15 +101,8 @@ OC.L10N.register( "Delete" : "מחיקה", "Allow users to mount external storage" : "מאפשר למשתמשים לחבר אחסון חיצוני", "Allow users to mount the following external storage" : "מאפשר למשתמשים לחבר אחסון חיצוני הבא", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "אחזור מחרוזת כניסה נכשל. יש לוודא שמפתח היישום והסוד נכונים.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "אחזור מחרוזת כניסה נכשל. יש לוודא שמפתח היישום והסוד נכונים.", - "Step 1 failed. Exception: %s" : "שלב 1 נכשל. חריג: %s", - "Step 2 failed. Exception: %s" : "שלב 2 נכשל. חריג: %s", - "Dropbox App Configuration" : "הגדרות יישום דרופבוקס", - "Google Drive App Configuration" : "הגדרות יישום גוגל דרייב", - "Storage with id \"%i\" not found" : "אחסון עם מספר זיהוי \"%i\" לא אותר", - "Storage with id \"%i\" is not user editable" : "האחסון עם זהות \"%i\" לא ניתן לעריכה", - "Dropbox" : "דרופבוקס", - "Google Drive" : "גוגל דרייב" + "OpenStack" : "OpenStack", + "No external storage configured" : "לא מוגדר אחסון חיצוני", + "You can add external storages in the personal settings" : "ניתן להוסיף אחסונים חיצוניים בהגדרות האישיות" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/he.json b/apps/files_external/l10n/he.json index 9ec7987e6cab8..fd14572f44915 100644 --- a/apps/files_external/l10n/he.json +++ b/apps/files_external/l10n/he.json @@ -45,9 +45,9 @@ "OAuth2" : "OAuth2", "Client ID" : "זיהוי לקוח", "Client secret" : "סוד לקוח", - "OpenStack" : "OpenStack", "Tenant name" : "שם דייר", "Identity endpoint URL" : "זהות נתיב נקודת קצה", + "Domain" : "שם תחום", "Rackspace" : "חץ אחורה", "API key" : "מפתח API", "Username and password" : "שם משתמש וסיסמא", @@ -75,14 +75,11 @@ "SFTP with secret key login" : "SFTP עם מפתח כניסה סודי", "SMB / CIFS" : "SMB / CIFS", "Share" : "שיתוף", - "Domain" : "שם תחום", "SMB / CIFS using OC login" : "SMB / CIFS בשימוש עם כניסת OC", "Username as share" : "שם משתמש כשיתוף", "OpenStack Object Storage" : "אחסון אובייקט OpenStack", "Service name" : "שם שירות", "Request timeout (seconds)" : "פסק זמן מבוקש (שניות)", - "No external storage configured" : "לא מוגדר אחסון חיצוני", - "You can add external storages in the personal settings" : "ניתן להוסיף אחסונים חיצוניים בהגדרות האישיות", "Name" : "שם", "Storage type" : "סוג אחסון", "Scope" : "היקף", @@ -102,15 +99,8 @@ "Delete" : "מחיקה", "Allow users to mount external storage" : "מאפשר למשתמשים לחבר אחסון חיצוני", "Allow users to mount the following external storage" : "מאפשר למשתמשים לחבר אחסון חיצוני הבא", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "אחזור מחרוזת כניסה נכשל. יש לוודא שמפתח היישום והסוד נכונים.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "אחזור מחרוזת כניסה נכשל. יש לוודא שמפתח היישום והסוד נכונים.", - "Step 1 failed. Exception: %s" : "שלב 1 נכשל. חריג: %s", - "Step 2 failed. Exception: %s" : "שלב 2 נכשל. חריג: %s", - "Dropbox App Configuration" : "הגדרות יישום דרופבוקס", - "Google Drive App Configuration" : "הגדרות יישום גוגל דרייב", - "Storage with id \"%i\" not found" : "אחסון עם מספר זיהוי \"%i\" לא אותר", - "Storage with id \"%i\" is not user editable" : "האחסון עם זהות \"%i\" לא ניתן לעריכה", - "Dropbox" : "דרופבוקס", - "Google Drive" : "גוגל דרייב" + "OpenStack" : "OpenStack", + "No external storage configured" : "לא מוגדר אחסון חיצוני", + "You can add external storages in the personal settings" : "ניתן להוסיף אחסונים חיצוניים בהגדרות האישיות" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/hu.js b/apps/files_external/l10n/hu.js index 8dcecbaeffbf0..93c15e4076074 100644 --- a/apps/files_external/l10n/hu.js +++ b/apps/files_external/l10n/hu.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(csoport)", "Compatibility with Mac NFD encoding (slow)" : "Kompatibilitás a Mac NFD kódolással (lassú)", "Admin defined" : "Adminisztrátor definiálva", - "Are you sure you want to delete this external storage" : "Biztosan törlöd ezt a külső tárolót", "Delete storage?" : "Tároló törlése?", "Saved" : "Elmentve", "Saving..." : "Mentés...", @@ -56,9 +55,11 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Ügyfél ID", "Client secret" : "Kliens titok", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Bérlő neve", "Identity endpoint URL" : "Identitás végpont URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Domain", "Rackspace" : "Rackspace", "API key" : "API kulcs", "Global credentials" : "Globális azonosítók", @@ -91,7 +92,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP titkos kulcs belépéssel", "SMB / CIFS" : "SMB / CIFS", "Share" : "Megosztás", - "Domain" : "Domain", "SMB / CIFS using OC login" : "SMB / CIFS OC belépéssel", "Username as share" : "Felhasználónév és megosztás", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -100,8 +100,8 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "A cURL támogatás, a PHP-ban nincs engedélyezve vagy telepítve. %s csatolása lehetetlen. Kérd meg a rendszergazdádat, hogy telepítse.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Az FTP támogatás, a PHP-ban nincs engedélyezve vagy telepítve. %s csatolása lehetetlen. Kérd meg a rendszergazdádat, hogy telepítse.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "%s nincs telepítve. %s csatolása lehetetlen. Kérd meg a rendszergazdádat, hogy telepítse.", - "No external storage configured" : "Nincs külső tároló beállítva.", - "You can add external storages in the personal settings" : "Hozzáadhatsz külső tárolókat a személyes beállítások közt.", + "External storage support" : "Külső tároló támogatás", + "No external storage configured or you don't have the permission to configure them" : "Nincsenek külső tárolók beállítva, vagy nincs hozzáférésed a beállításaikhoz", "Name" : "Név", "Storage type" : "Tároló típusa", "Scope" : "Hatáskör", @@ -116,6 +116,7 @@ OC.L10N.register( "Authentication" : "Azonisítás", "Configuration" : "Beállítások", "Available for" : "Elérhető számukra", + "Click to recheck the configuration" : "Kattints ide a konfiguráció újraellenőrzéséhez", "Add storage" : "Tároló becsatolása", "Advanced settings" : "Haladó beállítások", "Delete" : "Törlés", @@ -127,9 +128,11 @@ OC.L10N.register( "Step 2 failed. Exception: %s" : "2. lépés sikertelen. Kivétel: %s", "Dropbox App Configuration" : "Dropbox alkalmazás beállítás", "Google Drive App Configuration" : "Google Drive alkalmazás beállítás", - "Storage with id \"%i\" not found" : "A következő azonosítójú tároló nem található: \"%i\"", - "Storage with id \"%i\" is not user editable" : "A következő azonosítójú tároló a felhasználó számára nem szerkeszthető: \"%i\"", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Nincs külső tároló beállítva.", + "You can add external storages in the personal settings" : "Hozzáadhatsz külső tárolókat a személyes beállítások közt.", + "Are you sure you want to delete this external storage" : "Biztosan törlöd ezt a külső tárolót" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/hu.json b/apps/files_external/l10n/hu.json index fc51260454cc5..b2e1eb711f025 100644 --- a/apps/files_external/l10n/hu.json +++ b/apps/files_external/l10n/hu.json @@ -12,7 +12,6 @@ "(group)" : "(csoport)", "Compatibility with Mac NFD encoding (slow)" : "Kompatibilitás a Mac NFD kódolással (lassú)", "Admin defined" : "Adminisztrátor definiálva", - "Are you sure you want to delete this external storage" : "Biztosan törlöd ezt a külső tárolót", "Delete storage?" : "Tároló törlése?", "Saved" : "Elmentve", "Saving..." : "Mentés...", @@ -54,9 +53,11 @@ "OAuth2" : "OAuth2", "Client ID" : "Ügyfél ID", "Client secret" : "Kliens titok", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Bérlő neve", "Identity endpoint URL" : "Identitás végpont URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Domain", "Rackspace" : "Rackspace", "API key" : "API kulcs", "Global credentials" : "Globális azonosítók", @@ -89,7 +90,6 @@ "SFTP with secret key login" : "SFTP titkos kulcs belépéssel", "SMB / CIFS" : "SMB / CIFS", "Share" : "Megosztás", - "Domain" : "Domain", "SMB / CIFS using OC login" : "SMB / CIFS OC belépéssel", "Username as share" : "Felhasználónév és megosztás", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -98,8 +98,8 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "A cURL támogatás, a PHP-ban nincs engedélyezve vagy telepítve. %s csatolása lehetetlen. Kérd meg a rendszergazdádat, hogy telepítse.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Az FTP támogatás, a PHP-ban nincs engedélyezve vagy telepítve. %s csatolása lehetetlen. Kérd meg a rendszergazdádat, hogy telepítse.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "%s nincs telepítve. %s csatolása lehetetlen. Kérd meg a rendszergazdádat, hogy telepítse.", - "No external storage configured" : "Nincs külső tároló beállítva.", - "You can add external storages in the personal settings" : "Hozzáadhatsz külső tárolókat a személyes beállítások közt.", + "External storage support" : "Külső tároló támogatás", + "No external storage configured or you don't have the permission to configure them" : "Nincsenek külső tárolók beállítva, vagy nincs hozzáférésed a beállításaikhoz", "Name" : "Név", "Storage type" : "Tároló típusa", "Scope" : "Hatáskör", @@ -114,6 +114,7 @@ "Authentication" : "Azonisítás", "Configuration" : "Beállítások", "Available for" : "Elérhető számukra", + "Click to recheck the configuration" : "Kattints ide a konfiguráció újraellenőrzéséhez", "Add storage" : "Tároló becsatolása", "Advanced settings" : "Haladó beállítások", "Delete" : "Törlés", @@ -125,9 +126,11 @@ "Step 2 failed. Exception: %s" : "2. lépés sikertelen. Kivétel: %s", "Dropbox App Configuration" : "Dropbox alkalmazás beállítás", "Google Drive App Configuration" : "Google Drive alkalmazás beállítás", - "Storage with id \"%i\" not found" : "A következő azonosítójú tároló nem található: \"%i\"", - "Storage with id \"%i\" is not user editable" : "A következő azonosítójú tároló a felhasználó számára nem szerkeszthető: \"%i\"", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Nincs külső tároló beállítva.", + "You can add external storages in the personal settings" : "Hozzáadhatsz külső tárolókat a személyes beállítások közt.", + "Are you sure you want to delete this external storage" : "Biztosan törlöd ezt a külső tárolót" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/ia.js b/apps/files_external/l10n/ia.js index 32640218c78dc..9a440a09d7eb1 100644 --- a/apps/files_external/l10n/ia.js +++ b/apps/files_external/l10n/ia.js @@ -1,17 +1,80 @@ OC.L10N.register( "files_external", { + "External storages" : "Immagazinages externe", "Personal" : "Personal", + "System" : "Systema", + "Grant access" : "Conceder accesso", + "Error configuring OAuth1" : "Error durante configuration de OAuth1", + "Please provide a valid app key and secret." : "Per favor, provide un clave e un secreto ambe valide.", + "Error configuring OAuth2" : "Error durante configuration de OAuth2", + "Generate keys" : "Generar claves", + "Error generating key pair" : "Error durante creation de par de claves", + "All users. Type to select user or group." : "Tote usatores. Scribe pro selectionar usator o gruppo.", "Saved" : "Salveguardate", + "Saving..." : "Salveguardante...", + "Save" : "Salveguardar", + "External mount error" : "Error del montage externe", + "external-storage" : "immagazinage-externe", "Username" : "Nomine de usator", "Password" : "Contrasigno", - "Save" : "Salveguardar", + "Credentials saved" : "Datos de authentication salveguardate", + "Credentials saving failed" : "Salveguarda de datos de authentication falleva", + "Credentials required" : "Datos de authentication requirite", + "Invalid mount point" : "Puncto de montage non valide", + "Insufficient data: %s" : "Datos insufficiente: %s", + "%s" : "%s", + "Access key" : "Clave de accesso", + "Secret key" : "Clave secrete", + "None" : "Nulle", + "OAuth1" : "OAuth1", + "App key" : "Clave del Application", + "App secret" : "Secreto del Application", + "OAuth2" : "OAuth2", + "Domain" : "Dominio", + "API key" : "Clave API", + "Global credentials" : "Datos de authentication global", + "Username and password" : "Nomine de usator e contrasigno", + "RSA public key" : "Clave public RSA", + "Public key" : "Clave public", + "Amazon S3" : "Amazon S3", + "Hostname" : "Nomine de Hospite", + "Port" : "Porto", "Region" : "Region", + "Enable SSL" : "Activar SSL", + "Enable Path Style" : "Activar Stilo de Sentiero", + "WebDAV" : "WebDAV", "URL" : "URL", + "Remote subfolder" : "Sub-dossier remote", + "Secure https://" : "Secur https://", + "FTP" : "FTP", + "Host" : "Hospite", + "Secure ftps://" : "Secure ftps://", + "Local" : "Local", "Location" : "Loco", - "Share" : "Compartir", + "Nextcloud" : "Nextcloud", + "SFTP" : "SFTP", + "Root" : "Root", + "SMB / CIFS" : "SMB / CIFS", + "Service name" : "Nomine del servicio", "Name" : "Nomine", + "Storage type" : "Typo de immagazinage", + "Enable encryption" : "Activar cryptographia", + "Enable previews" : "Activar previsualisationes", + "Enable sharing" : "Activar compartimento", + "Check for changes" : "Verificar nove modificationes", + "Never" : "Nunquam", + "Once every direct access" : "A cata accesso directe", "Folder name" : "Nomine de dossier", - "Delete" : "Deler" + "External storage" : "Immagazinage externe", + "Authentication" : "Authentication", + "Configuration" : "Configuration", + "Available for" : "Disponibile a", + "Add storage" : "Adder immagazinage", + "Advanced settings" : "Configurationes avantiate", + "Delete" : "Deler", + "Allow users to mount external storage" : "Permitter usatores montar immagazinage externe", + "Allow users to mount the following external storage" : "Permitter usatores montar le sequente immagazinage externe", + "OpenStack" : "OpenStack" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/ia.json b/apps/files_external/l10n/ia.json index 68b23151fc707..e11576f8cc754 100644 --- a/apps/files_external/l10n/ia.json +++ b/apps/files_external/l10n/ia.json @@ -1,15 +1,78 @@ { "translations": { + "External storages" : "Immagazinages externe", "Personal" : "Personal", + "System" : "Systema", + "Grant access" : "Conceder accesso", + "Error configuring OAuth1" : "Error durante configuration de OAuth1", + "Please provide a valid app key and secret." : "Per favor, provide un clave e un secreto ambe valide.", + "Error configuring OAuth2" : "Error durante configuration de OAuth2", + "Generate keys" : "Generar claves", + "Error generating key pair" : "Error durante creation de par de claves", + "All users. Type to select user or group." : "Tote usatores. Scribe pro selectionar usator o gruppo.", "Saved" : "Salveguardate", + "Saving..." : "Salveguardante...", + "Save" : "Salveguardar", + "External mount error" : "Error del montage externe", + "external-storage" : "immagazinage-externe", "Username" : "Nomine de usator", "Password" : "Contrasigno", - "Save" : "Salveguardar", + "Credentials saved" : "Datos de authentication salveguardate", + "Credentials saving failed" : "Salveguarda de datos de authentication falleva", + "Credentials required" : "Datos de authentication requirite", + "Invalid mount point" : "Puncto de montage non valide", + "Insufficient data: %s" : "Datos insufficiente: %s", + "%s" : "%s", + "Access key" : "Clave de accesso", + "Secret key" : "Clave secrete", + "None" : "Nulle", + "OAuth1" : "OAuth1", + "App key" : "Clave del Application", + "App secret" : "Secreto del Application", + "OAuth2" : "OAuth2", + "Domain" : "Dominio", + "API key" : "Clave API", + "Global credentials" : "Datos de authentication global", + "Username and password" : "Nomine de usator e contrasigno", + "RSA public key" : "Clave public RSA", + "Public key" : "Clave public", + "Amazon S3" : "Amazon S3", + "Hostname" : "Nomine de Hospite", + "Port" : "Porto", "Region" : "Region", + "Enable SSL" : "Activar SSL", + "Enable Path Style" : "Activar Stilo de Sentiero", + "WebDAV" : "WebDAV", "URL" : "URL", + "Remote subfolder" : "Sub-dossier remote", + "Secure https://" : "Secur https://", + "FTP" : "FTP", + "Host" : "Hospite", + "Secure ftps://" : "Secure ftps://", + "Local" : "Local", "Location" : "Loco", - "Share" : "Compartir", + "Nextcloud" : "Nextcloud", + "SFTP" : "SFTP", + "Root" : "Root", + "SMB / CIFS" : "SMB / CIFS", + "Service name" : "Nomine del servicio", "Name" : "Nomine", + "Storage type" : "Typo de immagazinage", + "Enable encryption" : "Activar cryptographia", + "Enable previews" : "Activar previsualisationes", + "Enable sharing" : "Activar compartimento", + "Check for changes" : "Verificar nove modificationes", + "Never" : "Nunquam", + "Once every direct access" : "A cata accesso directe", "Folder name" : "Nomine de dossier", - "Delete" : "Deler" + "External storage" : "Immagazinage externe", + "Authentication" : "Authentication", + "Configuration" : "Configuration", + "Available for" : "Disponibile a", + "Add storage" : "Adder immagazinage", + "Advanced settings" : "Configurationes avantiate", + "Delete" : "Deler", + "Allow users to mount external storage" : "Permitter usatores montar immagazinage externe", + "Allow users to mount the following external storage" : "Permitter usatores montar le sequente immagazinage externe", + "OpenStack" : "OpenStack" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/id.js b/apps/files_external/l10n/id.js index ff8cb00c9c6fa..66b283bea800d 100644 --- a/apps/files_external/l10n/id.js +++ b/apps/files_external/l10n/id.js @@ -26,7 +26,7 @@ OC.L10N.register( "Some of the configured external mount points are not connected. Please click on the red row(s) for more information" : "Beberapa mount point eksternal tidak terhubung. Klik barisan merah untuk informasi selanjutnya", "Please enter the credentials for the {mount} mount" : "Masukkan kredensial untuk mount {mount}", "Username" : "Nama Pengguna", - "Password" : "Sandi", + "Password" : "Kata sandi", "Credentials saved" : "Kredensial tersimpan", "Credentials saving failed" : "Penyimpanan kredensial gagal", "Credentials required" : "Kredensial dibutuhkan", @@ -50,14 +50,14 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID Klien", "Client secret" : "Rahasia klien", - "OpenStack" : "OpenStack", "Tenant name" : "Nama tenant", "Identity endpoint URL" : "Identitas URL akhir", + "Domain" : "Domain", "Rackspace" : "Rackspace", "API key" : "Kunci API", - "Global credentials" : "Sandi Global", + "Global credentials" : "Kata sandi Global", "Log-in credentials, save in database" : "Kredensial masuk, simpan di basis data", - "Username and password" : "Nama pengguna dan sandi", + "Username and password" : "Nama pengguna dan kata sandi", "Log-in credentials, save in session" : "Kredensial masuk, simpan dalam sesi", "User entered, store in database" : "Dimasukkan pengguna, masukkan dalam basis data", "RSA public key" : "Kunci publik RSA", @@ -84,7 +84,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP dengan kunci rahasia masuk", "SMB / CIFS" : "SMB / CIFS", "Share" : "Bagikan", - "Domain" : "Domain", "SMB / CIFS using OC login" : "SMB / CIFS menggunakan OC login", "Username as share" : "Nama pengguna berbagi", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -93,8 +92,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Dukungan cURL di PHP tidak diaktifkan atau terpasang. Mengaitkan %s tidak memungkinkan. Harap tanyakan administrator sistem anda untuk memasangnya.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Dukungan FTP di PHP tidak diaktifkan atau terpasang. Mengaitkan %s tidak memungkinkan. Harap tanya administrator sistem anda untuk memasangnya.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" tidak terpasang. Mengaitkan %s tidak memungkinkan. Harap tanya administrator sistem anda untuk memasangnya.", - "No external storage configured" : "Penyimpanan eksternal tidak dikonfigurasi", - "You can add external storages in the personal settings" : "Anda dapat menambahkan penyimpanan eksternal di pengaturan pribadi", "Name" : "Nama", "Storage type" : "Tipe penyimpanan", "Scope" : "Skop", @@ -114,15 +111,8 @@ OC.L10N.register( "Delete" : "Hapus", "Allow users to mount external storage" : "Izinkan pengguna untuk mengaitkan penyimpanan eksternal", "Allow users to mount the following external storage" : "Izinkan pengguna untuk mengaitkan penyimpanan eksternal berikut", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Permintaan pengambilan token gagal. Pastikan kunci dan kerahasiaan aplikasi Anda sudah benar.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Akses pengambilan token gagal. Pastikan kunci dan kerahasiaan aplikasi Anda sudah benar.", - "Step 1 failed. Exception: %s" : "Langkah 1 gagal. Kecuali: %s", - "Step 2 failed. Exception: %s" : "Langkah 2 gagal. Kecuali: %s", - "Dropbox App Configuration" : "Konfigurasi Aplikasi Dropbox", - "Google Drive App Configuration" : "Konfigurasi Aplikasi Google Drive", - "Storage with id \"%i\" not found" : "Penyimpanan dengan id \"%i\" tidak ditemukan", - "Storage with id \"%i\" is not user editable" : "Penyimpanan dengan id \"%i\" tidak bisa diubah pengguna", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "Penyimpanan eksternal tidak dikonfigurasi", + "You can add external storages in the personal settings" : "Anda dapat menambahkan penyimpanan eksternal di pengaturan pribadi" }, "nplurals=1; plural=0;"); diff --git a/apps/files_external/l10n/id.json b/apps/files_external/l10n/id.json index 1a163c191b0ae..28992ce4013cd 100644 --- a/apps/files_external/l10n/id.json +++ b/apps/files_external/l10n/id.json @@ -24,7 +24,7 @@ "Some of the configured external mount points are not connected. Please click on the red row(s) for more information" : "Beberapa mount point eksternal tidak terhubung. Klik barisan merah untuk informasi selanjutnya", "Please enter the credentials for the {mount} mount" : "Masukkan kredensial untuk mount {mount}", "Username" : "Nama Pengguna", - "Password" : "Sandi", + "Password" : "Kata sandi", "Credentials saved" : "Kredensial tersimpan", "Credentials saving failed" : "Penyimpanan kredensial gagal", "Credentials required" : "Kredensial dibutuhkan", @@ -48,14 +48,14 @@ "OAuth2" : "OAuth2", "Client ID" : "ID Klien", "Client secret" : "Rahasia klien", - "OpenStack" : "OpenStack", "Tenant name" : "Nama tenant", "Identity endpoint URL" : "Identitas URL akhir", + "Domain" : "Domain", "Rackspace" : "Rackspace", "API key" : "Kunci API", - "Global credentials" : "Sandi Global", + "Global credentials" : "Kata sandi Global", "Log-in credentials, save in database" : "Kredensial masuk, simpan di basis data", - "Username and password" : "Nama pengguna dan sandi", + "Username and password" : "Nama pengguna dan kata sandi", "Log-in credentials, save in session" : "Kredensial masuk, simpan dalam sesi", "User entered, store in database" : "Dimasukkan pengguna, masukkan dalam basis data", "RSA public key" : "Kunci publik RSA", @@ -82,7 +82,6 @@ "SFTP with secret key login" : "SFTP dengan kunci rahasia masuk", "SMB / CIFS" : "SMB / CIFS", "Share" : "Bagikan", - "Domain" : "Domain", "SMB / CIFS using OC login" : "SMB / CIFS menggunakan OC login", "Username as share" : "Nama pengguna berbagi", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -91,8 +90,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Dukungan cURL di PHP tidak diaktifkan atau terpasang. Mengaitkan %s tidak memungkinkan. Harap tanyakan administrator sistem anda untuk memasangnya.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Dukungan FTP di PHP tidak diaktifkan atau terpasang. Mengaitkan %s tidak memungkinkan. Harap tanya administrator sistem anda untuk memasangnya.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" tidak terpasang. Mengaitkan %s tidak memungkinkan. Harap tanya administrator sistem anda untuk memasangnya.", - "No external storage configured" : "Penyimpanan eksternal tidak dikonfigurasi", - "You can add external storages in the personal settings" : "Anda dapat menambahkan penyimpanan eksternal di pengaturan pribadi", "Name" : "Nama", "Storage type" : "Tipe penyimpanan", "Scope" : "Skop", @@ -112,15 +109,8 @@ "Delete" : "Hapus", "Allow users to mount external storage" : "Izinkan pengguna untuk mengaitkan penyimpanan eksternal", "Allow users to mount the following external storage" : "Izinkan pengguna untuk mengaitkan penyimpanan eksternal berikut", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Permintaan pengambilan token gagal. Pastikan kunci dan kerahasiaan aplikasi Anda sudah benar.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Akses pengambilan token gagal. Pastikan kunci dan kerahasiaan aplikasi Anda sudah benar.", - "Step 1 failed. Exception: %s" : "Langkah 1 gagal. Kecuali: %s", - "Step 2 failed. Exception: %s" : "Langkah 2 gagal. Kecuali: %s", - "Dropbox App Configuration" : "Konfigurasi Aplikasi Dropbox", - "Google Drive App Configuration" : "Konfigurasi Aplikasi Google Drive", - "Storage with id \"%i\" not found" : "Penyimpanan dengan id \"%i\" tidak ditemukan", - "Storage with id \"%i\" is not user editable" : "Penyimpanan dengan id \"%i\" tidak bisa diubah pengguna", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "Penyimpanan eksternal tidak dikonfigurasi", + "You can add external storages in the personal settings" : "Anda dapat menambahkan penyimpanan eksternal di pengaturan pribadi" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_external/l10n/is.js b/apps/files_external/l10n/is.js index d0dcfd219d56e..7f210eda5dc30 100644 --- a/apps/files_external/l10n/is.js +++ b/apps/files_external/l10n/is.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(hópur)", "Compatibility with Mac NFD encoding (slow)" : "Samhæfni við Mac NFD kóðun (hægvirkt)", "Admin defined" : "Skilgreindur kerfisstjóri", - "Are you sure you want to delete this external storage" : "Ertu viss um að þú viljir eyða þessari ytri geymslu?", "Delete storage?" : "Eyða geymslu?", "Saved" : "Vistað", "Saving..." : "Er að vista ...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Biðlaraauðkenni", "Client secret" : "Leynilykill biðlara", - "OpenStack" : "OpenStack", "Tenant name" : "Nafn handhafa (tenant)", "Identity endpoint URL" : "Endapunktur auðkennisslóðar (identity endpoint URL)", + "Domain" : "Lén", "Rackspace" : "Rackspace", "API key" : "API-lykill", "Global credentials" : "Víðvær innskráningarauðkenni", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP innskráning með leynilykli", "SMB / CIFS" : "SMB / CIFS", "Share" : "Deila", - "Domain" : "Lén", "SMB / CIFS using OC login" : "SMB / CIFS með OC-innskráningu", "Username as share" : "Notandanafn sem sameign", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Stuðningur við cURL í PHP er ekki virkjaður eða ekki uppsettur. Tenging %s í skráakerfi er ekki möguleg. Biddu kerfisstjórann þinn um að setja þetta upp.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Stuðningur við FTP í PHP er ekki virkjaður eða ekki uppsettur. Tenging %s í skráakerfi er ekki möguleg. Biddu kerfisstjórann þinn um að setja þetta upp.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" er ekki uppsett. Tenging %s í skráakerfi er ekki möguleg. Biddu kerfisstjórann þinn um að setja þetta upp.", - "No external storage configured" : "Engin ytri-gagnageymsla stillt", - "You can add external storages in the personal settings" : "Þú getur bætt við ytri gagnageymslum í einkastillingunum þínum", "Name" : "Nafn", "Storage type" : "Tegund gagnageymslu", "Scope" : "Umfang", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Eyða", "Allow users to mount external storage" : "Leyfa notendum að tengja ytri gagnageymslur í skráakerfi", "Allow users to mount the following external storage" : "Leyfa notendum að tengja eftirfarandi ytri gagnageymslu í skráakerfi", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Mistókst að ná í beiðniteikn (request token). Gakktu úr skugga um að forritslykill og leynilykill séu réttir.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Mistókst að ná í aðgangsteikn (access token). Gakktu úr skugga um að forritslykill og leynilykill séu réttir.", - "Step 1 failed. Exception: %s" : "Skref 1 mistókst. Undantekning: %s", - "Step 2 failed. Exception: %s" : "Skref 2 mistókst. Undantekning: %s", - "Dropbox App Configuration" : "Uppsetning Dropbox forrits", - "Google Drive App Configuration" : "Uppsetning Google Drive forrits", - "Storage with id \"%i\" not found" : "Geymsla með auðkennið '%i' fannst ekki", - "Storage with id \"%i\" is not user editable" : "Geymslan með auðkennið '%s' er ekki breytanleg af notanda", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "Engin ytri-gagnageymsla stillt", + "You can add external storages in the personal settings" : "Þú getur bætt við ytri gagnageymslum í einkastillingunum þínum", + "Are you sure you want to delete this external storage" : "Ertu viss um að þú viljir eyða þessari ytri geymslu?" }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/files_external/l10n/is.json b/apps/files_external/l10n/is.json index fa7957f3c23e0..ee60db7edb40a 100644 --- a/apps/files_external/l10n/is.json +++ b/apps/files_external/l10n/is.json @@ -12,7 +12,6 @@ "(group)" : "(hópur)", "Compatibility with Mac NFD encoding (slow)" : "Samhæfni við Mac NFD kóðun (hægvirkt)", "Admin defined" : "Skilgreindur kerfisstjóri", - "Are you sure you want to delete this external storage" : "Ertu viss um að þú viljir eyða þessari ytri geymslu?", "Delete storage?" : "Eyða geymslu?", "Saved" : "Vistað", "Saving..." : "Er að vista ...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "Biðlaraauðkenni", "Client secret" : "Leynilykill biðlara", - "OpenStack" : "OpenStack", "Tenant name" : "Nafn handhafa (tenant)", "Identity endpoint URL" : "Endapunktur auðkennisslóðar (identity endpoint URL)", + "Domain" : "Lén", "Rackspace" : "Rackspace", "API key" : "API-lykill", "Global credentials" : "Víðvær innskráningarauðkenni", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "SFTP innskráning með leynilykli", "SMB / CIFS" : "SMB / CIFS", "Share" : "Deila", - "Domain" : "Lén", "SMB / CIFS using OC login" : "SMB / CIFS með OC-innskráningu", "Username as share" : "Notandanafn sem sameign", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Stuðningur við cURL í PHP er ekki virkjaður eða ekki uppsettur. Tenging %s í skráakerfi er ekki möguleg. Biddu kerfisstjórann þinn um að setja þetta upp.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Stuðningur við FTP í PHP er ekki virkjaður eða ekki uppsettur. Tenging %s í skráakerfi er ekki möguleg. Biddu kerfisstjórann þinn um að setja þetta upp.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" er ekki uppsett. Tenging %s í skráakerfi er ekki möguleg. Biddu kerfisstjórann þinn um að setja þetta upp.", - "No external storage configured" : "Engin ytri-gagnageymsla stillt", - "You can add external storages in the personal settings" : "Þú getur bætt við ytri gagnageymslum í einkastillingunum þínum", "Name" : "Nafn", "Storage type" : "Tegund gagnageymslu", "Scope" : "Umfang", @@ -118,15 +114,9 @@ "Delete" : "Eyða", "Allow users to mount external storage" : "Leyfa notendum að tengja ytri gagnageymslur í skráakerfi", "Allow users to mount the following external storage" : "Leyfa notendum að tengja eftirfarandi ytri gagnageymslu í skráakerfi", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Mistókst að ná í beiðniteikn (request token). Gakktu úr skugga um að forritslykill og leynilykill séu réttir.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Mistókst að ná í aðgangsteikn (access token). Gakktu úr skugga um að forritslykill og leynilykill séu réttir.", - "Step 1 failed. Exception: %s" : "Skref 1 mistókst. Undantekning: %s", - "Step 2 failed. Exception: %s" : "Skref 2 mistókst. Undantekning: %s", - "Dropbox App Configuration" : "Uppsetning Dropbox forrits", - "Google Drive App Configuration" : "Uppsetning Google Drive forrits", - "Storage with id \"%i\" not found" : "Geymsla með auðkennið '%i' fannst ekki", - "Storage with id \"%i\" is not user editable" : "Geymslan með auðkennið '%s' er ekki breytanleg af notanda", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "Engin ytri-gagnageymsla stillt", + "You can add external storages in the personal settings" : "Þú getur bætt við ytri gagnageymslum í einkastillingunum þínum", + "Are you sure you want to delete this external storage" : "Ertu viss um að þú viljir eyða þessari ytri geymslu?" },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" } \ No newline at end of file diff --git a/apps/files_external/l10n/it.js b/apps/files_external/l10n/it.js index 4bd2908b431f7..26cf94da6d50e 100644 --- a/apps/files_external/l10n/it.js +++ b/apps/files_external/l10n/it.js @@ -14,7 +14,7 @@ OC.L10N.register( "(group)" : "(gruppo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilità con la codifica Mac NFD (lento)", "Admin defined" : "Definito dall'amministratore", - "Are you sure you want to delete this external storage" : "Sei sicuro di voler eliminare questa archiviazione esterna?", + "Are you sure you want to delete this external storage?" : "Se sicuro di voler eliminare questa archiviazione esterna?", "Delete storage?" : "Vuoi eliminare l'archiviazione?", "Saved" : "Salvato", "Saving..." : "Salvataggio in corso...", @@ -56,9 +56,11 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID client", "Client secret" : "Segreto del client", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Nome tenant", "Identity endpoint URL" : "URL endpoint delle identità", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Chiave API", "Global credentials" : "Credenziali globali", @@ -91,7 +93,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP con accesso a chiave segreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Condividi", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS utilizzando le credenziali di OC", "Username as share" : "Nome utente come condivisione", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -100,8 +101,8 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Il supporto cURL di PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Il supporto FTP in PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" non è installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.", - "No external storage configured" : "Nessuna archiviazione esterna configurata", - "You can add external storages in the personal settings" : "Puoi aggiungere archiviazioni esterne nelle impostazioni personali", + "External storage support" : "Supporto archiviazioni esterne", + "No external storage configured or you don't have the permission to configure them" : "Nessuna archiviazione esterna configurata o non hai i permessi per configurarle", "Name" : "Nome", "Storage type" : "Tipo di archiviazione", "Scope" : "Ambito", @@ -116,6 +117,7 @@ OC.L10N.register( "Authentication" : "Autenticazione", "Configuration" : "Configurazione", "Available for" : "Disponibile per", + "Click to recheck the configuration" : "Clic per controllare di nuovo la configurazione", "Add storage" : "Aggiungi archiviazione", "Advanced settings" : "Impostazioni avanzate", "Delete" : "Elimina", @@ -127,9 +129,11 @@ OC.L10N.register( "Step 2 failed. Exception: %s" : "Fase 2 non riuscita. Eccezione: %s", "Dropbox App Configuration" : "Configurazione applicazione Dropbox", "Google Drive App Configuration" : "Configurazione applicazione Google Drive", - "Storage with id \"%i\" not found" : "Archiviazione con ID \"%i\" non trovata", - "Storage with id \"%i\" is not user editable" : "L'archiviazione con ID \"%i\" non è modificabile dall'utente", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Nessuna archiviazione esterna configurata", + "You can add external storages in the personal settings" : "Puoi aggiungere archiviazioni esterne nelle impostazioni personali", + "Are you sure you want to delete this external storage" : "Sei sicuro di voler eliminare questa archiviazione esterna?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/it.json b/apps/files_external/l10n/it.json index 36d4b296199c5..a8151db239579 100644 --- a/apps/files_external/l10n/it.json +++ b/apps/files_external/l10n/it.json @@ -12,7 +12,7 @@ "(group)" : "(gruppo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilità con la codifica Mac NFD (lento)", "Admin defined" : "Definito dall'amministratore", - "Are you sure you want to delete this external storage" : "Sei sicuro di voler eliminare questa archiviazione esterna?", + "Are you sure you want to delete this external storage?" : "Se sicuro di voler eliminare questa archiviazione esterna?", "Delete storage?" : "Vuoi eliminare l'archiviazione?", "Saved" : "Salvato", "Saving..." : "Salvataggio in corso...", @@ -54,9 +54,11 @@ "OAuth2" : "OAuth2", "Client ID" : "ID client", "Client secret" : "Segreto del client", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Nome tenant", "Identity endpoint URL" : "URL endpoint delle identità", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Dominio", "Rackspace" : "Rackspace", "API key" : "Chiave API", "Global credentials" : "Credenziali globali", @@ -89,7 +91,6 @@ "SFTP with secret key login" : "SFTP con accesso a chiave segreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Condividi", - "Domain" : "Dominio", "SMB / CIFS using OC login" : "SMB / CIFS utilizzando le credenziali di OC", "Username as share" : "Nome utente come condivisione", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -98,8 +99,8 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Il supporto cURL di PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Il supporto FTP in PHP non è abilitato o installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" non è installato. Impossibile montare %s. Chiedi al tuo amministratore di sistema di installarlo.", - "No external storage configured" : "Nessuna archiviazione esterna configurata", - "You can add external storages in the personal settings" : "Puoi aggiungere archiviazioni esterne nelle impostazioni personali", + "External storage support" : "Supporto archiviazioni esterne", + "No external storage configured or you don't have the permission to configure them" : "Nessuna archiviazione esterna configurata o non hai i permessi per configurarle", "Name" : "Nome", "Storage type" : "Tipo di archiviazione", "Scope" : "Ambito", @@ -114,6 +115,7 @@ "Authentication" : "Autenticazione", "Configuration" : "Configurazione", "Available for" : "Disponibile per", + "Click to recheck the configuration" : "Clic per controllare di nuovo la configurazione", "Add storage" : "Aggiungi archiviazione", "Advanced settings" : "Impostazioni avanzate", "Delete" : "Elimina", @@ -125,9 +127,11 @@ "Step 2 failed. Exception: %s" : "Fase 2 non riuscita. Eccezione: %s", "Dropbox App Configuration" : "Configurazione applicazione Dropbox", "Google Drive App Configuration" : "Configurazione applicazione Google Drive", - "Storage with id \"%i\" not found" : "Archiviazione con ID \"%i\" non trovata", - "Storage with id \"%i\" is not user editable" : "L'archiviazione con ID \"%i\" non è modificabile dall'utente", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Nessuna archiviazione esterna configurata", + "You can add external storages in the personal settings" : "Puoi aggiungere archiviazioni esterne nelle impostazioni personali", + "Are you sure you want to delete this external storage" : "Sei sicuro di voler eliminare questa archiviazione esterna?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/ja.js b/apps/files_external/l10n/ja.js index d1f6d72323558..cbb96585ceafa 100644 --- a/apps/files_external/l10n/ja.js +++ b/apps/files_external/l10n/ja.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(グループ)", "Compatibility with Mac NFD encoding (slow)" : "Mac NFD エンコード互換 (遅い)", "Admin defined" : "管理者設定済", - "Are you sure you want to delete this external storage" : "この外部ストレージを本当に削除しますか?", "Delete storage?" : "ストレージを削除しますか?", "Saved" : "保存されました", "Saving..." : "保存中...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "クライアントID", "Client secret" : "クライアント秘密キー", - "OpenStack" : "OpenStack", "Tenant name" : "テナント名", "Identity endpoint URL" : "認証エンドポイントURL", + "Domain" : "ドメイン", "Rackspace" : "Rackspace", "API key" : "APIキー", "Global credentials" : "グローバル資格情報", @@ -75,6 +74,7 @@ OC.L10N.register( "Region" : "リージョン", "Enable SSL" : "SSLを有効", "Enable Path Style" : "パス形式を有効", + "Legacy (v2) authentication" : "レガシー認証(v2)", "WebDAV" : "WebDAV", "URL" : "URL", "Remote subfolder" : "リモートサブフォルダー", @@ -90,7 +90,6 @@ OC.L10N.register( "SFTP with secret key login" : "秘密鍵でSFTPログイン", "SMB / CIFS" : "SMB / CIFS", "Share" : "共有", - "Domain" : "ドメイン", "SMB / CIFS using OC login" : "Nextcloud ログインを利用したSMB / CIFS", "Username as share" : "共有名", "OpenStack Object Storage" : "OpenStack ObjectStorage", @@ -99,8 +98,7 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "PHPでのcURLのサポートが有効になっていないか、インストールされていません。 %s のマウントは不可能です。システム管理者にインストールを依頼してください。", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "PHPのFTPサポートが有効になっていないか、インストールされていません。%s のマウントは不可能です。システム管理者にインストールを依頼してください。", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\"はインストールされていません。 %s のマウントは不可能です。システム管理者にインストールを依頼してください。", - "No external storage configured" : "外部ストレージは設定されていません", - "You can add external storages in the personal settings" : "個人設定で外部ストレージを設定することができます。", + "External storage support" : "外部ストレージのサポート", "Name" : "名前", "Storage type" : "ストレージ種別", "Scope" : "スコープ", @@ -126,9 +124,11 @@ OC.L10N.register( "Step 2 failed. Exception: %s" : "ステップ 2 の実行に失敗しました。例外: %s", "Dropbox App Configuration" : "Dropbox アプリ設定", "Google Drive App Configuration" : "Google アプリ設定", - "Storage with id \"%i\" not found" : "ストレージID \"%i\" が見つかりません", - "Storage with id \"%i\" is not user editable" : "ストレージID \"%i\" はユーザーが編集できません", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "外部ストレージは設定されていません", + "You can add external storages in the personal settings" : "個人設定で外部ストレージを設定することができます。", + "Are you sure you want to delete this external storage" : "この外部ストレージを本当に削除しますか?" }, "nplurals=1; plural=0;"); diff --git a/apps/files_external/l10n/ja.json b/apps/files_external/l10n/ja.json index 8c78d89c95838..723846fc9b198 100644 --- a/apps/files_external/l10n/ja.json +++ b/apps/files_external/l10n/ja.json @@ -12,7 +12,6 @@ "(group)" : "(グループ)", "Compatibility with Mac NFD encoding (slow)" : "Mac NFD エンコード互換 (遅い)", "Admin defined" : "管理者設定済", - "Are you sure you want to delete this external storage" : "この外部ストレージを本当に削除しますか?", "Delete storage?" : "ストレージを削除しますか?", "Saved" : "保存されました", "Saving..." : "保存中...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "クライアントID", "Client secret" : "クライアント秘密キー", - "OpenStack" : "OpenStack", "Tenant name" : "テナント名", "Identity endpoint URL" : "認証エンドポイントURL", + "Domain" : "ドメイン", "Rackspace" : "Rackspace", "API key" : "APIキー", "Global credentials" : "グローバル資格情報", @@ -73,6 +72,7 @@ "Region" : "リージョン", "Enable SSL" : "SSLを有効", "Enable Path Style" : "パス形式を有効", + "Legacy (v2) authentication" : "レガシー認証(v2)", "WebDAV" : "WebDAV", "URL" : "URL", "Remote subfolder" : "リモートサブフォルダー", @@ -88,7 +88,6 @@ "SFTP with secret key login" : "秘密鍵でSFTPログイン", "SMB / CIFS" : "SMB / CIFS", "Share" : "共有", - "Domain" : "ドメイン", "SMB / CIFS using OC login" : "Nextcloud ログインを利用したSMB / CIFS", "Username as share" : "共有名", "OpenStack Object Storage" : "OpenStack ObjectStorage", @@ -97,8 +96,7 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "PHPでのcURLのサポートが有効になっていないか、インストールされていません。 %s のマウントは不可能です。システム管理者にインストールを依頼してください。", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "PHPのFTPサポートが有効になっていないか、インストールされていません。%s のマウントは不可能です。システム管理者にインストールを依頼してください。", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\"はインストールされていません。 %s のマウントは不可能です。システム管理者にインストールを依頼してください。", - "No external storage configured" : "外部ストレージは設定されていません", - "You can add external storages in the personal settings" : "個人設定で外部ストレージを設定することができます。", + "External storage support" : "外部ストレージのサポート", "Name" : "名前", "Storage type" : "ストレージ種別", "Scope" : "スコープ", @@ -124,9 +122,11 @@ "Step 2 failed. Exception: %s" : "ステップ 2 の実行に失敗しました。例外: %s", "Dropbox App Configuration" : "Dropbox アプリ設定", "Google Drive App Configuration" : "Google アプリ設定", - "Storage with id \"%i\" not found" : "ストレージID \"%i\" が見つかりません", - "Storage with id \"%i\" is not user editable" : "ストレージID \"%i\" はユーザーが編集できません", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "外部ストレージは設定されていません", + "You can add external storages in the personal settings" : "個人設定で外部ストレージを設定することができます。", + "Are you sure you want to delete this external storage" : "この外部ストレージを本当に削除しますか?" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_external/l10n/ka_GE.js b/apps/files_external/l10n/ka_GE.js index 782242ae5dc26..228e131004a3e 100644 --- a/apps/files_external/l10n/ka_GE.js +++ b/apps/files_external/l10n/ka_GE.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(ჯგუფი)", "Compatibility with Mac NFD encoding (slow)" : "Mac NFD-სთან თავსებადობა (ნელი)", "Admin defined" : "განსაზღვრულია ადმინისტრატორის მიერ", - "Are you sure you want to delete this external storage" : "დარწმუნებული ხართ, რომ გსურთ ამ გარე საცავის გაუქმება?", "Delete storage?" : "გავაუქმოთ საცავი?", "Saved" : "შენახულია", "Saving..." : "ინახება…", @@ -56,9 +55,11 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "კლიენტის ID", "Client secret" : "კლიენტის საიდუმლო", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "მოიჯარის სახელი", "Identity endpoint URL" : "იდენტობის საბოლოო-წერტილის URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "დომენი", "Rackspace" : "Rackspace-ი", "API key" : "API გასაღები", "Global credentials" : "გლობალური მონაცემები", @@ -91,7 +92,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP საიდუმლო გასაღების ლოგინით", "SMB / CIFS" : "SMB / CIFS", "Share" : "გაზიარება", - "Domain" : "დომენი", "SMB / CIFS using OC login" : "SMB / CIFS OC ლოგინით", "Username as share" : "მომხმარებლის სახელი გაზიარებად", "OpenStack Object Storage" : "OpenStack ობიექტ საცავი", @@ -100,8 +100,8 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cURL-ის მხარდაჭერა PHP-ში არაა მოქდენი ან დაყენებული. %s-ის მონტაჟი ვერ ხერხდება. გთხოვთ სთხოვოთ თქვენი სისტემის ადმინისტრატორს მისი დაყენება.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP-ს მხარდაჭერა PHP-ში არაა მოქმედი ან დაყენებული. %s-ის მონტაჟი ვერ ხერხდება. გთხოვთ სთხოვოთ თქვენი სისტემის ადმინისტრატორს მისი დაყენება.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" არაა დაყენებული. %s-ის მონტაჟი ვერ ხერხდება. გთხოვთ სთხოვოთ თქვენი სისტემის ადმინისტრატორს მისი დაყენება.", - "No external storage configured" : "გარე საცავი არაა კონფიგურირებული", - "You can add external storages in the personal settings" : "გარე საცავები შეგიძლიათ დაამატოთ პირად პარამეტრებში", + "External storage support" : "გარე საცავის მხარდაჭერა", + "No external storage configured or you don't have the permission to configure them" : "გარე საცავი არაა კონფიგურირებული, ან არ გაქვთ უფლება გაუწიოთ მას კონფიგურაცია", "Name" : "სახელი", "Storage type" : "საცავის სახეობა", "Scope" : "ფარგლები", @@ -116,6 +116,7 @@ OC.L10N.register( "Authentication" : "აუტენტიფიკაცია", "Configuration" : "კონფიგურაცია", "Available for" : "ხელმისაწვდომია რომ", + "Click to recheck the configuration" : "დააწკაპუნეთ კონფიგურაციის ხელახალი შემოწმებისთვის", "Add storage" : "საცავის დამატება", "Advanced settings" : "დამატებითი პარამეტრები", "Delete" : "წაშლა", @@ -127,9 +128,11 @@ OC.L10N.register( "Step 2 failed. Exception: %s" : "ნაბიჯი 2 ჩაიშალა. გამონაკლისი: %s", "Dropbox App Configuration" : "Dropbox აპლიკაციის კონფიგურაცია", "Google Drive App Configuration" : "Google Drive აპლიკაციის კონფიგურაცია", - "Storage with id \"%i\" not found" : "საცავი ID-ით \"%i\" ვერ იქნა ნაპოვნი", - "Storage with id \"%i\" is not user editable" : "საცავი ID-ით \"%i\" არაა მომხმარებლისთვის შეცვლადი", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox-ი", - "Google Drive" : "Google Drive-ი" + "Google Drive" : "Google Drive-ი", + "No external storage configured" : "გარე საცავი არაა კონფიგურირებული", + "You can add external storages in the personal settings" : "გარე საცავები შეგიძლიათ დაამატოთ პირად პარამეტრებში", + "Are you sure you want to delete this external storage" : "დარწმუნებული ხართ, რომ გსურთ ამ გარე საცავის გაუქმება?" }, "nplurals=1; plural=0;"); diff --git a/apps/files_external/l10n/ka_GE.json b/apps/files_external/l10n/ka_GE.json index 7d9ebcdb3b1ac..e8a3e4162ec81 100644 --- a/apps/files_external/l10n/ka_GE.json +++ b/apps/files_external/l10n/ka_GE.json @@ -12,7 +12,6 @@ "(group)" : "(ჯგუფი)", "Compatibility with Mac NFD encoding (slow)" : "Mac NFD-სთან თავსებადობა (ნელი)", "Admin defined" : "განსაზღვრულია ადმინისტრატორის მიერ", - "Are you sure you want to delete this external storage" : "დარწმუნებული ხართ, რომ გსურთ ამ გარე საცავის გაუქმება?", "Delete storage?" : "გავაუქმოთ საცავი?", "Saved" : "შენახულია", "Saving..." : "ინახება…", @@ -54,9 +53,11 @@ "OAuth2" : "OAuth2", "Client ID" : "კლიენტის ID", "Client secret" : "კლიენტის საიდუმლო", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "მოიჯარის სახელი", "Identity endpoint URL" : "იდენტობის საბოლოო-წერტილის URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "დომენი", "Rackspace" : "Rackspace-ი", "API key" : "API გასაღები", "Global credentials" : "გლობალური მონაცემები", @@ -89,7 +90,6 @@ "SFTP with secret key login" : "SFTP საიდუმლო გასაღების ლოგინით", "SMB / CIFS" : "SMB / CIFS", "Share" : "გაზიარება", - "Domain" : "დომენი", "SMB / CIFS using OC login" : "SMB / CIFS OC ლოგინით", "Username as share" : "მომხმარებლის სახელი გაზიარებად", "OpenStack Object Storage" : "OpenStack ობიექტ საცავი", @@ -98,8 +98,8 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cURL-ის მხარდაჭერა PHP-ში არაა მოქდენი ან დაყენებული. %s-ის მონტაჟი ვერ ხერხდება. გთხოვთ სთხოვოთ თქვენი სისტემის ადმინისტრატორს მისი დაყენება.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP-ს მხარდაჭერა PHP-ში არაა მოქმედი ან დაყენებული. %s-ის მონტაჟი ვერ ხერხდება. გთხოვთ სთხოვოთ თქვენი სისტემის ადმინისტრატორს მისი დაყენება.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" არაა დაყენებული. %s-ის მონტაჟი ვერ ხერხდება. გთხოვთ სთხოვოთ თქვენი სისტემის ადმინისტრატორს მისი დაყენება.", - "No external storage configured" : "გარე საცავი არაა კონფიგურირებული", - "You can add external storages in the personal settings" : "გარე საცავები შეგიძლიათ დაამატოთ პირად პარამეტრებში", + "External storage support" : "გარე საცავის მხარდაჭერა", + "No external storage configured or you don't have the permission to configure them" : "გარე საცავი არაა კონფიგურირებული, ან არ გაქვთ უფლება გაუწიოთ მას კონფიგურაცია", "Name" : "სახელი", "Storage type" : "საცავის სახეობა", "Scope" : "ფარგლები", @@ -114,6 +114,7 @@ "Authentication" : "აუტენტიფიკაცია", "Configuration" : "კონფიგურაცია", "Available for" : "ხელმისაწვდომია რომ", + "Click to recheck the configuration" : "დააწკაპუნეთ კონფიგურაციის ხელახალი შემოწმებისთვის", "Add storage" : "საცავის დამატება", "Advanced settings" : "დამატებითი პარამეტრები", "Delete" : "წაშლა", @@ -125,9 +126,11 @@ "Step 2 failed. Exception: %s" : "ნაბიჯი 2 ჩაიშალა. გამონაკლისი: %s", "Dropbox App Configuration" : "Dropbox აპლიკაციის კონფიგურაცია", "Google Drive App Configuration" : "Google Drive აპლიკაციის კონფიგურაცია", - "Storage with id \"%i\" not found" : "საცავი ID-ით \"%i\" ვერ იქნა ნაპოვნი", - "Storage with id \"%i\" is not user editable" : "საცავი ID-ით \"%i\" არაა მომხმარებლისთვის შეცვლადი", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox-ი", - "Google Drive" : "Google Drive-ი" + "Google Drive" : "Google Drive-ი", + "No external storage configured" : "გარე საცავი არაა კონფიგურირებული", + "You can add external storages in the personal settings" : "გარე საცავები შეგიძლიათ დაამატოთ პირად პარამეტრებში", + "Are you sure you want to delete this external storage" : "დარწმუნებული ხართ, რომ გსურთ ამ გარე საცავის გაუქმება?" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_external/l10n/ko.js b/apps/files_external/l10n/ko.js index f91f5f723209a..f944958a3326e 100644 --- a/apps/files_external/l10n/ko.js +++ b/apps/files_external/l10n/ko.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(그룹)", "Compatibility with Mac NFD encoding (slow)" : "Mac NFD 인코딩 호환성 사용(느림)", "Admin defined" : "관리자 지정", - "Are you sure you want to delete this external storage" : "이 외부 저장소를 삭제하시겠습니까", "Delete storage?" : "저장소를 삭제하시겠습니까?", "Saved" : "저장됨", "Saving..." : "저장 중...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "클라이언트 ID", "Client secret" : "클라이언트 비밀 값", - "OpenStack" : "OpenStack", "Tenant name" : "테넌트 이름", "Identity endpoint URL" : "아이덴티티 끝점(Endpoint) URL", + "Domain" : "도메인", "Rackspace" : "Rackspace", "API key" : "API 키", "Global credentials" : "글로벌 인증", @@ -91,7 +90,6 @@ OC.L10N.register( "SFTP with secret key login" : "비밀 키 로그인을 사용하는 SFTP", "SMB / CIFS" : "SMB/CIFS", "Share" : "공유", - "Domain" : "도메인", "SMB / CIFS using OC login" : "OC 로그인을 사용하는 SMB/CIFS", "Username as share" : "사용자 이름으로 공유", "OpenStack Object Storage" : "OpenStack 객체 저장소", @@ -100,8 +98,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "PHP의 cURL 지원이 비활성화되어 있거나 설치되어 있지 않습니다. %s을(를) 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "PHP의 FTP 지원이 비활성화되어 있거나 설치되어 있지 않습니다. %s을(를) 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\"이(가) 설치되어 있지 않습니다. %s을(를) 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오.", - "No external storage configured" : "외부 저장소가 설정되지 않았음", - "You can add external storages in the personal settings" : "개인 설정에서 외부 저장소를 추가할 수 있습니다", "Name" : "이름", "Storage type" : "저장소 종류", "Scope" : "범위", @@ -127,9 +123,11 @@ OC.L10N.register( "Step 2 failed. Exception: %s" : "2단계 실패. 예외: %s", "Dropbox App Configuration" : "Dropbox 앱 설정", "Google Drive App Configuration" : "Google 드라이브 앱 설정", - "Storage with id \"%i\" not found" : "ID가 \"%i\"인 저장소를 찾을 수 없음", - "Storage with id \"%i\" is not user editable" : "저장소 ID \"%i\"을(를) 사용자가 편집할 수 없음", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google 드라이브" + "Google Drive" : "Google 드라이브", + "No external storage configured" : "외부 저장소가 설정되지 않았음", + "You can add external storages in the personal settings" : "개인 설정에서 외부 저장소를 추가할 수 있습니다", + "Are you sure you want to delete this external storage" : "이 외부 저장소를 삭제하시겠습니까" }, "nplurals=1; plural=0;"); diff --git a/apps/files_external/l10n/ko.json b/apps/files_external/l10n/ko.json index 4f2bd99e984e1..c91a255e708e4 100644 --- a/apps/files_external/l10n/ko.json +++ b/apps/files_external/l10n/ko.json @@ -12,7 +12,6 @@ "(group)" : "(그룹)", "Compatibility with Mac NFD encoding (slow)" : "Mac NFD 인코딩 호환성 사용(느림)", "Admin defined" : "관리자 지정", - "Are you sure you want to delete this external storage" : "이 외부 저장소를 삭제하시겠습니까", "Delete storage?" : "저장소를 삭제하시겠습니까?", "Saved" : "저장됨", "Saving..." : "저장 중...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "클라이언트 ID", "Client secret" : "클라이언트 비밀 값", - "OpenStack" : "OpenStack", "Tenant name" : "테넌트 이름", "Identity endpoint URL" : "아이덴티티 끝점(Endpoint) URL", + "Domain" : "도메인", "Rackspace" : "Rackspace", "API key" : "API 키", "Global credentials" : "글로벌 인증", @@ -89,7 +88,6 @@ "SFTP with secret key login" : "비밀 키 로그인을 사용하는 SFTP", "SMB / CIFS" : "SMB/CIFS", "Share" : "공유", - "Domain" : "도메인", "SMB / CIFS using OC login" : "OC 로그인을 사용하는 SMB/CIFS", "Username as share" : "사용자 이름으로 공유", "OpenStack Object Storage" : "OpenStack 객체 저장소", @@ -98,8 +96,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "PHP의 cURL 지원이 비활성화되어 있거나 설치되어 있지 않습니다. %s을(를) 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "PHP의 FTP 지원이 비활성화되어 있거나 설치되어 있지 않습니다. %s을(를) 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\"이(가) 설치되어 있지 않습니다. %s을(를) 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오.", - "No external storage configured" : "외부 저장소가 설정되지 않았음", - "You can add external storages in the personal settings" : "개인 설정에서 외부 저장소를 추가할 수 있습니다", "Name" : "이름", "Storage type" : "저장소 종류", "Scope" : "범위", @@ -125,9 +121,11 @@ "Step 2 failed. Exception: %s" : "2단계 실패. 예외: %s", "Dropbox App Configuration" : "Dropbox 앱 설정", "Google Drive App Configuration" : "Google 드라이브 앱 설정", - "Storage with id \"%i\" not found" : "ID가 \"%i\"인 저장소를 찾을 수 없음", - "Storage with id \"%i\" is not user editable" : "저장소 ID \"%i\"을(를) 사용자가 편집할 수 없음", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google 드라이브" + "Google Drive" : "Google 드라이브", + "No external storage configured" : "외부 저장소가 설정되지 않았음", + "You can add external storages in the personal settings" : "개인 설정에서 외부 저장소를 추가할 수 있습니다", + "Are you sure you want to delete this external storage" : "이 외부 저장소를 삭제하시겠습니까" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_external/l10n/lt_LT.js b/apps/files_external/l10n/lt_LT.js index 33004ff578747..4ca8e6cf6d659 100644 --- a/apps/files_external/l10n/lt_LT.js +++ b/apps/files_external/l10n/lt_LT.js @@ -54,9 +54,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Kliento ID", "Client secret" : "Trečiųjų šalių programinės įrangos kliento identifikacijos raktas", - "OpenStack" : "OpenStack", "Tenant name" : "Laikino valdytojo vardas", "Identity endpoint URL" : "Identiteto URL", + "Domain" : "Domenas", "Rackspace" : "Rackspace", "API key" : "API raktas", "Global credentials" : "Globalūs prisijungimo duomenys", @@ -88,7 +88,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP protokolas su prisijungimu", "SMB / CIFS" : "SMB / CIFS", "Share" : "Dalintis", - "Domain" : "Domenas", "SMB / CIFS using OC login" : "SMB / CIFS, naudojant OC prisijungimą", "Username as share" : "Samba dalinimosi vardas", "OpenStack Object Storage" : "Objektų saugykla \"OpenStack\"", @@ -97,8 +96,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cURL palaikymas yra neįjungtas arba neįdiegtas į PHP. %s prijungimas neįmanomas. Paprašykite sistemos administratoriaus pagalbos.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP palaikymas yra neįjungtas arba neįdiegtas į PHP. %s prijungimas neįmanomas. Paprašykite sistemos administratoriaus pagalbos.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nėra įdiegta \"%s\". %s prijungimas yra neįmanomas. Paprašykite savo sistemos administratoriaus, kad įdiegtų trūkstamą paketą.", - "No external storage configured" : "Nėra sukonfigūruota jokia išorinė saugykla", - "You can add external storages in the personal settings" : "Galite pridėti papildomą išorinę saugyklą nustatymų skiltyje", "Name" : "Pavadinimas", "Storage type" : "Saugyklos tipas", "Scope" : "Leidimas", @@ -118,15 +115,8 @@ OC.L10N.register( "Delete" : "Ištrinti", "Allow users to mount external storage" : "Leisti naudotojams prijungti išorines saugyklas", "Allow users to mount the following external storage" : "Leisti naudotojams prijungti šias išorines saugyklas", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Užklausos prieigos raktų gavimas nepavyko. Įsitikinkite, kad jūsų programėlės raktas ir paslaptis yra teisingi.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Prieigos raktas negautas. Patikrinkite ar trečiųjų šalių programinės įrangos identifikacijos numeris ir slaptažodis yra teisingi.", - "Step 1 failed. Exception: %s" : "Žingsnis 1 nepavyko. Išimtis: %s", - "Step 2 failed. Exception: %s" : "Žingsnis 2 nepavyko. Išimtis: %s", - "Dropbox App Configuration" : "Dropbox programinės įrangos konfigūravimas", - "Google Drive App Configuration" : "Google disko programėlės konfigūracija", - "Storage with id \"%i\" not found" : "Nerasta saugykla su identifikacijos numeriu \"%i\"", - "Storage with id \"%i\" is not user editable" : "Naudotojai negali redaguoti saugyklos identifikuotos kaip \"%i\"", - "Dropbox" : "Dropbox", - "Google Drive" : "Google diskas" + "OpenStack" : "OpenStack", + "No external storage configured" : "Nėra sukonfigūruota jokia išorinė saugykla", + "You can add external storages in the personal settings" : "Galite pridėti papildomą išorinę saugyklą nustatymų skiltyje" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/files_external/l10n/lt_LT.json b/apps/files_external/l10n/lt_LT.json index 71e0b26aff837..ff69617c68bce 100644 --- a/apps/files_external/l10n/lt_LT.json +++ b/apps/files_external/l10n/lt_LT.json @@ -52,9 +52,9 @@ "OAuth2" : "OAuth2", "Client ID" : "Kliento ID", "Client secret" : "Trečiųjų šalių programinės įrangos kliento identifikacijos raktas", - "OpenStack" : "OpenStack", "Tenant name" : "Laikino valdytojo vardas", "Identity endpoint URL" : "Identiteto URL", + "Domain" : "Domenas", "Rackspace" : "Rackspace", "API key" : "API raktas", "Global credentials" : "Globalūs prisijungimo duomenys", @@ -86,7 +86,6 @@ "SFTP with secret key login" : "SFTP protokolas su prisijungimu", "SMB / CIFS" : "SMB / CIFS", "Share" : "Dalintis", - "Domain" : "Domenas", "SMB / CIFS using OC login" : "SMB / CIFS, naudojant OC prisijungimą", "Username as share" : "Samba dalinimosi vardas", "OpenStack Object Storage" : "Objektų saugykla \"OpenStack\"", @@ -95,8 +94,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cURL palaikymas yra neįjungtas arba neįdiegtas į PHP. %s prijungimas neįmanomas. Paprašykite sistemos administratoriaus pagalbos.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP palaikymas yra neįjungtas arba neįdiegtas į PHP. %s prijungimas neįmanomas. Paprašykite sistemos administratoriaus pagalbos.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nėra įdiegta \"%s\". %s prijungimas yra neįmanomas. Paprašykite savo sistemos administratoriaus, kad įdiegtų trūkstamą paketą.", - "No external storage configured" : "Nėra sukonfigūruota jokia išorinė saugykla", - "You can add external storages in the personal settings" : "Galite pridėti papildomą išorinę saugyklą nustatymų skiltyje", "Name" : "Pavadinimas", "Storage type" : "Saugyklos tipas", "Scope" : "Leidimas", @@ -116,15 +113,8 @@ "Delete" : "Ištrinti", "Allow users to mount external storage" : "Leisti naudotojams prijungti išorines saugyklas", "Allow users to mount the following external storage" : "Leisti naudotojams prijungti šias išorines saugyklas", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Užklausos prieigos raktų gavimas nepavyko. Įsitikinkite, kad jūsų programėlės raktas ir paslaptis yra teisingi.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Prieigos raktas negautas. Patikrinkite ar trečiųjų šalių programinės įrangos identifikacijos numeris ir slaptažodis yra teisingi.", - "Step 1 failed. Exception: %s" : "Žingsnis 1 nepavyko. Išimtis: %s", - "Step 2 failed. Exception: %s" : "Žingsnis 2 nepavyko. Išimtis: %s", - "Dropbox App Configuration" : "Dropbox programinės įrangos konfigūravimas", - "Google Drive App Configuration" : "Google disko programėlės konfigūracija", - "Storage with id \"%i\" not found" : "Nerasta saugykla su identifikacijos numeriu \"%i\"", - "Storage with id \"%i\" is not user editable" : "Naudotojai negali redaguoti saugyklos identifikuotos kaip \"%i\"", - "Dropbox" : "Dropbox", - "Google Drive" : "Google diskas" + "OpenStack" : "OpenStack", + "No external storage configured" : "Nėra sukonfigūruota jokia išorinė saugykla", + "You can add external storages in the personal settings" : "Galite pridėti papildomą išorinę saugyklą nustatymų skiltyje" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/apps/files_external/l10n/lv.js b/apps/files_external/l10n/lv.js index 2034054737ed3..9ec9262842942 100644 --- a/apps/files_external/l10n/lv.js +++ b/apps/files_external/l10n/lv.js @@ -1,27 +1,84 @@ OC.L10N.register( "files_external", { - "External storage" : "Ārējā krātuve", + "External storages" : "Ārējās krātuves", "Personal" : "Personīgi", + "System" : "Sistēma", "Grant access" : "Piešķirt pieeju", + "Error configuring OAuth1" : "Konfigurēšanas kļūda OAuth1", + "Please provide a valid app key and secret." : "Lūdzu, norādiet derīgu programmas atslēgu un noslēpumu.", + "Error configuring OAuth2" : "Konfigurēšanas kļūda OAuth2", + "Generate keys" : "Izveidot atslēgas", + "Error generating key pair" : "Kļūda, ģenerējot atslēgu pāri", + "All users. Type to select user or group." : "Visiem lietotājiem. Klikšķini, lai atlasītu lietotāju vai grupu.", + "(group)" : "(grupa)", + "Compatibility with Mac NFD encoding (slow)" : "Saderība ar Mac NFD kodēšanu (lēni)", + "Admin defined" : "Administrators definētās", "Saved" : "Saglabāts", + "Saving..." : "Saglabā...", + "Save" : "Saglabāt", + "Empty response from the server" : "Tukša atbilde no servera", + "Couldn't get the information from the remote server: {code} {type}" : "Nevarējām iegūt informāciju no attālā servera: {code} {type}", + "There was an error with message: " : "Radās kļūda ar ziņu:", + "External mount error" : "Ārējā montēšanas kļūda", + "external-storage" : "ārējā krātuve", "Username" : "Lietotājvārds", "Password" : "Parole", - "Save" : "Saglabāt", + "Invalid mount point" : "Nederīgs montēšanas punkts", + "%s" : "%s", + "Access key" : "Pieejas atslēga", + "Secret key" : "Slepenā atslēga", "None" : "Nav", + "OAuth1" : "OAuth1", + "App key" : "Programmas atslēga", + "OAuth2" : "OAuth2", + "Client ID" : "Klienta ID", + "Domain" : "Domain", + "API key" : "API atslēga", + "Username and password" : "Lietotājvārds un parole", + "RSA public key" : "RSA publiskā atslēga", + "Public key" : "Publiska atslēga", + "Amazon S3" : "Amazon S3", + "Hostname" : "Resursa nosaukums", "Port" : "Ports", + "Region" : "Reģions", + "Enable SSL" : "Iespējot SSL", "WebDAV" : "WebDAV", "URL" : "URL", + "Remote subfolder" : "Attālinātā apakšmape", + "Secure https://" : "Secure https://", + "FTP" : "FTP", "Host" : "Resursdators", + "Secure ftps://" : "Secure ftps://", + "Local" : "Lokāls", "Location" : "Vieta", - "ownCloud" : "ownCloud", - "Share" : "Dalīties", + "Nextcloud" : "Nextcloud", + "SFTP" : "SFTP", + "Root" : "Root", + "SFTP with secret key login" : "SFTP pieteikšanās ar slepeno atslēgu", + "SMB / CIFS" : "SMB / CIFS", + "Share" : "Koplietot", + "SMB / CIFS using OC login" : "SMB / CIFS lietojot OC lietotāju", + "OpenStack Object Storage" : "OpenStack Object krātuve", + "Service name" : "Servisa nosaukums", "Name" : "Nosaukums", + "Storage type" : "Krātuves tips", + "Scope" : "Darbības joma", "Enable encryption" : "Ieslēgt šifrēšanu", - "External Storage" : "Ārējā krātuve", + "Enable previews" : "Iespējot priekšskatījumu", + "Enable sharing" : "Koplietošanas iespējošana", + "Check for changes" : "Pārbaudīt, vai nav izmaiņu", + "Never" : "Nekad", "Folder name" : "Mapes nosaukums", + "External storage" : "Ārējā krātuve", + "Authentication" : "Autentifikācija", "Configuration" : "Konfigurācija", + "Available for" : "Pieejams", "Add storage" : "Pievienot krātuvi", - "Delete" : "Dzēst" + "Advanced settings" : "Paplašināti iestatījumi", + "Delete" : "Dzēst", + "Allow users to mount external storage" : "Atļaut lietotājiem uzstādīt ārējās krātuves", + "OpenStack" : "OpenStack", + "No external storage configured" : "Nav konfigurēta ārējā krātuve" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/apps/files_external/l10n/lv.json b/apps/files_external/l10n/lv.json index 59321f9957af3..f10a5c93ffd3e 100644 --- a/apps/files_external/l10n/lv.json +++ b/apps/files_external/l10n/lv.json @@ -1,25 +1,82 @@ { "translations": { - "External storage" : "Ārējā krātuve", + "External storages" : "Ārējās krātuves", "Personal" : "Personīgi", + "System" : "Sistēma", "Grant access" : "Piešķirt pieeju", + "Error configuring OAuth1" : "Konfigurēšanas kļūda OAuth1", + "Please provide a valid app key and secret." : "Lūdzu, norādiet derīgu programmas atslēgu un noslēpumu.", + "Error configuring OAuth2" : "Konfigurēšanas kļūda OAuth2", + "Generate keys" : "Izveidot atslēgas", + "Error generating key pair" : "Kļūda, ģenerējot atslēgu pāri", + "All users. Type to select user or group." : "Visiem lietotājiem. Klikšķini, lai atlasītu lietotāju vai grupu.", + "(group)" : "(grupa)", + "Compatibility with Mac NFD encoding (slow)" : "Saderība ar Mac NFD kodēšanu (lēni)", + "Admin defined" : "Administrators definētās", "Saved" : "Saglabāts", + "Saving..." : "Saglabā...", + "Save" : "Saglabāt", + "Empty response from the server" : "Tukša atbilde no servera", + "Couldn't get the information from the remote server: {code} {type}" : "Nevarējām iegūt informāciju no attālā servera: {code} {type}", + "There was an error with message: " : "Radās kļūda ar ziņu:", + "External mount error" : "Ārējā montēšanas kļūda", + "external-storage" : "ārējā krātuve", "Username" : "Lietotājvārds", "Password" : "Parole", - "Save" : "Saglabāt", + "Invalid mount point" : "Nederīgs montēšanas punkts", + "%s" : "%s", + "Access key" : "Pieejas atslēga", + "Secret key" : "Slepenā atslēga", "None" : "Nav", + "OAuth1" : "OAuth1", + "App key" : "Programmas atslēga", + "OAuth2" : "OAuth2", + "Client ID" : "Klienta ID", + "Domain" : "Domain", + "API key" : "API atslēga", + "Username and password" : "Lietotājvārds un parole", + "RSA public key" : "RSA publiskā atslēga", + "Public key" : "Publiska atslēga", + "Amazon S3" : "Amazon S3", + "Hostname" : "Resursa nosaukums", "Port" : "Ports", + "Region" : "Reģions", + "Enable SSL" : "Iespējot SSL", "WebDAV" : "WebDAV", "URL" : "URL", + "Remote subfolder" : "Attālinātā apakšmape", + "Secure https://" : "Secure https://", + "FTP" : "FTP", "Host" : "Resursdators", + "Secure ftps://" : "Secure ftps://", + "Local" : "Lokāls", "Location" : "Vieta", - "ownCloud" : "ownCloud", - "Share" : "Dalīties", + "Nextcloud" : "Nextcloud", + "SFTP" : "SFTP", + "Root" : "Root", + "SFTP with secret key login" : "SFTP pieteikšanās ar slepeno atslēgu", + "SMB / CIFS" : "SMB / CIFS", + "Share" : "Koplietot", + "SMB / CIFS using OC login" : "SMB / CIFS lietojot OC lietotāju", + "OpenStack Object Storage" : "OpenStack Object krātuve", + "Service name" : "Servisa nosaukums", "Name" : "Nosaukums", + "Storage type" : "Krātuves tips", + "Scope" : "Darbības joma", "Enable encryption" : "Ieslēgt šifrēšanu", - "External Storage" : "Ārējā krātuve", + "Enable previews" : "Iespējot priekšskatījumu", + "Enable sharing" : "Koplietošanas iespējošana", + "Check for changes" : "Pārbaudīt, vai nav izmaiņu", + "Never" : "Nekad", "Folder name" : "Mapes nosaukums", + "External storage" : "Ārējā krātuve", + "Authentication" : "Autentifikācija", "Configuration" : "Konfigurācija", + "Available for" : "Pieejams", "Add storage" : "Pievienot krātuvi", - "Delete" : "Dzēst" + "Advanced settings" : "Paplašināti iestatījumi", + "Delete" : "Dzēst", + "Allow users to mount external storage" : "Atļaut lietotājiem uzstādīt ārējās krātuves", + "OpenStack" : "OpenStack", + "No external storage configured" : "Nav konfigurēta ārējā krātuve" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" } \ No newline at end of file diff --git a/apps/files_external/l10n/nb.js b/apps/files_external/l10n/nb.js index a96f89e83190e..c5020364ad814 100644 --- a/apps/files_external/l10n/nb.js +++ b/apps/files_external/l10n/nb.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(gruppe)", "Compatibility with Mac NFD encoding (slow)" : "Kompatibelt med Mac NFD koding (treg)", "Admin defined" : "Admin-definert", - "Are you sure you want to delete this external storage" : "Er du sikker på at du vil slette denne eksterne lagringsplassen?", "Delete storage?" : "Slett lagringsplass", "Saved" : "Lagret", "Saving..." : "Lagrer…", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Klient-ID", "Client secret" : "Klient-hemmelighet", - "OpenStack" : "OpenStack", "Tenant name" : "Prosjektnavn", "Identity endpoint URL" : "URL for identitets-endepunkt", + "Domain" : "Domene", "Rackspace" : "Rackspace", "API key" : "API-nøkkel", "Global credentials" : "Globale pålogginsdetaljer", @@ -75,6 +74,7 @@ OC.L10N.register( "Region" : "Området", "Enable SSL" : "Aktiver SSL", "Enable Path Style" : "Aktiver Path Style", + "Legacy (v2) authentication" : "Foreldet (v2-) autentisering", "WebDAV" : "WebDAV", "URL" : "URL", "Remote subfolder" : "Ekstern undermappe", @@ -90,7 +90,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP med hemmelig nøkkel for pålogging", "SMB / CIFS" : "SMB / CIFS", "Share" : "Delt ressurs", - "Domain" : "Domene", "SMB / CIFS using OC login" : "SMB / CIFS med OC-pålogging", "Username as share" : "Brukernavn som delt ressurs", "OpenStack Object Storage" : "OpenStack objektlager", @@ -99,8 +98,7 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Merk: Støtte for cURL i PHP er ikke aktivert eller installert. Oppkobling av %s er ikke mulig. Be systemadministratoren om å installere det.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Merk: FTP-støtte i PHP er ikke slått på eller installert. Kan ikke koble opp %s. Ta kontakt med systemadministratoren for å få dette installert.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" er ikke installert. Oppkobling av %s er ikke mulig. Spør din systemadministrator om å installere det.", - "No external storage configured" : "Eksternt lager er ikke konfigurert", - "You can add external storages in the personal settings" : "Du kan legge til eksterne lagre i personlige innstillinger", + "External storage support" : "Støtte for ekstern lagring", "Name" : "Navn", "Storage type" : "Lagringstype", "Scope" : "Omfang", @@ -126,9 +124,11 @@ OC.L10N.register( "Step 2 failed. Exception: %s" : "Steg 2 mislyktes. Unntak: %s", "Dropbox App Configuration" : "Oppsett for Dropbox-program", "Google Drive App Configuration" : "Oppsett av Google Drive-program", - "Storage with id \"%i\" not found" : "Lager med ID \"%i\" ikke funnet", - "Storage with id \"%i\" is not user editable" : "Lager med ID \"%i\" kan ikke redigeres av bruker", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Disk" + "Google Drive" : "Google Drive", + "No external storage configured" : "Eksternt lager er ikke konfigurert", + "You can add external storages in the personal settings" : "Du kan legge til eksterne lagre i personlige innstillinger", + "Are you sure you want to delete this external storage" : "Er du sikker på at du vil slette denne eksterne lagringsplassen?" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/nb.json b/apps/files_external/l10n/nb.json index 3cf8c0d42b156..2e0e3e1646953 100644 --- a/apps/files_external/l10n/nb.json +++ b/apps/files_external/l10n/nb.json @@ -12,7 +12,6 @@ "(group)" : "(gruppe)", "Compatibility with Mac NFD encoding (slow)" : "Kompatibelt med Mac NFD koding (treg)", "Admin defined" : "Admin-definert", - "Are you sure you want to delete this external storage" : "Er du sikker på at du vil slette denne eksterne lagringsplassen?", "Delete storage?" : "Slett lagringsplass", "Saved" : "Lagret", "Saving..." : "Lagrer…", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "Klient-ID", "Client secret" : "Klient-hemmelighet", - "OpenStack" : "OpenStack", "Tenant name" : "Prosjektnavn", "Identity endpoint URL" : "URL for identitets-endepunkt", + "Domain" : "Domene", "Rackspace" : "Rackspace", "API key" : "API-nøkkel", "Global credentials" : "Globale pålogginsdetaljer", @@ -73,6 +72,7 @@ "Region" : "Området", "Enable SSL" : "Aktiver SSL", "Enable Path Style" : "Aktiver Path Style", + "Legacy (v2) authentication" : "Foreldet (v2-) autentisering", "WebDAV" : "WebDAV", "URL" : "URL", "Remote subfolder" : "Ekstern undermappe", @@ -88,7 +88,6 @@ "SFTP with secret key login" : "SFTP med hemmelig nøkkel for pålogging", "SMB / CIFS" : "SMB / CIFS", "Share" : "Delt ressurs", - "Domain" : "Domene", "SMB / CIFS using OC login" : "SMB / CIFS med OC-pålogging", "Username as share" : "Brukernavn som delt ressurs", "OpenStack Object Storage" : "OpenStack objektlager", @@ -97,8 +96,7 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Merk: Støtte for cURL i PHP er ikke aktivert eller installert. Oppkobling av %s er ikke mulig. Be systemadministratoren om å installere det.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Merk: FTP-støtte i PHP er ikke slått på eller installert. Kan ikke koble opp %s. Ta kontakt med systemadministratoren for å få dette installert.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" er ikke installert. Oppkobling av %s er ikke mulig. Spør din systemadministrator om å installere det.", - "No external storage configured" : "Eksternt lager er ikke konfigurert", - "You can add external storages in the personal settings" : "Du kan legge til eksterne lagre i personlige innstillinger", + "External storage support" : "Støtte for ekstern lagring", "Name" : "Navn", "Storage type" : "Lagringstype", "Scope" : "Omfang", @@ -124,9 +122,11 @@ "Step 2 failed. Exception: %s" : "Steg 2 mislyktes. Unntak: %s", "Dropbox App Configuration" : "Oppsett for Dropbox-program", "Google Drive App Configuration" : "Oppsett av Google Drive-program", - "Storage with id \"%i\" not found" : "Lager med ID \"%i\" ikke funnet", - "Storage with id \"%i\" is not user editable" : "Lager med ID \"%i\" kan ikke redigeres av bruker", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Disk" + "Google Drive" : "Google Drive", + "No external storage configured" : "Eksternt lager er ikke konfigurert", + "You can add external storages in the personal settings" : "Du kan legge til eksterne lagre i personlige innstillinger", + "Are you sure you want to delete this external storage" : "Er du sikker på at du vil slette denne eksterne lagringsplassen?" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/nl.js b/apps/files_external/l10n/nl.js index 5e53b24ddc6d3..e68577934d669 100644 --- a/apps/files_external/l10n/nl.js +++ b/apps/files_external/l10n/nl.js @@ -14,7 +14,7 @@ OC.L10N.register( "(group)" : "(groep)", "Compatibility with Mac NFD encoding (slow)" : "Compatibiliteit met Mac NFD encoding (traag)", "Admin defined" : "Beheerder gedefinieerd", - "Are you sure you want to delete this external storage" : "Weet je zeker dat je de externe opslag wilt verwijderen", + "Are you sure you want to delete this external storage?" : "Weet je zeker dat je deze externe opslag wilt verwijderen", "Delete storage?" : "Opslag verwijderen?", "Saved" : "Bewaard", "Saving..." : "Bewaren...", @@ -56,9 +56,11 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Client secret", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Naam tenant", "Identity endpoint URL" : "Identiteiten endpoint URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Domein", "Rackspace" : "Rackspace", "API key" : "API sleutel", "Global credentials" : "Algemene inloggegevens", @@ -91,7 +93,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP met geheime sleutel inlog", "SMB / CIFS" : "SMB / CIFS", "Share" : "Share", - "Domain" : "Domein", "SMB / CIFS using OC login" : "SMB / CIFS via OC inlog", "Username as share" : "Gebruikersnaam als share", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -100,8 +101,8 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Curl ondersteuning in PHP is niet ingeschakeld of geïnstalleerd. Mounten van %s is niet mogelijk. Vraag je systeembeheerder dit te installeren.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP ondersteuning in PHP is niet ingeschakeld of geïnstalleerd. Mounten van %s is niet mogelijk. Vraag je beheerder dit te installeren.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" is niet geïnstalleerd. Mounten van %s is niet mogelijk. Vraag je beheerder om dit te installeren.", - "No external storage configured" : "Geen externe opslag geconfigureerd", - "You can add external storages in the personal settings" : "Je kunt externe opslag toevoegen in persoonlijke instellingen", + "External storage support" : "Externe opslag ondersteuning", + "No external storage configured or you don't have the permission to configure them" : "Geen externe opslag geconfigureerd of je hebt geen toestemming om deze te configureren", "Name" : "Naam", "Storage type" : "Opslagtype", "Scope" : "Scope", @@ -116,20 +117,23 @@ OC.L10N.register( "Authentication" : "Authenticatie", "Configuration" : "Configuratie", "Available for" : "Beschikbaar voor", + "Click to recheck the configuration" : "Klik om de configuratie opnieuw te controleren", "Add storage" : "Toevoegen opslag", "Advanced settings" : "Geavanceerde instellingen", "Delete" : "Verwijder", "Allow users to mount external storage" : "Sta gebruikers toe om een externe opslag aan te koppelen", "Allow users to mount the following external storage" : "Sta gebruikers toe de volgende externe opslag aan te koppelen", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Ophalen aanvraag tokens mislukt. Verifieer dat je app sleutel en geheime sleutel juist zijn.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Ophalen toegangstokens mislukt. Verifieer dat je app sleutel en geheime sleutel juist zijn.", - "Step 1 failed. Exception: %s" : "Stap 1 is mislukt. Uitzondering: %s", - "Step 2 failed. Exception: %s" : "Stap 2 is mislukt. Uitzondering: %s", - "Dropbox App Configuration" : "Dropbox app configuratie", - "Google Drive App Configuration" : "Google Drive app configuratie", - "Storage with id \"%i\" not found" : "Opslag met id \"%i\" niet gevonden", - "Storage with id \"%i\" is not user editable" : "Opslag met id \"%i\" is niet te bewerken door gebruiker", + "Fetching request tokens failed. Verify that your app key and secret are correct." : "Binnenhalen van de aanvraag token is mislukt. Controleer dat je app sleutel en geheim correct zijn.", + "Fetching access tokens failed. Verify that your app key and secret are correct." : "Binnenhalen van de toegangstoken is mislukt. Controleer dat je app sleutel en geheim correct zijn.", + "Step 1 failed. Exception: %s" : "Stap 1 mislukt. Uitzondering: %s", + "Step 2 failed. Exception: %s" : "Stap 2 mislukt. Uitzondering: %s", + "Dropbox App Configuration" : "Dropbox App Configuratie", + "Google Drive App Configuration" : "Google Drive App Configuratie", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Geen externe opslag geconfigureerd", + "You can add external storages in the personal settings" : "Je kunt externe opslag toevoegen in persoonlijke instellingen", + "Are you sure you want to delete this external storage" : "Weet je zeker dat je de externe opslag wilt verwijderen" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/nl.json b/apps/files_external/l10n/nl.json index ee2ffa25a93aa..ca96e41648375 100644 --- a/apps/files_external/l10n/nl.json +++ b/apps/files_external/l10n/nl.json @@ -12,7 +12,7 @@ "(group)" : "(groep)", "Compatibility with Mac NFD encoding (slow)" : "Compatibiliteit met Mac NFD encoding (traag)", "Admin defined" : "Beheerder gedefinieerd", - "Are you sure you want to delete this external storage" : "Weet je zeker dat je de externe opslag wilt verwijderen", + "Are you sure you want to delete this external storage?" : "Weet je zeker dat je deze externe opslag wilt verwijderen", "Delete storage?" : "Opslag verwijderen?", "Saved" : "Bewaard", "Saving..." : "Bewaren...", @@ -54,9 +54,11 @@ "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Client secret", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Naam tenant", "Identity endpoint URL" : "Identiteiten endpoint URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Domein", "Rackspace" : "Rackspace", "API key" : "API sleutel", "Global credentials" : "Algemene inloggegevens", @@ -89,7 +91,6 @@ "SFTP with secret key login" : "SFTP met geheime sleutel inlog", "SMB / CIFS" : "SMB / CIFS", "Share" : "Share", - "Domain" : "Domein", "SMB / CIFS using OC login" : "SMB / CIFS via OC inlog", "Username as share" : "Gebruikersnaam als share", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -98,8 +99,8 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Curl ondersteuning in PHP is niet ingeschakeld of geïnstalleerd. Mounten van %s is niet mogelijk. Vraag je systeembeheerder dit te installeren.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP ondersteuning in PHP is niet ingeschakeld of geïnstalleerd. Mounten van %s is niet mogelijk. Vraag je beheerder dit te installeren.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" is niet geïnstalleerd. Mounten van %s is niet mogelijk. Vraag je beheerder om dit te installeren.", - "No external storage configured" : "Geen externe opslag geconfigureerd", - "You can add external storages in the personal settings" : "Je kunt externe opslag toevoegen in persoonlijke instellingen", + "External storage support" : "Externe opslag ondersteuning", + "No external storage configured or you don't have the permission to configure them" : "Geen externe opslag geconfigureerd of je hebt geen toestemming om deze te configureren", "Name" : "Naam", "Storage type" : "Opslagtype", "Scope" : "Scope", @@ -114,20 +115,23 @@ "Authentication" : "Authenticatie", "Configuration" : "Configuratie", "Available for" : "Beschikbaar voor", + "Click to recheck the configuration" : "Klik om de configuratie opnieuw te controleren", "Add storage" : "Toevoegen opslag", "Advanced settings" : "Geavanceerde instellingen", "Delete" : "Verwijder", "Allow users to mount external storage" : "Sta gebruikers toe om een externe opslag aan te koppelen", "Allow users to mount the following external storage" : "Sta gebruikers toe de volgende externe opslag aan te koppelen", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Ophalen aanvraag tokens mislukt. Verifieer dat je app sleutel en geheime sleutel juist zijn.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Ophalen toegangstokens mislukt. Verifieer dat je app sleutel en geheime sleutel juist zijn.", - "Step 1 failed. Exception: %s" : "Stap 1 is mislukt. Uitzondering: %s", - "Step 2 failed. Exception: %s" : "Stap 2 is mislukt. Uitzondering: %s", - "Dropbox App Configuration" : "Dropbox app configuratie", - "Google Drive App Configuration" : "Google Drive app configuratie", - "Storage with id \"%i\" not found" : "Opslag met id \"%i\" niet gevonden", - "Storage with id \"%i\" is not user editable" : "Opslag met id \"%i\" is niet te bewerken door gebruiker", + "Fetching request tokens failed. Verify that your app key and secret are correct." : "Binnenhalen van de aanvraag token is mislukt. Controleer dat je app sleutel en geheim correct zijn.", + "Fetching access tokens failed. Verify that your app key and secret are correct." : "Binnenhalen van de toegangstoken is mislukt. Controleer dat je app sleutel en geheim correct zijn.", + "Step 1 failed. Exception: %s" : "Stap 1 mislukt. Uitzondering: %s", + "Step 2 failed. Exception: %s" : "Stap 2 mislukt. Uitzondering: %s", + "Dropbox App Configuration" : "Dropbox App Configuratie", + "Google Drive App Configuration" : "Google Drive App Configuratie", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Geen externe opslag geconfigureerd", + "You can add external storages in the personal settings" : "Je kunt externe opslag toevoegen in persoonlijke instellingen", + "Are you sure you want to delete this external storage" : "Weet je zeker dat je de externe opslag wilt verwijderen" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/pl.js b/apps/files_external/l10n/pl.js index 912b0efb1c1ac..9b7dce2396ae2 100644 --- a/apps/files_external/l10n/pl.js +++ b/apps/files_external/l10n/pl.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(grupa)", "Compatibility with Mac NFD encoding (slow)" : "Zgodność z kodowaniem Mac NFD (powolny)", "Admin defined" : "Zdefiniowane przez Administratora", - "Are you sure you want to delete this external storage" : "Czy na pewno chcesz usunąć zewnętrzny magazyn?", "Delete storage?" : "Usunąć magazyn?", "Saved" : "Zapisano", "Saving..." : "Zapisywanie...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID klienta", "Client secret" : "Hasło klienta", - "OpenStack" : "OpenStack", "Tenant name" : "Nazwa dzierżawcy", "Identity endpoint URL" : "Adres końcówki identyfikującej", + "Domain" : "Domena", "Rackspace" : "Rackspace", "API key" : "Klucz API", "Global credentials" : "Globalne poświadczenia", @@ -75,6 +74,7 @@ OC.L10N.register( "Region" : "Region", "Enable SSL" : "Włącz SSL", "Enable Path Style" : "Włącz styl ścieżki", + "Legacy (v2) authentication" : "Stara wersja autoryzacji (V2)", "WebDAV" : "WebDAV", "URL" : "URL", "Remote subfolder" : "Zdalny podfolder", @@ -90,7 +90,6 @@ OC.L10N.register( "SFTP with secret key login" : "Logowanie tajnym kluczem do SFTP", "SMB / CIFS" : "SMB / CIFS", "Share" : "Udostępnij", - "Domain" : "Domena", "SMB / CIFS using OC login" : "SMB / CIFS przy użyciu loginu OC", "Username as share" : "Użytkownik jako zasób", "OpenStack Object Storage" : "Magazyn obiektów OpenStack", @@ -99,8 +98,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Obsługa cURL w PHP jest wyłączona lub nie jest zainstalowana. Zamontowanie %s jest niemożliwe. Proszę poprosić swojego administratora systemu, żeby ją zainstalował.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Obsługa FTP w PHP jest wyłączona lub nie jest zainstalowana. Zamontowanie %s jest niemożliwe. Proszę poprosić swojego administratora systemu, żeby ją zainstalował.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" nie jest zainstalowane. Zamontowanie %s jest niemożliwe. Proszę poprosić swojego administratora systemu, żeby dokonał instalacji.", - "No external storage configured" : "Nie skonfigurowano żadnego zewnętrznego nośnika", - "You can add external storages in the personal settings" : "W ustawieniach osobistych możesz dodać zewnętrzne magazyny przechowywania", "Name" : "Nazwa", "Storage type" : "Typ magazynu", "Scope" : "Zakres", @@ -126,9 +123,11 @@ OC.L10N.register( "Step 2 failed. Exception: %s" : "Krok 2 błędny. Błąd: %s", "Dropbox App Configuration" : "Konfiguracja aplikacji Dropbox", "Google Drive App Configuration" : "Konfiguracja aplikacji Google Drive", - "Storage with id \"%i\" not found" : "Magazyn o ID \"%i\" nie został znaleziony", - "Storage with id \"%i\" is not user editable" : "Magazyn o ID \"%i\" nie może być edytowany przez użytkowników", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Dysk Google" + "Google Drive" : "Dysk Google", + "No external storage configured" : "Nie skonfigurowano żadnego zewnętrznego nośnika", + "You can add external storages in the personal settings" : "W ustawieniach osobistych możesz dodać zewnętrzne magazyny przechowywania", + "Are you sure you want to delete this external storage" : "Czy na pewno chcesz usunąć zewnętrzny magazyn?" }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/files_external/l10n/pl.json b/apps/files_external/l10n/pl.json index 31da2302ee0f4..cb509d198ab87 100644 --- a/apps/files_external/l10n/pl.json +++ b/apps/files_external/l10n/pl.json @@ -12,7 +12,6 @@ "(group)" : "(grupa)", "Compatibility with Mac NFD encoding (slow)" : "Zgodność z kodowaniem Mac NFD (powolny)", "Admin defined" : "Zdefiniowane przez Administratora", - "Are you sure you want to delete this external storage" : "Czy na pewno chcesz usunąć zewnętrzny magazyn?", "Delete storage?" : "Usunąć magazyn?", "Saved" : "Zapisano", "Saving..." : "Zapisywanie...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID klienta", "Client secret" : "Hasło klienta", - "OpenStack" : "OpenStack", "Tenant name" : "Nazwa dzierżawcy", "Identity endpoint URL" : "Adres końcówki identyfikującej", + "Domain" : "Domena", "Rackspace" : "Rackspace", "API key" : "Klucz API", "Global credentials" : "Globalne poświadczenia", @@ -73,6 +72,7 @@ "Region" : "Region", "Enable SSL" : "Włącz SSL", "Enable Path Style" : "Włącz styl ścieżki", + "Legacy (v2) authentication" : "Stara wersja autoryzacji (V2)", "WebDAV" : "WebDAV", "URL" : "URL", "Remote subfolder" : "Zdalny podfolder", @@ -88,7 +88,6 @@ "SFTP with secret key login" : "Logowanie tajnym kluczem do SFTP", "SMB / CIFS" : "SMB / CIFS", "Share" : "Udostępnij", - "Domain" : "Domena", "SMB / CIFS using OC login" : "SMB / CIFS przy użyciu loginu OC", "Username as share" : "Użytkownik jako zasób", "OpenStack Object Storage" : "Magazyn obiektów OpenStack", @@ -97,8 +96,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Obsługa cURL w PHP jest wyłączona lub nie jest zainstalowana. Zamontowanie %s jest niemożliwe. Proszę poprosić swojego administratora systemu, żeby ją zainstalował.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Obsługa FTP w PHP jest wyłączona lub nie jest zainstalowana. Zamontowanie %s jest niemożliwe. Proszę poprosić swojego administratora systemu, żeby ją zainstalował.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" nie jest zainstalowane. Zamontowanie %s jest niemożliwe. Proszę poprosić swojego administratora systemu, żeby dokonał instalacji.", - "No external storage configured" : "Nie skonfigurowano żadnego zewnętrznego nośnika", - "You can add external storages in the personal settings" : "W ustawieniach osobistych możesz dodać zewnętrzne magazyny przechowywania", "Name" : "Nazwa", "Storage type" : "Typ magazynu", "Scope" : "Zakres", @@ -124,9 +121,11 @@ "Step 2 failed. Exception: %s" : "Krok 2 błędny. Błąd: %s", "Dropbox App Configuration" : "Konfiguracja aplikacji Dropbox", "Google Drive App Configuration" : "Konfiguracja aplikacji Google Drive", - "Storage with id \"%i\" not found" : "Magazyn o ID \"%i\" nie został znaleziony", - "Storage with id \"%i\" is not user editable" : "Magazyn o ID \"%i\" nie może być edytowany przez użytkowników", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Dysk Google" + "Google Drive" : "Dysk Google", + "No external storage configured" : "Nie skonfigurowano żadnego zewnętrznego nośnika", + "You can add external storages in the personal settings" : "W ustawieniach osobistych możesz dodać zewnętrzne magazyny przechowywania", + "Are you sure you want to delete this external storage" : "Czy na pewno chcesz usunąć zewnętrzny magazyn?" },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" } \ No newline at end of file diff --git a/apps/files_external/l10n/pt_BR.js b/apps/files_external/l10n/pt_BR.js index c2fe422e7b3fb..f1624a0f9ead4 100644 --- a/apps/files_external/l10n/pt_BR.js +++ b/apps/files_external/l10n/pt_BR.js @@ -14,7 +14,7 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidade com a codificação Mac NFD (lento)", "Admin defined" : "Definido pelo administrador", - "Are you sure you want to delete this external storage" : "Quer realmente excluir este armazenamento externo", + "Are you sure you want to delete this external storage?" : "Quer realmente excluir este armazenamento externo?", "Delete storage?" : "Excluir armazenamento?", "Saved" : "Salvo", "Saving..." : "Salvando...", @@ -56,9 +56,11 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID do Cliente", "Client secret" : "Segredo do cliente", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Nome do inquilino", "Identity endpoint URL" : "URL do destino da identidade", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Domínio", "Rackspace" : "Espaço no rack", "API key" : "Chave API", "Global credentials" : "Credenciais globais", @@ -91,7 +93,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP com login de chave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartilhar", - "Domain" : "Domínio", "SMB / CIFS using OC login" : "SMB / CIFS usando OC login", "Username as share" : "Nome de usuário como compartilhamento", "OpenStack Object Storage" : "Armazenamento de Objetos OpenStack", @@ -100,8 +101,8 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "O suporte a cURL no PHP não está habilitado ou instalado. A montagem de %s não foi possível. Por favor, solicite a instalação ao administrador do sistema.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "O suporte FTP no PHP não está habilitado ou instalado. A montagem de %s não foi possível. Por favor, solicite a instalação ao administrador do sistema.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" não está instalado. A montagem de %s não foi possível. Por favor, solicite a instalação ao administrador do sistema.", - "No external storage configured" : "Nenhum armazendo externo foi configurado", - "You can add external storages in the personal settings" : "Você pode adicionar armazenamentos externos nas configurações pessoais", + "External storage support" : "Suporte a armazenamento externo", + "No external storage configured or you don't have the permission to configure them" : "Sem armazenamento externo configurado ou você não tem permissão para configurá-los", "Name" : "Nome", "Storage type" : "Tipo de armazenamento", "Scope" : "Alcance", @@ -116,20 +117,23 @@ OC.L10N.register( "Authentication" : "Autenticação", "Configuration" : "Configuração", "Available for" : "Disponível por", + "Click to recheck the configuration" : "Clique para rechecar a configuração", "Add storage" : "Adicionar armazenamento", "Advanced settings" : "Configurações avançadas", "Delete" : "Excluir", "Allow users to mount external storage" : "Permitir que usuários montem armazenamento externo", "Allow users to mount the following external storage" : "Permitir que usuários montem o seguinte armazenamento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Falha ao obter tokens de solicitação. Verifique se sua chave de aplicativo e segurança estão corretos.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Falha ao obter tokens de solicitação. Verifique se sua chave de aplicativo e segurança estão corretos.", - "Step 1 failed. Exception: %s" : "Passo 1 falhou. Exceção: %s", - "Step 2 failed. Exception: %s" : "Passo 2 falhou. Exceção: %s", + "Fetching request tokens failed. Verify that your app key and secret are correct." : "A busca pelos tokens solicitados falharam. Verifique se a chave e o segredo da sua aplicação estão corretos.", + "Fetching access tokens failed. Verify that your app key and secret are correct." : "O acesso aos tokens solicitados falharam. Verifique se a chave e o segredo da sua aplicação estão corretos.", + "Step 1 failed. Exception: %s" : "Passo 1 falhou. Erro: %s", + "Step 2 failed. Exception: %s" : "Passo 2 falhou. Erro: %s", "Dropbox App Configuration" : "Configuração do Aplicativo Dropbox", - "Google Drive App Configuration" : "Configuração do Aplicativo Google Drive", - "Storage with id \"%i\" not found" : "Armazenamento com ID \"%i\" não encontrado", - "Storage with id \"%i\" is not user editable" : "Armazenamento com ID \"%i\" não é editável pelo usuário", + "Google Drive App Configuration" : "Configuração do aplicativo Google Drive", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Nenhum armazendo externo foi configurado", + "You can add external storages in the personal settings" : "Você pode adicionar armazenamentos externos nas configurações pessoais", + "Are you sure you want to delete this external storage" : "Quer realmente excluir este armazenamento externo" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/files_external/l10n/pt_BR.json b/apps/files_external/l10n/pt_BR.json index 4f5550870c5d5..80d6ba18e09bc 100644 --- a/apps/files_external/l10n/pt_BR.json +++ b/apps/files_external/l10n/pt_BR.json @@ -12,7 +12,7 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidade com a codificação Mac NFD (lento)", "Admin defined" : "Definido pelo administrador", - "Are you sure you want to delete this external storage" : "Quer realmente excluir este armazenamento externo", + "Are you sure you want to delete this external storage?" : "Quer realmente excluir este armazenamento externo?", "Delete storage?" : "Excluir armazenamento?", "Saved" : "Salvo", "Saving..." : "Salvando...", @@ -54,9 +54,11 @@ "OAuth2" : "OAuth2", "Client ID" : "ID do Cliente", "Client secret" : "Segredo do cliente", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Nome do inquilino", "Identity endpoint URL" : "URL do destino da identidade", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Domínio", "Rackspace" : "Espaço no rack", "API key" : "Chave API", "Global credentials" : "Credenciais globais", @@ -89,7 +91,6 @@ "SFTP with secret key login" : "SFTP com login de chave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartilhar", - "Domain" : "Domínio", "SMB / CIFS using OC login" : "SMB / CIFS usando OC login", "Username as share" : "Nome de usuário como compartilhamento", "OpenStack Object Storage" : "Armazenamento de Objetos OpenStack", @@ -98,8 +99,8 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "O suporte a cURL no PHP não está habilitado ou instalado. A montagem de %s não foi possível. Por favor, solicite a instalação ao administrador do sistema.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "O suporte FTP no PHP não está habilitado ou instalado. A montagem de %s não foi possível. Por favor, solicite a instalação ao administrador do sistema.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" não está instalado. A montagem de %s não foi possível. Por favor, solicite a instalação ao administrador do sistema.", - "No external storage configured" : "Nenhum armazendo externo foi configurado", - "You can add external storages in the personal settings" : "Você pode adicionar armazenamentos externos nas configurações pessoais", + "External storage support" : "Suporte a armazenamento externo", + "No external storage configured or you don't have the permission to configure them" : "Sem armazenamento externo configurado ou você não tem permissão para configurá-los", "Name" : "Nome", "Storage type" : "Tipo de armazenamento", "Scope" : "Alcance", @@ -114,20 +115,23 @@ "Authentication" : "Autenticação", "Configuration" : "Configuração", "Available for" : "Disponível por", + "Click to recheck the configuration" : "Clique para rechecar a configuração", "Add storage" : "Adicionar armazenamento", "Advanced settings" : "Configurações avançadas", "Delete" : "Excluir", "Allow users to mount external storage" : "Permitir que usuários montem armazenamento externo", "Allow users to mount the following external storage" : "Permitir que usuários montem o seguinte armazenamento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Falha ao obter tokens de solicitação. Verifique se sua chave de aplicativo e segurança estão corretos.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Falha ao obter tokens de solicitação. Verifique se sua chave de aplicativo e segurança estão corretos.", - "Step 1 failed. Exception: %s" : "Passo 1 falhou. Exceção: %s", - "Step 2 failed. Exception: %s" : "Passo 2 falhou. Exceção: %s", + "Fetching request tokens failed. Verify that your app key and secret are correct." : "A busca pelos tokens solicitados falharam. Verifique se a chave e o segredo da sua aplicação estão corretos.", + "Fetching access tokens failed. Verify that your app key and secret are correct." : "O acesso aos tokens solicitados falharam. Verifique se a chave e o segredo da sua aplicação estão corretos.", + "Step 1 failed. Exception: %s" : "Passo 1 falhou. Erro: %s", + "Step 2 failed. Exception: %s" : "Passo 2 falhou. Erro: %s", "Dropbox App Configuration" : "Configuração do Aplicativo Dropbox", - "Google Drive App Configuration" : "Configuração do Aplicativo Google Drive", - "Storage with id \"%i\" not found" : "Armazenamento com ID \"%i\" não encontrado", - "Storage with id \"%i\" is not user editable" : "Armazenamento com ID \"%i\" não é editável pelo usuário", + "Google Drive App Configuration" : "Configuração do aplicativo Google Drive", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Nenhum armazendo externo foi configurado", + "You can add external storages in the personal settings" : "Você pode adicionar armazenamentos externos nas configurações pessoais", + "Are you sure you want to delete this external storage" : "Quer realmente excluir este armazenamento externo" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/pt_PT.js b/apps/files_external/l10n/pt_PT.js index 5755f35724e46..d0d4369a9c1d2 100644 --- a/apps/files_external/l10n/pt_PT.js +++ b/apps/files_external/l10n/pt_PT.js @@ -1,6 +1,7 @@ OC.L10N.register( "files_external", { + "External storages" : "Armazenamento externo", "Personal" : "Pessoal", "System" : "Sistema", "Grant access" : "Conceder acesso", @@ -13,13 +14,18 @@ OC.L10N.register( "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidade com a codificação NFD Mac (lenta)", "Admin defined" : "Administrador definido", + "Delete storage?" : "Apagar armazenamento?", "Saved" : "Guardado", + "Saving..." : "A guardar...", "Save" : "Guardar", "Empty response from the server" : "Resposta vazia a partir do servidor", + "Couldn't access. Please log out and in again to activate this mount point" : "Não foi possível aceder. Por favor faça logout e volte-se a autenticar para activar este ponto de montagem.", + "Couldn't get the information from the remote server: {code} {type}" : "Não foi possível obter informação do servidor remoto: {código}{tipo}", "Couldn't get the list of external mount points: {type}" : "Não foi possível conseguir a lista de pontos de montagem externos: {type}", "There was an error with message: " : "Houve um erro com a mensagem:", "External mount error" : "Erro de montagem externa", "external-storage" : "armazenamento externo", + "Couldn't fetch list of Windows network drive mount points: Empty response from server" : "Não fo possível obter lista de pontos de montagem de rede Windows: Resposta vazia do servidor", "Some of the configured external mount points are not connected. Please click on the red row(s) for more information" : "Alguns dos pontos de montagem externos configurados não estão conectados. Por favor, clique na fila vermelha para mais informação", "Please enter the credentials for the {mount} mount" : "Por favor, introduza as credenciais para {mount}", "Username" : "Nome de utilizador", @@ -27,6 +33,7 @@ OC.L10N.register( "Credentials saved" : "Credenciais guardadas", "Credentials saving failed" : "Falha ao guardar as credenciais", "Credentials required" : "Credenciais necessárias", + "Storage with ID \"%d\" not found" : "Armazenamento com ID \"%d\" não encontrado", "Invalid backend or authentication mechanism class" : "Parâmetros do mecanismo de autenticação inválidos", "Invalid mount point" : "Ponto de montagem inválido", "Objectstore forbidden" : "Objectstore proibido", @@ -37,6 +44,7 @@ OC.L10N.register( "Unsatisfied authentication mechanism parameters" : "Parâmetros do mecanismo de autenticação inválidos", "Insufficient data: %s" : "Dados insuficientes: %s", "%s" : "%s", + "Storage with ID \"%d\" is not user editable" : "Armazenamento com ID \"%d\" não é evitável por utilizadores", "Access key" : "Chave de acesso", "Secret key" : "Código secreto", "Builtin" : "Integrado", @@ -47,13 +55,16 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Id. do Cliente", "Client secret" : "Segredo do cliente\\\\", - "OpenStack" : "OpenStack", "Tenant name" : "Nome do locatário", "Identity endpoint URL" : "Identidade URL endpoint", + "Domain" : "Domínio", "Rackspace" : "Rackspace", "API key" : "Chave API", + "Global credentials" : "Credenciais globais", + "Log-in credentials, save in database" : "Credenciais de Log-in, guardar na base de dados", "Username and password" : "Nome de utilizador e palavra-passe", "Log-in credentials, save in session" : "Credenciais de login, guardar na sessão", + "User entered, store in database" : "Inseridos pelo utilizador, armazenar na base de dados", "RSA public key" : "Chave pública RSA", "Public key" : "Chave pública", "Amazon S3" : "Amazon S3", @@ -63,6 +74,7 @@ OC.L10N.register( "Region" : "Região", "Enable SSL" : "Ativar SSL", "Enable Path Style" : "Ativar Estilo do Caminho", + "Legacy (v2) authentication" : "Autenticação obsoleta (v2)", "WebDAV" : "WebDAV", "URL" : "URL", "Remote subfolder" : "Subpasta remota ", @@ -72,19 +84,21 @@ OC.L10N.register( "Secure ftps://" : "ftps:// Seguro", "Local" : "Local", "Location" : "Localização:", + "Nextcloud" : "Nextcloud", "SFTP" : "SFTP", "Root" : "Root", "SFTP with secret key login" : "SFTP com login por chave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartilhar", - "Domain" : "Domínio", "SMB / CIFS using OC login" : "SMB / CIFS utilizando o início de sessão OC", "Username as share" : "Nome de utilizador como partilha", "OpenStack Object Storage" : "Armazenamento de Objetos OpenStack", "Service name" : "Nome do serviço", "Request timeout (seconds)" : "Pedido expira (segundos)", - "No external storage configured" : "Sem armazenamentos externos configurados", - "You can add external storages in the personal settings" : "Pode adicionar armazenamentos externos nas definições pessoais", + "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "O suporte cURL em PHP não está activo ou instalado. Não é possível montar %s. Por favor peça ao seu administrador de sistema que o instale.", + "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "O suporteF TP em PHP não está activo ou instalado. Não é possível montar %s. Por favor peça ao seu administrador de sistema que o instale.", + "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" não está instalado. Não é possível montar %s. Por favor peça ao seu administrador que o instale.", + "External storage support" : "Suporte para armazenamento externo", "Name" : "Nome", "Storage type" : "Tipo de Armazenamento", "Scope" : "Âmbito", @@ -104,15 +118,17 @@ OC.L10N.register( "Delete" : "Apagar", "Allow users to mount external storage" : "Permitir que os utilizadores montem armazenamento externo", "Allow users to mount the following external storage" : "Permitir que os utilizadores montem o seguinte armazenamento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Não foi possível obter as senhas solicitadas. Verifique se o código e o segredo da sua app estão corretos.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Não foi possível obter as senhas de acesso. Verifique se o código e o segredo da sua app estão corretos.", - "Step 1 failed. Exception: %s" : "Passo 1 falhou. Exceção: %s", - "Step 2 failed. Exception: %s" : "Passo 2 falhou. Exceção: %s", - "Dropbox App Configuration" : "Configuração da aplicação Dropbox", + "Fetching request tokens failed. Verify that your app key and secret are correct." : "Falhou a obter tokens de pedido. Verifique se a sua chave de aplicação e segredo estão correctos.", + "Fetching access tokens failed. Verify that your app key and secret are correct." : "Falhou a obter tokens de acesso. Verifique se a sua chave de aplicação e segredo estão correctos.", + "Step 1 failed. Exception: %s" : "Passo 1 falhou. Excepção: %s", + "Step 2 failed. Exception: %s" : "Passo 2 falhou. Excepção: %s", + "Dropbox App Configuration" : "configuração da aplicação Dropbox", "Google Drive App Configuration" : "Configuração da aplicação Google Drive", - "Storage with id \"%i\" not found" : "Não foi encontrado o armazenamento com a id. \"%i\"", - "Storage with id \"%i\" is not user editable" : "Armazenamento com id \"%i\" não é editável pelo utilizador", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Sem armazenamentos externos configurados", + "You can add external storages in the personal settings" : "Pode adicionar armazenamentos externos nas definições pessoais", + "Are you sure you want to delete this external storage" : "De certeza que quer apagar este armazenamento externo" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/pt_PT.json b/apps/files_external/l10n/pt_PT.json index 7061d27c1279b..df177029a3bbf 100644 --- a/apps/files_external/l10n/pt_PT.json +++ b/apps/files_external/l10n/pt_PT.json @@ -1,4 +1,5 @@ { "translations": { + "External storages" : "Armazenamento externo", "Personal" : "Pessoal", "System" : "Sistema", "Grant access" : "Conceder acesso", @@ -11,13 +12,18 @@ "(group)" : "(grupo)", "Compatibility with Mac NFD encoding (slow)" : "Compatibilidade com a codificação NFD Mac (lenta)", "Admin defined" : "Administrador definido", + "Delete storage?" : "Apagar armazenamento?", "Saved" : "Guardado", + "Saving..." : "A guardar...", "Save" : "Guardar", "Empty response from the server" : "Resposta vazia a partir do servidor", + "Couldn't access. Please log out and in again to activate this mount point" : "Não foi possível aceder. Por favor faça logout e volte-se a autenticar para activar este ponto de montagem.", + "Couldn't get the information from the remote server: {code} {type}" : "Não foi possível obter informação do servidor remoto: {código}{tipo}", "Couldn't get the list of external mount points: {type}" : "Não foi possível conseguir a lista de pontos de montagem externos: {type}", "There was an error with message: " : "Houve um erro com a mensagem:", "External mount error" : "Erro de montagem externa", "external-storage" : "armazenamento externo", + "Couldn't fetch list of Windows network drive mount points: Empty response from server" : "Não fo possível obter lista de pontos de montagem de rede Windows: Resposta vazia do servidor", "Some of the configured external mount points are not connected. Please click on the red row(s) for more information" : "Alguns dos pontos de montagem externos configurados não estão conectados. Por favor, clique na fila vermelha para mais informação", "Please enter the credentials for the {mount} mount" : "Por favor, introduza as credenciais para {mount}", "Username" : "Nome de utilizador", @@ -25,6 +31,7 @@ "Credentials saved" : "Credenciais guardadas", "Credentials saving failed" : "Falha ao guardar as credenciais", "Credentials required" : "Credenciais necessárias", + "Storage with ID \"%d\" not found" : "Armazenamento com ID \"%d\" não encontrado", "Invalid backend or authentication mechanism class" : "Parâmetros do mecanismo de autenticação inválidos", "Invalid mount point" : "Ponto de montagem inválido", "Objectstore forbidden" : "Objectstore proibido", @@ -35,6 +42,7 @@ "Unsatisfied authentication mechanism parameters" : "Parâmetros do mecanismo de autenticação inválidos", "Insufficient data: %s" : "Dados insuficientes: %s", "%s" : "%s", + "Storage with ID \"%d\" is not user editable" : "Armazenamento com ID \"%d\" não é evitável por utilizadores", "Access key" : "Chave de acesso", "Secret key" : "Código secreto", "Builtin" : "Integrado", @@ -45,13 +53,16 @@ "OAuth2" : "OAuth2", "Client ID" : "Id. do Cliente", "Client secret" : "Segredo do cliente\\\\", - "OpenStack" : "OpenStack", "Tenant name" : "Nome do locatário", "Identity endpoint URL" : "Identidade URL endpoint", + "Domain" : "Domínio", "Rackspace" : "Rackspace", "API key" : "Chave API", + "Global credentials" : "Credenciais globais", + "Log-in credentials, save in database" : "Credenciais de Log-in, guardar na base de dados", "Username and password" : "Nome de utilizador e palavra-passe", "Log-in credentials, save in session" : "Credenciais de login, guardar na sessão", + "User entered, store in database" : "Inseridos pelo utilizador, armazenar na base de dados", "RSA public key" : "Chave pública RSA", "Public key" : "Chave pública", "Amazon S3" : "Amazon S3", @@ -61,6 +72,7 @@ "Region" : "Região", "Enable SSL" : "Ativar SSL", "Enable Path Style" : "Ativar Estilo do Caminho", + "Legacy (v2) authentication" : "Autenticação obsoleta (v2)", "WebDAV" : "WebDAV", "URL" : "URL", "Remote subfolder" : "Subpasta remota ", @@ -70,19 +82,21 @@ "Secure ftps://" : "ftps:// Seguro", "Local" : "Local", "Location" : "Localização:", + "Nextcloud" : "Nextcloud", "SFTP" : "SFTP", "Root" : "Root", "SFTP with secret key login" : "SFTP com login por chave secreta", "SMB / CIFS" : "SMB / CIFS", "Share" : "Compartilhar", - "Domain" : "Domínio", "SMB / CIFS using OC login" : "SMB / CIFS utilizando o início de sessão OC", "Username as share" : "Nome de utilizador como partilha", "OpenStack Object Storage" : "Armazenamento de Objetos OpenStack", "Service name" : "Nome do serviço", "Request timeout (seconds)" : "Pedido expira (segundos)", - "No external storage configured" : "Sem armazenamentos externos configurados", - "You can add external storages in the personal settings" : "Pode adicionar armazenamentos externos nas definições pessoais", + "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "O suporte cURL em PHP não está activo ou instalado. Não é possível montar %s. Por favor peça ao seu administrador de sistema que o instale.", + "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "O suporteF TP em PHP não está activo ou instalado. Não é possível montar %s. Por favor peça ao seu administrador de sistema que o instale.", + "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" não está instalado. Não é possível montar %s. Por favor peça ao seu administrador que o instale.", + "External storage support" : "Suporte para armazenamento externo", "Name" : "Nome", "Storage type" : "Tipo de Armazenamento", "Scope" : "Âmbito", @@ -102,15 +116,17 @@ "Delete" : "Apagar", "Allow users to mount external storage" : "Permitir que os utilizadores montem armazenamento externo", "Allow users to mount the following external storage" : "Permitir que os utilizadores montem o seguinte armazenamento externo", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Não foi possível obter as senhas solicitadas. Verifique se o código e o segredo da sua app estão corretos.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Não foi possível obter as senhas de acesso. Verifique se o código e o segredo da sua app estão corretos.", - "Step 1 failed. Exception: %s" : "Passo 1 falhou. Exceção: %s", - "Step 2 failed. Exception: %s" : "Passo 2 falhou. Exceção: %s", - "Dropbox App Configuration" : "Configuração da aplicação Dropbox", + "Fetching request tokens failed. Verify that your app key and secret are correct." : "Falhou a obter tokens de pedido. Verifique se a sua chave de aplicação e segredo estão correctos.", + "Fetching access tokens failed. Verify that your app key and secret are correct." : "Falhou a obter tokens de acesso. Verifique se a sua chave de aplicação e segredo estão correctos.", + "Step 1 failed. Exception: %s" : "Passo 1 falhou. Excepção: %s", + "Step 2 failed. Exception: %s" : "Passo 2 falhou. Excepção: %s", + "Dropbox App Configuration" : "configuração da aplicação Dropbox", "Google Drive App Configuration" : "Configuração da aplicação Google Drive", - "Storage with id \"%i\" not found" : "Não foi encontrado o armazenamento com a id. \"%i\"", - "Storage with id \"%i\" is not user editable" : "Armazenamento com id \"%i\" não é editável pelo utilizador", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Sem armazenamentos externos configurados", + "You can add external storages in the personal settings" : "Pode adicionar armazenamentos externos nas definições pessoais", + "Are you sure you want to delete this external storage" : "De certeza que quer apagar este armazenamento externo" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/ro.js b/apps/files_external/l10n/ro.js index 744ab7cf97d73..161880b672227 100644 --- a/apps/files_external/l10n/ro.js +++ b/apps/files_external/l10n/ro.js @@ -1,9 +1,6 @@ OC.L10N.register( "files_external", { - "Step 1 failed. Exception: %s" : "Pasul 1 a eșuat. Excepție: %s", - "Step 2 failed. Exception: %s" : "Pasul 2 a eșuat. Excepție: %s", - "External storage" : "Stocare externă", "Personal" : "Personal", "System" : "Sistem", "Grant access" : "Permite accesul", @@ -15,6 +12,7 @@ OC.L10N.register( "(group)" : "(grup)", "Admin defined" : "Administrator definit", "Saved" : "Salvat", + "Save" : "Salvează", "Empty response from the server" : "Răspuns nul de la server", "There was an error with message: " : "A apărut o eroare cu mesajul:", "external-storage" : "Stocare externă", @@ -23,7 +21,6 @@ OC.L10N.register( "Credentials saved" : "Detalii de autentificare salvate", "Credentials saving failed" : "Salvarea detaliilor de autentificare a eșuat", "Credentials required" : "Detalii de autentificare necesare", - "Save" : "Salvează", "Insufficient data: %s" : "Date insuficiente: %s", "%s" : "%s", "Access key" : "Cheie de acces", @@ -36,8 +33,8 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID client", "Client secret" : "Secret client", - "OpenStack" : "OpenStack", "Tenant name" : "Nume titular", + "Domain" : "Domeniu", "API key" : "Cheie API", "Username and password" : "Nume de utilizator și parolă", "RSA public key" : "Cheie publică RSA", @@ -50,20 +47,16 @@ OC.L10N.register( "WebDAV" : "WebDAV", "URL" : "URL", "Secure https://" : "https:// sigur", - "Dropbox" : "Dropbox", "FTP" : "FTP", "Host" : "Gazdă", "Secure ftps://" : "ftps:// sigur", - "Google Drive" : "Google Drive", "Local" : "Local", "Location" : "Locație", - "ownCloud" : "ownCloud", "SFTP" : "SFTP", "Root" : "Root", "SFTP with secret key login" : "SFTP cu cheie secretă de autentificare", "SMB / CIFS" : "SMB / CIFS", "Share" : "Partajează", - "Domain" : "Domeniu", "SMB / CIFS using OC login" : "SMB / CIFS folosind autentificare OC", "Service name" : "Nume serviciu", "Name" : "Nume", @@ -75,14 +68,15 @@ OC.L10N.register( "Check for changes" : "Verifică dacă au intervenit modificări", "Never" : "Niciodată", "Once every direct access" : "O dată la fiecare acces direct", - "External Storage" : "Stocare externă", "Folder name" : "Denumire director", + "External storage" : "Stocare externă", "Authentication" : "Autentificare", "Configuration" : "Configurație", "Available for" : "Disponibil pentru", "Add storage" : "Adauga stocare", "Advanced settings" : "Setări avansate", "Delete" : "Șterge", - "Allow users to mount the following external storage" : "Permite utilizatorilor să monteze următoarea unitate de stocare" + "Allow users to mount the following external storage" : "Permite utilizatorilor să monteze următoarea unitate de stocare", + "OpenStack" : "OpenStack" }, "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"); diff --git a/apps/files_external/l10n/ro.json b/apps/files_external/l10n/ro.json index 5cd39010eec92..e750f6e254684 100644 --- a/apps/files_external/l10n/ro.json +++ b/apps/files_external/l10n/ro.json @@ -1,7 +1,4 @@ { "translations": { - "Step 1 failed. Exception: %s" : "Pasul 1 a eșuat. Excepție: %s", - "Step 2 failed. Exception: %s" : "Pasul 2 a eșuat. Excepție: %s", - "External storage" : "Stocare externă", "Personal" : "Personal", "System" : "Sistem", "Grant access" : "Permite accesul", @@ -13,6 +10,7 @@ "(group)" : "(grup)", "Admin defined" : "Administrator definit", "Saved" : "Salvat", + "Save" : "Salvează", "Empty response from the server" : "Răspuns nul de la server", "There was an error with message: " : "A apărut o eroare cu mesajul:", "external-storage" : "Stocare externă", @@ -21,7 +19,6 @@ "Credentials saved" : "Detalii de autentificare salvate", "Credentials saving failed" : "Salvarea detaliilor de autentificare a eșuat", "Credentials required" : "Detalii de autentificare necesare", - "Save" : "Salvează", "Insufficient data: %s" : "Date insuficiente: %s", "%s" : "%s", "Access key" : "Cheie de acces", @@ -34,8 +31,8 @@ "OAuth2" : "OAuth2", "Client ID" : "ID client", "Client secret" : "Secret client", - "OpenStack" : "OpenStack", "Tenant name" : "Nume titular", + "Domain" : "Domeniu", "API key" : "Cheie API", "Username and password" : "Nume de utilizator și parolă", "RSA public key" : "Cheie publică RSA", @@ -48,20 +45,16 @@ "WebDAV" : "WebDAV", "URL" : "URL", "Secure https://" : "https:// sigur", - "Dropbox" : "Dropbox", "FTP" : "FTP", "Host" : "Gazdă", "Secure ftps://" : "ftps:// sigur", - "Google Drive" : "Google Drive", "Local" : "Local", "Location" : "Locație", - "ownCloud" : "ownCloud", "SFTP" : "SFTP", "Root" : "Root", "SFTP with secret key login" : "SFTP cu cheie secretă de autentificare", "SMB / CIFS" : "SMB / CIFS", "Share" : "Partajează", - "Domain" : "Domeniu", "SMB / CIFS using OC login" : "SMB / CIFS folosind autentificare OC", "Service name" : "Nume serviciu", "Name" : "Nume", @@ -73,14 +66,15 @@ "Check for changes" : "Verifică dacă au intervenit modificări", "Never" : "Niciodată", "Once every direct access" : "O dată la fiecare acces direct", - "External Storage" : "Stocare externă", "Folder name" : "Denumire director", + "External storage" : "Stocare externă", "Authentication" : "Autentificare", "Configuration" : "Configurație", "Available for" : "Disponibil pentru", "Add storage" : "Adauga stocare", "Advanced settings" : "Setări avansate", "Delete" : "Șterge", - "Allow users to mount the following external storage" : "Permite utilizatorilor să monteze următoarea unitate de stocare" + "Allow users to mount the following external storage" : "Permite utilizatorilor să monteze următoarea unitate de stocare", + "OpenStack" : "OpenStack" },"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/apps/files_external/l10n/ru.js b/apps/files_external/l10n/ru.js index 75e2e24358902..57f9ce60306a7 100644 --- a/apps/files_external/l10n/ru.js +++ b/apps/files_external/l10n/ru.js @@ -6,29 +6,29 @@ OC.L10N.register( "System" : "Система", "Grant access" : "Предоставить доступ", "Error configuring OAuth1" : "Ошибка настройки OAuth1", - "Please provide a valid app key and secret." : "Пожалуйста укажите корректные ключ и секрет приложения.", + "Please provide a valid app key and secret." : "Укажите верные ключ и секрет приложения.", "Error configuring OAuth2" : "Ошибка настройки OAuth2", "Generate keys" : "Создать ключи", - "Error generating key pair" : "Ошибка создания ключевой пары", + "Error generating key pair" : "Ошибка создания пары ключей", "All users. Type to select user or group." : "Все пользователи. Для выбора введите имя пользователя или группы.", "(group)" : "(группа)", "Compatibility with Mac NFD encoding (slow)" : "Совместимость с кодировкой Mac NFD (медленно)", - "Admin defined" : "Определено админом", - "Are you sure you want to delete this external storage" : "Действительно удалить это внешнее хранилище?", + "Admin defined" : "Определено администратором", + "Are you sure you want to delete this external storage?" : "Действительно удалить это внешнее хранилище?", "Delete storage?" : "Удалить хранилище?", "Saved" : "Сохранено", "Saving..." : "Сохранение...", "Save" : "Сохранить", - "Empty response from the server" : "Пустой ответ от сервера", + "Empty response from the server" : "Получен пустой ответ сервера", "Couldn't access. Please log out and in again to activate this mount point" : "Не удалось получить доступ. Для активации этой точки подключения выйдите и снова войдите в систему", - "Couldn't get the information from the remote server: {code} {type}" : "Не удалось получить информацию с удалённого сервера: {code} {type}", + "Couldn't get the information from the remote server: {code} {type}" : "Не удалось получить информацию от удалённого сервера: {code} {type}", "Couldn't get the list of external mount points: {type}" : "Не удалось получить список внешних точек монтирования: {type}", - "There was an error with message: " : "Обнаружена ошибка с сообщением:", - "External mount error" : "Ошибка внешнего монтирования", + "There was an error with message: " : "Произошла ошибка:", + "External mount error" : "Ошибка внешнего подключения", "external-storage" : "внешнее-хранилище", "Couldn't fetch list of Windows network drive mount points: Empty response from server" : "Не удалось получить список точек подключения сетевых дисков Windows: пустой ответ от сервера", "Some of the configured external mount points are not connected. Please click on the red row(s) for more information" : "Некоторые из настроенных внешних точек монтирования не подключены. Для получения дополнительной информации нажмите на красную строку(и)", - "Please enter the credentials for the {mount} mount" : "Укажите учётные данные для {mount}", + "Please enter the credentials for the {mount} mount" : "Укажите учётные данные для точки подключения «{mount}»", "Username" : "Имя пользователя", "Password" : "Пароль", "Credentials saved" : "Учётные данные сохранены", @@ -36,16 +36,16 @@ OC.L10N.register( "Credentials required" : "Требуются учётные данные", "Storage with ID \"%d\" not found" : "Хранилище с идентификатором «%d» не найдено", "Invalid backend or authentication mechanism class" : "Некорректный механизм авторизации или бэкенд", - "Invalid mount point" : "Неправильная точка входа", + "Invalid mount point" : "Неверная точка подключения", "Objectstore forbidden" : "Хранение объектов запрещено", "Invalid storage backend \"%s\"" : "Неверный бэкенд хранилища «%s»", - "Not permitted to use backend \"%s\"" : "Не допускается использование бэкенда «%s»", - "Not permitted to use authentication mechanism \"%s\"" : "Не допускается использование механизма авторизации «%s»", + "Not permitted to use backend \"%s\"" : "Использование бэкенда «%s» не разрешено", + "Not permitted to use authentication mechanism \"%s\"" : "Использование механизма авторизации «%s» не разрешено", "Unsatisfied backend parameters" : "Недопустимые настройки бэкенда", "Unsatisfied authentication mechanism parameters" : "Недопустимые настройки механизма авторизации", "Insufficient data: %s" : "Недостаточно данных: %s", "%s" : "%s", - "Storage with ID \"%d\" is not user editable" : "Пользователь не может редактировать хранилище с идентификатором «%d»", + "Storage with ID \"%d\" is not user editable" : "Пользователям не разрешено изменение параметров хранилища «%d»", "Access key" : "Ключ доступа", "Secret key" : "Секретный ключ", "Builtin" : "Встроенный", @@ -56,29 +56,32 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Идентификатор клиента", "Client secret" : "Клиентский ключ ", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Имя арендатора", "Identity endpoint URL" : "Удостоверение конечной точки URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Домен", "Rackspace" : "Rackspace", "API key" : "Ключ API", "Global credentials" : "Глобальные учётные данные", "Log-in credentials, save in database" : "Учётные данные, хранить в базе данных", "Username and password" : "Имя пользователя и пароль", "Log-in credentials, save in session" : "Учётные данные, хранить в сессии", - "User entered, store in database" : "Пользователь авторизован, сохранить в базе данных", + "User entered, store in database" : "Указанные пользователем, хранить в базе данных", "RSA public key" : "Открытый ключ RSA", "Public key" : "Открытый ключ", "Amazon S3" : "Amazon S3", "Bucket" : "Корзина", "Hostname" : "Имя хоста", "Port" : "Порт", - "Region" : "Область", - "Enable SSL" : "Включить SSL", - "Enable Path Style" : "Включить стиль пути", + "Region" : "Регион", + "Enable SSL" : "Использовать SSL", + "Enable Path Style" : "Использовать стиль пути", + "Legacy (v2) authentication" : "Устаревшая (v2) проверка подлинности", "WebDAV" : "WebDAV", "URL" : "URL", - "Remote subfolder" : "Удаленный подкаталог", - "Secure https://" : "Безопасный https://", + "Remote subfolder" : "Подкаталог на другом сервере", + "Secure https://" : "Использовать https://", "FTP" : "FTP", "Host" : "Сервер", "Secure ftps://" : "Защищённый ftps://", @@ -87,10 +90,9 @@ OC.L10N.register( "Nextcloud" : "Nextcloud", "SFTP" : "SFTP", "Root" : "Корневой каталог", - "SFTP with secret key login" : "SFTP с помощью секретного ключа", + "SFTP with secret key login" : "SFTP с входом при помощи закрытого ключа", "SMB / CIFS" : "SMB / CIFS", "Share" : "Общий ресурс", - "Domain" : "Домен", "SMB / CIFS using OC login" : "SMB / CIFS с ипользованием логина OC", "Username as share" : "Имя пользователя в качестве имени общего ресурса", "OpenStack Object Storage" : "Хранилище объектов OpenStack", @@ -99,36 +101,39 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Поддержка cURL в PHP не включена и/или не установлена, монтирование %s невозможно. Обратитесь к вашему системному администратору.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Поддержка FTP в PHP не включена и/или не установлена, монтирование %s невозможно. Обратитесь к вашему системному администратору.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "«%s» не установлен, монтирование %s невозможно. Обратитесь к вашему системному администратору.", - "No external storage configured" : "Нет настроенных внешних хранилищ", - "You can add external storages in the personal settings" : "Вы можете добавить внешние хранилища в личных настройках", + "External storage support" : "Поддержка внешних хранилищ", + "No external storage configured or you don't have the permission to configure them" : "Нет настроенного внешнего хранилища или у вас нет прав доступа для их настройки", "Name" : "Имя", "Storage type" : "Тип хранилища", "Scope" : "Область", "Enable encryption" : "Включить шифрование", - "Enable previews" : "Включить предпросмотр", - "Enable sharing" : "Включить общий доступ", + "Enable previews" : "Включить предварительный просмотр", + "Enable sharing" : "Разрешить предоставление общего доступа", "Check for changes" : "Проверять изменения", "Never" : "Никогда", "Once every direct access" : "Каждый раз при прямом доступе", - "Folder name" : "Имя каталога", + "Folder name" : "Имя папки", "External storage" : "Внешнее хранилище", - "Authentication" : "Авторизация", + "Authentication" : "Способ авторизации", "Configuration" : "Конфигурация", "Available for" : "Доступно для", + "Click to recheck the configuration" : "Нажмите для повторной проверки конфигурации", "Add storage" : "Добавить хранилище", "Advanced settings" : "Расширенные настройки", "Delete" : "Удалить", - "Allow users to mount external storage" : "Разрешить пользователями монтировать внешние накопители", - "Allow users to mount the following external storage" : "Разрешить пользователям монтировать следующие сервисы хранения данных", + "Allow users to mount external storage" : "Разрешить пользователями подключать внешние хранилища", + "Allow users to mount the following external storage" : "Разрешить использование следующих служб хранения данных:", "Fetching request tokens failed. Verify that your app key and secret are correct." : "Ошибка получения токенов запроса. Проверьте корректность ключа и секрета приложения.", "Fetching access tokens failed. Verify that your app key and secret are correct." : "Ошибка получения токенов доступа. Проверьте корректность ключа и секрета приложения.", "Step 1 failed. Exception: %s" : "Шаг 1 неудачен. Исключение: %s", "Step 2 failed. Exception: %s" : "Шаг 2 неудачен. Исключение: %s", "Dropbox App Configuration" : "Настройка приложения Dropbox", "Google Drive App Configuration" : "Настройка приложения Google Drive", - "Storage with id \"%i\" not found" : "Хранилище с идентификатором «%i» не найдено", - "Storage with id \"%i\" is not user editable" : "Пользователь не может редактировать хранилище «%i»", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Диск", + "No external storage configured" : "Внешние хранилища не настроены", + "You can add external storages in the personal settings" : "Вы можете добавить внешние хранилища в личных настройках", + "Are you sure you want to delete this external storage" : "Действительно удалить это внешнее хранилище?" }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/apps/files_external/l10n/ru.json b/apps/files_external/l10n/ru.json index 27da77399f84d..3897c16dd269b 100644 --- a/apps/files_external/l10n/ru.json +++ b/apps/files_external/l10n/ru.json @@ -4,29 +4,29 @@ "System" : "Система", "Grant access" : "Предоставить доступ", "Error configuring OAuth1" : "Ошибка настройки OAuth1", - "Please provide a valid app key and secret." : "Пожалуйста укажите корректные ключ и секрет приложения.", + "Please provide a valid app key and secret." : "Укажите верные ключ и секрет приложения.", "Error configuring OAuth2" : "Ошибка настройки OAuth2", "Generate keys" : "Создать ключи", - "Error generating key pair" : "Ошибка создания ключевой пары", + "Error generating key pair" : "Ошибка создания пары ключей", "All users. Type to select user or group." : "Все пользователи. Для выбора введите имя пользователя или группы.", "(group)" : "(группа)", "Compatibility with Mac NFD encoding (slow)" : "Совместимость с кодировкой Mac NFD (медленно)", - "Admin defined" : "Определено админом", - "Are you sure you want to delete this external storage" : "Действительно удалить это внешнее хранилище?", + "Admin defined" : "Определено администратором", + "Are you sure you want to delete this external storage?" : "Действительно удалить это внешнее хранилище?", "Delete storage?" : "Удалить хранилище?", "Saved" : "Сохранено", "Saving..." : "Сохранение...", "Save" : "Сохранить", - "Empty response from the server" : "Пустой ответ от сервера", + "Empty response from the server" : "Получен пустой ответ сервера", "Couldn't access. Please log out and in again to activate this mount point" : "Не удалось получить доступ. Для активации этой точки подключения выйдите и снова войдите в систему", - "Couldn't get the information from the remote server: {code} {type}" : "Не удалось получить информацию с удалённого сервера: {code} {type}", + "Couldn't get the information from the remote server: {code} {type}" : "Не удалось получить информацию от удалённого сервера: {code} {type}", "Couldn't get the list of external mount points: {type}" : "Не удалось получить список внешних точек монтирования: {type}", - "There was an error with message: " : "Обнаружена ошибка с сообщением:", - "External mount error" : "Ошибка внешнего монтирования", + "There was an error with message: " : "Произошла ошибка:", + "External mount error" : "Ошибка внешнего подключения", "external-storage" : "внешнее-хранилище", "Couldn't fetch list of Windows network drive mount points: Empty response from server" : "Не удалось получить список точек подключения сетевых дисков Windows: пустой ответ от сервера", "Some of the configured external mount points are not connected. Please click on the red row(s) for more information" : "Некоторые из настроенных внешних точек монтирования не подключены. Для получения дополнительной информации нажмите на красную строку(и)", - "Please enter the credentials for the {mount} mount" : "Укажите учётные данные для {mount}", + "Please enter the credentials for the {mount} mount" : "Укажите учётные данные для точки подключения «{mount}»", "Username" : "Имя пользователя", "Password" : "Пароль", "Credentials saved" : "Учётные данные сохранены", @@ -34,16 +34,16 @@ "Credentials required" : "Требуются учётные данные", "Storage with ID \"%d\" not found" : "Хранилище с идентификатором «%d» не найдено", "Invalid backend or authentication mechanism class" : "Некорректный механизм авторизации или бэкенд", - "Invalid mount point" : "Неправильная точка входа", + "Invalid mount point" : "Неверная точка подключения", "Objectstore forbidden" : "Хранение объектов запрещено", "Invalid storage backend \"%s\"" : "Неверный бэкенд хранилища «%s»", - "Not permitted to use backend \"%s\"" : "Не допускается использование бэкенда «%s»", - "Not permitted to use authentication mechanism \"%s\"" : "Не допускается использование механизма авторизации «%s»", + "Not permitted to use backend \"%s\"" : "Использование бэкенда «%s» не разрешено", + "Not permitted to use authentication mechanism \"%s\"" : "Использование механизма авторизации «%s» не разрешено", "Unsatisfied backend parameters" : "Недопустимые настройки бэкенда", "Unsatisfied authentication mechanism parameters" : "Недопустимые настройки механизма авторизации", "Insufficient data: %s" : "Недостаточно данных: %s", "%s" : "%s", - "Storage with ID \"%d\" is not user editable" : "Пользователь не может редактировать хранилище с идентификатором «%d»", + "Storage with ID \"%d\" is not user editable" : "Пользователям не разрешено изменение параметров хранилища «%d»", "Access key" : "Ключ доступа", "Secret key" : "Секретный ключ", "Builtin" : "Встроенный", @@ -54,29 +54,32 @@ "OAuth2" : "OAuth2", "Client ID" : "Идентификатор клиента", "Client secret" : "Клиентский ключ ", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Имя арендатора", "Identity endpoint URL" : "Удостоверение конечной точки URL", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Домен", "Rackspace" : "Rackspace", "API key" : "Ключ API", "Global credentials" : "Глобальные учётные данные", "Log-in credentials, save in database" : "Учётные данные, хранить в базе данных", "Username and password" : "Имя пользователя и пароль", "Log-in credentials, save in session" : "Учётные данные, хранить в сессии", - "User entered, store in database" : "Пользователь авторизован, сохранить в базе данных", + "User entered, store in database" : "Указанные пользователем, хранить в базе данных", "RSA public key" : "Открытый ключ RSA", "Public key" : "Открытый ключ", "Amazon S3" : "Amazon S3", "Bucket" : "Корзина", "Hostname" : "Имя хоста", "Port" : "Порт", - "Region" : "Область", - "Enable SSL" : "Включить SSL", - "Enable Path Style" : "Включить стиль пути", + "Region" : "Регион", + "Enable SSL" : "Использовать SSL", + "Enable Path Style" : "Использовать стиль пути", + "Legacy (v2) authentication" : "Устаревшая (v2) проверка подлинности", "WebDAV" : "WebDAV", "URL" : "URL", - "Remote subfolder" : "Удаленный подкаталог", - "Secure https://" : "Безопасный https://", + "Remote subfolder" : "Подкаталог на другом сервере", + "Secure https://" : "Использовать https://", "FTP" : "FTP", "Host" : "Сервер", "Secure ftps://" : "Защищённый ftps://", @@ -85,10 +88,9 @@ "Nextcloud" : "Nextcloud", "SFTP" : "SFTP", "Root" : "Корневой каталог", - "SFTP with secret key login" : "SFTP с помощью секретного ключа", + "SFTP with secret key login" : "SFTP с входом при помощи закрытого ключа", "SMB / CIFS" : "SMB / CIFS", "Share" : "Общий ресурс", - "Domain" : "Домен", "SMB / CIFS using OC login" : "SMB / CIFS с ипользованием логина OC", "Username as share" : "Имя пользователя в качестве имени общего ресурса", "OpenStack Object Storage" : "Хранилище объектов OpenStack", @@ -97,36 +99,39 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Поддержка cURL в PHP не включена и/или не установлена, монтирование %s невозможно. Обратитесь к вашему системному администратору.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Поддержка FTP в PHP не включена и/или не установлена, монтирование %s невозможно. Обратитесь к вашему системному администратору.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "«%s» не установлен, монтирование %s невозможно. Обратитесь к вашему системному администратору.", - "No external storage configured" : "Нет настроенных внешних хранилищ", - "You can add external storages in the personal settings" : "Вы можете добавить внешние хранилища в личных настройках", + "External storage support" : "Поддержка внешних хранилищ", + "No external storage configured or you don't have the permission to configure them" : "Нет настроенного внешнего хранилища или у вас нет прав доступа для их настройки", "Name" : "Имя", "Storage type" : "Тип хранилища", "Scope" : "Область", "Enable encryption" : "Включить шифрование", - "Enable previews" : "Включить предпросмотр", - "Enable sharing" : "Включить общий доступ", + "Enable previews" : "Включить предварительный просмотр", + "Enable sharing" : "Разрешить предоставление общего доступа", "Check for changes" : "Проверять изменения", "Never" : "Никогда", "Once every direct access" : "Каждый раз при прямом доступе", - "Folder name" : "Имя каталога", + "Folder name" : "Имя папки", "External storage" : "Внешнее хранилище", - "Authentication" : "Авторизация", + "Authentication" : "Способ авторизации", "Configuration" : "Конфигурация", "Available for" : "Доступно для", + "Click to recheck the configuration" : "Нажмите для повторной проверки конфигурации", "Add storage" : "Добавить хранилище", "Advanced settings" : "Расширенные настройки", "Delete" : "Удалить", - "Allow users to mount external storage" : "Разрешить пользователями монтировать внешние накопители", - "Allow users to mount the following external storage" : "Разрешить пользователям монтировать следующие сервисы хранения данных", + "Allow users to mount external storage" : "Разрешить пользователями подключать внешние хранилища", + "Allow users to mount the following external storage" : "Разрешить использование следующих служб хранения данных:", "Fetching request tokens failed. Verify that your app key and secret are correct." : "Ошибка получения токенов запроса. Проверьте корректность ключа и секрета приложения.", "Fetching access tokens failed. Verify that your app key and secret are correct." : "Ошибка получения токенов доступа. Проверьте корректность ключа и секрета приложения.", "Step 1 failed. Exception: %s" : "Шаг 1 неудачен. Исключение: %s", "Step 2 failed. Exception: %s" : "Шаг 2 неудачен. Исключение: %s", "Dropbox App Configuration" : "Настройка приложения Dropbox", "Google Drive App Configuration" : "Настройка приложения Google Drive", - "Storage with id \"%i\" not found" : "Хранилище с идентификатором «%i» не найдено", - "Storage with id \"%i\" is not user editable" : "Пользователь не может редактировать хранилище «%i»", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Диск", + "No external storage configured" : "Внешние хранилища не настроены", + "You can add external storages in the personal settings" : "Вы можете добавить внешние хранилища в личных настройках", + "Are you sure you want to delete this external storage" : "Действительно удалить это внешнее хранилище?" },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } \ No newline at end of file diff --git a/apps/files_external/l10n/sk.js b/apps/files_external/l10n/sk.js index a37d4961abfc0..83eeded4bdefe 100644 --- a/apps/files_external/l10n/sk.js +++ b/apps/files_external/l10n/sk.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(skupina)", "Compatibility with Mac NFD encoding (slow)" : "Kompatibilita s Mac NFD enkódovaním (pomalé)", "Admin defined" : "Nastavené správcom", - "Are you sure you want to delete this external storage" : "Naozaj chcete zmazať toto externé úložisko?", "Delete storage?" : "Zmazať externé úložisko?", "Saved" : "Uložené", "Saving..." : "Ukladá sa...", @@ -56,9 +55,11 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Heslo klienta", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Meno nájomcu", "Identity endpoint URL" : "Endpoint URL identita", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Doména", "Rackspace" : "Rackspace", "API key" : "API kľúč", "Global credentials" : "Globálne oprávnenia", @@ -90,7 +91,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP prihlásenie s tajným kľúčom", "SMB / CIFS" : "SMB / CIFS", "Share" : "Sprístupniť", - "Domain" : "Doména", "SMB / CIFS using OC login" : "SMB / CIFS s použitím OC prihlásenia", "Username as share" : "Používateľské meno ako sprístupnený priečinok", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +99,7 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nie je povolená alebo nainštalovaná cURL podpora v PHP. Pripojenie %s nie je možné. Požiadajte svojho správcu, aby doplnil podporu.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nie je povolená alebo nainštalovaná FTP podpora v PHP. Pripojenie %s nie je možné. Požiadajte svojho správcu, aby doplnil podporu.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nie je nainštalované \"%s\". Pripojenie %s nie je možné. Požiadajte svojho správcu o inštaláciu.", - "No external storage configured" : "Žiadne externé úložisko nie je nakonfigurované", - "You can add external storages in the personal settings" : "Externé úložisko je možné pridať v osobných nastaveniach", + "External storage support" : "Podpora externého úložiska", "Name" : "Názov", "Storage type" : "Typ úložiska", "Scope" : "Rozsah", @@ -120,15 +119,13 @@ OC.L10N.register( "Delete" : "Zmazať", "Allow users to mount external storage" : "Povoliť používateľom pripojiť externé úložiská", "Allow users to mount the following external storage" : "Povoliť používateľom pripojiť tieto externé úložiská", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Sťahovanie tokenov požiadavky zlyhalo. Overte prosím, či je aplikačný kľúč a heslo (secret) zadané správne.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Sťahovanie prístupových tokenov zlyhalo. Overte prosím, či je aplikačný kľúč a heslo (secret) zadané správne.", "Step 1 failed. Exception: %s" : "Krok 1 zlyhal. Výnimka: %s", "Step 2 failed. Exception: %s" : "Krok 2 zlyhal. Výnimka: %s", - "Dropbox App Configuration" : "Nastavenie Dropbox aplikácie", - "Google Drive App Configuration" : "Nastavenie Google Drive aplikácie", - "Storage with id \"%i\" not found" : "Úložisko s ID \"%i\" sa nenašlo", - "Storage with id \"%i\" is not user editable" : "Úložisko s id \"%i\" používatelia nemôžu upravovať", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Žiadne externé úložisko nie je nakonfigurované", + "You can add external storages in the personal settings" : "Externé úložisko je možné pridať v osobných nastaveniach", + "Are you sure you want to delete this external storage" : "Naozaj chcete zmazať toto externé úložisko?" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/files_external/l10n/sk.json b/apps/files_external/l10n/sk.json index c1b71b21204f6..0a84c569dfbbc 100644 --- a/apps/files_external/l10n/sk.json +++ b/apps/files_external/l10n/sk.json @@ -12,7 +12,6 @@ "(group)" : "(skupina)", "Compatibility with Mac NFD encoding (slow)" : "Kompatibilita s Mac NFD enkódovaním (pomalé)", "Admin defined" : "Nastavené správcom", - "Are you sure you want to delete this external storage" : "Naozaj chcete zmazať toto externé úložisko?", "Delete storage?" : "Zmazať externé úložisko?", "Saved" : "Uložené", "Saving..." : "Ukladá sa...", @@ -54,9 +53,11 @@ "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Heslo klienta", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Meno nájomcu", "Identity endpoint URL" : "Endpoint URL identita", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Doména", "Rackspace" : "Rackspace", "API key" : "API kľúč", "Global credentials" : "Globálne oprávnenia", @@ -88,7 +89,6 @@ "SFTP with secret key login" : "SFTP prihlásenie s tajným kľúčom", "SMB / CIFS" : "SMB / CIFS", "Share" : "Sprístupniť", - "Domain" : "Doména", "SMB / CIFS using OC login" : "SMB / CIFS s použitím OC prihlásenia", "Username as share" : "Používateľské meno ako sprístupnený priečinok", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +97,7 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nie je povolená alebo nainštalovaná cURL podpora v PHP. Pripojenie %s nie je možné. Požiadajte svojho správcu, aby doplnil podporu.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nie je povolená alebo nainštalovaná FTP podpora v PHP. Pripojenie %s nie je možné. Požiadajte svojho správcu, aby doplnil podporu.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Nie je nainštalované \"%s\". Pripojenie %s nie je možné. Požiadajte svojho správcu o inštaláciu.", - "No external storage configured" : "Žiadne externé úložisko nie je nakonfigurované", - "You can add external storages in the personal settings" : "Externé úložisko je možné pridať v osobných nastaveniach", + "External storage support" : "Podpora externého úložiska", "Name" : "Názov", "Storage type" : "Typ úložiska", "Scope" : "Rozsah", @@ -118,15 +117,13 @@ "Delete" : "Zmazať", "Allow users to mount external storage" : "Povoliť používateľom pripojiť externé úložiská", "Allow users to mount the following external storage" : "Povoliť používateľom pripojiť tieto externé úložiská", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Sťahovanie tokenov požiadavky zlyhalo. Overte prosím, či je aplikačný kľúč a heslo (secret) zadané správne.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Sťahovanie prístupových tokenov zlyhalo. Overte prosím, či je aplikačný kľúč a heslo (secret) zadané správne.", "Step 1 failed. Exception: %s" : "Krok 1 zlyhal. Výnimka: %s", "Step 2 failed. Exception: %s" : "Krok 2 zlyhal. Výnimka: %s", - "Dropbox App Configuration" : "Nastavenie Dropbox aplikácie", - "Google Drive App Configuration" : "Nastavenie Google Drive aplikácie", - "Storage with id \"%i\" not found" : "Úložisko s ID \"%i\" sa nenašlo", - "Storage with id \"%i\" is not user editable" : "Úložisko s id \"%i\" používatelia nemôžu upravovať", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Žiadne externé úložisko nie je nakonfigurované", + "You can add external storages in the personal settings" : "Externé úložisko je možné pridať v osobných nastaveniach", + "Are you sure you want to delete this external storage" : "Naozaj chcete zmazať toto externé úložisko?" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/files_external/l10n/sl.js b/apps/files_external/l10n/sl.js index a4ae6655a54d7..a0e1afb6e685b 100644 --- a/apps/files_external/l10n/sl.js +++ b/apps/files_external/l10n/sl.js @@ -49,9 +49,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID odjemalca", "Client secret" : "Skrivni ključ odjemalca", - "OpenStack" : "OpenStack", "Tenant name" : "Ime uporabnika", "Identity endpoint URL" : "Naslov URL končne točke istovetnosti", + "Domain" : "Domena", "Rackspace" : "Rackspace", "API key" : "Ključ API", "Log-in credentials, save in database" : "Prijavne poverilnice, shrani v bazo", @@ -82,14 +82,11 @@ OC.L10N.register( "SFTP with secret key login" : "Prijava prek protokola SFTP z geslom", "SMB / CIFS" : "SMB / CIFS", "Share" : "Souporaba", - "Domain" : "Domena", "SMB / CIFS using OC login" : "SMB / CIFS z uporabo prijave OC", "Username as share" : "Uporabniško ime za souporabo", "OpenStack Object Storage" : "Shramba predmeta OpenStack", "Service name" : "Ime storitve", "Request timeout (seconds)" : "Zahtevan časovni zamik (sekunde)", - "No external storage configured" : "Ni določene zunanje shrambe", - "You can add external storages in the personal settings" : "Med nastavitvami je mogoče dodati tudi zunanjo shrambo.", "Name" : "Ime", "Storage type" : "Vrsta shrambe", "Scope" : "Obseg", @@ -109,15 +106,8 @@ OC.L10N.register( "Delete" : "Izbriši", "Allow users to mount external storage" : "Dovoli uporabnikom priklapljanje zunanje shrambe", "Allow users to mount the following external storage" : "Dovoli uporabnikom priklapljanje navedenih zunanjih shramb.", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Pridobivanje žetonov zahteve je spodletelo. Preverite, ali sta ključ in skrivno geslo programa navedena pravilno.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Pridobivanje žetonov za dostop je spodletelo. Preverite, da sta ključ in skrivno geslo navedena pravilno.", - "Step 1 failed. Exception: %s" : "1. korak je spodletel. Izjemna napaka: %s", - "Step 2 failed. Exception: %s" : "2. korak je spodletel. Izjemna napaka: %s", - "Dropbox App Configuration" : "Nastavitve programa Dropbox", - "Google Drive App Configuration" : "Nastavitve programa Google Drive", - "Storage with id \"%i\" not found" : "Shrambe z ID \"%i\" ni mogoče najti.", - "Storage with id \"%i\" is not user editable" : "Shramba z ID \"%i\" ni uporabniško uredljiva.", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "Ni določene zunanje shrambe", + "You can add external storages in the personal settings" : "Med nastavitvami je mogoče dodati tudi zunanjo shrambo." }, "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); diff --git a/apps/files_external/l10n/sl.json b/apps/files_external/l10n/sl.json index 5c24a3e4798f2..f81fa19c85189 100644 --- a/apps/files_external/l10n/sl.json +++ b/apps/files_external/l10n/sl.json @@ -47,9 +47,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID odjemalca", "Client secret" : "Skrivni ključ odjemalca", - "OpenStack" : "OpenStack", "Tenant name" : "Ime uporabnika", "Identity endpoint URL" : "Naslov URL končne točke istovetnosti", + "Domain" : "Domena", "Rackspace" : "Rackspace", "API key" : "Ključ API", "Log-in credentials, save in database" : "Prijavne poverilnice, shrani v bazo", @@ -80,14 +80,11 @@ "SFTP with secret key login" : "Prijava prek protokola SFTP z geslom", "SMB / CIFS" : "SMB / CIFS", "Share" : "Souporaba", - "Domain" : "Domena", "SMB / CIFS using OC login" : "SMB / CIFS z uporabo prijave OC", "Username as share" : "Uporabniško ime za souporabo", "OpenStack Object Storage" : "Shramba predmeta OpenStack", "Service name" : "Ime storitve", "Request timeout (seconds)" : "Zahtevan časovni zamik (sekunde)", - "No external storage configured" : "Ni določene zunanje shrambe", - "You can add external storages in the personal settings" : "Med nastavitvami je mogoče dodati tudi zunanjo shrambo.", "Name" : "Ime", "Storage type" : "Vrsta shrambe", "Scope" : "Obseg", @@ -107,15 +104,8 @@ "Delete" : "Izbriši", "Allow users to mount external storage" : "Dovoli uporabnikom priklapljanje zunanje shrambe", "Allow users to mount the following external storage" : "Dovoli uporabnikom priklapljanje navedenih zunanjih shramb.", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Pridobivanje žetonov zahteve je spodletelo. Preverite, ali sta ključ in skrivno geslo programa navedena pravilno.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Pridobivanje žetonov za dostop je spodletelo. Preverite, da sta ključ in skrivno geslo navedena pravilno.", - "Step 1 failed. Exception: %s" : "1. korak je spodletel. Izjemna napaka: %s", - "Step 2 failed. Exception: %s" : "2. korak je spodletel. Izjemna napaka: %s", - "Dropbox App Configuration" : "Nastavitve programa Dropbox", - "Google Drive App Configuration" : "Nastavitve programa Google Drive", - "Storage with id \"%i\" not found" : "Shrambe z ID \"%i\" ni mogoče najti.", - "Storage with id \"%i\" is not user editable" : "Shramba z ID \"%i\" ni uporabniško uredljiva.", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "Ni določene zunanje shrambe", + "You can add external storages in the personal settings" : "Med nastavitvami je mogoče dodati tudi zunanjo shrambo." },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" } \ No newline at end of file diff --git a/apps/files_external/l10n/sq.js b/apps/files_external/l10n/sq.js index 2431d0eeb4bfc..a7dde4893c7bb 100644 --- a/apps/files_external/l10n/sq.js +++ b/apps/files_external/l10n/sq.js @@ -54,9 +54,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ID klienti", "Client secret" : "E fshehtë klienti", - "OpenStack" : "OpenStack", "Tenant name" : "Emër qiraxhiu", "Identity endpoint URL" : "Identifiko pikëmbarimin URL", + "Domain" : "Përkatësi", "Rackspace" : "Rackspace", "API key" : "Kyç API", "Global credentials" : "Kredenciale globale", @@ -88,7 +88,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP me hyrje me kyç të fshehtë", "SMB / CIFS" : "SMB / CIFS", "Share" : "Ndajeni me të tjerët", - "Domain" : "Përkatësi", "SMB / CIFS using OC login" : "SMB / CIFS me përdorim hyrjeje OC", "Username as share" : "Emër përdoruesi si emër ndarjeje", "OpenStack Object Storage" : "Depozitë OpenStack Object", @@ -97,8 +96,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Mbështetja e cURL në PHP nuk është e instaluar ose e aktivizuar. Lidhja e %s nuk është e mundur. Ju lutemi kërkojini administratorin të sistemit tuaj që ta instaloj.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Mbështetja e FTP në PHP nuk është e aktivizuar ose instaluar.Lidhja e %s nuk është e mundur.Ju lutem kërkojini administratorit të sistemit tuaj që ta instalojë.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" nuk është instaluar.Montimi i %s nuk është i mundur.Ju lutem kërkojini administratorit të sistemit tuaj ta instalojë.", - "No external storage configured" : "Pa depozita të jashtme të formësuara", - "You can add external storages in the personal settings" : "Depozita të jashtme mund të shtoni që prej rregullimeve personale", "Name" : "Emër", "Storage type" : "Lloj depozite", "Scope" : "Shtrirje", @@ -118,15 +115,8 @@ OC.L10N.register( "Delete" : "Fshije", "Allow users to mount external storage" : "Lejoju përdoruesve të montojnë depozita të jashtme", "Allow users to mount the following external storage" : "Lejoju përdoruesve të montojnë depozitën e jashtme vijuese", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Dhënia e elementëve të kërkuar dështoi. Verifikoni që kyçi dhe e fshehta juaj për aplikacionin janë të sakta.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Dhënia e elementëve të hyrjes dështoi. Verifikoni që kyçi dhe e fshehta juaj për aplikacionin janë të sakta.", - "Step 1 failed. Exception: %s" : "Hapi 1 dështoi. Përjashtim: %s", - "Step 2 failed. Exception: %s" : "Hapi 2 dështoi. Përjashtim: %s", - "Dropbox App Configuration" : "Formësim i Aplikacionit Dropbox", - "Google Drive App Configuration" : "Formësim i Aplikacionit Google Drive", - "Storage with id \"%i\" not found" : "S’u gjet depozitë me id \"%i\"", - "Storage with id \"%i\" is not user editable" : "Depozita me id \"%i\" s’është e përpunueshme nga përdoruesi", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "Pa depozita të jashtme të formësuara", + "You can add external storages in the personal settings" : "Depozita të jashtme mund të shtoni që prej rregullimeve personale" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/sq.json b/apps/files_external/l10n/sq.json index c1f3366e330ea..b94f275fd06c1 100644 --- a/apps/files_external/l10n/sq.json +++ b/apps/files_external/l10n/sq.json @@ -52,9 +52,9 @@ "OAuth2" : "OAuth2", "Client ID" : "ID klienti", "Client secret" : "E fshehtë klienti", - "OpenStack" : "OpenStack", "Tenant name" : "Emër qiraxhiu", "Identity endpoint URL" : "Identifiko pikëmbarimin URL", + "Domain" : "Përkatësi", "Rackspace" : "Rackspace", "API key" : "Kyç API", "Global credentials" : "Kredenciale globale", @@ -86,7 +86,6 @@ "SFTP with secret key login" : "SFTP me hyrje me kyç të fshehtë", "SMB / CIFS" : "SMB / CIFS", "Share" : "Ndajeni me të tjerët", - "Domain" : "Përkatësi", "SMB / CIFS using OC login" : "SMB / CIFS me përdorim hyrjeje OC", "Username as share" : "Emër përdoruesi si emër ndarjeje", "OpenStack Object Storage" : "Depozitë OpenStack Object", @@ -95,8 +94,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Mbështetja e cURL në PHP nuk është e instaluar ose e aktivizuar. Lidhja e %s nuk është e mundur. Ju lutemi kërkojini administratorin të sistemit tuaj që ta instaloj.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "Mbështetja e FTP në PHP nuk është e aktivizuar ose instaluar.Lidhja e %s nuk është e mundur.Ju lutem kërkojini administratorit të sistemit tuaj që ta instalojë.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" nuk është instaluar.Montimi i %s nuk është i mundur.Ju lutem kërkojini administratorit të sistemit tuaj ta instalojë.", - "No external storage configured" : "Pa depozita të jashtme të formësuara", - "You can add external storages in the personal settings" : "Depozita të jashtme mund të shtoni që prej rregullimeve personale", "Name" : "Emër", "Storage type" : "Lloj depozite", "Scope" : "Shtrirje", @@ -116,15 +113,8 @@ "Delete" : "Fshije", "Allow users to mount external storage" : "Lejoju përdoruesve të montojnë depozita të jashtme", "Allow users to mount the following external storage" : "Lejoju përdoruesve të montojnë depozitën e jashtme vijuese", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Dhënia e elementëve të kërkuar dështoi. Verifikoni që kyçi dhe e fshehta juaj për aplikacionin janë të sakta.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Dhënia e elementëve të hyrjes dështoi. Verifikoni që kyçi dhe e fshehta juaj për aplikacionin janë të sakta.", - "Step 1 failed. Exception: %s" : "Hapi 1 dështoi. Përjashtim: %s", - "Step 2 failed. Exception: %s" : "Hapi 2 dështoi. Përjashtim: %s", - "Dropbox App Configuration" : "Formësim i Aplikacionit Dropbox", - "Google Drive App Configuration" : "Formësim i Aplikacionit Google Drive", - "Storage with id \"%i\" not found" : "S’u gjet depozitë me id \"%i\"", - "Storage with id \"%i\" is not user editable" : "Depozita me id \"%i\" s’është e përpunueshme nga përdoruesi", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "Pa depozita të jashtme të formësuara", + "You can add external storages in the personal settings" : "Depozita të jashtme mund të shtoni që prej rregullimeve personale" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/sr.js b/apps/files_external/l10n/sr.js index bd94b6dd8431b..c6ad3082af210 100644 --- a/apps/files_external/l10n/sr.js +++ b/apps/files_external/l10n/sr.js @@ -14,7 +14,7 @@ OC.L10N.register( "(group)" : "(група)", "Compatibility with Mac NFD encoding (slow)" : "Компатибилност са NFD кодирањем (споро)", "Admin defined" : "Дефинисао администратор", - "Are you sure you want to delete this external storage" : "Да ли стварно желите да обришете ово спољашње складиште?", + "Are you sure you want to delete this external storage?" : "Да ли стварно желите да обришете ово спољашње складиште?", "Delete storage?" : "Обриши складиште?", "Saved" : "Сачувано", "Saving..." : "Чувам...", @@ -56,9 +56,11 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "ИД клијента", "Client secret" : "Тајна клијента", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Име OpenStack тенанта", "Identity endpoint URL" : "УРЛ идентитета", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Домен", "Rackspace" : "Rackspace", "API key" : "API кључ", "Global credentials" : "Глобални акредитиви", @@ -91,7 +93,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP са пријавом помоћу тајног кључа", "SMB / CIFS" : "SMB / CIFS", "Share" : "Дели", - "Domain" : "Домен", "SMB / CIFS using OC login" : "SMB / CIFS користећи Некстклауд пријаву", "Username as share" : "Корисничко име као дељење", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -100,8 +101,8 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cURL подршка за PHP није омогућена или инсталирана. Монтирање %s није могуће. Затражите од вашег администратора система да је инсталира.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP подршка за PHP није омогућена или инсталирана. Монтирање %s није могуће. Затражите од вашег администратора система да је инсталира.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "„%s“ није инсталиран. Монтирање %s није могуће. Затражите од вашег администратора система да га инсталира.", - "No external storage configured" : "Нема подешеног спољашњег складишта", - "You can add external storages in the personal settings" : "Можете додати спољашња складишта у вашим личним подешавањима", + "External storage support" : "Подршка за спољашње складиште", + "No external storage configured or you don't have the permission to configure them" : "Нема конфигурисаних спољашњих складишта или немате потребне дозволе да их конфигуришете", "Name" : "Назив", "Storage type" : "Тип складишта", "Scope" : "Опсег", @@ -116,6 +117,7 @@ OC.L10N.register( "Authentication" : "Провера идентитета", "Configuration" : "Подешавање", "Available for" : "Доступно за", + "Click to recheck the configuration" : "Кликните овде да поново проверите конфигурацију", "Add storage" : "Додај складиште", "Advanced settings" : "Напредне поставке", "Delete" : "Обриши", @@ -127,9 +129,11 @@ OC.L10N.register( "Step 2 failed. Exception: %s" : "Корак 2 није успео. Грешка: %s", "Dropbox App Configuration" : "Dropbox конфигурација апликације", "Google Drive App Configuration" : "Google Drive конфигурација апликације", - "Storage with id \"%i\" not found" : "Складиште са идентификацијом \"%i\" није пронађено", - "Storage with id \"%i\" is not user editable" : "Корисници не могу да мењају складиште са идентификацијом \"%i\"", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Нема подешеног спољашњег складишта", + "You can add external storages in the personal settings" : "Можете додати спољашња складишта у вашим личним подешавањима", + "Are you sure you want to delete this external storage" : "Да ли стварно желите да обришете ово спољашње складиште?" }, "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/apps/files_external/l10n/sr.json b/apps/files_external/l10n/sr.json index 7aa88bfaade61..3a7795e0ff59c 100644 --- a/apps/files_external/l10n/sr.json +++ b/apps/files_external/l10n/sr.json @@ -12,7 +12,7 @@ "(group)" : "(група)", "Compatibility with Mac NFD encoding (slow)" : "Компатибилност са NFD кодирањем (споро)", "Admin defined" : "Дефинисао администратор", - "Are you sure you want to delete this external storage" : "Да ли стварно желите да обришете ово спољашње складиште?", + "Are you sure you want to delete this external storage?" : "Да ли стварно желите да обришете ово спољашње складиште?", "Delete storage?" : "Обриши складиште?", "Saved" : "Сачувано", "Saving..." : "Чувам...", @@ -54,9 +54,11 @@ "OAuth2" : "OAuth2", "Client ID" : "ИД клијента", "Client secret" : "Тајна клијента", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Име OpenStack тенанта", "Identity endpoint URL" : "УРЛ идентитета", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Домен", "Rackspace" : "Rackspace", "API key" : "API кључ", "Global credentials" : "Глобални акредитиви", @@ -89,7 +91,6 @@ "SFTP with secret key login" : "SFTP са пријавом помоћу тајног кључа", "SMB / CIFS" : "SMB / CIFS", "Share" : "Дели", - "Domain" : "Домен", "SMB / CIFS using OC login" : "SMB / CIFS користећи Некстклауд пријаву", "Username as share" : "Корисничко име као дељење", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -98,8 +99,8 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cURL подршка за PHP није омогућена или инсталирана. Монтирање %s није могуће. Затражите од вашег администратора система да је инсталира.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP подршка за PHP није омогућена или инсталирана. Монтирање %s није могуће. Затражите од вашег администратора система да је инсталира.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "„%s“ није инсталиран. Монтирање %s није могуће. Затражите од вашег администратора система да га инсталира.", - "No external storage configured" : "Нема подешеног спољашњег складишта", - "You can add external storages in the personal settings" : "Можете додати спољашња складишта у вашим личним подешавањима", + "External storage support" : "Подршка за спољашње складиште", + "No external storage configured or you don't have the permission to configure them" : "Нема конфигурисаних спољашњих складишта или немате потребне дозволе да их конфигуришете", "Name" : "Назив", "Storage type" : "Тип складишта", "Scope" : "Опсег", @@ -114,6 +115,7 @@ "Authentication" : "Провера идентитета", "Configuration" : "Подешавање", "Available for" : "Доступно за", + "Click to recheck the configuration" : "Кликните овде да поново проверите конфигурацију", "Add storage" : "Додај складиште", "Advanced settings" : "Напредне поставке", "Delete" : "Обриши", @@ -125,9 +127,11 @@ "Step 2 failed. Exception: %s" : "Корак 2 није успео. Грешка: %s", "Dropbox App Configuration" : "Dropbox конфигурација апликације", "Google Drive App Configuration" : "Google Drive конфигурација апликације", - "Storage with id \"%i\" not found" : "Складиште са идентификацијом \"%i\" није пронађено", - "Storage with id \"%i\" is not user editable" : "Корисници не могу да мењају складиште са идентификацијом \"%i\"", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Нема подешеног спољашњег складишта", + "You can add external storages in the personal settings" : "Можете додати спољашња складишта у вашим личним подешавањима", + "Are you sure you want to delete this external storage" : "Да ли стварно желите да обришете ово спољашње складиште?" },"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);" } \ No newline at end of file diff --git a/apps/files_external/l10n/sv.js b/apps/files_external/l10n/sv.js index 72d127e4b7b52..5859c1119280d 100644 --- a/apps/files_external/l10n/sv.js +++ b/apps/files_external/l10n/sv.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(grupp)", "Compatibility with Mac NFD encoding (slow)" : "Kompatibilitet med Mac NFD kodning (slö)", "Admin defined" : "Admin definerad", - "Are you sure you want to delete this external storage" : "Är du säker att du vill ta bort denna externa lagringen", "Delete storage?" : "Ta bort lagring?", "Saved" : "Sparad", "Saving..." : "Sparar...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Klient ID", "Client secret" : "Klienthemlighet", - "OpenStack" : "OpenStack", "Tenant name" : "Namn på arrendator", "Identity endpoint URL" : "Identitet endpoint URL", + "Domain" : "Domän", "Rackspace" : "Rackutrymme", "API key" : "API-nyckel", "Global credentials" : "Globala uppgifter", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP-inloggning med hemlig nyckel", "SMB / CIFS" : "SMB / CIFS", "Share" : "Dela", - "Domain" : "Domän", "SMB / CIFS using OC login" : "SMB / CIFS använder OC-inloggning", "Username as share" : "Användarnamn till utdelning", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cURL-stöd i PHP är inte aktiverat eller har inte installerats. Montering av %s är inte möjlig. Be din systemadministratör om installation.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP-stöd i PHP är inte aktiverat eller har inte installerats. Montering av %s är inte möjlig. Be din systemadministratör om installation.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" är inte installerad. Montering av %s är inte möjlig. Be din systemadministratör om installation.", - "No external storage configured" : "Ingen extern lagring konfigurerad", - "You can add external storages in the personal settings" : "Du kan lägga till externa lagringar i de personliga inställningarna", "Name" : "Namn", "Storage type" : "Lagringstyp", "Scope" : "Sammanhang", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "Radera", "Allow users to mount external storage" : "Tillåt användare att montera extern lagring", "Allow users to mount the following external storage" : "Tillåt användare att montera följande extern lagring", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Fel vid hämtning av åtkomst-token. Verifiera att din app-nyckel och hemlighet stämmer.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Kontroll av behörigheter misslyckades. Verifiera att ditt app-lösenord och hemlighet är korrekt.", - "Step 1 failed. Exception: %s" : "Steg 1 misslyckades. Undantag: %s", - "Step 2 failed. Exception: %s" : "Steg 2 fallerade. Undantag: %s", - "Dropbox App Configuration" : "Dropbox-konfiguration", - "Google Drive App Configuration" : "Google Drive Konfiguration", - "Storage with id \"%i\" not found" : "Lagring med id \"%i\" kan ej hittas", - "Storage with id \"%i\" is not user editable" : "Lagring med id \"%i\" är inte redigerbar av användare", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "Ingen extern lagring konfigurerad", + "You can add external storages in the personal settings" : "Du kan lägga till externa lagringar i de personliga inställningarna", + "Are you sure you want to delete this external storage" : "Är du säker att du vill ta bort denna externa lagringen" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/sv.json b/apps/files_external/l10n/sv.json index 8e335c0c5a2c8..f47bb22f96f9e 100644 --- a/apps/files_external/l10n/sv.json +++ b/apps/files_external/l10n/sv.json @@ -12,7 +12,6 @@ "(group)" : "(grupp)", "Compatibility with Mac NFD encoding (slow)" : "Kompatibilitet med Mac NFD kodning (slö)", "Admin defined" : "Admin definerad", - "Are you sure you want to delete this external storage" : "Är du säker att du vill ta bort denna externa lagringen", "Delete storage?" : "Ta bort lagring?", "Saved" : "Sparad", "Saving..." : "Sparar...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "Klient ID", "Client secret" : "Klienthemlighet", - "OpenStack" : "OpenStack", "Tenant name" : "Namn på arrendator", "Identity endpoint URL" : "Identitet endpoint URL", + "Domain" : "Domän", "Rackspace" : "Rackutrymme", "API key" : "API-nyckel", "Global credentials" : "Globala uppgifter", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "SFTP-inloggning med hemlig nyckel", "SMB / CIFS" : "SMB / CIFS", "Share" : "Dela", - "Domain" : "Domän", "SMB / CIFS using OC login" : "SMB / CIFS använder OC-inloggning", "Username as share" : "Användarnamn till utdelning", "OpenStack Object Storage" : "OpenStack Object Storage", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "cURL-stöd i PHP är inte aktiverat eller har inte installerats. Montering av %s är inte möjlig. Be din systemadministratör om installation.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "FTP-stöd i PHP är inte aktiverat eller har inte installerats. Montering av %s är inte möjlig. Be din systemadministratör om installation.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "\"%s\" är inte installerad. Montering av %s är inte möjlig. Be din systemadministratör om installation.", - "No external storage configured" : "Ingen extern lagring konfigurerad", - "You can add external storages in the personal settings" : "Du kan lägga till externa lagringar i de personliga inställningarna", "Name" : "Namn", "Storage type" : "Lagringstyp", "Scope" : "Sammanhang", @@ -118,15 +114,9 @@ "Delete" : "Radera", "Allow users to mount external storage" : "Tillåt användare att montera extern lagring", "Allow users to mount the following external storage" : "Tillåt användare att montera följande extern lagring", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "Fel vid hämtning av åtkomst-token. Verifiera att din app-nyckel och hemlighet stämmer.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "Kontroll av behörigheter misslyckades. Verifiera att ditt app-lösenord och hemlighet är korrekt.", - "Step 1 failed. Exception: %s" : "Steg 1 misslyckades. Undantag: %s", - "Step 2 failed. Exception: %s" : "Steg 2 fallerade. Undantag: %s", - "Dropbox App Configuration" : "Dropbox-konfiguration", - "Google Drive App Configuration" : "Google Drive Konfiguration", - "Storage with id \"%i\" not found" : "Lagring med id \"%i\" kan ej hittas", - "Storage with id \"%i\" is not user editable" : "Lagring med id \"%i\" är inte redigerbar av användare", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "Ingen extern lagring konfigurerad", + "You can add external storages in the personal settings" : "Du kan lägga till externa lagringar i de personliga inställningarna", + "Are you sure you want to delete this external storage" : "Är du säker att du vill ta bort denna externa lagringen" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/th.js b/apps/files_external/l10n/th.js index 7950e7301ad95..20e8d862c1a1b 100644 --- a/apps/files_external/l10n/th.js +++ b/apps/files_external/l10n/th.js @@ -46,9 +46,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Client secret", - "OpenStack" : "OpenStack", "Tenant name" : "ชื่อผู้เช่า", "Identity endpoint URL" : "ตัวตนของ URL ปลายทาง", + "Domain" : "โดเมน", "Rackspace" : "Rackspace", "API key" : "รหัส API", "Username and password" : "ชื่อผู้ใช้และรหัสผ่าน", @@ -76,14 +76,11 @@ OC.L10N.register( "SFTP with secret key login" : "SFTP กับคีย์ลับสำหรับเข้าสู่ระบบ", "SMB / CIFS" : "SMB / CIFS", "Share" : "แชร์", - "Domain" : "โดเมน", "SMB / CIFS using OC login" : "SMB/CIFS กำลังใช้ OC เข้าสู่ระบบ", "Username as share" : "ชื่อผู้ใช้ที่แชร์", "OpenStack Object Storage" : "OpenStack Object Storage", "Service name" : "ชื่อบริการ", "Request timeout (seconds)" : "หมดเวลาการร้องขอ (วินาที)", - "No external storage configured" : "ไม่มีการกำหนดค่าจัดเก็บข้อมูลภายนอก", - "You can add external storages in the personal settings" : "คุณสามารถเพิ่มการเก็บรักษาภายนอกในการตั้งค่าส่วนบุคคล", "Name" : "ชื่อ", "Storage type" : "ชนิดการจัดเก็บข้อมูล", "Scope" : "ขอบเขต", @@ -103,13 +100,8 @@ OC.L10N.register( "Delete" : "ลบ", "Allow users to mount external storage" : "อนุญาตให้ผู้ใช้ติดตั้งการจัดเก็บข้อมูลภายนอก", "Allow users to mount the following external storage" : "อนุญาตให้ผู้ใช้ติดตั้งจัดเก็บข้อมูลภายนอกต่อไปนี้", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "การเรียกร้องขอโทเคนล้มเหลว โปรดตรวจสอบคีย์และรหัสลับให้ถูกต้อง", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "การเรียกร้องขอโทเคนล้มเหลว โปรดตรวจสอบคีย์และรหัสลับของแอพฯ ให้ถูกต้อง", - "Step 1 failed. Exception: %s" : "ขั้นตอนที่ 1 ล้มเหลว ข้อยกเว้น: %s", - "Step 2 failed. Exception: %s" : "ขั้นตอนที่ 2 ล้มเหลว ข้อยกเว้น: %s", - "Storage with id \"%i\" not found" : "ไม่พบจัดการเก็บข้อมูลของ ID \"%i\"", - "Storage with id \"%i\" is not user editable" : "พื้นที่เก็บข้อมูล รหัส \"%i\" ไม่อนุญาตให้ผู้ใช้แก้ไขข้อมูลได้", - "Dropbox" : "Dropbox", - "Google Drive" : "กูเกิ้ลไดร์ฟ" + "OpenStack" : "OpenStack", + "No external storage configured" : "ไม่มีการกำหนดค่าจัดเก็บข้อมูลภายนอก", + "You can add external storages in the personal settings" : "คุณสามารถเพิ่มการเก็บรักษาภายนอกในการตั้งค่าส่วนบุคคล" }, "nplurals=1; plural=0;"); diff --git a/apps/files_external/l10n/th.json b/apps/files_external/l10n/th.json index ad20d67e04f3b..9c373f0c75fa5 100644 --- a/apps/files_external/l10n/th.json +++ b/apps/files_external/l10n/th.json @@ -44,9 +44,9 @@ "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Client secret", - "OpenStack" : "OpenStack", "Tenant name" : "ชื่อผู้เช่า", "Identity endpoint URL" : "ตัวตนของ URL ปลายทาง", + "Domain" : "โดเมน", "Rackspace" : "Rackspace", "API key" : "รหัส API", "Username and password" : "ชื่อผู้ใช้และรหัสผ่าน", @@ -74,14 +74,11 @@ "SFTP with secret key login" : "SFTP กับคีย์ลับสำหรับเข้าสู่ระบบ", "SMB / CIFS" : "SMB / CIFS", "Share" : "แชร์", - "Domain" : "โดเมน", "SMB / CIFS using OC login" : "SMB/CIFS กำลังใช้ OC เข้าสู่ระบบ", "Username as share" : "ชื่อผู้ใช้ที่แชร์", "OpenStack Object Storage" : "OpenStack Object Storage", "Service name" : "ชื่อบริการ", "Request timeout (seconds)" : "หมดเวลาการร้องขอ (วินาที)", - "No external storage configured" : "ไม่มีการกำหนดค่าจัดเก็บข้อมูลภายนอก", - "You can add external storages in the personal settings" : "คุณสามารถเพิ่มการเก็บรักษาภายนอกในการตั้งค่าส่วนบุคคล", "Name" : "ชื่อ", "Storage type" : "ชนิดการจัดเก็บข้อมูล", "Scope" : "ขอบเขต", @@ -101,13 +98,8 @@ "Delete" : "ลบ", "Allow users to mount external storage" : "อนุญาตให้ผู้ใช้ติดตั้งการจัดเก็บข้อมูลภายนอก", "Allow users to mount the following external storage" : "อนุญาตให้ผู้ใช้ติดตั้งจัดเก็บข้อมูลภายนอกต่อไปนี้", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "การเรียกร้องขอโทเคนล้มเหลว โปรดตรวจสอบคีย์และรหัสลับให้ถูกต้อง", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "การเรียกร้องขอโทเคนล้มเหลว โปรดตรวจสอบคีย์และรหัสลับของแอพฯ ให้ถูกต้อง", - "Step 1 failed. Exception: %s" : "ขั้นตอนที่ 1 ล้มเหลว ข้อยกเว้น: %s", - "Step 2 failed. Exception: %s" : "ขั้นตอนที่ 2 ล้มเหลว ข้อยกเว้น: %s", - "Storage with id \"%i\" not found" : "ไม่พบจัดการเก็บข้อมูลของ ID \"%i\"", - "Storage with id \"%i\" is not user editable" : "พื้นที่เก็บข้อมูล รหัส \"%i\" ไม่อนุญาตให้ผู้ใช้แก้ไขข้อมูลได้", - "Dropbox" : "Dropbox", - "Google Drive" : "กูเกิ้ลไดร์ฟ" + "OpenStack" : "OpenStack", + "No external storage configured" : "ไม่มีการกำหนดค่าจัดเก็บข้อมูลภายนอก", + "You can add external storages in the personal settings" : "คุณสามารถเพิ่มการเก็บรักษาภายนอกในการตั้งค่าส่วนบุคคล" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_external/l10n/tr.js b/apps/files_external/l10n/tr.js index 1def1246fded4..9d854556b9777 100644 --- a/apps/files_external/l10n/tr.js +++ b/apps/files_external/l10n/tr.js @@ -14,7 +14,7 @@ OC.L10N.register( "(group)" : "(grup)", "Compatibility with Mac NFD encoding (slow)" : "Mac NFD şifrelemesiyle uyumlu (yavaş)", "Admin defined" : "Yönetici ayarlamış", - "Are you sure you want to delete this external storage" : "Bu dış depolamayı silmek istediğinize emin misiniz", + "Are you sure you want to delete this external storage?" : "Bu dış depolamayı silmek istediğinize emin misiniz?", "Delete storage?" : "Depolama silinsin mi?", "Saved" : "Kaydedildi", "Saving..." : "Kaydediliyor...", @@ -56,9 +56,11 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "İstemci kimliği", "Client secret" : "İstemci parolası", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Kiracı adı", "Identity endpoint URL" : "Kimlik arka uç noktası adresi", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Etki alanı", "Rackspace" : "Rackspace", "API key" : "API anahtarı", "Global credentials" : "Genel kimlik doğrulama bilgileri", @@ -91,7 +93,6 @@ OC.L10N.register( "SFTP with secret key login" : "Gizli oturum açma anahtarı ile SFTP", "SMB / CIFS" : "SMB / CIFS", "Share" : "Paylaş", - "Domain" : "Etki alanı", "SMB / CIFS using OC login" : "OC oturum açma ile SMB / CIFS", "Username as share" : "Paylaşım olarak kullanıcı adı", "OpenStack Object Storage" : "OpenStack Nesne Depolama", @@ -100,8 +101,8 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "PHP cURL desteği kurulmamış ya da etkinleştirilmemiş. %s bağlanamaz. Lütfen kurulum için sistem yöneticinizle görüşün.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "PHP FTP desteği kuurlmamış ya da etkinleştirilmemiş. %s bağlanamaz. Lütfen kurulum için sistem yöneticinizle görüşün.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "%s kurulmamış. %s bağlanamaz. Lütfen kurulum için sistem yöneticinizle görüşün.", - "No external storage configured" : "Herhangi bir dış depolama yapılandırılmamış", - "You can add external storages in the personal settings" : "Kişisel ayarlar bölümünden dış depolamaları ekleyebilirsiniz", + "External storage support" : "Dış depolama desteği", + "No external storage configured or you don't have the permission to configure them" : "Bir dış depolama yapılandırılmamış ya da yapılandırma izniniz yok", "Name" : "Ad", "Storage type" : "Depolama türü", "Scope" : "Kapsam", @@ -116,6 +117,7 @@ OC.L10N.register( "Authentication" : "Kimlik Doğrulama", "Configuration" : "Yapılandırma", "Available for" : "Kullanabilecekler", + "Click to recheck the configuration" : "Yapılandırmayı yeniden denetlemek için tıklayın", "Add storage" : "Depolama ekle", "Advanced settings" : "Gelişmiş ayarlar", "Delete" : "Sil", @@ -127,9 +129,11 @@ OC.L10N.register( "Step 2 failed. Exception: %s" : "2. Adım tamamlanamadı. Sorun: %s", "Dropbox App Configuration" : "Dropbox Uygulaması Yapılandırması", "Google Drive App Configuration" : "Google Drive Uygulaması Yapılandırması", - "Storage with id \"%i\" not found" : "\"%i\" kimliği ile bir depolama bulunamadı", - "Storage with id \"%i\" is not user editable" : "\"%i\" kimlikli depolama düzenlenebilir değil", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Herhangi bir dış depolama yapılandırılmamış", + "You can add external storages in the personal settings" : "Kişisel ayarlar bölümünden dış depolamaları ekleyebilirsiniz", + "Are you sure you want to delete this external storage" : "Bu dış depolamayı silmek istediğinize emin misiniz" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/files_external/l10n/tr.json b/apps/files_external/l10n/tr.json index ea9fbc84c5f02..4376d41228c92 100644 --- a/apps/files_external/l10n/tr.json +++ b/apps/files_external/l10n/tr.json @@ -12,7 +12,7 @@ "(group)" : "(grup)", "Compatibility with Mac NFD encoding (slow)" : "Mac NFD şifrelemesiyle uyumlu (yavaş)", "Admin defined" : "Yönetici ayarlamış", - "Are you sure you want to delete this external storage" : "Bu dış depolamayı silmek istediğinize emin misiniz", + "Are you sure you want to delete this external storage?" : "Bu dış depolamayı silmek istediğinize emin misiniz?", "Delete storage?" : "Depolama silinsin mi?", "Saved" : "Kaydedildi", "Saving..." : "Kaydediliyor...", @@ -54,9 +54,11 @@ "OAuth2" : "OAuth2", "Client ID" : "İstemci kimliği", "Client secret" : "İstemci parolası", - "OpenStack" : "OpenStack", + "OpenStack v2" : "OpenStack v2", "Tenant name" : "Kiracı adı", "Identity endpoint URL" : "Kimlik arka uç noktası adresi", + "OpenStack v3" : "OpenStack v3", + "Domain" : "Etki alanı", "Rackspace" : "Rackspace", "API key" : "API anahtarı", "Global credentials" : "Genel kimlik doğrulama bilgileri", @@ -89,7 +91,6 @@ "SFTP with secret key login" : "Gizli oturum açma anahtarı ile SFTP", "SMB / CIFS" : "SMB / CIFS", "Share" : "Paylaş", - "Domain" : "Etki alanı", "SMB / CIFS using OC login" : "OC oturum açma ile SMB / CIFS", "Username as share" : "Paylaşım olarak kullanıcı adı", "OpenStack Object Storage" : "OpenStack Nesne Depolama", @@ -98,8 +99,8 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "PHP cURL desteği kurulmamış ya da etkinleştirilmemiş. %s bağlanamaz. Lütfen kurulum için sistem yöneticinizle görüşün.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "PHP FTP desteği kuurlmamış ya da etkinleştirilmemiş. %s bağlanamaz. Lütfen kurulum için sistem yöneticinizle görüşün.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "%s kurulmamış. %s bağlanamaz. Lütfen kurulum için sistem yöneticinizle görüşün.", - "No external storage configured" : "Herhangi bir dış depolama yapılandırılmamış", - "You can add external storages in the personal settings" : "Kişisel ayarlar bölümünden dış depolamaları ekleyebilirsiniz", + "External storage support" : "Dış depolama desteği", + "No external storage configured or you don't have the permission to configure them" : "Bir dış depolama yapılandırılmamış ya da yapılandırma izniniz yok", "Name" : "Ad", "Storage type" : "Depolama türü", "Scope" : "Kapsam", @@ -114,6 +115,7 @@ "Authentication" : "Kimlik Doğrulama", "Configuration" : "Yapılandırma", "Available for" : "Kullanabilecekler", + "Click to recheck the configuration" : "Yapılandırmayı yeniden denetlemek için tıklayın", "Add storage" : "Depolama ekle", "Advanced settings" : "Gelişmiş ayarlar", "Delete" : "Sil", @@ -125,9 +127,11 @@ "Step 2 failed. Exception: %s" : "2. Adım tamamlanamadı. Sorun: %s", "Dropbox App Configuration" : "Dropbox Uygulaması Yapılandırması", "Google Drive App Configuration" : "Google Drive Uygulaması Yapılandırması", - "Storage with id \"%i\" not found" : "\"%i\" kimliği ile bir depolama bulunamadı", - "Storage with id \"%i\" is not user editable" : "\"%i\" kimlikli depolama düzenlenebilir değil", + "OpenStack" : "OpenStack", "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "Google Drive" : "Google Drive", + "No external storage configured" : "Herhangi bir dış depolama yapılandırılmamış", + "You can add external storages in the personal settings" : "Kişisel ayarlar bölümünden dış depolamaları ekleyebilirsiniz", + "Are you sure you want to delete this external storage" : "Bu dış depolamayı silmek istediğinize emin misiniz" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/files_external/l10n/zh_CN.js b/apps/files_external/l10n/zh_CN.js index 83aea82084cba..8a3855048753a 100644 --- a/apps/files_external/l10n/zh_CN.js +++ b/apps/files_external/l10n/zh_CN.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(分组)", "Compatibility with Mac NFD encoding (slow)" : "兼用 Mac NFD 编码 (慢)", "Admin defined" : "管理员定义", - "Are you sure you want to delete this external storage" : "是否要删除该外部存储", "Delete storage?" : "删除存储?", "Saved" : "已保存", "Saving..." : "正在保存...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "客户端密钥", - "OpenStack" : "OpenStack", "Tenant name" : "租户名称", "Identity endpoint URL" : "身份识别 URL", + "Domain" : "域名", "Rackspace" : "Rackspace", "API key" : "API密匙", "Global credentials" : "全局凭据", @@ -90,7 +89,6 @@ OC.L10N.register( "SFTP with secret key login" : "包含 secret key 的SFTP", "SMB / CIFS" : "SMB / CIFS", "Share" : "共享", - "Domain" : "域名", "SMB / CIFS using OC login" : "SMB / CIFS 使用 OC 登录信息", "Username as share" : "以用户名作为共享名", "OpenStack Object Storage" : "OpenStack 对象存储", @@ -99,8 +97,6 @@ OC.L10N.register( "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "没有安装或启用 PHP 中的 cURL 支持. 无法挂载 %s. 请联系您的系统管理员安装.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "没有安装或启用 PHP 中的 FTP 支持. 无法挂载 %s. 请联系您的系统管理员安装.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "没有安装 \"%s\". 无法挂载 %s. 请联系您的系统管理员安装.", - "No external storage configured" : "没有配置外部存储", - "You can add external storages in the personal settings" : "您可以在个人设置中添加外部存储", "Name" : "名称", "Storage type" : "存储类型", "Scope" : "适用范围", @@ -120,15 +116,9 @@ OC.L10N.register( "Delete" : "删除", "Allow users to mount external storage" : "允许用户挂载外部存储", "Allow users to mount the following external storage" : "允许用户挂载以下外部存储", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "获取 request token 失败. 请验证您的 appkey 和密钥是否正确.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "获取 access token 失败. 请验证您的 appkey 和密钥是否正确.", - "Step 1 failed. Exception: %s" : "步骤 1 失败. 异常: %s", - "Step 2 failed. Exception: %s" : "步骤 2 失败. 异常: %s", - "Dropbox App Configuration" : "Dropbox 配置", - "Google Drive App Configuration" : "Google Drive 配置", - "Storage with id \"%i\" not found" : "未找到 ID 为 \"%i\" 的存储", - "Storage with id \"%i\" is not user editable" : "无法编辑 ID 为 \"%i\" 的存储", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "没有配置外部存储", + "You can add external storages in the personal settings" : "您可以在个人设置中添加外部存储", + "Are you sure you want to delete this external storage" : "是否要删除该外部存储" }, "nplurals=1; plural=0;"); diff --git a/apps/files_external/l10n/zh_CN.json b/apps/files_external/l10n/zh_CN.json index 95705cc41dc42..327e922b12b04 100644 --- a/apps/files_external/l10n/zh_CN.json +++ b/apps/files_external/l10n/zh_CN.json @@ -12,7 +12,6 @@ "(group)" : "(分组)", "Compatibility with Mac NFD encoding (slow)" : "兼用 Mac NFD 编码 (慢)", "Admin defined" : "管理员定义", - "Are you sure you want to delete this external storage" : "是否要删除该外部存储", "Delete storage?" : "删除存储?", "Saved" : "已保存", "Saving..." : "正在保存...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "客户端密钥", - "OpenStack" : "OpenStack", "Tenant name" : "租户名称", "Identity endpoint URL" : "身份识别 URL", + "Domain" : "域名", "Rackspace" : "Rackspace", "API key" : "API密匙", "Global credentials" : "全局凭据", @@ -88,7 +87,6 @@ "SFTP with secret key login" : "包含 secret key 的SFTP", "SMB / CIFS" : "SMB / CIFS", "Share" : "共享", - "Domain" : "域名", "SMB / CIFS using OC login" : "SMB / CIFS 使用 OC 登录信息", "Username as share" : "以用户名作为共享名", "OpenStack Object Storage" : "OpenStack 对象存储", @@ -97,8 +95,6 @@ "The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "没有安装或启用 PHP 中的 cURL 支持. 无法挂载 %s. 请联系您的系统管理员安装.", "The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "没有安装或启用 PHP 中的 FTP 支持. 无法挂载 %s. 请联系您的系统管理员安装.", "\"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." : "没有安装 \"%s\". 无法挂载 %s. 请联系您的系统管理员安装.", - "No external storage configured" : "没有配置外部存储", - "You can add external storages in the personal settings" : "您可以在个人设置中添加外部存储", "Name" : "名称", "Storage type" : "存储类型", "Scope" : "适用范围", @@ -118,15 +114,9 @@ "Delete" : "删除", "Allow users to mount external storage" : "允许用户挂载外部存储", "Allow users to mount the following external storage" : "允许用户挂载以下外部存储", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "获取 request token 失败. 请验证您的 appkey 和密钥是否正确.", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "获取 access token 失败. 请验证您的 appkey 和密钥是否正确.", - "Step 1 failed. Exception: %s" : "步骤 1 失败. 异常: %s", - "Step 2 failed. Exception: %s" : "步骤 2 失败. 异常: %s", - "Dropbox App Configuration" : "Dropbox 配置", - "Google Drive App Configuration" : "Google Drive 配置", - "Storage with id \"%i\" not found" : "未找到 ID 为 \"%i\" 的存储", - "Storage with id \"%i\" is not user editable" : "无法编辑 ID 为 \"%i\" 的存储", - "Dropbox" : "Dropbox", - "Google Drive" : "Google Drive" + "OpenStack" : "OpenStack", + "No external storage configured" : "没有配置外部存储", + "You can add external storages in the personal settings" : "您可以在个人设置中添加外部存储", + "Are you sure you want to delete this external storage" : "是否要删除该外部存储" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_external/l10n/zh_TW.js b/apps/files_external/l10n/zh_TW.js index b0cc604426c69..5e9b0cbb140d5 100644 --- a/apps/files_external/l10n/zh_TW.js +++ b/apps/files_external/l10n/zh_TW.js @@ -14,7 +14,6 @@ OC.L10N.register( "(group)" : "(群組)", "Compatibility with Mac NFD encoding (slow)" : "與Mac的NFD編碼格式相容(較慢)", "Admin defined" : "管理者定義", - "Are you sure you want to delete this external storage" : "您確定要刪除額外的空間?", "Delete storage?" : "刪除空間", "Saved" : "已儲存", "Saving..." : "儲存中...", @@ -56,9 +55,9 @@ OC.L10N.register( "OAuth2" : "OAuth2", "Client ID" : "客戶端ID", "Client secret" : "客戶端密碼", - "OpenStack" : "OpenStack", "Tenant name" : "租戶/專案名稱", "Identity endpoint URL" : "身份識別終端點 URL", + "Domain" : "網域名稱", "Rackspace" : "Rackspace", "API key" : "API金鑰", "Username and password" : "使用者帳號和密碼", @@ -86,14 +85,11 @@ OC.L10N.register( "SFTP with secret key login" : "以密碼金鑰登入SFTP", "SMB / CIFS" : "伺服器訊息區塊-SMB/網路文件共享系統 (CIFS)", "Share" : "分享", - "Domain" : "網域名稱", "SMB / CIFS using OC login" : "SMB / CIFS 使用 OC 登入", "Username as share" : "以使用者名稱分享", "OpenStack Object Storage" : "OpenStack 物件儲存", "Service name" : "服務名稱", "Request timeout (seconds)" : "請求超時 (秒)", - "No external storage configured" : "目前尚未配置任何外部儲存", - "You can add external storages in the personal settings" : "在個人設定裡您可以自行加入外部儲存設定", "Name" : "名稱", "Storage type" : "儲存類型", "Scope" : "範圍", @@ -113,15 +109,9 @@ OC.L10N.register( "Delete" : "刪除", "Allow users to mount external storage" : "允許使用者能自行掛載外部儲存", "Allow users to mount the following external storage" : "允許使用者自行掛載以下的外部儲存", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "請求失敗,請驗證您的應用程式金鑰及密碼是否正確", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "存取失敗,請驗證您的應用程式金鑰及密碼是否正確", - "Step 1 failed. Exception: %s" : "步驟 1 失敗,出現異常: %s", - "Step 2 failed. Exception: %s" : "步驟 2 失敗,出現異常: %s", - "Dropbox App Configuration" : "Dropbox 應用設置", - "Google Drive App Configuration" : "Google Drive 應用設置", - "Storage with id \"%i\" not found" : "沒有找到編號 \"%i\" 的儲存空間 ", - "Storage with id \"%i\" is not user editable" : "使用者\"%i\"無法對此儲存位置進行編輯", - "Dropbox" : "Dropbox", - "Google Drive" : "Google 雲端硬碟" + "OpenStack" : "OpenStack", + "No external storage configured" : "目前尚未配置任何外部儲存", + "You can add external storages in the personal settings" : "在個人設定裡您可以自行加入外部儲存設定", + "Are you sure you want to delete this external storage" : "您確定要刪除額外的空間?" }, "nplurals=1; plural=0;"); diff --git a/apps/files_external/l10n/zh_TW.json b/apps/files_external/l10n/zh_TW.json index aebcada96f97c..1e5d8690567e0 100644 --- a/apps/files_external/l10n/zh_TW.json +++ b/apps/files_external/l10n/zh_TW.json @@ -12,7 +12,6 @@ "(group)" : "(群組)", "Compatibility with Mac NFD encoding (slow)" : "與Mac的NFD編碼格式相容(較慢)", "Admin defined" : "管理者定義", - "Are you sure you want to delete this external storage" : "您確定要刪除額外的空間?", "Delete storage?" : "刪除空間", "Saved" : "已儲存", "Saving..." : "儲存中...", @@ -54,9 +53,9 @@ "OAuth2" : "OAuth2", "Client ID" : "客戶端ID", "Client secret" : "客戶端密碼", - "OpenStack" : "OpenStack", "Tenant name" : "租戶/專案名稱", "Identity endpoint URL" : "身份識別終端點 URL", + "Domain" : "網域名稱", "Rackspace" : "Rackspace", "API key" : "API金鑰", "Username and password" : "使用者帳號和密碼", @@ -84,14 +83,11 @@ "SFTP with secret key login" : "以密碼金鑰登入SFTP", "SMB / CIFS" : "伺服器訊息區塊-SMB/網路文件共享系統 (CIFS)", "Share" : "分享", - "Domain" : "網域名稱", "SMB / CIFS using OC login" : "SMB / CIFS 使用 OC 登入", "Username as share" : "以使用者名稱分享", "OpenStack Object Storage" : "OpenStack 物件儲存", "Service name" : "服務名稱", "Request timeout (seconds)" : "請求超時 (秒)", - "No external storage configured" : "目前尚未配置任何外部儲存", - "You can add external storages in the personal settings" : "在個人設定裡您可以自行加入外部儲存設定", "Name" : "名稱", "Storage type" : "儲存類型", "Scope" : "範圍", @@ -111,15 +107,9 @@ "Delete" : "刪除", "Allow users to mount external storage" : "允許使用者能自行掛載外部儲存", "Allow users to mount the following external storage" : "允許使用者自行掛載以下的外部儲存", - "Fetching request tokens failed. Verify that your app key and secret are correct." : "請求失敗,請驗證您的應用程式金鑰及密碼是否正確", - "Fetching access tokens failed. Verify that your app key and secret are correct." : "存取失敗,請驗證您的應用程式金鑰及密碼是否正確", - "Step 1 failed. Exception: %s" : "步驟 1 失敗,出現異常: %s", - "Step 2 failed. Exception: %s" : "步驟 2 失敗,出現異常: %s", - "Dropbox App Configuration" : "Dropbox 應用設置", - "Google Drive App Configuration" : "Google Drive 應用設置", - "Storage with id \"%i\" not found" : "沒有找到編號 \"%i\" 的儲存空間 ", - "Storage with id \"%i\" is not user editable" : "使用者\"%i\"無法對此儲存位置進行編輯", - "Dropbox" : "Dropbox", - "Google Drive" : "Google 雲端硬碟" + "OpenStack" : "OpenStack", + "No external storage configured" : "目前尚未配置任何外部儲存", + "You can add external storages in the personal settings" : "在個人設定裡您可以自行加入外部儲存設定", + "Are you sure you want to delete this external storage" : "您確定要刪除額外的空間?" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_external/lib/Lib/Storage/AmazonS3.php b/apps/files_external/lib/Lib/Storage/AmazonS3.php index 7c536443a0ef7..cc9cdc0813879 100644 --- a/apps/files_external/lib/Lib/Storage/AmazonS3.php +++ b/apps/files_external/lib/Lib/Storage/AmazonS3.php @@ -101,7 +101,7 @@ private function invalidateCache($key) { $keys = array_keys($this->objectCache->getData()); $keyLength = strlen($key); foreach ($keys as $existingKey) { - if (substr($existingKey, 0, $keyLength) === $keys) { + if (substr($existingKey, 0, $keyLength) === $key) { unset($this->objectCache[$existingKey]); } } @@ -243,17 +243,22 @@ private function batchDelete($path = null) { $params['Prefix'] = $path . '/'; } try { + $connection = $this->getConnection(); // Since there are no real directories on S3, we need // to delete all objects prefixed with the path. do { // instead of the iterator, manually loop over the list ... - $objects = $this->getConnection()->listObjects($params); + $objects = $connection->listObjects($params); // ... so we can delete the files in batches - $this->getConnection()->deleteObjects(array( - 'Bucket' => $this->bucket, - 'Objects' => $objects['Contents'] - )); - $this->testTimeout(); + if (isset($objects['Contents'])) { + $connection->deleteObjects([ + 'Bucket' => $this->bucket, + 'Delete' => [ + 'Objects' => $objects['Contents'] + ] + ]); + $this->testTimeout(); + } // we reached the end when the list is no longer truncated } while ($objects['IsTruncated']); } catch (S3Exception $e) { @@ -567,13 +572,10 @@ public function rename($path1, $path2) { } public function test() { - $test = $this->getConnection()->getBucketAcl(array( - 'Bucket' => $this->bucket, - )); - if (isset($test) && !is_null($test->getPath('Owner/ID'))) { - return true; - } - return false; + $this->getConnection()->headBucket([ + 'Bucket' => $this->bucket + ]); + return true; } public function getId() { diff --git a/apps/files_external/templates/list.php b/apps/files_external/templates/list.php index d006514bcde28..ed13ed837016f 100644 --- a/apps/files_external/templates/list.php +++ b/apps/files_external/templates/list.php @@ -6,8 +6,7 @@ diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index 237985bfd0f45..11b3451c32ee6 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -87,6 +87,11 @@ function writeParameterInput($parameter, $options, $classes = []) { } ?> + +

t('External storages')); ?>

diff --git a/apps/files_external/tests/Storage/SmbTest.php b/apps/files_external/tests/Storage/SmbTest.php index edacb498d5e0c..e3c0408114d81 100644 --- a/apps/files_external/tests/Storage/SmbTest.php +++ b/apps/files_external/tests/Storage/SmbTest.php @@ -96,11 +96,11 @@ public function testStorageId() { public function testNotifyGetChanges() { $notifyHandler = $this->instance->notify(''); - usleep(100 * 1000); //give time for the notify to start + sleep(1); //give time for the notify to start $this->instance->file_put_contents('/newfile.txt', 'test content'); $this->instance->rename('/newfile.txt', 'renamed.txt'); $this->instance->unlink('/renamed.txt'); - usleep(100 * 1000); //time for all changes to be processed + sleep(1); //time for all changes to be processed $changes = $notifyHandler->getChanges(); $notifyHandler->stop(); diff --git a/apps/files_sharing/css/sharetabview.scss b/apps/files_sharing/css/sharetabview.scss index 6635546067b0a..f3bbd952c2d24 100644 --- a/apps/files_sharing/css/sharetabview.scss +++ b/apps/files_sharing/css/sharetabview.scss @@ -14,6 +14,7 @@ } .shareTabView .shareWithRemoteInfo, +.shareTabView .clipboardButton, .shareTabView .linkPass .icon-loading-small { position: absolute; right: -7px; @@ -37,6 +38,7 @@ position: relative; top: initial; right: initial; + padding: 0; } .shareTabView label { diff --git a/apps/files_sharing/l10n/ast.js b/apps/files_sharing/l10n/ast.js index df59201feb3ee..57b0f314f1a28 100644 --- a/apps/files_sharing/l10n/ast.js +++ b/apps/files_sharing/l10n/ast.js @@ -64,6 +64,8 @@ OC.L10N.register( "Could not lock path" : "Nun pudo bloquiase'l camín", "Can't change permissions for public share links" : "Nun puen camudase los permisos pa los enllaces de comparticiones públiques", "Cannot increase permissions" : "Nun puen aumentase los permisos", + "Download" : "Baxar", + "Direct link" : "Enllaz direutu", "Share API is disabled" : "L'API de compartición ta desactivada", "This share is password-protected" : "Esta compartición tien contraseña protexida", "The password is wrong. Try again." : "La contraseña ye incorreuta. Inténtalo otra vegada.", @@ -78,12 +80,9 @@ OC.L10N.register( "the link expired" : "l'enllaz caducó", "sharing is disabled" : "la compartición ta deshabilitada", "For more info, please ask the person who sent this link." : "Pa más información, entrúga-y a la persona qu'unvió esti enllaz", - "Download" : "Baxar", - "Direct link" : "Enllaz direutu", "Download %s" : "Descargar %s", "Select or drop files" : "Esbilla o suelta ficheros", "Uploading files…" : "Xubiendo ficheros...", - "Uploaded files:" : "Ficheros xubíos:", - "%s is publicly shared" : "%s compartióse públicamente" + "Uploaded files:" : "Ficheros xubíos:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/ast.json b/apps/files_sharing/l10n/ast.json index 33b4aa40e431b..9860a61990b44 100644 --- a/apps/files_sharing/l10n/ast.json +++ b/apps/files_sharing/l10n/ast.json @@ -62,6 +62,8 @@ "Could not lock path" : "Nun pudo bloquiase'l camín", "Can't change permissions for public share links" : "Nun puen camudase los permisos pa los enllaces de comparticiones públiques", "Cannot increase permissions" : "Nun puen aumentase los permisos", + "Download" : "Baxar", + "Direct link" : "Enllaz direutu", "Share API is disabled" : "L'API de compartición ta desactivada", "This share is password-protected" : "Esta compartición tien contraseña protexida", "The password is wrong. Try again." : "La contraseña ye incorreuta. Inténtalo otra vegada.", @@ -76,12 +78,9 @@ "the link expired" : "l'enllaz caducó", "sharing is disabled" : "la compartición ta deshabilitada", "For more info, please ask the person who sent this link." : "Pa más información, entrúga-y a la persona qu'unvió esti enllaz", - "Download" : "Baxar", - "Direct link" : "Enllaz direutu", "Download %s" : "Descargar %s", "Select or drop files" : "Esbilla o suelta ficheros", "Uploading files…" : "Xubiendo ficheros...", - "Uploaded files:" : "Ficheros xubíos:", - "%s is publicly shared" : "%s compartióse públicamente" + "Uploaded files:" : "Ficheros xubíos:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/ca.js b/apps/files_sharing/l10n/ca.js index 51594ee5e5f1a..9b7679a3dd952 100644 --- a/apps/files_sharing/l10n/ca.js +++ b/apps/files_sharing/l10n/ca.js @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "S'ha donat un paràmetre d'actualització incorrecte o no", "Can't change permissions for public share links" : "No es poden canviar els permisos per als enllaços compartits públics", "Cannot increase permissions" : "No es poden augmentar els permisos", + "shared by %s" : "compartit per %s", + "Download" : "Baixa", + "Direct link" : "Enllaç directe", + "Add to your Nextcloud" : "Afegeix al teu NextCloud", "Share API is disabled" : "L'API compartida està desactivada", + "File sharing" : "Compartir arxius", "This share is password-protected" : "Aquest compartit està protegit amb contrasenya", "The password is wrong. Try again." : "la contrasenya és incorrecta. Intenteu-ho de nou.", "Password" : "Contrasenya", @@ -101,15 +106,11 @@ OC.L10N.register( "the link expired" : "l'enllaç ha vençut", "sharing is disabled" : "s'ha desactivat la compartició", "For more info, please ask the person who sent this link." : "Per més informació contacteu amb qui us ha enviat l'enllaç.", - "shared by %s" : "compartit per %s", - "Download" : "Baixa", - "Direct link" : "Enllaç directe", - "Add to your Nextcloud" : "Afegeix al teu NextCloud", "Download %s" : "Baixa %s", "Upload files to %s" : "Carrega fitxers a %s", "Select or drop files" : "Selecciona o deixa anar els fitxers", "Uploading files…" : "Pujant arxius...", "Uploaded files:" : "Arxius pujats:", - "%s is publicly shared" : "%s es publica públicament" + "%s is publicly shared" : "%s està compartit de forma pública" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/ca.json b/apps/files_sharing/l10n/ca.json index 1e85996c6c8a1..6012e46cbfcaa 100644 --- a/apps/files_sharing/l10n/ca.json +++ b/apps/files_sharing/l10n/ca.json @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "S'ha donat un paràmetre d'actualització incorrecte o no", "Can't change permissions for public share links" : "No es poden canviar els permisos per als enllaços compartits públics", "Cannot increase permissions" : "No es poden augmentar els permisos", + "shared by %s" : "compartit per %s", + "Download" : "Baixa", + "Direct link" : "Enllaç directe", + "Add to your Nextcloud" : "Afegeix al teu NextCloud", "Share API is disabled" : "L'API compartida està desactivada", + "File sharing" : "Compartir arxius", "This share is password-protected" : "Aquest compartit està protegit amb contrasenya", "The password is wrong. Try again." : "la contrasenya és incorrecta. Intenteu-ho de nou.", "Password" : "Contrasenya", @@ -99,15 +104,11 @@ "the link expired" : "l'enllaç ha vençut", "sharing is disabled" : "s'ha desactivat la compartició", "For more info, please ask the person who sent this link." : "Per més informació contacteu amb qui us ha enviat l'enllaç.", - "shared by %s" : "compartit per %s", - "Download" : "Baixa", - "Direct link" : "Enllaç directe", - "Add to your Nextcloud" : "Afegeix al teu NextCloud", "Download %s" : "Baixa %s", "Upload files to %s" : "Carrega fitxers a %s", "Select or drop files" : "Selecciona o deixa anar els fitxers", "Uploading files…" : "Pujant arxius...", "Uploaded files:" : "Arxius pujats:", - "%s is publicly shared" : "%s es publica públicament" + "%s is publicly shared" : "%s està compartit de forma pública" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/cs.js b/apps/files_sharing/l10n/cs.js index 400ea07acb04e..2446e958b74ba 100644 --- a/apps/files_sharing/l10n/cs.js +++ b/apps/files_sharing/l10n/cs.js @@ -36,7 +36,7 @@ OC.L10N.register( "Public link expired" : "Veřejný odkaz vypršel", "{actor} shared as public link" : "{actor} sdílel(a) jako veřejný odkaz", "{actor} removed public link" : "{actor} odstranil(a) veřejný odkaz", - "Public link of {actor} expired" : "Veřejný odkaz {actor} vypršel", + "Public link of {actor} expired" : "Platnost veřejného odkazu {actor} skončila", "You shared {file} as public link" : "Sdílel(a) jste {file} jako veřejný odkaz", "You removed public link for {file}" : "Odstranil(a) jste veřejný odkaz pro {file}", "Public link expired for {file}" : "Veřený odkaz pro {file} vypršel", @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "Chyba nebo žádná aktualizace dle zadaných parametrů", "Can't change permissions for public share links" : "Nelze změnit oprávnění pro veřejně sdílené odkazy", "Cannot increase permissions" : "Nelze navýšit oprávnění", + "shared by %s" : "Sdílel %s", + "Download" : "Stáhnout", + "Direct link" : "Přímý odkaz", + "Add to your Nextcloud" : "Přidat do Nextcloud", "Share API is disabled" : "Sdílení API je zakázané", + "File sharing" : "Sdílení souborů", "This share is password-protected" : "Toto sdílení je chráněno heslem", "The password is wrong. Try again." : "Heslo není správné. Zkuste to znovu.", "Password" : "Heslo", @@ -101,15 +106,10 @@ OC.L10N.register( "the link expired" : "platnost odkazu vypršela", "sharing is disabled" : "sdílení je zakázané", "For more info, please ask the person who sent this link." : "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz.", - "shared by %s" : "Sdílel %s", - "Download" : "Stáhnout", - "Direct link" : "Přímý odkaz", - "Add to your Nextcloud" : "Přidat do Nextcloud", "Download %s" : "Stáhnout %s", "Upload files to %s" : "Nahrát soubory do %s", "Select or drop files" : "Vyberte nebo přetáhněte soubory", "Uploading files…" : "Probíhá nahrávání souborů...", - "Uploaded files:" : "Nahrané soubory:", - "%s is publicly shared" : "%s je veřejně sdílen" + "Uploaded files:" : "Nahrané soubory:" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/files_sharing/l10n/cs.json b/apps/files_sharing/l10n/cs.json index 9f2a1ecb86e46..ad9f5b77ad723 100644 --- a/apps/files_sharing/l10n/cs.json +++ b/apps/files_sharing/l10n/cs.json @@ -34,7 +34,7 @@ "Public link expired" : "Veřejný odkaz vypršel", "{actor} shared as public link" : "{actor} sdílel(a) jako veřejný odkaz", "{actor} removed public link" : "{actor} odstranil(a) veřejný odkaz", - "Public link of {actor} expired" : "Veřejný odkaz {actor} vypršel", + "Public link of {actor} expired" : "Platnost veřejného odkazu {actor} skončila", "You shared {file} as public link" : "Sdílel(a) jste {file} jako veřejný odkaz", "You removed public link for {file}" : "Odstranil(a) jste veřejný odkaz pro {file}", "Public link expired for {file}" : "Veřený odkaz pro {file} vypršel", @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "Chyba nebo žádná aktualizace dle zadaných parametrů", "Can't change permissions for public share links" : "Nelze změnit oprávnění pro veřejně sdílené odkazy", "Cannot increase permissions" : "Nelze navýšit oprávnění", + "shared by %s" : "Sdílel %s", + "Download" : "Stáhnout", + "Direct link" : "Přímý odkaz", + "Add to your Nextcloud" : "Přidat do Nextcloud", "Share API is disabled" : "Sdílení API je zakázané", + "File sharing" : "Sdílení souborů", "This share is password-protected" : "Toto sdílení je chráněno heslem", "The password is wrong. Try again." : "Heslo není správné. Zkuste to znovu.", "Password" : "Heslo", @@ -99,15 +104,10 @@ "the link expired" : "platnost odkazu vypršela", "sharing is disabled" : "sdílení je zakázané", "For more info, please ask the person who sent this link." : "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz.", - "shared by %s" : "Sdílel %s", - "Download" : "Stáhnout", - "Direct link" : "Přímý odkaz", - "Add to your Nextcloud" : "Přidat do Nextcloud", "Download %s" : "Stáhnout %s", "Upload files to %s" : "Nahrát soubory do %s", "Select or drop files" : "Vyberte nebo přetáhněte soubory", "Uploading files…" : "Probíhá nahrávání souborů...", - "Uploaded files:" : "Nahrané soubory:", - "%s is publicly shared" : "%s je veřejně sdílen" + "Uploaded files:" : "Nahrané soubory:" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/de.js b/apps/files_sharing/l10n/de.js index 7b1ca064ebb06..1f2661c307ece 100644 --- a/apps/files_sharing/l10n/de.js +++ b/apps/files_sharing/l10n/de.js @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "Es wurde ein falscher oder kein Updateparameter angegeben", "Can't change permissions for public share links" : "Berechtigungen für öffentlich freigegebene Links konnten nicht geändert werden", "Cannot increase permissions" : "Berechtigungen können nicht erhöht werden", + "shared by %s" : "von %s geteilt", + "Download" : "Herunterladen", + "Direct link" : "Direkter Link", + "Add to your Nextcloud" : "Zu Deiner Nextcloud hinzufügen", "Share API is disabled" : "Teilen-API ist deaktivert", + "File sharing" : "Dateifreigabe", "This share is password-protected" : "Freigabe ist passwortgeschützt", "The password is wrong. Try again." : "Das Passwort ist falsch. Versuche es erneut.", "Password" : "Passwort", @@ -101,10 +106,6 @@ OC.L10N.register( "the link expired" : "Der Link ist abgelaufen", "sharing is disabled" : "Teilen ist deaktiviert", "For more info, please ask the person who sent this link." : "Um nähere Informationen zu erhalten, wende dich bitte an die Person, die dir diesen Link geschickt hat.", - "shared by %s" : "von %s geteilt", - "Download" : "Herunterladen", - "Direct link" : "Direkter Link", - "Add to your Nextcloud" : "Zu Deiner Nextcloud hinzufügen", "Download %s" : "Download %s", "Upload files to %s" : "Dateien für %s hochladen", "Select or drop files" : "Dateien auswählen oder hierher ziehen", diff --git a/apps/files_sharing/l10n/de.json b/apps/files_sharing/l10n/de.json index df0fff47e2783..1e20b0bfed688 100644 --- a/apps/files_sharing/l10n/de.json +++ b/apps/files_sharing/l10n/de.json @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "Es wurde ein falscher oder kein Updateparameter angegeben", "Can't change permissions for public share links" : "Berechtigungen für öffentlich freigegebene Links konnten nicht geändert werden", "Cannot increase permissions" : "Berechtigungen können nicht erhöht werden", + "shared by %s" : "von %s geteilt", + "Download" : "Herunterladen", + "Direct link" : "Direkter Link", + "Add to your Nextcloud" : "Zu Deiner Nextcloud hinzufügen", "Share API is disabled" : "Teilen-API ist deaktivert", + "File sharing" : "Dateifreigabe", "This share is password-protected" : "Freigabe ist passwortgeschützt", "The password is wrong. Try again." : "Das Passwort ist falsch. Versuche es erneut.", "Password" : "Passwort", @@ -99,10 +104,6 @@ "the link expired" : "Der Link ist abgelaufen", "sharing is disabled" : "Teilen ist deaktiviert", "For more info, please ask the person who sent this link." : "Um nähere Informationen zu erhalten, wende dich bitte an die Person, die dir diesen Link geschickt hat.", - "shared by %s" : "von %s geteilt", - "Download" : "Herunterladen", - "Direct link" : "Direkter Link", - "Add to your Nextcloud" : "Zu Deiner Nextcloud hinzufügen", "Download %s" : "Download %s", "Upload files to %s" : "Dateien für %s hochladen", "Select or drop files" : "Dateien auswählen oder hierher ziehen", diff --git a/apps/files_sharing/l10n/de_DE.js b/apps/files_sharing/l10n/de_DE.js index a9b99fc130987..370d2463b1bf0 100644 --- a/apps/files_sharing/l10n/de_DE.js +++ b/apps/files_sharing/l10n/de_DE.js @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "Es wurde ein falscher oder kein Updateparameter angegeben", "Can't change permissions for public share links" : "Berechtigungen für öffentlich freigegebene Links konnten nicht geändert werden", "Cannot increase permissions" : "Berechtigungen können nicht erhöht werden", + "shared by %s" : "von %s geteilt", + "Download" : "Herunterladen", + "Direct link" : "Direkter Link", + "Add to your Nextcloud" : "Zu Ihrer Nextcloud hinzufügen", "Share API is disabled" : "Teilen-API ist deaktivert", + "File sharing" : "Dateifreigabe", "This share is password-protected" : "Freigabe ist passwortgeschützt", "The password is wrong. Try again." : "Das Passwort ist falsch. Bitte versuchen Sie es erneut.", "Password" : "Passwort", @@ -101,10 +106,6 @@ OC.L10N.register( "the link expired" : "Der Link ist abgelaufen", "sharing is disabled" : "Teilen ist deaktiviert", "For more info, please ask the person who sent this link." : "Um nähere Informationen zu erhalten, wenden Sie sich bitte an die Person, die Ihnen diesen Link geschickt hat.", - "shared by %s" : "von %s geteilt", - "Download" : "Herunterladen", - "Direct link" : "Direkter Link", - "Add to your Nextcloud" : "Zu Ihrer Nextcloud hinzufügen", "Download %s" : "Download %s", "Upload files to %s" : "Dateien für %s hochladen", "Select or drop files" : "Dateien auswählen oder hierher ziehen", diff --git a/apps/files_sharing/l10n/de_DE.json b/apps/files_sharing/l10n/de_DE.json index bc67d9fe3f6a9..b5a796c172654 100644 --- a/apps/files_sharing/l10n/de_DE.json +++ b/apps/files_sharing/l10n/de_DE.json @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "Es wurde ein falscher oder kein Updateparameter angegeben", "Can't change permissions for public share links" : "Berechtigungen für öffentlich freigegebene Links konnten nicht geändert werden", "Cannot increase permissions" : "Berechtigungen können nicht erhöht werden", + "shared by %s" : "von %s geteilt", + "Download" : "Herunterladen", + "Direct link" : "Direkter Link", + "Add to your Nextcloud" : "Zu Ihrer Nextcloud hinzufügen", "Share API is disabled" : "Teilen-API ist deaktivert", + "File sharing" : "Dateifreigabe", "This share is password-protected" : "Freigabe ist passwortgeschützt", "The password is wrong. Try again." : "Das Passwort ist falsch. Bitte versuchen Sie es erneut.", "Password" : "Passwort", @@ -99,10 +104,6 @@ "the link expired" : "Der Link ist abgelaufen", "sharing is disabled" : "Teilen ist deaktiviert", "For more info, please ask the person who sent this link." : "Um nähere Informationen zu erhalten, wenden Sie sich bitte an die Person, die Ihnen diesen Link geschickt hat.", - "shared by %s" : "von %s geteilt", - "Download" : "Herunterladen", - "Direct link" : "Direkter Link", - "Add to your Nextcloud" : "Zu Ihrer Nextcloud hinzufügen", "Download %s" : "Download %s", "Upload files to %s" : "Dateien für %s hochladen", "Select or drop files" : "Dateien auswählen oder hierher ziehen", diff --git a/apps/files_sharing/l10n/el.js b/apps/files_sharing/l10n/el.js index 0ca8ebf285d7e..cafcf36b6b175 100644 --- a/apps/files_sharing/l10n/el.js +++ b/apps/files_sharing/l10n/el.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "Λάθος ή καμία παράμετρος αναβάθμισης δεν δόθηκε", "Can't change permissions for public share links" : "Δεν μπορούμε να αλλάξουμε δικαιώματα για δημόσια διαμοιρασμένους συνδέσμους", "Cannot increase permissions" : "Δεν μπορούμε να αυξήσουμε δικαιώματα", + "shared by %s" : "Διαμοιράστηκε από 1 %s", + "Download" : "Λήψη", + "Direct link" : "Άμεσος σύνδεσμος", + "Add to your Nextcloud" : "Προσθήκη στο Nextcloud σου", "Share API is disabled" : "API διαμοιρασμού είναι απενεργοποιημένο", "This share is password-protected" : "Αυτός ο κοινόχρηστος φάκελος προστατεύεται με κωδικό", "The password is wrong. Try again." : "Εσφαλμένος κωδικός πρόσβασης. Προσπαθήστε ξανά.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "ο σύνδεσμος έληξε", "sharing is disabled" : "ο διαμοιρασμός απενεργοποιήθηκε", "For more info, please ask the person who sent this link." : "Για περισσότερες πληροφορίες, παρακαλώ ρωτήστε το άτομο που σας έστειλε αυτόν τον σύνδεσμο.", - "shared by %s" : "Διαμοιράστηκε από 1 %s", - "Download" : "Λήψη", - "Direct link" : "Άμεσος σύνδεσμος", - "Add to your Nextcloud" : "Προσθήκη στο Nextcloud σου", "Download %s" : "Λήψη %s", "Upload files to %s" : "Αποστολή αρχείων σε %s", "Select or drop files" : "Επιλέξτε ή ρίξτε αρχεία", "Uploading files…" : "Αποστολή αρχείων ...", - "Uploaded files:" : "Αποστολή αρχείων:", - "%s is publicly shared" : "%s είναι δημόσια διαμοιρασμένο" + "Uploaded files:" : "Αποστολή αρχείων:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/el.json b/apps/files_sharing/l10n/el.json index aa70d6689c534..0f50082e96bb8 100644 --- a/apps/files_sharing/l10n/el.json +++ b/apps/files_sharing/l10n/el.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "Λάθος ή καμία παράμετρος αναβάθμισης δεν δόθηκε", "Can't change permissions for public share links" : "Δεν μπορούμε να αλλάξουμε δικαιώματα για δημόσια διαμοιρασμένους συνδέσμους", "Cannot increase permissions" : "Δεν μπορούμε να αυξήσουμε δικαιώματα", + "shared by %s" : "Διαμοιράστηκε από 1 %s", + "Download" : "Λήψη", + "Direct link" : "Άμεσος σύνδεσμος", + "Add to your Nextcloud" : "Προσθήκη στο Nextcloud σου", "Share API is disabled" : "API διαμοιρασμού είναι απενεργοποιημένο", "This share is password-protected" : "Αυτός ο κοινόχρηστος φάκελος προστατεύεται με κωδικό", "The password is wrong. Try again." : "Εσφαλμένος κωδικός πρόσβασης. Προσπαθήστε ξανά.", @@ -99,15 +103,10 @@ "the link expired" : "ο σύνδεσμος έληξε", "sharing is disabled" : "ο διαμοιρασμός απενεργοποιήθηκε", "For more info, please ask the person who sent this link." : "Για περισσότερες πληροφορίες, παρακαλώ ρωτήστε το άτομο που σας έστειλε αυτόν τον σύνδεσμο.", - "shared by %s" : "Διαμοιράστηκε από 1 %s", - "Download" : "Λήψη", - "Direct link" : "Άμεσος σύνδεσμος", - "Add to your Nextcloud" : "Προσθήκη στο Nextcloud σου", "Download %s" : "Λήψη %s", "Upload files to %s" : "Αποστολή αρχείων σε %s", "Select or drop files" : "Επιλέξτε ή ρίξτε αρχεία", "Uploading files…" : "Αποστολή αρχείων ...", - "Uploaded files:" : "Αποστολή αρχείων:", - "%s is publicly shared" : "%s είναι δημόσια διαμοιρασμένο" + "Uploaded files:" : "Αποστολή αρχείων:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/en_GB.js b/apps/files_sharing/l10n/en_GB.js index b179dc6be4784..94f8f700fc20c 100644 --- a/apps/files_sharing/l10n/en_GB.js +++ b/apps/files_sharing/l10n/en_GB.js @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "Wrong or no update parameter given", "Can't change permissions for public share links" : "Can't change permissions for public share links", "Cannot increase permissions" : "Cannot increase permissions", + "shared by %s" : "shared by %s", + "Download" : "Download", + "Direct link" : "Direct link", + "Add to your Nextcloud" : "Add to your Nextcloud", "Share API is disabled" : "Share API is disabled", + "File sharing" : "File sharing", "This share is password-protected" : "This share is password-protected", "The password is wrong. Try again." : "The password is wrong. Try again.", "Password" : "Password", @@ -101,10 +106,6 @@ OC.L10N.register( "the link expired" : "the link expired", "sharing is disabled" : "sharing is disabled", "For more info, please ask the person who sent this link." : "For more info, please ask the person who sent this link.", - "shared by %s" : "shared by %s", - "Download" : "Download", - "Direct link" : "Direct link", - "Add to your Nextcloud" : "Add to your Nextcloud", "Download %s" : "Download %s", "Upload files to %s" : "Upload files to %s", "Select or drop files" : "Select or drop files", diff --git a/apps/files_sharing/l10n/en_GB.json b/apps/files_sharing/l10n/en_GB.json index 6584ef966fc5b..48183adf1572a 100644 --- a/apps/files_sharing/l10n/en_GB.json +++ b/apps/files_sharing/l10n/en_GB.json @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "Wrong or no update parameter given", "Can't change permissions for public share links" : "Can't change permissions for public share links", "Cannot increase permissions" : "Cannot increase permissions", + "shared by %s" : "shared by %s", + "Download" : "Download", + "Direct link" : "Direct link", + "Add to your Nextcloud" : "Add to your Nextcloud", "Share API is disabled" : "Share API is disabled", + "File sharing" : "File sharing", "This share is password-protected" : "This share is password-protected", "The password is wrong. Try again." : "The password is wrong. Try again.", "Password" : "Password", @@ -99,10 +104,6 @@ "the link expired" : "the link expired", "sharing is disabled" : "sharing is disabled", "For more info, please ask the person who sent this link." : "For more info, please ask the person who sent this link.", - "shared by %s" : "shared by %s", - "Download" : "Download", - "Direct link" : "Direct link", - "Add to your Nextcloud" : "Add to your Nextcloud", "Download %s" : "Download %s", "Upload files to %s" : "Upload files to %s", "Select or drop files" : "Select or drop files", diff --git a/apps/files_sharing/l10n/es.js b/apps/files_sharing/l10n/es.js index aa8e28805aad4..5a0eb1c95d16d 100644 --- a/apps/files_sharing/l10n/es.js +++ b/apps/files_sharing/l10n/es.js @@ -7,9 +7,9 @@ OC.L10N.register( "Nothing shared with you yet" : "Todavía no han compartido nada contigo", "Files and folders others share with you will show up here" : "Aquí aparecerán archivos y carpetas que otros compartan contigo", "Nothing shared yet" : "Aún no hay nada compartido", - "Files and folders you share will show up here" : "Aquí aparecerán archivos y carpetas que usted comparta con otros", + "Files and folders you share will show up here" : "Aquí aparecerán los archivos y carpetas que compartas con otros", "No shared links" : "No hay enlaces compartidos", - "Files and folders you share by link will show up here" : "Aquí aparecerán archivos y carpetas que usted comparta mediante un enlace", + "Files and folders you share by link will show up here" : "Aquí aparecerán los archivos y carpetas que compartas mediante un enlace", "You can upload into this folder" : "Usted puede cargar en esta carpeta", "No compatible server found at {remote}" : "No se ha encontrado un servidor compatible en {remote}", "Invalid server URL" : "URL del servidor inválida", @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "No se ha suministrado un parametro correcto", "Can't change permissions for public share links" : "No se pueden cambiar los permisos para los enlaces de recursos compartidos públicos", "Cannot increase permissions" : "No es posible aumentar permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Enlace directo", + "Add to your Nextcloud" : "Añadir a tu Nextcloud", "Share API is disabled" : "El API de compartir está deshabilitado", + "File sharing" : "Compartir archivos", "This share is password-protected" : "Este elemento compartido está protegido por contraseña", "The password is wrong. Try again." : "La contraseña introducida es errónea. Inténtelo de nuevo.", "Password" : "Contraseña", @@ -101,15 +106,11 @@ OC.L10N.register( "the link expired" : "el enlace expiró", "sharing is disabled" : "compartir está desactivado", "For more info, please ask the person who sent this link." : "Para mayor información, contacte a la persona que le envió el enlace.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Enlace directo", - "Add to your Nextcloud" : "Añadir a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Subir archivos a %s", "Select or drop files" : "Seleccione o arrastre y suelte archivos", "Uploading files…" : "Subiendo archivos...", "Uploaded files:" : "Archivos subidos:", - "%s is publicly shared" : "%s ha sido compartido" + "%s is publicly shared" : "%s está compartido públicamente" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es.json b/apps/files_sharing/l10n/es.json index e23fb37c49046..27d1c2b378b6b 100644 --- a/apps/files_sharing/l10n/es.json +++ b/apps/files_sharing/l10n/es.json @@ -5,9 +5,9 @@ "Nothing shared with you yet" : "Todavía no han compartido nada contigo", "Files and folders others share with you will show up here" : "Aquí aparecerán archivos y carpetas que otros compartan contigo", "Nothing shared yet" : "Aún no hay nada compartido", - "Files and folders you share will show up here" : "Aquí aparecerán archivos y carpetas que usted comparta con otros", + "Files and folders you share will show up here" : "Aquí aparecerán los archivos y carpetas que compartas con otros", "No shared links" : "No hay enlaces compartidos", - "Files and folders you share by link will show up here" : "Aquí aparecerán archivos y carpetas que usted comparta mediante un enlace", + "Files and folders you share by link will show up here" : "Aquí aparecerán los archivos y carpetas que compartas mediante un enlace", "You can upload into this folder" : "Usted puede cargar en esta carpeta", "No compatible server found at {remote}" : "No se ha encontrado un servidor compatible en {remote}", "Invalid server URL" : "URL del servidor inválida", @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "No se ha suministrado un parametro correcto", "Can't change permissions for public share links" : "No se pueden cambiar los permisos para los enlaces de recursos compartidos públicos", "Cannot increase permissions" : "No es posible aumentar permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Enlace directo", + "Add to your Nextcloud" : "Añadir a tu Nextcloud", "Share API is disabled" : "El API de compartir está deshabilitado", + "File sharing" : "Compartir archivos", "This share is password-protected" : "Este elemento compartido está protegido por contraseña", "The password is wrong. Try again." : "La contraseña introducida es errónea. Inténtelo de nuevo.", "Password" : "Contraseña", @@ -99,15 +104,11 @@ "the link expired" : "el enlace expiró", "sharing is disabled" : "compartir está desactivado", "For more info, please ask the person who sent this link." : "Para mayor información, contacte a la persona que le envió el enlace.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Enlace directo", - "Add to your Nextcloud" : "Añadir a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Subir archivos a %s", "Select or drop files" : "Seleccione o arrastre y suelte archivos", "Uploading files…" : "Subiendo archivos...", "Uploaded files:" : "Archivos subidos:", - "%s is publicly shared" : "%s ha sido compartido" + "%s is publicly shared" : "%s está compartido públicamente" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/es_419.js b/apps/files_sharing/l10n/es_419.js index 620d498f60489..03c29b785b5fa 100644 --- a/apps/files_sharing/l10n/es_419.js +++ b/apps/files_sharing/l10n/es_419.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es_419.json b/apps/files_sharing/l10n/es_419.json index 43064dfb9c506..78b7266cc4df4 100644 --- a/apps/files_sharing/l10n/es_419.json +++ b/apps/files_sharing/l10n/es_419.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -99,15 +103,10 @@ "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/es_AR.js b/apps/files_sharing/l10n/es_AR.js index 9857cd41ead20..7ada8ab5f9153 100644 --- a/apps/files_sharing/l10n/es_AR.js +++ b/apps/files_sharing/l10n/es_AR.js @@ -87,6 +87,9 @@ OC.L10N.register( "Wrong or no update parameter given" : "El parametro de actualización esta erróneo o faltante", "Can't change permissions for public share links" : "No es posible cambiar los permisos para links públicos compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "Download" : "Descargar", + "Direct link" : "Link directa", + "Add to your Nextcloud" : "Agregar a su Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido esta protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Favor de intentarlo de nuevo.", @@ -101,14 +104,10 @@ OC.L10N.register( "the link expired" : "el link expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacte a la persona que le envió este link.", - "Download" : "Descargar", - "Direct link" : "Link directa", - "Add to your Nextcloud" : "Agregar a su Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Seleccione o suelte los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es_AR.json b/apps/files_sharing/l10n/es_AR.json index 3adcc360168d3..37b3fce1452c1 100644 --- a/apps/files_sharing/l10n/es_AR.json +++ b/apps/files_sharing/l10n/es_AR.json @@ -85,6 +85,9 @@ "Wrong or no update parameter given" : "El parametro de actualización esta erróneo o faltante", "Can't change permissions for public share links" : "No es posible cambiar los permisos para links públicos compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "Download" : "Descargar", + "Direct link" : "Link directa", + "Add to your Nextcloud" : "Agregar a su Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido esta protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Favor de intentarlo de nuevo.", @@ -99,14 +102,10 @@ "the link expired" : "el link expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacte a la persona que le envió este link.", - "Download" : "Descargar", - "Direct link" : "Link directa", - "Add to your Nextcloud" : "Agregar a su Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Seleccione o suelte los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/es_CL.js b/apps/files_sharing/l10n/es_CL.js index 620d498f60489..03c29b785b5fa 100644 --- a/apps/files_sharing/l10n/es_CL.js +++ b/apps/files_sharing/l10n/es_CL.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es_CL.json b/apps/files_sharing/l10n/es_CL.json index 43064dfb9c506..78b7266cc4df4 100644 --- a/apps/files_sharing/l10n/es_CL.json +++ b/apps/files_sharing/l10n/es_CL.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -99,15 +103,10 @@ "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/es_CO.js b/apps/files_sharing/l10n/es_CO.js index 620d498f60489..03c29b785b5fa 100644 --- a/apps/files_sharing/l10n/es_CO.js +++ b/apps/files_sharing/l10n/es_CO.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es_CO.json b/apps/files_sharing/l10n/es_CO.json index 43064dfb9c506..78b7266cc4df4 100644 --- a/apps/files_sharing/l10n/es_CO.json +++ b/apps/files_sharing/l10n/es_CO.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -99,15 +103,10 @@ "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/es_CR.js b/apps/files_sharing/l10n/es_CR.js index 620d498f60489..03c29b785b5fa 100644 --- a/apps/files_sharing/l10n/es_CR.js +++ b/apps/files_sharing/l10n/es_CR.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es_CR.json b/apps/files_sharing/l10n/es_CR.json index 43064dfb9c506..78b7266cc4df4 100644 --- a/apps/files_sharing/l10n/es_CR.json +++ b/apps/files_sharing/l10n/es_CR.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -99,15 +103,10 @@ "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/es_DO.js b/apps/files_sharing/l10n/es_DO.js index 620d498f60489..03c29b785b5fa 100644 --- a/apps/files_sharing/l10n/es_DO.js +++ b/apps/files_sharing/l10n/es_DO.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es_DO.json b/apps/files_sharing/l10n/es_DO.json index 43064dfb9c506..78b7266cc4df4 100644 --- a/apps/files_sharing/l10n/es_DO.json +++ b/apps/files_sharing/l10n/es_DO.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -99,15 +103,10 @@ "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/es_EC.js b/apps/files_sharing/l10n/es_EC.js index 620d498f60489..03c29b785b5fa 100644 --- a/apps/files_sharing/l10n/es_EC.js +++ b/apps/files_sharing/l10n/es_EC.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es_EC.json b/apps/files_sharing/l10n/es_EC.json index 43064dfb9c506..78b7266cc4df4 100644 --- a/apps/files_sharing/l10n/es_EC.json +++ b/apps/files_sharing/l10n/es_EC.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -99,15 +103,10 @@ "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/es_GT.js b/apps/files_sharing/l10n/es_GT.js index 620d498f60489..03c29b785b5fa 100644 --- a/apps/files_sharing/l10n/es_GT.js +++ b/apps/files_sharing/l10n/es_GT.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es_GT.json b/apps/files_sharing/l10n/es_GT.json index 43064dfb9c506..78b7266cc4df4 100644 --- a/apps/files_sharing/l10n/es_GT.json +++ b/apps/files_sharing/l10n/es_GT.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -99,15 +103,10 @@ "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/es_HN.js b/apps/files_sharing/l10n/es_HN.js index 620d498f60489..03c29b785b5fa 100644 --- a/apps/files_sharing/l10n/es_HN.js +++ b/apps/files_sharing/l10n/es_HN.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es_HN.json b/apps/files_sharing/l10n/es_HN.json index 43064dfb9c506..78b7266cc4df4 100644 --- a/apps/files_sharing/l10n/es_HN.json +++ b/apps/files_sharing/l10n/es_HN.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -99,15 +103,10 @@ "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/es_MX.js b/apps/files_sharing/l10n/es_MX.js index 620d498f60489..9db3d9d8e9bec 100644 --- a/apps/files_sharing/l10n/es_MX.js +++ b/apps/files_sharing/l10n/es_MX.js @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", + "File sharing" : "Compartir archivos", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", "Password" : "Contraseña", @@ -101,10 +106,6 @@ OC.L10N.register( "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", diff --git a/apps/files_sharing/l10n/es_MX.json b/apps/files_sharing/l10n/es_MX.json index 43064dfb9c506..b1e3b52ee1704 100644 --- a/apps/files_sharing/l10n/es_MX.json +++ b/apps/files_sharing/l10n/es_MX.json @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", + "File sharing" : "Compartir archivos", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", "Password" : "Contraseña", @@ -99,10 +104,6 @@ "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", diff --git a/apps/files_sharing/l10n/es_NI.js b/apps/files_sharing/l10n/es_NI.js index 620d498f60489..03c29b785b5fa 100644 --- a/apps/files_sharing/l10n/es_NI.js +++ b/apps/files_sharing/l10n/es_NI.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es_NI.json b/apps/files_sharing/l10n/es_NI.json index 43064dfb9c506..78b7266cc4df4 100644 --- a/apps/files_sharing/l10n/es_NI.json +++ b/apps/files_sharing/l10n/es_NI.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -99,15 +103,10 @@ "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/es_PA.js b/apps/files_sharing/l10n/es_PA.js index 620d498f60489..03c29b785b5fa 100644 --- a/apps/files_sharing/l10n/es_PA.js +++ b/apps/files_sharing/l10n/es_PA.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es_PA.json b/apps/files_sharing/l10n/es_PA.json index 43064dfb9c506..78b7266cc4df4 100644 --- a/apps/files_sharing/l10n/es_PA.json +++ b/apps/files_sharing/l10n/es_PA.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -99,15 +103,10 @@ "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/es_PE.js b/apps/files_sharing/l10n/es_PE.js index 620d498f60489..03c29b785b5fa 100644 --- a/apps/files_sharing/l10n/es_PE.js +++ b/apps/files_sharing/l10n/es_PE.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es_PE.json b/apps/files_sharing/l10n/es_PE.json index 43064dfb9c506..78b7266cc4df4 100644 --- a/apps/files_sharing/l10n/es_PE.json +++ b/apps/files_sharing/l10n/es_PE.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -99,15 +103,10 @@ "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/es_PR.js b/apps/files_sharing/l10n/es_PR.js index 620d498f60489..03c29b785b5fa 100644 --- a/apps/files_sharing/l10n/es_PR.js +++ b/apps/files_sharing/l10n/es_PR.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es_PR.json b/apps/files_sharing/l10n/es_PR.json index 43064dfb9c506..78b7266cc4df4 100644 --- a/apps/files_sharing/l10n/es_PR.json +++ b/apps/files_sharing/l10n/es_PR.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -99,15 +103,10 @@ "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/es_PY.js b/apps/files_sharing/l10n/es_PY.js index 620d498f60489..03c29b785b5fa 100644 --- a/apps/files_sharing/l10n/es_PY.js +++ b/apps/files_sharing/l10n/es_PY.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es_PY.json b/apps/files_sharing/l10n/es_PY.json index 43064dfb9c506..78b7266cc4df4 100644 --- a/apps/files_sharing/l10n/es_PY.json +++ b/apps/files_sharing/l10n/es_PY.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -99,15 +103,10 @@ "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/es_SV.js b/apps/files_sharing/l10n/es_SV.js index 620d498f60489..03c29b785b5fa 100644 --- a/apps/files_sharing/l10n/es_SV.js +++ b/apps/files_sharing/l10n/es_SV.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es_SV.json b/apps/files_sharing/l10n/es_SV.json index 43064dfb9c506..78b7266cc4df4 100644 --- a/apps/files_sharing/l10n/es_SV.json +++ b/apps/files_sharing/l10n/es_SV.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -99,15 +103,10 @@ "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/es_UY.js b/apps/files_sharing/l10n/es_UY.js index 620d498f60489..03c29b785b5fa 100644 --- a/apps/files_sharing/l10n/es_UY.js +++ b/apps/files_sharing/l10n/es_UY.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/es_UY.json b/apps/files_sharing/l10n/es_UY.json index 43064dfb9c506..78b7266cc4df4 100644 --- a/apps/files_sharing/l10n/es_UY.json +++ b/apps/files_sharing/l10n/es_UY.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "El parametro de actualización está erróneo o falta", "Can't change permissions for public share links" : "No es posible cambiar los permisos para ligas públicas compartidas", "Cannot increase permissions" : "No es posible incrementar los permisos", + "shared by %s" : "compartido por %s", + "Download" : "Descargar", + "Direct link" : "Liga directa", + "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Share API is disabled" : "El API para compartir está deshabilitado", "This share is password-protected" : "Este elemento compartido está protegido con contraseña", "The password is wrong. Try again." : "La contraseña es incorrecta. Por favor inténtalo de nuevo.", @@ -99,15 +103,10 @@ "the link expired" : "la liga expiró", "sharing is disabled" : "compartir está deshabilitado", "For more info, please ask the person who sent this link." : "Para mayores informes, contacta a la persona que le envió esta liga.", - "shared by %s" : "compartido por %s", - "Download" : "Descargar", - "Direct link" : "Liga directa", - "Add to your Nextcloud" : "Agregar a tu Nextcloud", "Download %s" : "Descargar %s", "Upload files to %s" : "Cargar archivos a %s", "Select or drop files" : "Selecciona o suelta los archivos", "Uploading files…" : "Cargando archivos...", - "Uploaded files:" : "Archivos cargados:", - "%s is publicly shared" : "%s está compartido públicamente" + "Uploaded files:" : "Archivos cargados:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/et_EE.js b/apps/files_sharing/l10n/et_EE.js index 404f481c56149..0783b4c30cea9 100644 --- a/apps/files_sharing/l10n/et_EE.js +++ b/apps/files_sharing/l10n/et_EE.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "Antud vale või aegunud parameeter", "Can't change permissions for public share links" : "Avalikult jagatud linkide õigusi muuta ei saa", "Cannot increase permissions" : "Ei saa õigusi suurendada", + "shared by %s" : "jagas %s", + "Download" : "Lae alla", + "Direct link" : "Otsene link", + "Add to your Nextcloud" : "Lisa oma Nextcloudi", "Share API is disabled" : "Jagamise API on keelatud", "This share is password-protected" : "See jagamine on parooliga kaitstud", "The password is wrong. Try again." : "Parool on vale. Proovi uuesti.", @@ -101,10 +105,6 @@ OC.L10N.register( "the link expired" : "link on aegunud", "sharing is disabled" : "jagamine on peatatud", "For more info, please ask the person who sent this link." : "Täpsema info saamiseks palun pöördu lingi saatnud isiku poole.", - "shared by %s" : "jagas %s", - "Download" : "Lae alla", - "Direct link" : "Otsene link", - "Add to your Nextcloud" : "Lisa oma Nextcloudi", "Download %s" : "Laadi alla %s", "Upload files to %s" : "Laadi failid %s", "Select or drop files" : "Vali või lohista failid", diff --git a/apps/files_sharing/l10n/et_EE.json b/apps/files_sharing/l10n/et_EE.json index 89086670a74fe..89c7d876d3097 100644 --- a/apps/files_sharing/l10n/et_EE.json +++ b/apps/files_sharing/l10n/et_EE.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "Antud vale või aegunud parameeter", "Can't change permissions for public share links" : "Avalikult jagatud linkide õigusi muuta ei saa", "Cannot increase permissions" : "Ei saa õigusi suurendada", + "shared by %s" : "jagas %s", + "Download" : "Lae alla", + "Direct link" : "Otsene link", + "Add to your Nextcloud" : "Lisa oma Nextcloudi", "Share API is disabled" : "Jagamise API on keelatud", "This share is password-protected" : "See jagamine on parooliga kaitstud", "The password is wrong. Try again." : "Parool on vale. Proovi uuesti.", @@ -99,10 +103,6 @@ "the link expired" : "link on aegunud", "sharing is disabled" : "jagamine on peatatud", "For more info, please ask the person who sent this link." : "Täpsema info saamiseks palun pöördu lingi saatnud isiku poole.", - "shared by %s" : "jagas %s", - "Download" : "Lae alla", - "Direct link" : "Otsene link", - "Add to your Nextcloud" : "Lisa oma Nextcloudi", "Download %s" : "Laadi alla %s", "Upload files to %s" : "Laadi failid %s", "Select or drop files" : "Vali või lohista failid", diff --git a/apps/files_sharing/l10n/fi.js b/apps/files_sharing/l10n/fi.js index 23f4d2247daaf..b139d8681f462 100644 --- a/apps/files_sharing/l10n/fi.js +++ b/apps/files_sharing/l10n/fi.js @@ -77,7 +77,7 @@ OC.L10N.register( "Public link sharing is disabled by the administrator" : "Ylläpitäjä on estänyt julkisen linkin jakamisen", "Public upload disabled by the administrator" : "Ylläpitäjä on estänyt julkisen lähetyksen", "Public upload is only possible for publicly shared folders" : "Julkinen lähettäminen on mahdollista vain julkisesti jaetuille kansioille", - "Invalid date, date format must be YYYY-MM-DD" : "Virheellinen päiväys, päivämäärän muodon tulee olla YYYY-MM-DD", + "Invalid date, date format must be YYYY-MM-DD" : "Virheellinen päiväys, päivämäärän muodon tulee olla VVVV-KK-PP", "Sharing %s failed because the back end does not allow shares from type %s" : "Kohteen %s jakaminen epäonnistui, koska tietovarasto ei salli %s tyyppisiä jakoja", "You cannot share to a Circle if the app is not enabled" : "Et voi jakaa piiriin, jos sovellusta ei ole aktivoitu", "Please specify a valid circle" : "Määritä kelvollinen piiri", @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "Päivitettävä parametri puuttuu tai on väärin", "Can't change permissions for public share links" : "Julkisten jakolinkkien käyttöoikeuksia ei voi muuttaa", "Cannot increase permissions" : "Oikeuksien lisääminen ei onnistu", + "shared by %s" : "%s jakama", + "Download" : "Lataa", + "Direct link" : "Suora linkki", + "Add to your Nextcloud" : "Lisää Nextcloudiisi", "Share API is disabled" : "Jakamisrajapinta on poistettu käytöstä", + "File sharing" : "Tiedostonjako", "This share is password-protected" : "Tämä jako on suojattu salasanalla", "The password is wrong. Try again." : "Väärä salasana. Yritä uudelleen.", "Password" : "Salasana", @@ -101,15 +106,11 @@ OC.L10N.register( "the link expired" : "linkki vanheni", "sharing is disabled" : "jakaminen on poistettu käytöstä", "For more info, please ask the person who sent this link." : "Kysy lisätietoja henkilöltä, jolta sait linkin.", - "shared by %s" : "%s jakama", - "Download" : "Lataa", - "Direct link" : "Suora linkki", - "Add to your Nextcloud" : "Lisää Nextcloudiisi", "Download %s" : "Lataa %s", "Upload files to %s" : "Lähetä tiedostoja käyttäjälle %s", "Select or drop files" : "Valitse tai pudota tiedostoja", "Uploading files…" : "Lähetetään tiedostoja…", "Uploaded files:" : "Lähetetyt tiedostot:", - "%s is publicly shared" : "%s on julkisesti jaettu" + "%s is publicly shared" : "%s on jaettu julkisesti" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/fi.json b/apps/files_sharing/l10n/fi.json index 4c8535e9e2ca6..0069f9f7c342b 100644 --- a/apps/files_sharing/l10n/fi.json +++ b/apps/files_sharing/l10n/fi.json @@ -75,7 +75,7 @@ "Public link sharing is disabled by the administrator" : "Ylläpitäjä on estänyt julkisen linkin jakamisen", "Public upload disabled by the administrator" : "Ylläpitäjä on estänyt julkisen lähetyksen", "Public upload is only possible for publicly shared folders" : "Julkinen lähettäminen on mahdollista vain julkisesti jaetuille kansioille", - "Invalid date, date format must be YYYY-MM-DD" : "Virheellinen päiväys, päivämäärän muodon tulee olla YYYY-MM-DD", + "Invalid date, date format must be YYYY-MM-DD" : "Virheellinen päiväys, päivämäärän muodon tulee olla VVVV-KK-PP", "Sharing %s failed because the back end does not allow shares from type %s" : "Kohteen %s jakaminen epäonnistui, koska tietovarasto ei salli %s tyyppisiä jakoja", "You cannot share to a Circle if the app is not enabled" : "Et voi jakaa piiriin, jos sovellusta ei ole aktivoitu", "Please specify a valid circle" : "Määritä kelvollinen piiri", @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "Päivitettävä parametri puuttuu tai on väärin", "Can't change permissions for public share links" : "Julkisten jakolinkkien käyttöoikeuksia ei voi muuttaa", "Cannot increase permissions" : "Oikeuksien lisääminen ei onnistu", + "shared by %s" : "%s jakama", + "Download" : "Lataa", + "Direct link" : "Suora linkki", + "Add to your Nextcloud" : "Lisää Nextcloudiisi", "Share API is disabled" : "Jakamisrajapinta on poistettu käytöstä", + "File sharing" : "Tiedostonjako", "This share is password-protected" : "Tämä jako on suojattu salasanalla", "The password is wrong. Try again." : "Väärä salasana. Yritä uudelleen.", "Password" : "Salasana", @@ -99,15 +104,11 @@ "the link expired" : "linkki vanheni", "sharing is disabled" : "jakaminen on poistettu käytöstä", "For more info, please ask the person who sent this link." : "Kysy lisätietoja henkilöltä, jolta sait linkin.", - "shared by %s" : "%s jakama", - "Download" : "Lataa", - "Direct link" : "Suora linkki", - "Add to your Nextcloud" : "Lisää Nextcloudiisi", "Download %s" : "Lataa %s", "Upload files to %s" : "Lähetä tiedostoja käyttäjälle %s", "Select or drop files" : "Valitse tai pudota tiedostoja", "Uploading files…" : "Lähetetään tiedostoja…", "Uploaded files:" : "Lähetetyt tiedostot:", - "%s is publicly shared" : "%s on julkisesti jaettu" + "%s is publicly shared" : "%s on jaettu julkisesti" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/fr.js b/apps/files_sharing/l10n/fr.js index 9eaae938c7aad..5ae7a0035d760 100644 --- a/apps/files_sharing/l10n/fr.js +++ b/apps/files_sharing/l10n/fr.js @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "Mauvais ou aucun paramètre donné ", "Can't change permissions for public share links" : "Impossible de changer les permissions pour les liens de partage public", "Cannot increase permissions" : "Impossible d'augmenter les permissions", + "shared by %s" : "partagé par %s", + "Download" : "Télécharger", + "Direct link" : "Lien direct", + "Add to your Nextcloud" : "Ajouter à votre Nextcloud", "Share API is disabled" : "l'API de partage est désactivée", + "File sharing" : "Partage de fichier", "This share is password-protected" : "Ce partage est protégé par un mot de passe", "The password is wrong. Try again." : "Le mot de passe est incorrect. Veuillez réessayer.", "Password" : "Mot de passe", @@ -101,10 +106,6 @@ OC.L10N.register( "the link expired" : "le lien a expiré", "sharing is disabled" : "le partage est désactivé", "For more info, please ask the person who sent this link." : "Pour plus d'informations, veuillez contacter la personne qui a envoyé ce lien.", - "shared by %s" : "partagé par %s", - "Download" : "Télécharger", - "Direct link" : "Lien direct", - "Add to your Nextcloud" : "Ajouter à votre Nextcloud", "Download %s" : "Télécharger %s", "Upload files to %s" : "Téléversement des fichiers vers %s", "Select or drop files" : "Sélectionner ou glisser-déposer vos fichiers", diff --git a/apps/files_sharing/l10n/fr.json b/apps/files_sharing/l10n/fr.json index b4a3434f0ea7d..d9f72a1b8d472 100644 --- a/apps/files_sharing/l10n/fr.json +++ b/apps/files_sharing/l10n/fr.json @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "Mauvais ou aucun paramètre donné ", "Can't change permissions for public share links" : "Impossible de changer les permissions pour les liens de partage public", "Cannot increase permissions" : "Impossible d'augmenter les permissions", + "shared by %s" : "partagé par %s", + "Download" : "Télécharger", + "Direct link" : "Lien direct", + "Add to your Nextcloud" : "Ajouter à votre Nextcloud", "Share API is disabled" : "l'API de partage est désactivée", + "File sharing" : "Partage de fichier", "This share is password-protected" : "Ce partage est protégé par un mot de passe", "The password is wrong. Try again." : "Le mot de passe est incorrect. Veuillez réessayer.", "Password" : "Mot de passe", @@ -99,10 +104,6 @@ "the link expired" : "le lien a expiré", "sharing is disabled" : "le partage est désactivé", "For more info, please ask the person who sent this link." : "Pour plus d'informations, veuillez contacter la personne qui a envoyé ce lien.", - "shared by %s" : "partagé par %s", - "Download" : "Télécharger", - "Direct link" : "Lien direct", - "Add to your Nextcloud" : "Ajouter à votre Nextcloud", "Download %s" : "Télécharger %s", "Upload files to %s" : "Téléversement des fichiers vers %s", "Select or drop files" : "Sélectionner ou glisser-déposer vos fichiers", diff --git a/apps/files_sharing/l10n/hu.js b/apps/files_sharing/l10n/hu.js index 9705d709fa65d..e3216c37686f9 100644 --- a/apps/files_sharing/l10n/hu.js +++ b/apps/files_sharing/l10n/hu.js @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "Hibás vagy üres frissítési paraméter", "Can't change permissions for public share links" : "Nem lehet módosítani a nyilvános megosztási hivatkozások jogosultságait", "Cannot increase permissions" : "Nem lehet növelni az engedélyeket", + "shared by %s" : "megosztotta %s", + "Download" : "Letöltés", + "Direct link" : "Közvetlen hivatkozás", + "Add to your Nextcloud" : "Add hozzá a Nextcloudodhoz", "Share API is disabled" : "Megosztás API letiltva", + "File sharing" : "Fájlmegosztás", "This share is password-protected" : "Ez egy jelszóval védett megosztás", "The password is wrong. Try again." : "A megadott jelszó nem megfelelő. Próbálja újra!", "Password" : "Jelszó", @@ -101,10 +106,6 @@ OC.L10N.register( "the link expired" : "lejárt a hivatkozás érvényességi ideje", "sharing is disabled" : "letiltásra került a megosztás", "For more info, please ask the person who sent this link." : "További információért fordulj ahhoz, aki ezt a linket küldte neked!", - "shared by %s" : "megosztotta %s", - "Download" : "Letöltés", - "Direct link" : "Közvetlen hivatkozás", - "Add to your Nextcloud" : "Add hozzá a Nextcloudodhoz", "Download %s" : "%s letöltése", "Upload files to %s" : "Fájlok felöltése ide: %s", "Select or drop files" : "Válassz ki vagy dobj ide fájlokat", diff --git a/apps/files_sharing/l10n/hu.json b/apps/files_sharing/l10n/hu.json index 628741239dd17..3ad1479828549 100644 --- a/apps/files_sharing/l10n/hu.json +++ b/apps/files_sharing/l10n/hu.json @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "Hibás vagy üres frissítési paraméter", "Can't change permissions for public share links" : "Nem lehet módosítani a nyilvános megosztási hivatkozások jogosultságait", "Cannot increase permissions" : "Nem lehet növelni az engedélyeket", + "shared by %s" : "megosztotta %s", + "Download" : "Letöltés", + "Direct link" : "Közvetlen hivatkozás", + "Add to your Nextcloud" : "Add hozzá a Nextcloudodhoz", "Share API is disabled" : "Megosztás API letiltva", + "File sharing" : "Fájlmegosztás", "This share is password-protected" : "Ez egy jelszóval védett megosztás", "The password is wrong. Try again." : "A megadott jelszó nem megfelelő. Próbálja újra!", "Password" : "Jelszó", @@ -99,10 +104,6 @@ "the link expired" : "lejárt a hivatkozás érvényességi ideje", "sharing is disabled" : "letiltásra került a megosztás", "For more info, please ask the person who sent this link." : "További információért fordulj ahhoz, aki ezt a linket küldte neked!", - "shared by %s" : "megosztotta %s", - "Download" : "Letöltés", - "Direct link" : "Közvetlen hivatkozás", - "Add to your Nextcloud" : "Add hozzá a Nextcloudodhoz", "Download %s" : "%s letöltése", "Upload files to %s" : "Fájlok felöltése ide: %s", "Select or drop files" : "Válassz ki vagy dobj ide fájlokat", diff --git a/apps/files_sharing/l10n/id.js b/apps/files_sharing/l10n/id.js index defd548990d27..bedcb0ce3f008 100644 --- a/apps/files_sharing/l10n/id.js +++ b/apps/files_sharing/l10n/id.js @@ -17,47 +17,11 @@ OC.L10N.register( "No expiration date set" : "Tanggal kedaluwarsa tidak diatur", "Shared by" : "Dibagikan oleh", "Sharing" : "Berbagi", - "A file or folder has been shared" : "Sebuah berkas atau folder telah dibagikan", - "A file or folder was shared from another server" : "Sebuah berkas atau folder telah dibagikan dari server lainnya", - "You received a new remote share %2$s from %1$s" : "Anda menerima berbagi remote baru %2$s dari %1$s", - "You received a new remote share from %s" : "Anda menerima berbagi remote baru dari %s", - "%1$s accepted remote share %2$s" : "%1$s menerima berbagi remote %2$s", - "%1$s declined remote share %2$s" : "%1$s menolak berbagi remote %2$s", - "%1$s unshared %2$s from you" : "%1$s menghapus berbagi %2$s dari Anda", - "Public shared folder %1$s was downloaded" : "Folder berbagi publik %1$s telah diunduh", - "Public shared file %1$s was downloaded" : "Berkas berbagi publik %1$s telah diunduh", - "You shared %1$s with %2$s" : "Anda membagikan %1$s dengan %2$s", - "%2$s shared %1$s with %3$s" : "%2$s berbagi %1$s kepada %3$s", - "You removed the share of %2$s for %1$s" : "Anda menghapus pembagian %2$s untuk %1$s", - "%2$s removed the share of %3$s for %1$s" : "%2$s menghapus pembagian %3$s untuk %1$s", - "You shared %1$s with group %2$s" : "Anda membagikan %1$s dengan grup %2$s", - "%2$s shared %1$s with group %3$s" : "%2$s berbagi %1$s kepada grup %3$s", - "You removed the share of group %2$s for %1$s" : "Anda menghapus pembagian grup %2$s untuk %1$s", - "%2$s removed the share of group %3$s for %1$s" : "%2$s menghapus pembagian grup %3$s untuk %1$s", - "%2$s shared %1$s via link" : "%2$s berbagi %1$s via tautan", - "You shared %1$s via link" : "Anda membagikan %1$s via tautan", - "You removed the public link for %1$s" : "Anda menghapus tautan publik untuk %1$s", - "%2$s removed the public link for %1$s" : "%2$s menghapus tautan publik untuk %1$s", - "Your public link for %1$s expired" : "tautan publik Anda untuk %1$s kedaluwarsa", - "The public link of %2$s for %1$s expired" : "tautan publik %2$s untuk %1$s kedaluwarsa", - "%2$s shared %1$s with you" : "%2$s membagikan %1$s dengan Anda", - "%2$s removed the share for %1$s" : "%2$s menghapus pembagian untuk %1$s", "Downloaded via public link" : "Diunduh via tautan publik", - "Shared with %2$s" : "Dibagikan kepada %2$s", - "Shared with %3$s by %2$s" : "Dibagikan kepada %3$s oleh %2$s", - "Removed share for %2$s" : "Menghapus pembagian untuk %2$s", - "%2$s removed share for %3$s" : "%2$s menghapus pembagian untuk %3$s", - "Shared with group %2$s" : "Dibagikan kepada grup %2$s", - "Shared with group %3$s by %2$s" : "Dibagikan kepada grup %3$s oleh %2$s", - "Removed share of group %2$s" : "Menghapus pembagian untuk grup %2$s", - "%2$s removed share of group %3$s" : "%2$s menghapus pembagian untuk grup %3$s", - "Shared via link by %2$s" : "Dibagikan via tautan oleh %2$s", - "Shared via public link" : "Dibagikan via tautan publik", "Removed public link" : "tautan publik dihapus", - "%2$s removed public link" : "%2$s menghapus tautan publik", "Public link expired" : "tautan publik kedaluwarsa", - "Public link of %2$s expired" : "tautan publik untuk %2$s kedaluwarsa", - "Shared by %2$s" : "Dibagikan oleh %2$s", + "A file or folder was shared from another server" : "Sebuah berkas atau folder telah dibagikan dari server lainnya", + "A file or folder has been shared" : "Sebuah berkas atau folder telah dibagikan", "Wrong share ID, share doesn't exist" : "ID pembagian salah, tidak ada yang bisa dibagi", "could not delete share" : "tidak dapat menghapus pembagian", "Could not delete share" : "Tidak dapat menghapus pembagian", @@ -79,10 +43,13 @@ OC.L10N.register( "Wrong or no update parameter given" : "Parameter salah atau tidak diperbarui", "Can't change permissions for public share links" : "Tidak dapat mengubah izin untuk tautan berbagi publik", "Cannot increase permissions" : "Tidak dapat menambah izin", + "Download" : "Unduh", + "Direct link" : "Tautan langsung", + "Add to your Nextcloud" : "Tambahkan ke Nextcloud Anda", "Share API is disabled" : "API pembagian dinonaktifkan", - "This share is password-protected" : "Berbagi ini dilindungi sandi", - "The password is wrong. Try again." : "Sandi salah. Coba lagi", - "Password" : "Sandi", + "This share is password-protected" : "Berbagi ini dilindungi kata sandi", + "The password is wrong. Try again." : "Kata sandi salah. Coba lagi", + "Password" : "Kata sandi", "No entries found in this folder" : "Tidak ada entri yang ditemukan dalam folder ini", "Name" : "Nama", "Share time" : "Waktu berbagi", @@ -93,45 +60,10 @@ OC.L10N.register( "the link expired" : "tautan telah kedaluwarsa", "sharing is disabled" : "berbagi dinonaktifkan", "For more info, please ask the person who sent this link." : "Untuk info lebih lanjut, silakan tanyakan orang yang mengirim tautan ini.", - "Add to your Nextcloud" : "Tambahkan ke Nextcloud Anda", - "Download" : "Unduh", "Download %s" : "Unduh %s", - "Direct link" : "Tautan langsung", "Upload files to %s" : "Unggah berkas ke %s", "Select or drop files" : "Pilih atau drop berkas", "Uploading files…" : "Mengunggah berkas...", - "Uploaded files:" : "Berkas terunggah:", - "A public shared file or folder was downloaded" : "Sebuah berkas atau folder berbagi publik telah diunduh", - "Shares" : "Dibagikan", - "Server to server sharing is not enabled on this server" : "Berbagi server ke server tidak diaktifkan pada server ini", - "The mountpoint name contains invalid characters." : "Nama mount point berisi karakter yang tidak sah.", - "Not allowed to create a federated share with the same user server" : "Tidak diizinkan membuat pembagian terfederasi dengan server pengguna yang sama", - "Invalid or untrusted SSL certificate" : "Sertifikat SSL tidak sah atau tidak terpercaya", - "Could not authenticate to remote share, password might be wrong" : "Tidak dapat mengautentikasi berbagi remote, kata sandi mungkin salah", - "Storage not valid" : "Penyimpanan tidak sah", - "Couldn't add remote share" : "Tidak dapat menambahkan berbagi remote", - "Federated sharing" : "Pembagian terfederasi", - "Do you want to add the remote share {name} from {owner}@{remote}?" : "Apakah Anda ingin menambahkan berbagi remote {name} dari {owner}@{remote}?", - "Remote share" : "Berbagi remote", - "Remote share password" : "Sandi berbagi remote", - "Cancel" : "Batalkan", - "Add remote share" : "Tambah berbagi remote", - "No ownCloud installation (7 or higher) found at {remote}" : "Tidak ditemukan instalasi ownCloud (7 atau lebih tinggi) pada {remote}", - "Invalid ownCloud url" : "URL ownCloud tidak sah", - "You received \"/%2$s\" as a remote share from %1$s" : "Anda menerima \"/%2$s\" sebagai berbagi remote dari %1$s", - "Accept" : "Terima", - "Decline" : "Tolak", - "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Bagikan pada saya melalui #ownCloud Federated Cloud ID saya, lihat %s", - "Share with me through my #ownCloud Federated Cloud ID" : "Bagikan pada saya melalui #ownCloud Federated Cloud ID saya", - "Federated Cloud Sharing" : "Pembagian Awan Terfederasi", - "Open documentation" : "Buka dokumentasi", - "Allow users on this server to send shares to other servers" : "Izinkan para pengguna di server ini untuk mengirimkan berbagi ke server lainnya.", - "Allow users on this server to receive shares from other servers" : "Izinkan para pengguna di server ini untuk menerima berbagi ke server lainnya.", - "Federated Cloud" : "Awan Terfederasi", - "Your Federated Cloud ID:" : "ID Awan Terfederasi Anda:", - "Share it:" : "Bagikan:", - "Add to your website" : "Tambahkan pada situs web Anda", - "Share with me via Nextcloud" : "Bagikan pada saya via Nextcloud", - "HTML Code:" : "Kode HTML:" + "Uploaded files:" : "Berkas terunggah:" }, "nplurals=1; plural=0;"); diff --git a/apps/files_sharing/l10n/id.json b/apps/files_sharing/l10n/id.json index 3afe5892383e4..75c8173db40a7 100644 --- a/apps/files_sharing/l10n/id.json +++ b/apps/files_sharing/l10n/id.json @@ -15,47 +15,11 @@ "No expiration date set" : "Tanggal kedaluwarsa tidak diatur", "Shared by" : "Dibagikan oleh", "Sharing" : "Berbagi", - "A file or folder has been shared" : "Sebuah berkas atau folder telah dibagikan", - "A file or folder was shared from another server" : "Sebuah berkas atau folder telah dibagikan dari server lainnya", - "You received a new remote share %2$s from %1$s" : "Anda menerima berbagi remote baru %2$s dari %1$s", - "You received a new remote share from %s" : "Anda menerima berbagi remote baru dari %s", - "%1$s accepted remote share %2$s" : "%1$s menerima berbagi remote %2$s", - "%1$s declined remote share %2$s" : "%1$s menolak berbagi remote %2$s", - "%1$s unshared %2$s from you" : "%1$s menghapus berbagi %2$s dari Anda", - "Public shared folder %1$s was downloaded" : "Folder berbagi publik %1$s telah diunduh", - "Public shared file %1$s was downloaded" : "Berkas berbagi publik %1$s telah diunduh", - "You shared %1$s with %2$s" : "Anda membagikan %1$s dengan %2$s", - "%2$s shared %1$s with %3$s" : "%2$s berbagi %1$s kepada %3$s", - "You removed the share of %2$s for %1$s" : "Anda menghapus pembagian %2$s untuk %1$s", - "%2$s removed the share of %3$s for %1$s" : "%2$s menghapus pembagian %3$s untuk %1$s", - "You shared %1$s with group %2$s" : "Anda membagikan %1$s dengan grup %2$s", - "%2$s shared %1$s with group %3$s" : "%2$s berbagi %1$s kepada grup %3$s", - "You removed the share of group %2$s for %1$s" : "Anda menghapus pembagian grup %2$s untuk %1$s", - "%2$s removed the share of group %3$s for %1$s" : "%2$s menghapus pembagian grup %3$s untuk %1$s", - "%2$s shared %1$s via link" : "%2$s berbagi %1$s via tautan", - "You shared %1$s via link" : "Anda membagikan %1$s via tautan", - "You removed the public link for %1$s" : "Anda menghapus tautan publik untuk %1$s", - "%2$s removed the public link for %1$s" : "%2$s menghapus tautan publik untuk %1$s", - "Your public link for %1$s expired" : "tautan publik Anda untuk %1$s kedaluwarsa", - "The public link of %2$s for %1$s expired" : "tautan publik %2$s untuk %1$s kedaluwarsa", - "%2$s shared %1$s with you" : "%2$s membagikan %1$s dengan Anda", - "%2$s removed the share for %1$s" : "%2$s menghapus pembagian untuk %1$s", "Downloaded via public link" : "Diunduh via tautan publik", - "Shared with %2$s" : "Dibagikan kepada %2$s", - "Shared with %3$s by %2$s" : "Dibagikan kepada %3$s oleh %2$s", - "Removed share for %2$s" : "Menghapus pembagian untuk %2$s", - "%2$s removed share for %3$s" : "%2$s menghapus pembagian untuk %3$s", - "Shared with group %2$s" : "Dibagikan kepada grup %2$s", - "Shared with group %3$s by %2$s" : "Dibagikan kepada grup %3$s oleh %2$s", - "Removed share of group %2$s" : "Menghapus pembagian untuk grup %2$s", - "%2$s removed share of group %3$s" : "%2$s menghapus pembagian untuk grup %3$s", - "Shared via link by %2$s" : "Dibagikan via tautan oleh %2$s", - "Shared via public link" : "Dibagikan via tautan publik", "Removed public link" : "tautan publik dihapus", - "%2$s removed public link" : "%2$s menghapus tautan publik", "Public link expired" : "tautan publik kedaluwarsa", - "Public link of %2$s expired" : "tautan publik untuk %2$s kedaluwarsa", - "Shared by %2$s" : "Dibagikan oleh %2$s", + "A file or folder was shared from another server" : "Sebuah berkas atau folder telah dibagikan dari server lainnya", + "A file or folder has been shared" : "Sebuah berkas atau folder telah dibagikan", "Wrong share ID, share doesn't exist" : "ID pembagian salah, tidak ada yang bisa dibagi", "could not delete share" : "tidak dapat menghapus pembagian", "Could not delete share" : "Tidak dapat menghapus pembagian", @@ -77,10 +41,13 @@ "Wrong or no update parameter given" : "Parameter salah atau tidak diperbarui", "Can't change permissions for public share links" : "Tidak dapat mengubah izin untuk tautan berbagi publik", "Cannot increase permissions" : "Tidak dapat menambah izin", + "Download" : "Unduh", + "Direct link" : "Tautan langsung", + "Add to your Nextcloud" : "Tambahkan ke Nextcloud Anda", "Share API is disabled" : "API pembagian dinonaktifkan", - "This share is password-protected" : "Berbagi ini dilindungi sandi", - "The password is wrong. Try again." : "Sandi salah. Coba lagi", - "Password" : "Sandi", + "This share is password-protected" : "Berbagi ini dilindungi kata sandi", + "The password is wrong. Try again." : "Kata sandi salah. Coba lagi", + "Password" : "Kata sandi", "No entries found in this folder" : "Tidak ada entri yang ditemukan dalam folder ini", "Name" : "Nama", "Share time" : "Waktu berbagi", @@ -91,45 +58,10 @@ "the link expired" : "tautan telah kedaluwarsa", "sharing is disabled" : "berbagi dinonaktifkan", "For more info, please ask the person who sent this link." : "Untuk info lebih lanjut, silakan tanyakan orang yang mengirim tautan ini.", - "Add to your Nextcloud" : "Tambahkan ke Nextcloud Anda", - "Download" : "Unduh", "Download %s" : "Unduh %s", - "Direct link" : "Tautan langsung", "Upload files to %s" : "Unggah berkas ke %s", "Select or drop files" : "Pilih atau drop berkas", "Uploading files…" : "Mengunggah berkas...", - "Uploaded files:" : "Berkas terunggah:", - "A public shared file or folder was downloaded" : "Sebuah berkas atau folder berbagi publik telah diunduh", - "Shares" : "Dibagikan", - "Server to server sharing is not enabled on this server" : "Berbagi server ke server tidak diaktifkan pada server ini", - "The mountpoint name contains invalid characters." : "Nama mount point berisi karakter yang tidak sah.", - "Not allowed to create a federated share with the same user server" : "Tidak diizinkan membuat pembagian terfederasi dengan server pengguna yang sama", - "Invalid or untrusted SSL certificate" : "Sertifikat SSL tidak sah atau tidak terpercaya", - "Could not authenticate to remote share, password might be wrong" : "Tidak dapat mengautentikasi berbagi remote, kata sandi mungkin salah", - "Storage not valid" : "Penyimpanan tidak sah", - "Couldn't add remote share" : "Tidak dapat menambahkan berbagi remote", - "Federated sharing" : "Pembagian terfederasi", - "Do you want to add the remote share {name} from {owner}@{remote}?" : "Apakah Anda ingin menambahkan berbagi remote {name} dari {owner}@{remote}?", - "Remote share" : "Berbagi remote", - "Remote share password" : "Sandi berbagi remote", - "Cancel" : "Batalkan", - "Add remote share" : "Tambah berbagi remote", - "No ownCloud installation (7 or higher) found at {remote}" : "Tidak ditemukan instalasi ownCloud (7 atau lebih tinggi) pada {remote}", - "Invalid ownCloud url" : "URL ownCloud tidak sah", - "You received \"/%2$s\" as a remote share from %1$s" : "Anda menerima \"/%2$s\" sebagai berbagi remote dari %1$s", - "Accept" : "Terima", - "Decline" : "Tolak", - "Share with me through my #ownCloud Federated Cloud ID, see %s" : "Bagikan pada saya melalui #ownCloud Federated Cloud ID saya, lihat %s", - "Share with me through my #ownCloud Federated Cloud ID" : "Bagikan pada saya melalui #ownCloud Federated Cloud ID saya", - "Federated Cloud Sharing" : "Pembagian Awan Terfederasi", - "Open documentation" : "Buka dokumentasi", - "Allow users on this server to send shares to other servers" : "Izinkan para pengguna di server ini untuk mengirimkan berbagi ke server lainnya.", - "Allow users on this server to receive shares from other servers" : "Izinkan para pengguna di server ini untuk menerima berbagi ke server lainnya.", - "Federated Cloud" : "Awan Terfederasi", - "Your Federated Cloud ID:" : "ID Awan Terfederasi Anda:", - "Share it:" : "Bagikan:", - "Add to your website" : "Tambahkan pada situs web Anda", - "Share with me via Nextcloud" : "Bagikan pada saya via Nextcloud", - "HTML Code:" : "Kode HTML:" + "Uploaded files:" : "Berkas terunggah:" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/is.js b/apps/files_sharing/l10n/is.js index 1a30960d8e6f9..e4c9044fbac9a 100644 --- a/apps/files_sharing/l10n/is.js +++ b/apps/files_sharing/l10n/is.js @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "Rangt eða ekkert uppfærsluviðfang gefið", "Can't change permissions for public share links" : "Ekki tókst að breyta aðgangsheimildum fyrir opinbera deilingartengla", "Cannot increase permissions" : "Get ekki aukið aðgangsheimildir", + "shared by %s" : "Deilt af %s", + "Download" : "Niðurhal", + "Direct link" : "Beinn tengill", + "Add to your Nextcloud" : "Bæta í þitt eigið Nextcloud", "Share API is disabled" : "Deilingar-API er óvirkt", + "File sharing" : "Skráadeiling", "This share is password-protected" : "Þessi sameign er varin með lykilorði", "The password is wrong. Try again." : "Lykilorðið er rangt. Reyndu aftur.", "Password" : "Lykilorð", @@ -101,10 +106,6 @@ OC.L10N.register( "the link expired" : "tengillinn er útrunninn", "sharing is disabled" : "slökkt er á skráadeilingu", "For more info, please ask the person who sent this link." : "Til að vita meira skaltu hafa samband við þann sem sendi þér þennan tengil.", - "shared by %s" : "Deilt af %s", - "Download" : "Niðurhal", - "Direct link" : "Beinn tengill", - "Add to your Nextcloud" : "Bæta í þitt eigið Nextcloud", "Download %s" : "Sækja %s", "Upload files to %s" : "Senda inn skrár á %s", "Select or drop files" : "Veldu eða slepptu skrám", diff --git a/apps/files_sharing/l10n/is.json b/apps/files_sharing/l10n/is.json index 95756d1b5092e..86f98859422b0 100644 --- a/apps/files_sharing/l10n/is.json +++ b/apps/files_sharing/l10n/is.json @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "Rangt eða ekkert uppfærsluviðfang gefið", "Can't change permissions for public share links" : "Ekki tókst að breyta aðgangsheimildum fyrir opinbera deilingartengla", "Cannot increase permissions" : "Get ekki aukið aðgangsheimildir", + "shared by %s" : "Deilt af %s", + "Download" : "Niðurhal", + "Direct link" : "Beinn tengill", + "Add to your Nextcloud" : "Bæta í þitt eigið Nextcloud", "Share API is disabled" : "Deilingar-API er óvirkt", + "File sharing" : "Skráadeiling", "This share is password-protected" : "Þessi sameign er varin með lykilorði", "The password is wrong. Try again." : "Lykilorðið er rangt. Reyndu aftur.", "Password" : "Lykilorð", @@ -99,10 +104,6 @@ "the link expired" : "tengillinn er útrunninn", "sharing is disabled" : "slökkt er á skráadeilingu", "For more info, please ask the person who sent this link." : "Til að vita meira skaltu hafa samband við þann sem sendi þér þennan tengil.", - "shared by %s" : "Deilt af %s", - "Download" : "Niðurhal", - "Direct link" : "Beinn tengill", - "Add to your Nextcloud" : "Bæta í þitt eigið Nextcloud", "Download %s" : "Sækja %s", "Upload files to %s" : "Senda inn skrár á %s", "Select or drop files" : "Veldu eða slepptu skrám", diff --git a/apps/files_sharing/l10n/it.js b/apps/files_sharing/l10n/it.js index 8285964c9ad40..343157a102e80 100644 --- a/apps/files_sharing/l10n/it.js +++ b/apps/files_sharing/l10n/it.js @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "Parametro fornito non valido o non di aggiornamento", "Can't change permissions for public share links" : "Impossibile cambiare i permessi per i collegamenti di condivisione pubblici", "Cannot increase permissions" : "Impossibile aumentare i permessi", + "shared by %s" : "condiviso da %s", + "Download" : "Scarica", + "Direct link" : "Collegamento diretto", + "Add to your Nextcloud" : "Aggiungi al tuo Nextcloud", "Share API is disabled" : "API di condivisione disabilitate", + "File sharing" : "Condivisione di file", "This share is password-protected" : "Questa condivisione è protetta da password", "The password is wrong. Try again." : "La password è errata. Prova ancora.", "Password" : "Password", @@ -101,10 +106,6 @@ OC.L10N.register( "the link expired" : "il collegamento è scaduto", "sharing is disabled" : "la condivisione è disabilitata", "For more info, please ask the person who sent this link." : "Per ulteriori informazioni, chiedi alla persona che ti ha inviato il collegamento.", - "shared by %s" : "condiviso da %s", - "Download" : "Scarica", - "Direct link" : "Collegamento diretto", - "Add to your Nextcloud" : "Aggiungi al tuo Nextcloud", "Download %s" : "Scarica %s", "Upload files to %s" : "Carica file su %s", "Select or drop files" : "Seleziona o deseleziona file", diff --git a/apps/files_sharing/l10n/it.json b/apps/files_sharing/l10n/it.json index 01725c8b2c350..a1f51dd7f9e29 100644 --- a/apps/files_sharing/l10n/it.json +++ b/apps/files_sharing/l10n/it.json @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "Parametro fornito non valido o non di aggiornamento", "Can't change permissions for public share links" : "Impossibile cambiare i permessi per i collegamenti di condivisione pubblici", "Cannot increase permissions" : "Impossibile aumentare i permessi", + "shared by %s" : "condiviso da %s", + "Download" : "Scarica", + "Direct link" : "Collegamento diretto", + "Add to your Nextcloud" : "Aggiungi al tuo Nextcloud", "Share API is disabled" : "API di condivisione disabilitate", + "File sharing" : "Condivisione di file", "This share is password-protected" : "Questa condivisione è protetta da password", "The password is wrong. Try again." : "La password è errata. Prova ancora.", "Password" : "Password", @@ -99,10 +104,6 @@ "the link expired" : "il collegamento è scaduto", "sharing is disabled" : "la condivisione è disabilitata", "For more info, please ask the person who sent this link." : "Per ulteriori informazioni, chiedi alla persona che ti ha inviato il collegamento.", - "shared by %s" : "condiviso da %s", - "Download" : "Scarica", - "Direct link" : "Collegamento diretto", - "Add to your Nextcloud" : "Aggiungi al tuo Nextcloud", "Download %s" : "Scarica %s", "Upload files to %s" : "Carica file su %s", "Select or drop files" : "Seleziona o deseleziona file", diff --git a/apps/files_sharing/l10n/ja.js b/apps/files_sharing/l10n/ja.js index f105aad203540..37af8a1604265 100644 --- a/apps/files_sharing/l10n/ja.js +++ b/apps/files_sharing/l10n/ja.js @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "間違っている、もしくはパラメータが更新されていません", "Can't change permissions for public share links" : "URLリンク共有のパーミッションを変更できません", "Cannot increase permissions" : "パーミッションを追加できません", + "shared by %s" : "%s が共有", + "Download" : "ダウンロード", + "Direct link" : "リンク", + "Add to your Nextcloud" : "あなたのNextcloudに追加", "Share API is disabled" : "共有APIが無効です。", + "File sharing" : "ファイル共有", "This share is password-protected" : "この共有はパスワードで保護されています", "The password is wrong. Try again." : "パスワードが間違っています。再試行してください。", "Password" : "パスワード", @@ -101,10 +106,6 @@ OC.L10N.register( "the link expired" : "リンクの期限が切れています", "sharing is disabled" : "共有は無効になっています", "For more info, please ask the person who sent this link." : "不明な点は、こちらのリンクの提供者に確認をお願いします。", - "shared by %s" : "%s が共有", - "Download" : "ダウンロード", - "Direct link" : "リンク", - "Add to your Nextcloud" : "あなたのNextcloudに追加", "Download %s" : "%s をダウンロード", "Upload files to %s" : "%s にファイルをアップロード", "Select or drop files" : "ファイルを選択するか、ドラッグ&ドロップしてください", diff --git a/apps/files_sharing/l10n/ja.json b/apps/files_sharing/l10n/ja.json index 33861a19427e2..c6078b384b733 100644 --- a/apps/files_sharing/l10n/ja.json +++ b/apps/files_sharing/l10n/ja.json @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "間違っている、もしくはパラメータが更新されていません", "Can't change permissions for public share links" : "URLリンク共有のパーミッションを変更できません", "Cannot increase permissions" : "パーミッションを追加できません", + "shared by %s" : "%s が共有", + "Download" : "ダウンロード", + "Direct link" : "リンク", + "Add to your Nextcloud" : "あなたのNextcloudに追加", "Share API is disabled" : "共有APIが無効です。", + "File sharing" : "ファイル共有", "This share is password-protected" : "この共有はパスワードで保護されています", "The password is wrong. Try again." : "パスワードが間違っています。再試行してください。", "Password" : "パスワード", @@ -99,10 +104,6 @@ "the link expired" : "リンクの期限が切れています", "sharing is disabled" : "共有は無効になっています", "For more info, please ask the person who sent this link." : "不明な点は、こちらのリンクの提供者に確認をお願いします。", - "shared by %s" : "%s が共有", - "Download" : "ダウンロード", - "Direct link" : "リンク", - "Add to your Nextcloud" : "あなたのNextcloudに追加", "Download %s" : "%s をダウンロード", "Upload files to %s" : "%s にファイルをアップロード", "Select or drop files" : "ファイルを選択するか、ドラッグ&ドロップしてください", diff --git a/apps/files_sharing/l10n/ka_GE.js b/apps/files_sharing/l10n/ka_GE.js index 53a582528a8fc..9216347a76480 100644 --- a/apps/files_sharing/l10n/ka_GE.js +++ b/apps/files_sharing/l10n/ka_GE.js @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "არასწორი ან განახლების პარამეტრის არარსებობა", "Can't change permissions for public share links" : "უფლებები საზოგადოდ გაზიარებულ ბმულზე ვერ შეიცვალა", "Cannot increase permissions" : "უფლებების გაზრდა ვერ მოხერხდა", + "shared by %s" : "გააზიარა მომხმარებელმა %s", + "Download" : "ჩამოტვირთვა", + "Direct link" : "პირდაპირი ბმული", + "Add to your Nextcloud" : "თქვენს Nextcloud-ში დამატება", "Share API is disabled" : "გაზიარების API არაა მოქმედი", + "File sharing" : "ფაილების გაზიარება", "This share is password-protected" : "ეს გაზიარება დაცულია პაროლით", "The password is wrong. Try again." : "პაროლი არასწორია. სცადეთ ახლიდან", "Password" : "პაროლი", @@ -101,10 +106,6 @@ OC.L10N.register( "the link expired" : "ბმულს ვადა გაუვიდა", "sharing is disabled" : "გაზიარება არაა მოქმედი", "For more info, please ask the person who sent this link." : "მეტი ინფრმაციისთვის, გთხოვთ ჰკითხოთ ადამიანს ვინც გამოგიგზავნათ ეს ბმული.", - "shared by %s" : "გააზიარა მომხმარებელმა %s", - "Download" : "ჩამოტვირთვა", - "Direct link" : "პირდაპირი ბმული", - "Add to your Nextcloud" : "თქვენს Nextcloud-ში დამატება", "Download %s" : "%s-ის ჩამოტვირთვა", "Upload files to %s" : "ფაილების ატვირთვა %s-ში", "Select or drop files" : "აირჩიეთ ან გადმოიტანეთ ფაილები", diff --git a/apps/files_sharing/l10n/ka_GE.json b/apps/files_sharing/l10n/ka_GE.json index b104766ac3f57..a8ba3ee199681 100644 --- a/apps/files_sharing/l10n/ka_GE.json +++ b/apps/files_sharing/l10n/ka_GE.json @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "არასწორი ან განახლების პარამეტრის არარსებობა", "Can't change permissions for public share links" : "უფლებები საზოგადოდ გაზიარებულ ბმულზე ვერ შეიცვალა", "Cannot increase permissions" : "უფლებების გაზრდა ვერ მოხერხდა", + "shared by %s" : "გააზიარა მომხმარებელმა %s", + "Download" : "ჩამოტვირთვა", + "Direct link" : "პირდაპირი ბმული", + "Add to your Nextcloud" : "თქვენს Nextcloud-ში დამატება", "Share API is disabled" : "გაზიარების API არაა მოქმედი", + "File sharing" : "ფაილების გაზიარება", "This share is password-protected" : "ეს გაზიარება დაცულია პაროლით", "The password is wrong. Try again." : "პაროლი არასწორია. სცადეთ ახლიდან", "Password" : "პაროლი", @@ -99,10 +104,6 @@ "the link expired" : "ბმულს ვადა გაუვიდა", "sharing is disabled" : "გაზიარება არაა მოქმედი", "For more info, please ask the person who sent this link." : "მეტი ინფრმაციისთვის, გთხოვთ ჰკითხოთ ადამიანს ვინც გამოგიგზავნათ ეს ბმული.", - "shared by %s" : "გააზიარა მომხმარებელმა %s", - "Download" : "ჩამოტვირთვა", - "Direct link" : "პირდაპირი ბმული", - "Add to your Nextcloud" : "თქვენს Nextcloud-ში დამატება", "Download %s" : "%s-ის ჩამოტვირთვა", "Upload files to %s" : "ფაილების ატვირთვა %s-ში", "Select or drop files" : "აირჩიეთ ან გადმოიტანეთ ფაილები", diff --git a/apps/files_sharing/l10n/ko.js b/apps/files_sharing/l10n/ko.js index 5f8e4374ab802..d8212cd20b303 100644 --- a/apps/files_sharing/l10n/ko.js +++ b/apps/files_sharing/l10n/ko.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "업데이트 인자가 잘못되었거나 지정되지 않았음", "Can't change permissions for public share links" : "공개 공유 링크의 권한을 변경할 수 없음", "Cannot increase permissions" : "권한을 늘릴 수 없음", + "shared by %s" : "%s에 의해 공유됨", + "Download" : "다운로드", + "Direct link" : "직접 링크", + "Add to your Nextcloud" : "내 Nextcloud에 추가", "Share API is disabled" : "공유 API가 비활성화됨", "This share is password-protected" : "이 공유는 암호로 보호되어 있습니다", "The password is wrong. Try again." : "암호가 잘못되었습니다. 다시 입력해 주십시오.", @@ -101,10 +105,6 @@ OC.L10N.register( "the link expired" : "링크가 만료됨", "sharing is disabled" : "공유가 비활성화됨", "For more info, please ask the person who sent this link." : "자세한 정보는 링크를 보낸 사람에게 문의하십시오.", - "shared by %s" : "%s에 의해 공유됨", - "Download" : "다운로드", - "Direct link" : "직접 링크", - "Add to your Nextcloud" : "내 Nextcloud에 추가", "Download %s" : "%s 다운로드", "Upload files to %s" : "%s에 파일 업로드", "Select or drop files" : "파일을 선택하거나 끌어다 놓기", diff --git a/apps/files_sharing/l10n/ko.json b/apps/files_sharing/l10n/ko.json index 00c5d8b954a74..c64b4d1bb50dd 100644 --- a/apps/files_sharing/l10n/ko.json +++ b/apps/files_sharing/l10n/ko.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "업데이트 인자가 잘못되었거나 지정되지 않았음", "Can't change permissions for public share links" : "공개 공유 링크의 권한을 변경할 수 없음", "Cannot increase permissions" : "권한을 늘릴 수 없음", + "shared by %s" : "%s에 의해 공유됨", + "Download" : "다운로드", + "Direct link" : "직접 링크", + "Add to your Nextcloud" : "내 Nextcloud에 추가", "Share API is disabled" : "공유 API가 비활성화됨", "This share is password-protected" : "이 공유는 암호로 보호되어 있습니다", "The password is wrong. Try again." : "암호가 잘못되었습니다. 다시 입력해 주십시오.", @@ -99,10 +103,6 @@ "the link expired" : "링크가 만료됨", "sharing is disabled" : "공유가 비활성화됨", "For more info, please ask the person who sent this link." : "자세한 정보는 링크를 보낸 사람에게 문의하십시오.", - "shared by %s" : "%s에 의해 공유됨", - "Download" : "다운로드", - "Direct link" : "직접 링크", - "Add to your Nextcloud" : "내 Nextcloud에 추가", "Download %s" : "%s 다운로드", "Upload files to %s" : "%s에 파일 업로드", "Select or drop files" : "파일을 선택하거나 끌어다 놓기", diff --git a/apps/files_sharing/l10n/lt_LT.js b/apps/files_sharing/l10n/lt_LT.js index 190ccc6f6de11..5fa75c104171e 100644 --- a/apps/files_sharing/l10n/lt_LT.js +++ b/apps/files_sharing/l10n/lt_LT.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "Neperduoti atnaujinimo parametrai", "Can't change permissions for public share links" : "Negalima keisti leidimų viešai bendrinamoms nuorodoms", "Cannot increase permissions" : "Negalima pridėti papildomų leidimų", + "shared by %s" : "pasidalino %s", + "Download" : "Atsisiųsti", + "Direct link" : "Tiesioginė nuoroda", + "Add to your Nextcloud" : "Pridėti į jūsų NextCloud", "Share API is disabled" : "Bendrinimo API yra išjungtas", "This share is password-protected" : "Turinys apsaugotas slaptažodžiu", "The password is wrong. Try again." : "Slaptažodis neteisingas. Bandykite dar kartą.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "baigėsi nuorodos galiojimo laikas", "sharing is disabled" : "dalinimasis yra išjungtas", "For more info, please ask the person who sent this link." : "Dėl tikslesnės informacijos susisiekite su asmeniu atsiuntusiu nuorodą.", - "shared by %s" : "pasidalino %s", - "Download" : "Atsisiųsti", - "Direct link" : "Tiesioginė nuoroda", - "Add to your Nextcloud" : "Pridėti į jūsų NextCloud", "Download %s" : "Atsisiųsti %s", "Upload files to %s" : "Įkelti duomenis į %s", "Select or drop files" : "Pasirinkite arba vilkite failus", "Uploading files…" : "Įkeliami failai…", - "Uploaded files:" : "Įkelti failai:", - "%s is publicly shared" : "%s yra bendrinamas viešai" + "Uploaded files:" : "Įkelti failai:" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/files_sharing/l10n/lt_LT.json b/apps/files_sharing/l10n/lt_LT.json index 5b6e8a5ec0fe0..5764613a2ff81 100644 --- a/apps/files_sharing/l10n/lt_LT.json +++ b/apps/files_sharing/l10n/lt_LT.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "Neperduoti atnaujinimo parametrai", "Can't change permissions for public share links" : "Negalima keisti leidimų viešai bendrinamoms nuorodoms", "Cannot increase permissions" : "Negalima pridėti papildomų leidimų", + "shared by %s" : "pasidalino %s", + "Download" : "Atsisiųsti", + "Direct link" : "Tiesioginė nuoroda", + "Add to your Nextcloud" : "Pridėti į jūsų NextCloud", "Share API is disabled" : "Bendrinimo API yra išjungtas", "This share is password-protected" : "Turinys apsaugotas slaptažodžiu", "The password is wrong. Try again." : "Slaptažodis neteisingas. Bandykite dar kartą.", @@ -99,15 +103,10 @@ "the link expired" : "baigėsi nuorodos galiojimo laikas", "sharing is disabled" : "dalinimasis yra išjungtas", "For more info, please ask the person who sent this link." : "Dėl tikslesnės informacijos susisiekite su asmeniu atsiuntusiu nuorodą.", - "shared by %s" : "pasidalino %s", - "Download" : "Atsisiųsti", - "Direct link" : "Tiesioginė nuoroda", - "Add to your Nextcloud" : "Pridėti į jūsų NextCloud", "Download %s" : "Atsisiųsti %s", "Upload files to %s" : "Įkelti duomenis į %s", "Select or drop files" : "Pasirinkite arba vilkite failus", "Uploading files…" : "Įkeliami failai…", - "Uploaded files:" : "Įkelti failai:", - "%s is publicly shared" : "%s yra bendrinamas viešai" + "Uploaded files:" : "Įkelti failai:" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/lv.js b/apps/files_sharing/l10n/lv.js index edbdb89fe89ed..7e128e1c77489 100644 --- a/apps/files_sharing/l10n/lv.js +++ b/apps/files_sharing/l10n/lv.js @@ -1,36 +1,47 @@ OC.L10N.register( "files_sharing", { - "Server to server sharing is not enabled on this server" : "Šajā serverī koplietošana starp serveriem nav ieslēgta", - "The mountpoint name contains invalid characters." : "Montēšanas punkta nosaukums satur nederīgus simbolus.", - "Invalid or untrusted SSL certificate" : "Nepareizs vai neuzticams SSL sertifikāts", - "Could not authenticate to remote share, password might be wrong" : "Nesanāca autentificēties pie attālinātās koplietotnes, parole varētu būt nepareiza", - "Storage not valid" : "Glabātuve nav derīga", - "Couldn't add remote share" : "Nevarēja pievienot attālināto koplietotni", "Shared with you" : "Koplietots ar tevi", "Shared with others" : "Koplietots ar citiem", "Shared by link" : "Koplietots ar saiti", "Nothing shared with you yet" : "Nekas vēl nav koplietots", - "Files and folders others share with you will show up here" : "Faili un mapes, ko citi koplietos ar tevi, tiks rādīti šeit", + "Files and folders others share with you will show up here" : "Datnes un mapes, ko citi koplietos ar tevi, tiks rādīti šeit", "Nothing shared yet" : "Nekas vēl nav koplietots", - "Files and folders you share will show up here" : "Faili un mapes, ko koplietosi ar citiem, tiks rādīti šeit", + "Files and folders you share will show up here" : "Datnes un mapes, ko koplietosi ar citiem, tiks rādīti šeit", "No shared links" : "Nav koplietotu saišu", - "Files and folders you share by link will show up here" : "Faili un mapes, ko koplietosit ar saitēm, tiks rādīti šeit", - "Do you want to add the remote share {name} from {owner}@{remote}?" : "Vai vēlaties pievienot attālināto koplietotni {name} no {owner}@{remote}?", - "Remote share" : "Attālinātā koplietotne", - "Remote share password" : "Attālinātās koplietotnes parole", - "Cancel" : "Atcelt", - "Add remote share" : "Pievienot attālināto koplietotni", + "Files and folders you share by link will show up here" : "Datnes un mapes, ko koplietosi ar saitēm, tiks rādīti šeit", "You can upload into this folder" : "Jūs variet augšuplādēt šajā mapē", - "No ownCloud installation (7 or higher) found at {remote}" : "Nav atrasta neviena ownCloud (7. vai augstāka) instalācija {remote}", - "Invalid ownCloud url" : "Nederīga ownCloud saite", - "Shared by" : "Dalījās", - "Sharing" : "Dalīšanās", - "Share API is disabled" : "Koplietošanas API ir atslēgta", + "No compatible server found at {remote}" : "Nav atrasts neviens saderīgs serveris {remote}", + "Invalid server URL" : "Nederīgs servera url", + "Failed to add the public link to your Nextcloud" : "Neizdevās pievienot publisku saiti jūsu Nextcloud", + "Share" : "Koplietot", + "No expiration date set" : "Nav noteikts derīguma termiņa beigu datums", + "Shared by" : "Koplietoja", + "Sharing" : "Koplietošana", + "File shares" : "Datņu koplietojumi", + "Downloaded via public link" : "Lejupielādēt izmantojot publisku saiti", + "Downloaded by {email}" : "Lejupielādēts {email}", + "{file} downloaded via public link" : "{file} lejupielādēts izmantojot publisku saiti", + "{email} downloaded {file}" : "{email} lejupielādēts {file}", + "Shared with group {group}" : "Koplietots ar grupu {group}", + "{actor} removed group {group} from {file}" : "{actor} noņēma grupu {group} no {file}", + "Shared as public link" : "Koplietots kā publiska saite", + "Removed public link" : "Noņemta publiska saite", + "Shared with {user}" : "Koplietots ar {user}", + "{actor} shared with {user}" : "{actor} koplieto ar {user}", + "Shared by {actor}" : "Koplietoja {actor}", + "{actor} removed {user} from {file}" : "{actor} noņemts {user} no {file}", + "{actor} shared {file} with you" : "{actor} koplietots {file} ar jums", + "{actor} removed you from {file}" : "{actor} noņēma jūs no {file}", + "A file or folder was shared from another server" : "Datne vai mape tika koplietota no cita servera", + "A file or folder has been shared" : "Koplietota datne vai mape", "Wrong share ID, share doesn't exist" : "Nepareizs koplietošanas ID, koplietotne neeksistē", + "could not delete share" : "neizdevās dzēst koplietotni", "Could not delete share" : "Neizdevās dzēst koplietotni", "Please specify a file or folder path" : "Lūdzu norādiet datnes vai mapes ceļu", "Wrong path, file/folder doesn't exist" : "Nepareizs ceļš, datne/mape neeksistē", + "Could not create share" : "Nevar izveidot koplietošanu", + "invalid permissions" : "Nederīgas atļaujas", "Please specify a valid user" : "Lūdzu norādiet derīgu lietotāju", "Group sharing is disabled by the administrator" : "Administrators grupas koplietošanu ir atslēdzis", "Please specify a valid group" : "Lūdzu norādiet derīgu grupu", @@ -39,45 +50,29 @@ OC.L10N.register( "Public upload is only possible for publicly shared folders" : "Publiska augšupielāde iespējama tikai publiski koplietotām mapēm", "Invalid date, date format must be YYYY-MM-DD" : "Nepareizs datums, datumam jābūt YYYY-MM-DD formātā", "Unknown share type" : "Nezināms koplietošanas tips", + "Not a directory" : "Nav direktorijs", "Could not lock path" : "Nevarēja bloķēt ceļu", "Can't change permissions for public share links" : "Publiskai koplietošanas saitei nevar mainīt tiesības", "Cannot increase permissions" : "Nevar palielināt tiesības", - "A file or folder has been shared" : "Koplietota fails vai mape", - "A file or folder was shared from another server" : "Fails vai mape tika koplietota no cita servera", - "A public shared file or folder was downloaded" : "Publiski koplietots fails vai mape tika lejupielādēts", - "You received a new remote share %2$s from %1$s" : "Jūs saņēmāt jaunu attālinātu koplietotni %2$s no %1$s", - "You received a new remote share from %s" : "Saņēmāt jaunu attālinātu koplietotni no %s", - "%1$s accepted remote share %2$s" : "%1$s apstiprināja attālināto koplietotni %2$s", - "%1$s declined remote share %2$s" : "%1$s noraidīja attālināto koplietotni %2$s", - "%1$s unshared %2$s from you" : "%1$s atslēdza koplietošanu %2$s ar tevi", - "Public shared folder %1$s was downloaded" : "Publiski koplietota mape %1$s tika lejupielādēta", - "Public shared file %1$s was downloaded" : "Publiski koplietots fails %1$s tika lejupielādēts", - "You shared %1$s with %2$s" : "Tu koplietoji %1$s ar %2$s", - "%2$s shared %1$s with %3$s" : "%2$s koplietots %1$s ar %3$s", - "You removed the share of %2$s for %1$s" : "Tu noņēmi koplietošanu no %2$s priekš %1$s", - "%2$s removed the share of %3$s for %1$s" : "%2$s noņēma koplietošanu no %3$s priekš %1$s", - "You shared %1$s with group %2$s" : "Tu koplietoji %1$s ar grupu %2$s", - "%2$s shared %1$s with group %3$s" : "%2$s koplietots %1$s ar grupu %3$s", - "You removed the share of group %2$s for %1$s" : "Tu noņēmi koplietošanu no grupas %2$s priekš %1$s", - "%2$s removed the share of group %3$s for %1$s" : "%2$s noņēma koplietošanu no gruapas %3$s priekš %1$s", - "You shared %1$s via link" : "Tu koplietoji %1$s , izmantojot saiti", - "%2$s shared %1$s with you" : "%2$s koplietoja %1$s ar tevi", - "Shares" : "Koplietotie", + "Download" : "Lejupielādēt", + "Direct link" : "Tiešā saite", + "Add to your Nextcloud" : "Pievienot savam Nextcloud", + "Share API is disabled" : "Koplietošanas API ir atslēgta", "This share is password-protected" : "Šī koplietotne ir aizsargāta ar paroli", "The password is wrong. Try again." : "Nepareiza parole. Mēģiniet vēlreiz.", "Password" : "Parole", "No entries found in this folder" : "Šajā mapē nekas nav atrasts", "Name" : "Nosaukums", "Share time" : "Koplietošanas laiks", + "Expiration date" : "Termiņa datums", "Sorry, this link doesn’t seem to work anymore." : "Izskatās, ka šī saite vairs nedarbojas", "Reasons might be:" : "Iespējamie iemesli:", "the item was removed" : "vienums tika dzēsts", "the link expired" : "saitei beidzies termiņš", "sharing is disabled" : "koplietošana nav ieslēgta", "For more info, please ask the person who sent this link." : "Vairāk informācijas vaicā personai, kas nosūtīja šo saiti.", - "Add to your ownCloud" : "Pievienot savam ownCloud", - "Download" : "Lejupielādēt", "Download %s" : "Lejupielādēt %s", - "Direct link" : "Tiešā saite" + "Uploading files…" : "Augšupielādē datnes", + "Uploaded files:" : "Augšupielādēti faili:" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/apps/files_sharing/l10n/lv.json b/apps/files_sharing/l10n/lv.json index 74fc7041409f6..8d2ef021ee4b9 100644 --- a/apps/files_sharing/l10n/lv.json +++ b/apps/files_sharing/l10n/lv.json @@ -1,34 +1,45 @@ { "translations": { - "Server to server sharing is not enabled on this server" : "Šajā serverī koplietošana starp serveriem nav ieslēgta", - "The mountpoint name contains invalid characters." : "Montēšanas punkta nosaukums satur nederīgus simbolus.", - "Invalid or untrusted SSL certificate" : "Nepareizs vai neuzticams SSL sertifikāts", - "Could not authenticate to remote share, password might be wrong" : "Nesanāca autentificēties pie attālinātās koplietotnes, parole varētu būt nepareiza", - "Storage not valid" : "Glabātuve nav derīga", - "Couldn't add remote share" : "Nevarēja pievienot attālināto koplietotni", "Shared with you" : "Koplietots ar tevi", "Shared with others" : "Koplietots ar citiem", "Shared by link" : "Koplietots ar saiti", "Nothing shared with you yet" : "Nekas vēl nav koplietots", - "Files and folders others share with you will show up here" : "Faili un mapes, ko citi koplietos ar tevi, tiks rādīti šeit", + "Files and folders others share with you will show up here" : "Datnes un mapes, ko citi koplietos ar tevi, tiks rādīti šeit", "Nothing shared yet" : "Nekas vēl nav koplietots", - "Files and folders you share will show up here" : "Faili un mapes, ko koplietosi ar citiem, tiks rādīti šeit", + "Files and folders you share will show up here" : "Datnes un mapes, ko koplietosi ar citiem, tiks rādīti šeit", "No shared links" : "Nav koplietotu saišu", - "Files and folders you share by link will show up here" : "Faili un mapes, ko koplietosit ar saitēm, tiks rādīti šeit", - "Do you want to add the remote share {name} from {owner}@{remote}?" : "Vai vēlaties pievienot attālināto koplietotni {name} no {owner}@{remote}?", - "Remote share" : "Attālinātā koplietotne", - "Remote share password" : "Attālinātās koplietotnes parole", - "Cancel" : "Atcelt", - "Add remote share" : "Pievienot attālināto koplietotni", + "Files and folders you share by link will show up here" : "Datnes un mapes, ko koplietosi ar saitēm, tiks rādīti šeit", "You can upload into this folder" : "Jūs variet augšuplādēt šajā mapē", - "No ownCloud installation (7 or higher) found at {remote}" : "Nav atrasta neviena ownCloud (7. vai augstāka) instalācija {remote}", - "Invalid ownCloud url" : "Nederīga ownCloud saite", - "Shared by" : "Dalījās", - "Sharing" : "Dalīšanās", - "Share API is disabled" : "Koplietošanas API ir atslēgta", + "No compatible server found at {remote}" : "Nav atrasts neviens saderīgs serveris {remote}", + "Invalid server URL" : "Nederīgs servera url", + "Failed to add the public link to your Nextcloud" : "Neizdevās pievienot publisku saiti jūsu Nextcloud", + "Share" : "Koplietot", + "No expiration date set" : "Nav noteikts derīguma termiņa beigu datums", + "Shared by" : "Koplietoja", + "Sharing" : "Koplietošana", + "File shares" : "Datņu koplietojumi", + "Downloaded via public link" : "Lejupielādēt izmantojot publisku saiti", + "Downloaded by {email}" : "Lejupielādēts {email}", + "{file} downloaded via public link" : "{file} lejupielādēts izmantojot publisku saiti", + "{email} downloaded {file}" : "{email} lejupielādēts {file}", + "Shared with group {group}" : "Koplietots ar grupu {group}", + "{actor} removed group {group} from {file}" : "{actor} noņēma grupu {group} no {file}", + "Shared as public link" : "Koplietots kā publiska saite", + "Removed public link" : "Noņemta publiska saite", + "Shared with {user}" : "Koplietots ar {user}", + "{actor} shared with {user}" : "{actor} koplieto ar {user}", + "Shared by {actor}" : "Koplietoja {actor}", + "{actor} removed {user} from {file}" : "{actor} noņemts {user} no {file}", + "{actor} shared {file} with you" : "{actor} koplietots {file} ar jums", + "{actor} removed you from {file}" : "{actor} noņēma jūs no {file}", + "A file or folder was shared from another server" : "Datne vai mape tika koplietota no cita servera", + "A file or folder has been shared" : "Koplietota datne vai mape", "Wrong share ID, share doesn't exist" : "Nepareizs koplietošanas ID, koplietotne neeksistē", + "could not delete share" : "neizdevās dzēst koplietotni", "Could not delete share" : "Neizdevās dzēst koplietotni", "Please specify a file or folder path" : "Lūdzu norādiet datnes vai mapes ceļu", "Wrong path, file/folder doesn't exist" : "Nepareizs ceļš, datne/mape neeksistē", + "Could not create share" : "Nevar izveidot koplietošanu", + "invalid permissions" : "Nederīgas atļaujas", "Please specify a valid user" : "Lūdzu norādiet derīgu lietotāju", "Group sharing is disabled by the administrator" : "Administrators grupas koplietošanu ir atslēdzis", "Please specify a valid group" : "Lūdzu norādiet derīgu grupu", @@ -37,45 +48,29 @@ "Public upload is only possible for publicly shared folders" : "Publiska augšupielāde iespējama tikai publiski koplietotām mapēm", "Invalid date, date format must be YYYY-MM-DD" : "Nepareizs datums, datumam jābūt YYYY-MM-DD formātā", "Unknown share type" : "Nezināms koplietošanas tips", + "Not a directory" : "Nav direktorijs", "Could not lock path" : "Nevarēja bloķēt ceļu", "Can't change permissions for public share links" : "Publiskai koplietošanas saitei nevar mainīt tiesības", "Cannot increase permissions" : "Nevar palielināt tiesības", - "A file or folder has been shared" : "Koplietota fails vai mape", - "A file or folder was shared from another server" : "Fails vai mape tika koplietota no cita servera", - "A public shared file or folder was downloaded" : "Publiski koplietots fails vai mape tika lejupielādēts", - "You received a new remote share %2$s from %1$s" : "Jūs saņēmāt jaunu attālinātu koplietotni %2$s no %1$s", - "You received a new remote share from %s" : "Saņēmāt jaunu attālinātu koplietotni no %s", - "%1$s accepted remote share %2$s" : "%1$s apstiprināja attālināto koplietotni %2$s", - "%1$s declined remote share %2$s" : "%1$s noraidīja attālināto koplietotni %2$s", - "%1$s unshared %2$s from you" : "%1$s atslēdza koplietošanu %2$s ar tevi", - "Public shared folder %1$s was downloaded" : "Publiski koplietota mape %1$s tika lejupielādēta", - "Public shared file %1$s was downloaded" : "Publiski koplietots fails %1$s tika lejupielādēts", - "You shared %1$s with %2$s" : "Tu koplietoji %1$s ar %2$s", - "%2$s shared %1$s with %3$s" : "%2$s koplietots %1$s ar %3$s", - "You removed the share of %2$s for %1$s" : "Tu noņēmi koplietošanu no %2$s priekš %1$s", - "%2$s removed the share of %3$s for %1$s" : "%2$s noņēma koplietošanu no %3$s priekš %1$s", - "You shared %1$s with group %2$s" : "Tu koplietoji %1$s ar grupu %2$s", - "%2$s shared %1$s with group %3$s" : "%2$s koplietots %1$s ar grupu %3$s", - "You removed the share of group %2$s for %1$s" : "Tu noņēmi koplietošanu no grupas %2$s priekš %1$s", - "%2$s removed the share of group %3$s for %1$s" : "%2$s noņēma koplietošanu no gruapas %3$s priekš %1$s", - "You shared %1$s via link" : "Tu koplietoji %1$s , izmantojot saiti", - "%2$s shared %1$s with you" : "%2$s koplietoja %1$s ar tevi", - "Shares" : "Koplietotie", + "Download" : "Lejupielādēt", + "Direct link" : "Tiešā saite", + "Add to your Nextcloud" : "Pievienot savam Nextcloud", + "Share API is disabled" : "Koplietošanas API ir atslēgta", "This share is password-protected" : "Šī koplietotne ir aizsargāta ar paroli", "The password is wrong. Try again." : "Nepareiza parole. Mēģiniet vēlreiz.", "Password" : "Parole", "No entries found in this folder" : "Šajā mapē nekas nav atrasts", "Name" : "Nosaukums", "Share time" : "Koplietošanas laiks", + "Expiration date" : "Termiņa datums", "Sorry, this link doesn’t seem to work anymore." : "Izskatās, ka šī saite vairs nedarbojas", "Reasons might be:" : "Iespējamie iemesli:", "the item was removed" : "vienums tika dzēsts", "the link expired" : "saitei beidzies termiņš", "sharing is disabled" : "koplietošana nav ieslēgta", "For more info, please ask the person who sent this link." : "Vairāk informācijas vaicā personai, kas nosūtīja šo saiti.", - "Add to your ownCloud" : "Pievienot savam ownCloud", - "Download" : "Lejupielādēt", "Download %s" : "Lejupielādēt %s", - "Direct link" : "Tiešā saite" + "Uploading files…" : "Augšupielādē datnes", + "Uploaded files:" : "Augšupielādēti faili:" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/nb.js b/apps/files_sharing/l10n/nb.js index dbd5b14d8d67a..01b9c792ed08f 100644 --- a/apps/files_sharing/l10n/nb.js +++ b/apps/files_sharing/l10n/nb.js @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "Feil eller ingen parametre for oppdatering er angitt", "Can't change permissions for public share links" : "Kan ikke endre rettigheter for offentlige lenker", "Cannot increase permissions" : "Kan ikke øke tillatelser", + "shared by %s" : "delt av %s", + "Download" : "Last ned", + "Direct link" : "Direkte lenke", + "Add to your Nextcloud" : "Legg til i din Nextcloud", "Share API is disabled" : "Deling API er deaktivert", + "File sharing" : "Fildeling", "This share is password-protected" : "Denne delingen er passordbeskyttet", "The password is wrong. Try again." : "Passordet er feil. Prøv på nytt.", "Password" : "Passord", @@ -101,10 +106,6 @@ OC.L10N.register( "the link expired" : "lenken er utløpt", "sharing is disabled" : "deling er avskrudd", "For more info, please ask the person who sent this link." : "For mer informasjon, spør personen som sendte lenken.", - "shared by %s" : "delt av %s", - "Download" : "Last ned", - "Direct link" : "Direkte lenke", - "Add to your Nextcloud" : "Legg til i din Nextcloud", "Download %s" : "Last ned %s", "Upload files to %s" : "Last opp filer til %s", "Select or drop files" : "Velg eller slipp filer", diff --git a/apps/files_sharing/l10n/nb.json b/apps/files_sharing/l10n/nb.json index a37b907d45630..d67c5c2cc2e92 100644 --- a/apps/files_sharing/l10n/nb.json +++ b/apps/files_sharing/l10n/nb.json @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "Feil eller ingen parametre for oppdatering er angitt", "Can't change permissions for public share links" : "Kan ikke endre rettigheter for offentlige lenker", "Cannot increase permissions" : "Kan ikke øke tillatelser", + "shared by %s" : "delt av %s", + "Download" : "Last ned", + "Direct link" : "Direkte lenke", + "Add to your Nextcloud" : "Legg til i din Nextcloud", "Share API is disabled" : "Deling API er deaktivert", + "File sharing" : "Fildeling", "This share is password-protected" : "Denne delingen er passordbeskyttet", "The password is wrong. Try again." : "Passordet er feil. Prøv på nytt.", "Password" : "Passord", @@ -99,10 +104,6 @@ "the link expired" : "lenken er utløpt", "sharing is disabled" : "deling er avskrudd", "For more info, please ask the person who sent this link." : "For mer informasjon, spør personen som sendte lenken.", - "shared by %s" : "delt av %s", - "Download" : "Last ned", - "Direct link" : "Direkte lenke", - "Add to your Nextcloud" : "Legg til i din Nextcloud", "Download %s" : "Last ned %s", "Upload files to %s" : "Last opp filer til %s", "Select or drop files" : "Velg eller slipp filer", diff --git a/apps/files_sharing/l10n/nl.js b/apps/files_sharing/l10n/nl.js index d5cb54120f4cd..ec24420177cd9 100644 --- a/apps/files_sharing/l10n/nl.js +++ b/apps/files_sharing/l10n/nl.js @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "Verkeerde of geen update parameter opgegeven", "Can't change permissions for public share links" : "Kan rechten voor openbaar gedeelde links niet wijzigen", "Cannot increase permissions" : "Kan de rechten niet verruimen", + "shared by %s" : "Gedeeld door %s", + "Download" : "Downloaden", + "Direct link" : "Directe link", + "Add to your Nextcloud" : "Toevoegen aan je Nextcloud", "Share API is disabled" : "Delen API is uitgeschakeld", + "File sharing" : "Bestand delen", "This share is password-protected" : "Deze gedeelde folder is met een wachtwoord beveiligd", "The password is wrong. Try again." : "Wachtwoord ongeldig. Probeer het nogmaals.", "Password" : "Wachtwoord", @@ -101,13 +106,9 @@ OC.L10N.register( "the link expired" : "de link is verlopen", "sharing is disabled" : "delen is uitgeschakeld", "For more info, please ask the person who sent this link." : "Voor meer informatie, neem contact op met de persoon die u deze link heeft gestuurd.", - "shared by %s" : "Gedeeld door %s", - "Download" : "Downloaden", - "Direct link" : "Directe link", - "Add to your Nextcloud" : "Toevoegen aan je Nextcloud", "Download %s" : "Download %s", "Upload files to %s" : "Upload bestanden naar %s", - "Select or drop files" : "Selecteer of leg bestanden neer", + "Select or drop files" : "Selecteer bestanden of sleep ze naar dit venster", "Uploading files…" : "Uploaden bestanden...", "Uploaded files:" : "Geüploade bestanden", "%s is publicly shared" : "%s is openbaar gedeeld" diff --git a/apps/files_sharing/l10n/nl.json b/apps/files_sharing/l10n/nl.json index d55d2baed4f1c..2884d31315cc2 100644 --- a/apps/files_sharing/l10n/nl.json +++ b/apps/files_sharing/l10n/nl.json @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "Verkeerde of geen update parameter opgegeven", "Can't change permissions for public share links" : "Kan rechten voor openbaar gedeelde links niet wijzigen", "Cannot increase permissions" : "Kan de rechten niet verruimen", + "shared by %s" : "Gedeeld door %s", + "Download" : "Downloaden", + "Direct link" : "Directe link", + "Add to your Nextcloud" : "Toevoegen aan je Nextcloud", "Share API is disabled" : "Delen API is uitgeschakeld", + "File sharing" : "Bestand delen", "This share is password-protected" : "Deze gedeelde folder is met een wachtwoord beveiligd", "The password is wrong. Try again." : "Wachtwoord ongeldig. Probeer het nogmaals.", "Password" : "Wachtwoord", @@ -99,13 +104,9 @@ "the link expired" : "de link is verlopen", "sharing is disabled" : "delen is uitgeschakeld", "For more info, please ask the person who sent this link." : "Voor meer informatie, neem contact op met de persoon die u deze link heeft gestuurd.", - "shared by %s" : "Gedeeld door %s", - "Download" : "Downloaden", - "Direct link" : "Directe link", - "Add to your Nextcloud" : "Toevoegen aan je Nextcloud", "Download %s" : "Download %s", "Upload files to %s" : "Upload bestanden naar %s", - "Select or drop files" : "Selecteer of leg bestanden neer", + "Select or drop files" : "Selecteer bestanden of sleep ze naar dit venster", "Uploading files…" : "Uploaden bestanden...", "Uploaded files:" : "Geüploade bestanden", "%s is publicly shared" : "%s is openbaar gedeeld" diff --git a/apps/files_sharing/l10n/pl.js b/apps/files_sharing/l10n/pl.js index 049d7410cf1d8..1b9091270ae89 100644 --- a/apps/files_sharing/l10n/pl.js +++ b/apps/files_sharing/l10n/pl.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "Brakujący lub błędny parametr aktualizacji", "Can't change permissions for public share links" : "Nie można zmienić uprawnień dla publicznych udziałów", "Cannot increase permissions" : "Nie można zwiększyć uprawnień", + "shared by %s" : "udostępnione przez %s", + "Download" : "Pobierz", + "Direct link" : "Bezpośredni link", + "Add to your Nextcloud" : "Dodaj do swojego Nextcloud", "Share API is disabled" : "API udostępniania jest wyłączone", "This share is password-protected" : "Udostępniony folder chroniony jest hasłem", "The password is wrong. Try again." : "To hasło jest niewłaściwe. Spróbuj ponownie.", @@ -101,15 +105,11 @@ OC.L10N.register( "the link expired" : "link wygasł", "sharing is disabled" : "udostępnianie jest wyłączone", "For more info, please ask the person who sent this link." : "Aby uzyskać więcej informacji proszę poprosić osobę, która wysłał ten link.", - "shared by %s" : "udostępnione przez %s", - "Download" : "Pobierz", - "Direct link" : "Bezpośredni link", - "Add to your Nextcloud" : "Dodaj do swojego Nextcloud", "Download %s" : "Pobierz %s", "Upload files to %s" : "Prześlij pliki do %s", "Select or drop files" : "Wybierz lub upuść pliki", "Uploading files…" : "Wysyłanie plików...", "Uploaded files:" : "Wysłane pliki:", - "%s is publicly shared" : "%s jest publicznie dostępny" + "%s is publicly shared" : "%s udostępnione/ych publicznie " }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/files_sharing/l10n/pl.json b/apps/files_sharing/l10n/pl.json index 39ff1e2523c8d..bc055c7267361 100644 --- a/apps/files_sharing/l10n/pl.json +++ b/apps/files_sharing/l10n/pl.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "Brakujący lub błędny parametr aktualizacji", "Can't change permissions for public share links" : "Nie można zmienić uprawnień dla publicznych udziałów", "Cannot increase permissions" : "Nie można zwiększyć uprawnień", + "shared by %s" : "udostępnione przez %s", + "Download" : "Pobierz", + "Direct link" : "Bezpośredni link", + "Add to your Nextcloud" : "Dodaj do swojego Nextcloud", "Share API is disabled" : "API udostępniania jest wyłączone", "This share is password-protected" : "Udostępniony folder chroniony jest hasłem", "The password is wrong. Try again." : "To hasło jest niewłaściwe. Spróbuj ponownie.", @@ -99,15 +103,11 @@ "the link expired" : "link wygasł", "sharing is disabled" : "udostępnianie jest wyłączone", "For more info, please ask the person who sent this link." : "Aby uzyskać więcej informacji proszę poprosić osobę, która wysłał ten link.", - "shared by %s" : "udostępnione przez %s", - "Download" : "Pobierz", - "Direct link" : "Bezpośredni link", - "Add to your Nextcloud" : "Dodaj do swojego Nextcloud", "Download %s" : "Pobierz %s", "Upload files to %s" : "Prześlij pliki do %s", "Select or drop files" : "Wybierz lub upuść pliki", "Uploading files…" : "Wysyłanie plików...", "Uploaded files:" : "Wysłane pliki:", - "%s is publicly shared" : "%s jest publicznie dostępny" + "%s is publicly shared" : "%s udostępnione/ych publicznie " },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/pt_BR.js b/apps/files_sharing/l10n/pt_BR.js index 098a3ed680417..f4d4d728b845a 100644 --- a/apps/files_sharing/l10n/pt_BR.js +++ b/apps/files_sharing/l10n/pt_BR.js @@ -4,10 +4,10 @@ OC.L10N.register( "Shared with you" : "Compartilhado com você", "Shared with others" : "Compartilhado com outros", "Shared by link" : "Compartilhado por link", - "Nothing shared with you yet" : "Nada foi compartilhado com você até agora", - "Files and folders others share with you will show up here" : "Arquivos e pastas que outros compartilham com você serão mostrados aqui", - "Nothing shared yet" : "Nada compartilhado até agora", - "Files and folders you share will show up here" : "Arquivos e pastas que você compartilha serão mostrados aqui", + "Nothing shared with you yet" : "Nada foi compartilhado!", + "Files and folders others share with you will show up here" : "Arquivos e pastas que outras pessoas compartilham com você, serão exibidos aqui.", + "Nothing shared yet" : "Você ainda não compartilhou nada!", + "Files and folders you share will show up here" : "Arquivos e pastas que você compartilhar serão exibidos aqui.", "No shared links" : "Nenhum link compartilhado", "Files and folders you share by link will show up here" : "Arquivos e pastas que você compartilha por link serão mostrados aqui", "You can upload into this folder" : "Você não pode enviar arquivos para esta pasta", @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "O parâmetro da atualização fornecido está errado ou não existe", "Can't change permissions for public share links" : "Não foi possível alterar as permissões para links de compartilhamento público", "Cannot increase permissions" : "Não foi possível aumentar as permissões", + "shared by %s" : "compartilhado por %s", + "Download" : "Baixar", + "Direct link" : "Link direto", + "Add to your Nextcloud" : "Adicionar ao seu Nextcloud", "Share API is disabled" : "O compartilhamento de API está desabilitado.", + "File sharing" : "Compartilhamento de arquivos", "This share is password-protected" : "Este compartilhamento é protegido por senha", "The password is wrong. Try again." : "Senha incorreta. Tente novamente.", "Password" : "Senha", @@ -101,10 +106,6 @@ OC.L10N.register( "the link expired" : "o link expirou", "sharing is disabled" : "o compartilhamento está desativado", "For more info, please ask the person who sent this link." : "Para mais informações, pergunte à pessoa que lhe enviou o link.", - "shared by %s" : "compartilhado por %s", - "Download" : "Baixar", - "Direct link" : "Link direto", - "Add to your Nextcloud" : "Adicionar ao seu Nextcloud", "Download %s" : "Baixar %s", "Upload files to %s" : "Enviar arquivos para %s", "Select or drop files" : "Selecione ou solte arquivos", diff --git a/apps/files_sharing/l10n/pt_BR.json b/apps/files_sharing/l10n/pt_BR.json index 8ab8a7cd1b211..b512e5d3a6c25 100644 --- a/apps/files_sharing/l10n/pt_BR.json +++ b/apps/files_sharing/l10n/pt_BR.json @@ -2,10 +2,10 @@ "Shared with you" : "Compartilhado com você", "Shared with others" : "Compartilhado com outros", "Shared by link" : "Compartilhado por link", - "Nothing shared with you yet" : "Nada foi compartilhado com você até agora", - "Files and folders others share with you will show up here" : "Arquivos e pastas que outros compartilham com você serão mostrados aqui", - "Nothing shared yet" : "Nada compartilhado até agora", - "Files and folders you share will show up here" : "Arquivos e pastas que você compartilha serão mostrados aqui", + "Nothing shared with you yet" : "Nada foi compartilhado!", + "Files and folders others share with you will show up here" : "Arquivos e pastas que outras pessoas compartilham com você, serão exibidos aqui.", + "Nothing shared yet" : "Você ainda não compartilhou nada!", + "Files and folders you share will show up here" : "Arquivos e pastas que você compartilhar serão exibidos aqui.", "No shared links" : "Nenhum link compartilhado", "Files and folders you share by link will show up here" : "Arquivos e pastas que você compartilha por link serão mostrados aqui", "You can upload into this folder" : "Você não pode enviar arquivos para esta pasta", @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "O parâmetro da atualização fornecido está errado ou não existe", "Can't change permissions for public share links" : "Não foi possível alterar as permissões para links de compartilhamento público", "Cannot increase permissions" : "Não foi possível aumentar as permissões", + "shared by %s" : "compartilhado por %s", + "Download" : "Baixar", + "Direct link" : "Link direto", + "Add to your Nextcloud" : "Adicionar ao seu Nextcloud", "Share API is disabled" : "O compartilhamento de API está desabilitado.", + "File sharing" : "Compartilhamento de arquivos", "This share is password-protected" : "Este compartilhamento é protegido por senha", "The password is wrong. Try again." : "Senha incorreta. Tente novamente.", "Password" : "Senha", @@ -99,10 +104,6 @@ "the link expired" : "o link expirou", "sharing is disabled" : "o compartilhamento está desativado", "For more info, please ask the person who sent this link." : "Para mais informações, pergunte à pessoa que lhe enviou o link.", - "shared by %s" : "compartilhado por %s", - "Download" : "Baixar", - "Direct link" : "Link direto", - "Add to your Nextcloud" : "Adicionar ao seu Nextcloud", "Download %s" : "Baixar %s", "Upload files to %s" : "Enviar arquivos para %s", "Select or drop files" : "Selecione ou solte arquivos", diff --git a/apps/files_sharing/l10n/pt_PT.js b/apps/files_sharing/l10n/pt_PT.js index 310587d436632..a7a4929e46853 100644 --- a/apps/files_sharing/l10n/pt_PT.js +++ b/apps/files_sharing/l10n/pt_PT.js @@ -2,21 +2,75 @@ OC.L10N.register( "files_sharing", { "Shared with you" : "Partilhado consigo ", - "Shared with others" : "Partilhado com outros", + "Shared with others" : "Partilhado com terceiros", "Shared by link" : "Partilhado por hiperligação", "Nothing shared with you yet" : "Ainda não foi partilhado nada consigo", - "Files and folders others share with you will show up here" : "Os ficheiros e pastas que os outros partilham consigo, serão mostrados aqui", + "Files and folders others share with you will show up here" : "Os ficheiros e pastas que terceiros partilham consigo, serão mostrados aqui", "Nothing shared yet" : "Ainda não foi partilhado nada", "Files and folders you share will show up here" : "Os ficheiros e as pastas que partilha serão mostrados aqui", "No shared links" : "Sem hiperligações partilhadas", "Files and folders you share by link will show up here" : "Os ficheiros e as pastas que partilha com esta hiperligação, serão mostrados aqui", "You can upload into this folder" : "Pode enviar para esta pasta", + "No compatible server found at {remote}" : "Nenhum servidor compatível encontrado em {remote}", + "Invalid server URL" : "URL de servidor inválido", + "Failed to add the public link to your Nextcloud" : "Falha a adicionar hiperligação pública ao seu Nextcloud", + "Share" : "Partilhar", + "No expiration date set" : "Data de expiração não definida", "Shared by" : "Partilhado por", "Sharing" : "Partilha", + "File shares" : "Partilhas de ficheiro", + "Downloaded via public link" : "Transferido via hiperligação pública", + "Downloaded by {email}" : "Descarregado por {email}", + "{file} downloaded via public link" : "{file} descarregado através de uma hiperligação pública", + "{email} downloaded {file}" : "{email} descarregou {file}", + "Shared with group {group}" : "Partilhado com o grupo {group}", + "Removed share for group {group}" : "Removeu a partilha para o grupo {group}", + "{actor} shared with group {group}" : "{actor} partilhou com o grupo {group}", + "{actor} removed share for group {group}" : "{actor} removeu a partilha para o grupo {group}", + "You shared {file} with group {group}" : "Partilhaste {file} com o grupo {group}", + "You removed group {group} from {file}" : "Removeste o grupo {group} de {file}", + "{actor} shared {file} with group {group}" : "{actor} partilhou {file} com o grupo {group}", + "{actor} removed group {group} from {file}" : "{actor} removeu o grupo {group} de {file}", + "Shared as public link" : "Partilhado como hiperligação pública", + "Removed public link" : "Hiperligação pública removida", + "Public link expired" : "A hiperligação pública expirou", + "{actor} shared as public link" : "{actor} partilhou como hiperligação pública", + "{actor} removed public link" : "{actor} removeu a hiperligação pública", + "Public link of {actor} expired" : "Hiperligação pública de {actor} expirou", + "You shared {file} as public link" : "Partilhaste {file} como hiperligação pública", + "You removed public link for {file}" : "Removeste hiperligação pública de {file}", + "Public link expired for {file}" : "Hiperligação pública expirada para {file}", + "{actor} shared {file} as public link" : "{actor} partilhou {file} como hiperligação pública", + "{actor} removed public link for {file}" : "{actor} removeu hiperligação pública de {file}", + "Public link of {actor} for {file} expired" : "Hiperligação pública de {actor} para {file} expirou", + "{user} accepted the remote share" : "{user} aceitou a partilha remota", + "{user} declined the remote share" : "{user} rejeitou a partilha remota", + "You received a new remote share {file} from {user}" : "Recebeu uma nova partilha remota {file} de {user}", + "{user} accepted the remote share of {file}" : "{user} aceitou a partilha remota de {file}", + "{user} declined the remote share of {file}" : "{user} rejeitou a partilha remota de {file}", + "{user} unshared {file} from you" : "{user} cancelou a partilha de {file} consigo", + "Shared with {user}" : "Partilhado com {user}", + "Removed share for {user}" : "Partilha removida para {user}", + "{actor} shared with {user}" : "{actor} partilhou com {user}", + "{actor} removed share for {user}" : "{actor} removeu partilha com {user}", + "Shared by {actor}" : "Partilhado por {actor}", + "{actor} removed share" : "{actor} removeu partilha", + "You shared {file} with {user}" : "Partilhaste {file} com {user}", + "You removed {user} from {file}" : "Removeste {user} de {file}", + "{actor} shared {file} with {user}" : "{actor} partilhou {file} com {user}", + "{actor} removed {user} from {file}" : "{actor} removeu {user} de {file}", + "{actor} shared {file} with you" : "{actor} partilhou {file} consigo", + "{actor} removed you from {file}" : "{actor} removeu-o de {file}", + "A file or folder shared by mail or by public link was downloaded" : "Um ficheiro ou pasta partilhado por email ou hiperligação publica foi descarregado", + "A file or folder was shared from another server" : "Um ficheiro ou pasta foi partilhado a partir de outro servidor", + "A file or folder has been shared" : "Foi partilhado um ficheiro ou uma pasta", "Wrong share ID, share doesn't exist" : "Id. de partilha errada, a partilha não existe", + "could not delete share" : "Não foi possível eliminar a partilha", "Could not delete share" : "Não foi possível eliminar a partilha", "Please specify a file or folder path" : "Por favor, especifique um ficheiro ou caminho de pasta", "Wrong path, file/folder doesn't exist" : "Caminho errado, ficheiro/pasta não existe", + "Could not create share" : "Não foi possível criar partilha", + "invalid permissions" : "permissões inválidas", "Please specify a valid user" : "Por favor, especifique um utilizador válido", "Group sharing is disabled by the administrator" : "A partilha em grupo está desativada pelo administrador", "Please specify a valid group" : "Por favor, especifique um grupo válido", @@ -25,70 +79,38 @@ OC.L10N.register( "Public upload is only possible for publicly shared folders" : "O envio público só é possível para as pastas partilhadas publicamente", "Invalid date, date format must be YYYY-MM-DD" : "Data inválida, o formato da data deve ser AAAA-MM-DD", "Sharing %s failed because the back end does not allow shares from type %s" : "A partilha de %s falhou porque \"back end\" não permite partilhas do tipo %s", + "You cannot share to a Circle if the app is not enabled" : "Não pode partilhar um Círculo se a aplicação não estiver activa", + "Please specify a valid circle" : "Por favor especifique um círculo válido", "Unknown share type" : "Tipo de partilha desconhecido", "Not a directory" : "Não é uma diretoria", "Could not lock path" : "Não foi possível bloquear o caminho", "Wrong or no update parameter given" : "Parâmetro indicado errado ou desatualizado", "Can't change permissions for public share links" : "Não é possível alterar as permissões para as hiperligações de partilha pública", "Cannot increase permissions" : "Não é possível incrementar as permissões", - "A file or folder has been shared" : "Foi partilhado um ficheiro ou uma pasta", - "A file or folder was shared from another server" : "Um ficheiro ou pasta foi partilhado a partir de outro servidor", - "A public shared file or folder was downloaded" : "Foi transferido um ficheiro ou uma pasta partilhada publicamente", - "You received a new remote share %2$s from %1$s" : "Recebeu uma nova partilha remota %2$s de %1$s", - "You received a new remote share from %s" : "Recebeu uma nova partilha remota de %s", - "%1$s accepted remote share %2$s" : "%1$s aceitou a partilha remota %2$s", - "%1$s declined remote share %2$s" : "%1$s rejeitou a partilha remota %2$s", - "%1$s unshared %2$s from you" : "%1$s cancelou a partilha %2$s consigo", - "Public shared folder %1$s was downloaded" : "Foi transferida a pasta %1$s partilhada publicamente", - "Public shared file %1$s was downloaded" : "Foi transferido o ficheiro %1$s partilhado publicamente", - "You shared %1$s with %2$s" : "Partilhou %1$s com %2$s", - "%2$s shared %1$s with %3$s" : "%2$s partilhou %1$s com %3$s", - "You removed the share of %2$s for %1$s" : "Removeu a partilha de %2$s para %1$s", - "%2$s removed the share of %3$s for %1$s" : "%2$s removeu a partilha de %3$s para %1$s", - "You shared %1$s with group %2$s" : "Partilhou %1$s com o grupo %2$s", - "%2$s shared %1$s with group %3$s" : "%2$s partilhou %1$s com o grupo %3$s", - "You removed the share of group %2$s for %1$s" : "Removeu a partilha do grupo %2$s para %1$s", - "%2$s removed the share of group %3$s for %1$s" : "%2$s removeu a partilha do grupo %3$s para %1$s", - "%2$s shared %1$s via link" : "%2$s partilhou %1$s via hiperligação", - "You shared %1$s via link" : "Partilhou %1$s através de uma hiperligação", - "You removed the public link for %1$s" : "Removeu a hiperligação pública para %1$s", - "%2$s removed the public link for %1$s" : "%2$s removeu a hiperligação pública para %1$s", - "Your public link for %1$s expired" : "A sua hiperligação pública para %1$s expirou", - "The public link of %2$s for %1$s expired" : "A sua hiperligação pública de %2$s para %1$s expirou", - "%2$s shared %1$s with you" : "%2$s partilhou %1$s consigo", - "%2$s removed the share for %1$s" : "%2$s removeu a partilha para %1$s", - "Downloaded via public link" : "Transferido via hiperligação pública", - "Shared with %2$s" : "Partilhado com %2$s", - "Shared with %3$s by %2$s" : "Partilhado com %3$s por %2$s", - "Removed share for %2$s" : "Partilha removida para %2$s", - "%2$s removed share for %3$s" : "%2$s removeu a partilha para %3$s", - "Shared with group %2$s" : "Partilhado com o grupo %2$s", - "Shared with group %3$s by %2$s" : "Partilhado com o grupo %3$s por %2$s", - "Removed share of group %2$s" : "Partilha removida do grupo %2$s", - "%2$s removed share of group %3$s" : "%2$s removeu a partilha do grupo %3$s", - "Shared via link by %2$s" : "Partilhado via hiperligação por %2$s", - "Shared via public link" : "Partilhado via hiperligação pública", - "Removed public link" : "Hiperligação pública removida", - "%2$s removed public link" : "%2$s removeu a hiperligação pública", - "Public link expired" : "A hiperligação pública expirou", - "Public link of %2$s expired" : "A hiperligação pública de %2$s expirou", - "Shared by %2$s" : "Partilhado por %2$s", - "Shares" : "Partilhas", + "shared by %s" : "partilhado por %s", + "Download" : "Transferir", + "Direct link" : "Hiperligação direta", + "Add to your Nextcloud" : "Adicionar à sua Nextcloud", "Share API is disabled" : "A partilha de API está desativada", + "File sharing" : "Partilha de ficheiro", "This share is password-protected" : "Esta partilha está protegida por palavra-passe", "The password is wrong. Try again." : "A palavra-passe está errada. Por favor, tente de novo.", "Password" : "Palavra-passe", "No entries found in this folder" : "Não foram encontradas entradas nesta pasta", "Name" : "Nome", "Share time" : "Hora da Partilha", + "Expiration date" : "Data de expiração", "Sorry, this link doesn’t seem to work anymore." : "Desculpe, mas esta hiperligação parece já não estar a funcionar.", "Reasons might be:" : "As razões poderão ser:", "the item was removed" : "o item foi removido", "the link expired" : "a hiperligação expirou", "sharing is disabled" : "a partilha está desativada", "For more info, please ask the person who sent this link." : "Para mais informação, por favor, pergunte à pessoa que lhe enviou esta hiperligação.", - "Download" : "Transferir", "Download %s" : "Transferir %s", - "Direct link" : "Hiperligação direta" + "Upload files to %s" : "Enviar ficheiros para %s", + "Select or drop files" : "Seleccione ou solte ficheiros", + "Uploading files…" : "A enviar ficheiros...", + "Uploaded files:" : "Ficheiros enviados:", + "%s is publicly shared" : "%s está partilhado publicamente" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/pt_PT.json b/apps/files_sharing/l10n/pt_PT.json index 1ad593da9eade..4fae502552abb 100644 --- a/apps/files_sharing/l10n/pt_PT.json +++ b/apps/files_sharing/l10n/pt_PT.json @@ -1,20 +1,74 @@ { "translations": { "Shared with you" : "Partilhado consigo ", - "Shared with others" : "Partilhado com outros", + "Shared with others" : "Partilhado com terceiros", "Shared by link" : "Partilhado por hiperligação", "Nothing shared with you yet" : "Ainda não foi partilhado nada consigo", - "Files and folders others share with you will show up here" : "Os ficheiros e pastas que os outros partilham consigo, serão mostrados aqui", + "Files and folders others share with you will show up here" : "Os ficheiros e pastas que terceiros partilham consigo, serão mostrados aqui", "Nothing shared yet" : "Ainda não foi partilhado nada", "Files and folders you share will show up here" : "Os ficheiros e as pastas que partilha serão mostrados aqui", "No shared links" : "Sem hiperligações partilhadas", "Files and folders you share by link will show up here" : "Os ficheiros e as pastas que partilha com esta hiperligação, serão mostrados aqui", "You can upload into this folder" : "Pode enviar para esta pasta", + "No compatible server found at {remote}" : "Nenhum servidor compatível encontrado em {remote}", + "Invalid server URL" : "URL de servidor inválido", + "Failed to add the public link to your Nextcloud" : "Falha a adicionar hiperligação pública ao seu Nextcloud", + "Share" : "Partilhar", + "No expiration date set" : "Data de expiração não definida", "Shared by" : "Partilhado por", "Sharing" : "Partilha", + "File shares" : "Partilhas de ficheiro", + "Downloaded via public link" : "Transferido via hiperligação pública", + "Downloaded by {email}" : "Descarregado por {email}", + "{file} downloaded via public link" : "{file} descarregado através de uma hiperligação pública", + "{email} downloaded {file}" : "{email} descarregou {file}", + "Shared with group {group}" : "Partilhado com o grupo {group}", + "Removed share for group {group}" : "Removeu a partilha para o grupo {group}", + "{actor} shared with group {group}" : "{actor} partilhou com o grupo {group}", + "{actor} removed share for group {group}" : "{actor} removeu a partilha para o grupo {group}", + "You shared {file} with group {group}" : "Partilhaste {file} com o grupo {group}", + "You removed group {group} from {file}" : "Removeste o grupo {group} de {file}", + "{actor} shared {file} with group {group}" : "{actor} partilhou {file} com o grupo {group}", + "{actor} removed group {group} from {file}" : "{actor} removeu o grupo {group} de {file}", + "Shared as public link" : "Partilhado como hiperligação pública", + "Removed public link" : "Hiperligação pública removida", + "Public link expired" : "A hiperligação pública expirou", + "{actor} shared as public link" : "{actor} partilhou como hiperligação pública", + "{actor} removed public link" : "{actor} removeu a hiperligação pública", + "Public link of {actor} expired" : "Hiperligação pública de {actor} expirou", + "You shared {file} as public link" : "Partilhaste {file} como hiperligação pública", + "You removed public link for {file}" : "Removeste hiperligação pública de {file}", + "Public link expired for {file}" : "Hiperligação pública expirada para {file}", + "{actor} shared {file} as public link" : "{actor} partilhou {file} como hiperligação pública", + "{actor} removed public link for {file}" : "{actor} removeu hiperligação pública de {file}", + "Public link of {actor} for {file} expired" : "Hiperligação pública de {actor} para {file} expirou", + "{user} accepted the remote share" : "{user} aceitou a partilha remota", + "{user} declined the remote share" : "{user} rejeitou a partilha remota", + "You received a new remote share {file} from {user}" : "Recebeu uma nova partilha remota {file} de {user}", + "{user} accepted the remote share of {file}" : "{user} aceitou a partilha remota de {file}", + "{user} declined the remote share of {file}" : "{user} rejeitou a partilha remota de {file}", + "{user} unshared {file} from you" : "{user} cancelou a partilha de {file} consigo", + "Shared with {user}" : "Partilhado com {user}", + "Removed share for {user}" : "Partilha removida para {user}", + "{actor} shared with {user}" : "{actor} partilhou com {user}", + "{actor} removed share for {user}" : "{actor} removeu partilha com {user}", + "Shared by {actor}" : "Partilhado por {actor}", + "{actor} removed share" : "{actor} removeu partilha", + "You shared {file} with {user}" : "Partilhaste {file} com {user}", + "You removed {user} from {file}" : "Removeste {user} de {file}", + "{actor} shared {file} with {user}" : "{actor} partilhou {file} com {user}", + "{actor} removed {user} from {file}" : "{actor} removeu {user} de {file}", + "{actor} shared {file} with you" : "{actor} partilhou {file} consigo", + "{actor} removed you from {file}" : "{actor} removeu-o de {file}", + "A file or folder shared by mail or by public link was downloaded" : "Um ficheiro ou pasta partilhado por email ou hiperligação publica foi descarregado", + "A file or folder was shared from another server" : "Um ficheiro ou pasta foi partilhado a partir de outro servidor", + "A file or folder has been shared" : "Foi partilhado um ficheiro ou uma pasta", "Wrong share ID, share doesn't exist" : "Id. de partilha errada, a partilha não existe", + "could not delete share" : "Não foi possível eliminar a partilha", "Could not delete share" : "Não foi possível eliminar a partilha", "Please specify a file or folder path" : "Por favor, especifique um ficheiro ou caminho de pasta", "Wrong path, file/folder doesn't exist" : "Caminho errado, ficheiro/pasta não existe", + "Could not create share" : "Não foi possível criar partilha", + "invalid permissions" : "permissões inválidas", "Please specify a valid user" : "Por favor, especifique um utilizador válido", "Group sharing is disabled by the administrator" : "A partilha em grupo está desativada pelo administrador", "Please specify a valid group" : "Por favor, especifique um grupo válido", @@ -23,70 +77,38 @@ "Public upload is only possible for publicly shared folders" : "O envio público só é possível para as pastas partilhadas publicamente", "Invalid date, date format must be YYYY-MM-DD" : "Data inválida, o formato da data deve ser AAAA-MM-DD", "Sharing %s failed because the back end does not allow shares from type %s" : "A partilha de %s falhou porque \"back end\" não permite partilhas do tipo %s", + "You cannot share to a Circle if the app is not enabled" : "Não pode partilhar um Círculo se a aplicação não estiver activa", + "Please specify a valid circle" : "Por favor especifique um círculo válido", "Unknown share type" : "Tipo de partilha desconhecido", "Not a directory" : "Não é uma diretoria", "Could not lock path" : "Não foi possível bloquear o caminho", "Wrong or no update parameter given" : "Parâmetro indicado errado ou desatualizado", "Can't change permissions for public share links" : "Não é possível alterar as permissões para as hiperligações de partilha pública", "Cannot increase permissions" : "Não é possível incrementar as permissões", - "A file or folder has been shared" : "Foi partilhado um ficheiro ou uma pasta", - "A file or folder was shared from another server" : "Um ficheiro ou pasta foi partilhado a partir de outro servidor", - "A public shared file or folder was downloaded" : "Foi transferido um ficheiro ou uma pasta partilhada publicamente", - "You received a new remote share %2$s from %1$s" : "Recebeu uma nova partilha remota %2$s de %1$s", - "You received a new remote share from %s" : "Recebeu uma nova partilha remota de %s", - "%1$s accepted remote share %2$s" : "%1$s aceitou a partilha remota %2$s", - "%1$s declined remote share %2$s" : "%1$s rejeitou a partilha remota %2$s", - "%1$s unshared %2$s from you" : "%1$s cancelou a partilha %2$s consigo", - "Public shared folder %1$s was downloaded" : "Foi transferida a pasta %1$s partilhada publicamente", - "Public shared file %1$s was downloaded" : "Foi transferido o ficheiro %1$s partilhado publicamente", - "You shared %1$s with %2$s" : "Partilhou %1$s com %2$s", - "%2$s shared %1$s with %3$s" : "%2$s partilhou %1$s com %3$s", - "You removed the share of %2$s for %1$s" : "Removeu a partilha de %2$s para %1$s", - "%2$s removed the share of %3$s for %1$s" : "%2$s removeu a partilha de %3$s para %1$s", - "You shared %1$s with group %2$s" : "Partilhou %1$s com o grupo %2$s", - "%2$s shared %1$s with group %3$s" : "%2$s partilhou %1$s com o grupo %3$s", - "You removed the share of group %2$s for %1$s" : "Removeu a partilha do grupo %2$s para %1$s", - "%2$s removed the share of group %3$s for %1$s" : "%2$s removeu a partilha do grupo %3$s para %1$s", - "%2$s shared %1$s via link" : "%2$s partilhou %1$s via hiperligação", - "You shared %1$s via link" : "Partilhou %1$s através de uma hiperligação", - "You removed the public link for %1$s" : "Removeu a hiperligação pública para %1$s", - "%2$s removed the public link for %1$s" : "%2$s removeu a hiperligação pública para %1$s", - "Your public link for %1$s expired" : "A sua hiperligação pública para %1$s expirou", - "The public link of %2$s for %1$s expired" : "A sua hiperligação pública de %2$s para %1$s expirou", - "%2$s shared %1$s with you" : "%2$s partilhou %1$s consigo", - "%2$s removed the share for %1$s" : "%2$s removeu a partilha para %1$s", - "Downloaded via public link" : "Transferido via hiperligação pública", - "Shared with %2$s" : "Partilhado com %2$s", - "Shared with %3$s by %2$s" : "Partilhado com %3$s por %2$s", - "Removed share for %2$s" : "Partilha removida para %2$s", - "%2$s removed share for %3$s" : "%2$s removeu a partilha para %3$s", - "Shared with group %2$s" : "Partilhado com o grupo %2$s", - "Shared with group %3$s by %2$s" : "Partilhado com o grupo %3$s por %2$s", - "Removed share of group %2$s" : "Partilha removida do grupo %2$s", - "%2$s removed share of group %3$s" : "%2$s removeu a partilha do grupo %3$s", - "Shared via link by %2$s" : "Partilhado via hiperligação por %2$s", - "Shared via public link" : "Partilhado via hiperligação pública", - "Removed public link" : "Hiperligação pública removida", - "%2$s removed public link" : "%2$s removeu a hiperligação pública", - "Public link expired" : "A hiperligação pública expirou", - "Public link of %2$s expired" : "A hiperligação pública de %2$s expirou", - "Shared by %2$s" : "Partilhado por %2$s", - "Shares" : "Partilhas", + "shared by %s" : "partilhado por %s", + "Download" : "Transferir", + "Direct link" : "Hiperligação direta", + "Add to your Nextcloud" : "Adicionar à sua Nextcloud", "Share API is disabled" : "A partilha de API está desativada", + "File sharing" : "Partilha de ficheiro", "This share is password-protected" : "Esta partilha está protegida por palavra-passe", "The password is wrong. Try again." : "A palavra-passe está errada. Por favor, tente de novo.", "Password" : "Palavra-passe", "No entries found in this folder" : "Não foram encontradas entradas nesta pasta", "Name" : "Nome", "Share time" : "Hora da Partilha", + "Expiration date" : "Data de expiração", "Sorry, this link doesn’t seem to work anymore." : "Desculpe, mas esta hiperligação parece já não estar a funcionar.", "Reasons might be:" : "As razões poderão ser:", "the item was removed" : "o item foi removido", "the link expired" : "a hiperligação expirou", "sharing is disabled" : "a partilha está desativada", "For more info, please ask the person who sent this link." : "Para mais informação, por favor, pergunte à pessoa que lhe enviou esta hiperligação.", - "Download" : "Transferir", "Download %s" : "Transferir %s", - "Direct link" : "Hiperligação direta" + "Upload files to %s" : "Enviar ficheiros para %s", + "Select or drop files" : "Seleccione ou solte ficheiros", + "Uploading files…" : "A enviar ficheiros...", + "Uploaded files:" : "Ficheiros enviados:", + "%s is publicly shared" : "%s está partilhado publicamente" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/ru.js b/apps/files_sharing/l10n/ru.js index 3b14841273aab..c70a83767ecb0 100644 --- a/apps/files_sharing/l10n/ru.js +++ b/apps/files_sharing/l10n/ru.js @@ -34,13 +34,13 @@ OC.L10N.register( "Shared as public link" : "Предоставлен доступ общедоступной ссылкой", "Removed public link" : "Общедоступная ссылка удалена", "Public link expired" : "Истёк срок действия общедоступной ссылки", - "{actor} shared as public link" : "{actor} поделился(ась) общедоступной ссылкой", + "{actor} shared as public link" : "{actor} открыл(а) общий доступ созданием общедоступной ссылки", "{actor} removed public link" : "{actor} удалил(а) общедоступную ссылку", "Public link of {actor} expired" : "Истёк срок действия общедоступной ссылки пользователя {actor}", "You shared {file} as public link" : "Вы предоставили общий доступ к «{file}» созданием общедоступной ссылки", "You removed public link for {file}" : "Вы удалили общедоступную ссылку на «{file}»", "Public link expired for {file}" : "Истёк срок действия общедоступной ссылки на «{file}»", - "{actor} shared {file} as public link" : "{actor} открыл(а) общий доступ к «{file}» в виде общедоступной ссылки", + "{actor} shared {file} as public link" : "{actor} предоставил(а) общий доступ к «{file}» созданием общедоступной ссылки", "{actor} removed public link for {file}" : "{actor} удалил(а) общедоступную ссылку на «{file}»", "Public link of {actor} for {file} expired" : "Истёк срок действия общедоступной ссылки на «{file}», созданной {actor}.", "{user} accepted the remote share" : "{user} принял(а) общий ресурс другого сервера", @@ -55,11 +55,11 @@ OC.L10N.register( "{actor} removed share for {user}" : "{actor} закрыл(а) общий доступ пользователю {user}", "Shared by {actor}" : "Общий доступ был открыт пользователем {actor}", "{actor} removed share" : "{actor} закрыл(а) общий доступ", - "You shared {file} with {user}" : "Вы поделились «{file}» с пользователем {user}", + "You shared {file} with {user}" : "Вы предоставили пользователю {user} общий доступ к «{file}»", "You removed {user} from {file}" : "Вы закрыли пользователю {user} общий доступ к «{file}»", - "{actor} shared {file} with {user}" : "{actor} поделился(ась) «{file}» с пользователем {user}", - "{actor} removed {user} from {file}" : "{actor} закрыл(а) пользователю общий доступ к «{file}»", - "{actor} shared {file} with you" : "{actor} открыл(а) вам общий доступ к «{file}»", + "{actor} shared {file} with {user}" : "{actor} предоставил(а) пользователю {user} общий доступ к «{file}»", + "{actor} removed {user} from {file}" : "{actor} закрыл(а) пользователю {user} общий доступ к «{file}»", + "{actor} shared {file} with you" : "{actor} предоставил(а) вам общий доступ к «{file}»", "{actor} removed you from {file}" : "{actor} закрыл(а) вам общий доступ к «{file}»", "A file or folder shared by mail or by public link was downloaded" : "Файл или папка, которыми поделились по электронной почте или общедоступной ссылке, были скачаны", "A file or folder was shared from another server" : "Общий доступ к файлу или каталогу был открыт с другого сервера", @@ -79,15 +79,20 @@ OC.L10N.register( "Public upload is only possible for publicly shared folders" : "Общедоступная загрузка возможна только в общедоступные папки", "Invalid date, date format must be YYYY-MM-DD" : "Неверная дата, формат даты должен быть ГГГГ-ММ-ДД", "Sharing %s failed because the back end does not allow shares from type %s" : "Не удалось предоставить общий доступ к «%s», поскольку механизм удалённого обмена не разрешает публикации типа %s", - "You cannot share to a Circle if the app is not enabled" : "Вы не можете поделиться с кругом, если приложение «Круг» не включено", + "You cannot share to a Circle if the app is not enabled" : "Вы не можете поделиться с кругом, если приложение «Круг» не включено", "Please specify a valid circle" : "Укажите верный круг", "Unknown share type" : "Общий доступ неизвестного типа", "Not a directory" : "Это не каталог", "Could not lock path" : "Не удалось заблокировать путь", "Wrong or no update parameter given" : "Параметр для изменения неправилен или не задан", "Can't change permissions for public share links" : "Для общедоступных ссылок изменение прав невозможно", - "Cannot increase permissions" : "Нельзя увеличить права", + "Cannot increase permissions" : "Не удалось повысить права доступа", + "shared by %s" : "поделился %s", + "Download" : "Скачать", + "Direct link" : "Прямая ссылка", + "Add to your Nextcloud" : "Добавить в свой Nextcloud", "Share API is disabled" : "API общего доступа отключён", + "File sharing" : "Обмен файлами", "This share is password-protected" : "Общий ресурс защищён паролем", "The password is wrong. Try again." : "Неверный пароль. Попробуйте ещё раз.", "Password" : "Пароль", @@ -101,10 +106,6 @@ OC.L10N.register( "the link expired" : "истёк срок действия ссылки", "sharing is disabled" : "закрыт общий доступ", "For more info, please ask the person who sent this link." : "Для получения дополнительной информации, свяжитесь с тем, кто отправил вам эту ссылку.", - "shared by %s" : "поделился %s", - "Download" : "Скачать", - "Direct link" : "Прямая ссылка", - "Add to your Nextcloud" : "Добавить в свой Nextcloud", "Download %s" : "Скачать %s", "Upload files to %s" : "Загрузка файлов пользователю %s", "Select or drop files" : "Выберите или перетащите файлы", diff --git a/apps/files_sharing/l10n/ru.json b/apps/files_sharing/l10n/ru.json index c0780c766a40f..ddff78134fedf 100644 --- a/apps/files_sharing/l10n/ru.json +++ b/apps/files_sharing/l10n/ru.json @@ -32,13 +32,13 @@ "Shared as public link" : "Предоставлен доступ общедоступной ссылкой", "Removed public link" : "Общедоступная ссылка удалена", "Public link expired" : "Истёк срок действия общедоступной ссылки", - "{actor} shared as public link" : "{actor} поделился(ась) общедоступной ссылкой", + "{actor} shared as public link" : "{actor} открыл(а) общий доступ созданием общедоступной ссылки", "{actor} removed public link" : "{actor} удалил(а) общедоступную ссылку", "Public link of {actor} expired" : "Истёк срок действия общедоступной ссылки пользователя {actor}", "You shared {file} as public link" : "Вы предоставили общий доступ к «{file}» созданием общедоступной ссылки", "You removed public link for {file}" : "Вы удалили общедоступную ссылку на «{file}»", "Public link expired for {file}" : "Истёк срок действия общедоступной ссылки на «{file}»", - "{actor} shared {file} as public link" : "{actor} открыл(а) общий доступ к «{file}» в виде общедоступной ссылки", + "{actor} shared {file} as public link" : "{actor} предоставил(а) общий доступ к «{file}» созданием общедоступной ссылки", "{actor} removed public link for {file}" : "{actor} удалил(а) общедоступную ссылку на «{file}»", "Public link of {actor} for {file} expired" : "Истёк срок действия общедоступной ссылки на «{file}», созданной {actor}.", "{user} accepted the remote share" : "{user} принял(а) общий ресурс другого сервера", @@ -53,11 +53,11 @@ "{actor} removed share for {user}" : "{actor} закрыл(а) общий доступ пользователю {user}", "Shared by {actor}" : "Общий доступ был открыт пользователем {actor}", "{actor} removed share" : "{actor} закрыл(а) общий доступ", - "You shared {file} with {user}" : "Вы поделились «{file}» с пользователем {user}", + "You shared {file} with {user}" : "Вы предоставили пользователю {user} общий доступ к «{file}»", "You removed {user} from {file}" : "Вы закрыли пользователю {user} общий доступ к «{file}»", - "{actor} shared {file} with {user}" : "{actor} поделился(ась) «{file}» с пользователем {user}", - "{actor} removed {user} from {file}" : "{actor} закрыл(а) пользователю общий доступ к «{file}»", - "{actor} shared {file} with you" : "{actor} открыл(а) вам общий доступ к «{file}»", + "{actor} shared {file} with {user}" : "{actor} предоставил(а) пользователю {user} общий доступ к «{file}»", + "{actor} removed {user} from {file}" : "{actor} закрыл(а) пользователю {user} общий доступ к «{file}»", + "{actor} shared {file} with you" : "{actor} предоставил(а) вам общий доступ к «{file}»", "{actor} removed you from {file}" : "{actor} закрыл(а) вам общий доступ к «{file}»", "A file or folder shared by mail or by public link was downloaded" : "Файл или папка, которыми поделились по электронной почте или общедоступной ссылке, были скачаны", "A file or folder was shared from another server" : "Общий доступ к файлу или каталогу был открыт с другого сервера", @@ -77,15 +77,20 @@ "Public upload is only possible for publicly shared folders" : "Общедоступная загрузка возможна только в общедоступные папки", "Invalid date, date format must be YYYY-MM-DD" : "Неверная дата, формат даты должен быть ГГГГ-ММ-ДД", "Sharing %s failed because the back end does not allow shares from type %s" : "Не удалось предоставить общий доступ к «%s», поскольку механизм удалённого обмена не разрешает публикации типа %s", - "You cannot share to a Circle if the app is not enabled" : "Вы не можете поделиться с кругом, если приложение «Круг» не включено", + "You cannot share to a Circle if the app is not enabled" : "Вы не можете поделиться с кругом, если приложение «Круг» не включено", "Please specify a valid circle" : "Укажите верный круг", "Unknown share type" : "Общий доступ неизвестного типа", "Not a directory" : "Это не каталог", "Could not lock path" : "Не удалось заблокировать путь", "Wrong or no update parameter given" : "Параметр для изменения неправилен или не задан", "Can't change permissions for public share links" : "Для общедоступных ссылок изменение прав невозможно", - "Cannot increase permissions" : "Нельзя увеличить права", + "Cannot increase permissions" : "Не удалось повысить права доступа", + "shared by %s" : "поделился %s", + "Download" : "Скачать", + "Direct link" : "Прямая ссылка", + "Add to your Nextcloud" : "Добавить в свой Nextcloud", "Share API is disabled" : "API общего доступа отключён", + "File sharing" : "Обмен файлами", "This share is password-protected" : "Общий ресурс защищён паролем", "The password is wrong. Try again." : "Неверный пароль. Попробуйте ещё раз.", "Password" : "Пароль", @@ -99,10 +104,6 @@ "the link expired" : "истёк срок действия ссылки", "sharing is disabled" : "закрыт общий доступ", "For more info, please ask the person who sent this link." : "Для получения дополнительной информации, свяжитесь с тем, кто отправил вам эту ссылку.", - "shared by %s" : "поделился %s", - "Download" : "Скачать", - "Direct link" : "Прямая ссылка", - "Add to your Nextcloud" : "Добавить в свой Nextcloud", "Download %s" : "Скачать %s", "Upload files to %s" : "Загрузка файлов пользователю %s", "Select or drop files" : "Выберите или перетащите файлы", diff --git a/apps/files_sharing/l10n/sk.js b/apps/files_sharing/l10n/sk.js index 7652b6fd917d1..1b12fe41b4399 100644 --- a/apps/files_sharing/l10n/sk.js +++ b/apps/files_sharing/l10n/sk.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "Zlý alebo žiadny zadaný parameter aktualizácie", "Can't change permissions for public share links" : "Nemožno zmeniť oprávnenia pre verejné sprístupnené odkazy", "Cannot increase permissions" : "Nie je možné navýšiť oprávnenia", + "shared by %s" : "Sprístupnil %s", + "Download" : "Sťahovanie", + "Direct link" : "Priama linka", + "Add to your Nextcloud" : "Pridať do svojho Nextcloud", "Share API is disabled" : "API pre sprístupňovanie je zakázané", "This share is password-protected" : "Táto položka je chránené heslom", "The password is wrong. Try again." : "Heslo je chybné. Skúste to znova.", @@ -101,15 +105,11 @@ OC.L10N.register( "the link expired" : "linke vypršala platnosť", "sharing is disabled" : "sprístupňovanie je zakázané", "For more info, please ask the person who sent this link." : "Pre viac informácií kontaktujte osobu, ktorá vám poslala tento odkaz.", - "shared by %s" : "Sprístupnil %s", - "Download" : "Sťahovanie", - "Direct link" : "Priama linka", - "Add to your Nextcloud" : "Pridať do svojho Nextcloud", "Download %s" : "Stiahnuť %s", "Upload files to %s" : "Nahrať súbory do %s", "Select or drop files" : "Vyberte alebo položte súbory", "Uploading files…" : "Nahrávanie súborov...", "Uploaded files:" : "Nahrané súbory...", - "%s is publicly shared" : "%s je sprístupnené verejne" + "%s is publicly shared" : "%s je verejne zdieľaný" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/files_sharing/l10n/sk.json b/apps/files_sharing/l10n/sk.json index 22988f09db28c..dd44d86330ece 100644 --- a/apps/files_sharing/l10n/sk.json +++ b/apps/files_sharing/l10n/sk.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "Zlý alebo žiadny zadaný parameter aktualizácie", "Can't change permissions for public share links" : "Nemožno zmeniť oprávnenia pre verejné sprístupnené odkazy", "Cannot increase permissions" : "Nie je možné navýšiť oprávnenia", + "shared by %s" : "Sprístupnil %s", + "Download" : "Sťahovanie", + "Direct link" : "Priama linka", + "Add to your Nextcloud" : "Pridať do svojho Nextcloud", "Share API is disabled" : "API pre sprístupňovanie je zakázané", "This share is password-protected" : "Táto položka je chránené heslom", "The password is wrong. Try again." : "Heslo je chybné. Skúste to znova.", @@ -99,15 +103,11 @@ "the link expired" : "linke vypršala platnosť", "sharing is disabled" : "sprístupňovanie je zakázané", "For more info, please ask the person who sent this link." : "Pre viac informácií kontaktujte osobu, ktorá vám poslala tento odkaz.", - "shared by %s" : "Sprístupnil %s", - "Download" : "Sťahovanie", - "Direct link" : "Priama linka", - "Add to your Nextcloud" : "Pridať do svojho Nextcloud", "Download %s" : "Stiahnuť %s", "Upload files to %s" : "Nahrať súbory do %s", "Select or drop files" : "Vyberte alebo položte súbory", "Uploading files…" : "Nahrávanie súborov...", "Uploaded files:" : "Nahrané súbory...", - "%s is publicly shared" : "%s je sprístupnené verejne" + "%s is publicly shared" : "%s je verejne zdieľaný" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/sl.js b/apps/files_sharing/l10n/sl.js index 78b89b927929f..4c105e9365fd6 100644 --- a/apps/files_sharing/l10n/sl.js +++ b/apps/files_sharing/l10n/sl.js @@ -11,8 +11,16 @@ OC.L10N.register( "No shared links" : "Ni povezav za souporabo", "Files and folders you share by link will show up here" : "Datoteke in mape, ki ste jih označili za souporabo prek povezave, bodo zbrane na tem mestu.", "You can upload into this folder" : "V to mapo je dovoljeno poslati datoteke", + "Invalid server URL" : "Neveljaven URL strežnika", + "Share" : "Souporaba", + "No expiration date set" : "Datum poteka ni določen", "Shared by" : "V souporabi z", "Sharing" : "Souporaba", + "Downloaded via public link" : "Prejeto preko javne povezave", + "Removed public link" : "Javno povezava je odstranjena", + "Public link expired" : "Javna povezava je potekla", + "A file or folder was shared from another server" : "Souporaba datoteke ali mape z drugega strežnika je omogočena.", + "A file or folder has been shared" : "Za datoteko ali mapo je omogočena souporaba.", "Wrong share ID, share doesn't exist" : "Napačen ID mesta uporabe; mesto ne obstaja!", "Could not delete share" : "Tega predmeta v souporabi ni mogoče izbrisati.", "Please specify a file or folder path" : "Določiti je treba datoteko ali pot do mape", @@ -31,49 +39,8 @@ OC.L10N.register( "Wrong or no update parameter given" : "Parameter posodobitve ni podan ali pa je navedena napačna vrednost", "Can't change permissions for public share links" : "Za javne povezave souporabe, spreminjanje dovoljenj ni mogoče.", "Cannot increase permissions" : "Ni mogoče povišati dovoljenj", - "A file or folder has been shared" : "Za datoteko ali mapo je omogočena souporaba.", - "A file or folder was shared from another server" : "Souporaba datoteke ali mape z drugega strežnika je omogočena.", - "A public shared file or folder was downloaded" : "Mapa ali datoteka v souporabi je bila prejeta.", - "You received a new remote share %2$s from %1$s" : "Uporabnik %1$s vam je omogočil souporabo mape %2$s", - "You received a new remote share from %s" : "Prejeli ste mapo za oddaljeno souporabo z %s", - "%1$s accepted remote share %2$s" : "Uporabnik %1$s je prejel oddaljeno souporabo %2$s", - "%1$s declined remote share %2$s" : "Uporabnik %1$s je zavrnil souporabo %2$s", - "%1$s unshared %2$s from you" : "Uporabnik %1$s je onemogoči souporabo %2$s z vami", - "Public shared folder %1$s was downloaded" : "Mapa v souporabi %1$s je bila prejeta.", - "Public shared file %1$s was downloaded" : "Datoteka v souporabi %1$s je bila prejeta", - "You shared %1$s with %2$s" : "Omogočili ste souporabo %1$s z uporabnikom %2$s", - "%2$s shared %1$s with %3$s" : "Uporabnik %2$s je omogočil souporabo %1$s z %3$s", - "You removed the share of %2$s for %1$s" : "Odstranili ste mapo v souporabi %2$s za %1$s", - "%2$s removed the share of %3$s for %1$s" : "%2$s umaknil souporabo %3$s za %1$s", - "You shared %1$s with group %2$s" : "Omogočili ste souporabo %1$s s skupino %2$s", - "%2$s shared %1$s with group %3$s" : "%2$s deli %1$s s skupino %3$s", - "You removed the share of group %2$s for %1$s" : "Ukinili ste deljenje s skupino %2$s za %1$s", - "%2$s removed the share of group %3$s for %1$s" : "%2$s ukinil deljenje s skupino %3$s za %1$s", - "%2$s shared %1$s via link" : "%2$s deli %1$s preko povezave", - "You shared %1$s via link" : "Omogočili ste souporabo %1$s preko povezave", - "You removed the public link for %1$s" : "Umaknili ste javno povezavo za %1$s", - "%2$s removed the public link for %1$s" : "%2$s umaknil javno povezavo za %1$s", - "Your public link for %1$s expired" : "Javna povezava za %1$s je časovno potekla!", - "The public link of %2$s for %1$s expired" : "Javna povezava %2$s za %1$s je potekla", - "%2$s shared %1$s with you" : "Uporabnik %2$s je omogočil souporabo %1$s", - "%2$s removed the share for %1$s" : "%2$s je umaknil deljenje za %1$s", - "Downloaded via public link" : "Prejeto preko javne povezave", - "Shared with %2$s" : "V souporabi z %2$s", - "Shared with %3$s by %2$s" : "Souporaba z %3$s in %2$s", - "Removed share for %2$s" : "Odstranitev souporabe za %2$s", - "%2$s removed share for %3$s" : "%2$s je odstranil souporabo za %3$s", - "Shared with group %2$s" : "V souporabi s skupino %2$s", - "Shared with group %3$s by %2$s" : "V souporabi s skupino %3$s in %2$s", - "Removed share of group %2$s" : "Odstranitev souporabe s skupino %2$s", - "%2$s removed share of group %3$s" : "%2$s je odstranil povezavo za skupino %3$s", - "Shared via link by %2$s" : "%2$s je omogočil souporabo prek povezave", - "Shared via public link" : "V souporabi prek javne povezave", - "Removed public link" : "Javno povezava je odstranjena", - "%2$s removed public link" : "%2$s je odstranil javno povezavo", - "Public link expired" : "Javna povezava je potekla", - "Public link of %2$s expired" : "Javna povezava %2$s je potekla", - "Shared by %2$s" : "Souporabo je omogočil uporabnik %2$s", - "Shares" : "Souporaba", + "Download" : "Prejmi", + "Direct link" : "Neposredna povezava", "Share API is disabled" : "API za souporabo je izključen", "This share is password-protected" : "To mesto je zaščiteno z geslom.", "The password is wrong. Try again." : "Geslo je napačno. Poskusite znova.", @@ -87,9 +54,7 @@ OC.L10N.register( "the link expired" : "povezava je pretekla,", "sharing is disabled" : "souporaba je onemogočena.", "For more info, please ask the person who sent this link." : "Za več podrobnosti stopite v stik s pošiljateljem te povezave.", - "Download" : "Prejmi", "Download %s" : "Prejmi %s", - "Direct link" : "Neposredna povezava", "Upload files to %s" : "Naloži datoteke v %s", "Select or drop files" : "Izberi ali povleci datoteke", "Uploading files…" : "Nalaganje datotek...", diff --git a/apps/files_sharing/l10n/sl.json b/apps/files_sharing/l10n/sl.json index af8d74d4afcc1..bd64c9744c23d 100644 --- a/apps/files_sharing/l10n/sl.json +++ b/apps/files_sharing/l10n/sl.json @@ -9,8 +9,16 @@ "No shared links" : "Ni povezav za souporabo", "Files and folders you share by link will show up here" : "Datoteke in mape, ki ste jih označili za souporabo prek povezave, bodo zbrane na tem mestu.", "You can upload into this folder" : "V to mapo je dovoljeno poslati datoteke", + "Invalid server URL" : "Neveljaven URL strežnika", + "Share" : "Souporaba", + "No expiration date set" : "Datum poteka ni določen", "Shared by" : "V souporabi z", "Sharing" : "Souporaba", + "Downloaded via public link" : "Prejeto preko javne povezave", + "Removed public link" : "Javno povezava je odstranjena", + "Public link expired" : "Javna povezava je potekla", + "A file or folder was shared from another server" : "Souporaba datoteke ali mape z drugega strežnika je omogočena.", + "A file or folder has been shared" : "Za datoteko ali mapo je omogočena souporaba.", "Wrong share ID, share doesn't exist" : "Napačen ID mesta uporabe; mesto ne obstaja!", "Could not delete share" : "Tega predmeta v souporabi ni mogoče izbrisati.", "Please specify a file or folder path" : "Določiti je treba datoteko ali pot do mape", @@ -29,49 +37,8 @@ "Wrong or no update parameter given" : "Parameter posodobitve ni podan ali pa je navedena napačna vrednost", "Can't change permissions for public share links" : "Za javne povezave souporabe, spreminjanje dovoljenj ni mogoče.", "Cannot increase permissions" : "Ni mogoče povišati dovoljenj", - "A file or folder has been shared" : "Za datoteko ali mapo je omogočena souporaba.", - "A file or folder was shared from another server" : "Souporaba datoteke ali mape z drugega strežnika je omogočena.", - "A public shared file or folder was downloaded" : "Mapa ali datoteka v souporabi je bila prejeta.", - "You received a new remote share %2$s from %1$s" : "Uporabnik %1$s vam je omogočil souporabo mape %2$s", - "You received a new remote share from %s" : "Prejeli ste mapo za oddaljeno souporabo z %s", - "%1$s accepted remote share %2$s" : "Uporabnik %1$s je prejel oddaljeno souporabo %2$s", - "%1$s declined remote share %2$s" : "Uporabnik %1$s je zavrnil souporabo %2$s", - "%1$s unshared %2$s from you" : "Uporabnik %1$s je onemogoči souporabo %2$s z vami", - "Public shared folder %1$s was downloaded" : "Mapa v souporabi %1$s je bila prejeta.", - "Public shared file %1$s was downloaded" : "Datoteka v souporabi %1$s je bila prejeta", - "You shared %1$s with %2$s" : "Omogočili ste souporabo %1$s z uporabnikom %2$s", - "%2$s shared %1$s with %3$s" : "Uporabnik %2$s je omogočil souporabo %1$s z %3$s", - "You removed the share of %2$s for %1$s" : "Odstranili ste mapo v souporabi %2$s za %1$s", - "%2$s removed the share of %3$s for %1$s" : "%2$s umaknil souporabo %3$s za %1$s", - "You shared %1$s with group %2$s" : "Omogočili ste souporabo %1$s s skupino %2$s", - "%2$s shared %1$s with group %3$s" : "%2$s deli %1$s s skupino %3$s", - "You removed the share of group %2$s for %1$s" : "Ukinili ste deljenje s skupino %2$s za %1$s", - "%2$s removed the share of group %3$s for %1$s" : "%2$s ukinil deljenje s skupino %3$s za %1$s", - "%2$s shared %1$s via link" : "%2$s deli %1$s preko povezave", - "You shared %1$s via link" : "Omogočili ste souporabo %1$s preko povezave", - "You removed the public link for %1$s" : "Umaknili ste javno povezavo za %1$s", - "%2$s removed the public link for %1$s" : "%2$s umaknil javno povezavo za %1$s", - "Your public link for %1$s expired" : "Javna povezava za %1$s je časovno potekla!", - "The public link of %2$s for %1$s expired" : "Javna povezava %2$s za %1$s je potekla", - "%2$s shared %1$s with you" : "Uporabnik %2$s je omogočil souporabo %1$s", - "%2$s removed the share for %1$s" : "%2$s je umaknil deljenje za %1$s", - "Downloaded via public link" : "Prejeto preko javne povezave", - "Shared with %2$s" : "V souporabi z %2$s", - "Shared with %3$s by %2$s" : "Souporaba z %3$s in %2$s", - "Removed share for %2$s" : "Odstranitev souporabe za %2$s", - "%2$s removed share for %3$s" : "%2$s je odstranil souporabo za %3$s", - "Shared with group %2$s" : "V souporabi s skupino %2$s", - "Shared with group %3$s by %2$s" : "V souporabi s skupino %3$s in %2$s", - "Removed share of group %2$s" : "Odstranitev souporabe s skupino %2$s", - "%2$s removed share of group %3$s" : "%2$s je odstranil povezavo za skupino %3$s", - "Shared via link by %2$s" : "%2$s je omogočil souporabo prek povezave", - "Shared via public link" : "V souporabi prek javne povezave", - "Removed public link" : "Javno povezava je odstranjena", - "%2$s removed public link" : "%2$s je odstranil javno povezavo", - "Public link expired" : "Javna povezava je potekla", - "Public link of %2$s expired" : "Javna povezava %2$s je potekla", - "Shared by %2$s" : "Souporabo je omogočil uporabnik %2$s", - "Shares" : "Souporaba", + "Download" : "Prejmi", + "Direct link" : "Neposredna povezava", "Share API is disabled" : "API za souporabo je izključen", "This share is password-protected" : "To mesto je zaščiteno z geslom.", "The password is wrong. Try again." : "Geslo je napačno. Poskusite znova.", @@ -85,9 +52,7 @@ "the link expired" : "povezava je pretekla,", "sharing is disabled" : "souporaba je onemogočena.", "For more info, please ask the person who sent this link." : "Za več podrobnosti stopite v stik s pošiljateljem te povezave.", - "Download" : "Prejmi", "Download %s" : "Prejmi %s", - "Direct link" : "Neposredna povezava", "Upload files to %s" : "Naloži datoteke v %s", "Select or drop files" : "Izberi ali povleci datoteke", "Uploading files…" : "Nalaganje datotek...", diff --git a/apps/files_sharing/l10n/sq.js b/apps/files_sharing/l10n/sq.js index baa6b3e843895..85a64740a4938 100644 --- a/apps/files_sharing/l10n/sq.js +++ b/apps/files_sharing/l10n/sq.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "Ose u dha parametër i gabuar përditësimesh, pse s’u dha fare ", "Can't change permissions for public share links" : "S’mund të ndryshohen lejet për lidhje ndarjesh publike", "Cannot increase permissions" : "S’mund të fuqizohen lejet", + "shared by %s" : "ndarë nga %s", + "Download" : "Shkarko", + "Direct link" : "Lidhje e drejtpërdrejtë", + "Add to your Nextcloud" : "Shtojeni tek Nextcloud-i juaj", "Share API is disabled" : "API i ndarjeve është çaktivizuar", "This share is password-protected" : "Kjo pjesë është e mbrojtur me fjalëkalim", "The password is wrong. Try again." : "Fjalëkalimi është i gabuar. Riprovoni.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "lidhja ka skaduar", "sharing is disabled" : "ndarjet janë çaktivizuar", "For more info, please ask the person who sent this link." : "Për më shumë të dhëna, ju lutemi, pyetni personin që ju dërgoi këtë lidhje.", - "shared by %s" : "ndarë nga %s", - "Download" : "Shkarko", - "Direct link" : "Lidhje e drejtpërdrejtë", - "Add to your Nextcloud" : "Shtojeni tek Nextcloud-i juaj", "Download %s" : "Shkarko %s", "Upload files to %s" : "Ngrako skedarët tek %s", "Select or drop files" : "Përzgjidh ose hiq skedarët", "Uploading files…" : "Skedarët po ngarkohen...", - "Uploaded files:" : "Skedarët e ngarkuar:", - "%s is publicly shared" : "%s është ndarë publikisht" + "Uploaded files:" : "Skedarët e ngarkuar:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/sq.json b/apps/files_sharing/l10n/sq.json index c0c98e1b0468f..b7cc40ca9eea5 100644 --- a/apps/files_sharing/l10n/sq.json +++ b/apps/files_sharing/l10n/sq.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "Ose u dha parametër i gabuar përditësimesh, pse s’u dha fare ", "Can't change permissions for public share links" : "S’mund të ndryshohen lejet për lidhje ndarjesh publike", "Cannot increase permissions" : "S’mund të fuqizohen lejet", + "shared by %s" : "ndarë nga %s", + "Download" : "Shkarko", + "Direct link" : "Lidhje e drejtpërdrejtë", + "Add to your Nextcloud" : "Shtojeni tek Nextcloud-i juaj", "Share API is disabled" : "API i ndarjeve është çaktivizuar", "This share is password-protected" : "Kjo pjesë është e mbrojtur me fjalëkalim", "The password is wrong. Try again." : "Fjalëkalimi është i gabuar. Riprovoni.", @@ -99,15 +103,10 @@ "the link expired" : "lidhja ka skaduar", "sharing is disabled" : "ndarjet janë çaktivizuar", "For more info, please ask the person who sent this link." : "Për më shumë të dhëna, ju lutemi, pyetni personin që ju dërgoi këtë lidhje.", - "shared by %s" : "ndarë nga %s", - "Download" : "Shkarko", - "Direct link" : "Lidhje e drejtpërdrejtë", - "Add to your Nextcloud" : "Shtojeni tek Nextcloud-i juaj", "Download %s" : "Shkarko %s", "Upload files to %s" : "Ngrako skedarët tek %s", "Select or drop files" : "Përzgjidh ose hiq skedarët", "Uploading files…" : "Skedarët po ngarkohen...", - "Uploaded files:" : "Skedarët e ngarkuar:", - "%s is publicly shared" : "%s është ndarë publikisht" + "Uploaded files:" : "Skedarët e ngarkuar:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/sr.js b/apps/files_sharing/l10n/sr.js index c456e7b7a7119..3c5f3cdaffe61 100644 --- a/apps/files_sharing/l10n/sr.js +++ b/apps/files_sharing/l10n/sr.js @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "Погрешан или ненаведен параметер", "Can't change permissions for public share links" : "Не могу се променити привилегије за јавно доступне везе", "Cannot increase permissions" : "Не могу да повећам привилегије", + "shared by %s" : "поделио %s", + "Download" : "Преузми", + "Direct link" : "Директна веза", + "Add to your Nextcloud" : "Додајте у свој облак", "Share API is disabled" : "API за дељене је искључен", + "File sharing" : "Дељења фајлова", "This share is password-protected" : "Дељење је заштићено лозинком", "The password is wrong. Try again." : "Лозинка је погрешна. Покушајте поново.", "Password" : "Лозинка", @@ -101,10 +106,6 @@ OC.L10N.register( "the link expired" : "веза је истекла", "sharing is disabled" : "дељење је искључено", "For more info, please ask the person who sent this link." : "За више информација, питајте особу која вам је послала везу.", - "shared by %s" : "поделио %s", - "Download" : "Преузми", - "Direct link" : "Директна веза", - "Add to your Nextcloud" : "Додајте у свој облак", "Download %s" : "Преузми %s", "Upload files to %s" : "Отпремите фајлове на%s", "Select or drop files" : "Одаберите или превуците фајлове", diff --git a/apps/files_sharing/l10n/sr.json b/apps/files_sharing/l10n/sr.json index f2a61d654c85d..4800772506db6 100644 --- a/apps/files_sharing/l10n/sr.json +++ b/apps/files_sharing/l10n/sr.json @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "Погрешан или ненаведен параметер", "Can't change permissions for public share links" : "Не могу се променити привилегије за јавно доступне везе", "Cannot increase permissions" : "Не могу да повећам привилегије", + "shared by %s" : "поделио %s", + "Download" : "Преузми", + "Direct link" : "Директна веза", + "Add to your Nextcloud" : "Додајте у свој облак", "Share API is disabled" : "API за дељене је искључен", + "File sharing" : "Дељења фајлова", "This share is password-protected" : "Дељење је заштићено лозинком", "The password is wrong. Try again." : "Лозинка је погрешна. Покушајте поново.", "Password" : "Лозинка", @@ -99,10 +104,6 @@ "the link expired" : "веза је истекла", "sharing is disabled" : "дељење је искључено", "For more info, please ask the person who sent this link." : "За више информација, питајте особу која вам је послала везу.", - "shared by %s" : "поделио %s", - "Download" : "Преузми", - "Direct link" : "Директна веза", - "Add to your Nextcloud" : "Додајте у свој облак", "Download %s" : "Преузми %s", "Upload files to %s" : "Отпремите фајлове на%s", "Select or drop files" : "Одаберите или превуците фајлове", diff --git a/apps/files_sharing/l10n/sv.js b/apps/files_sharing/l10n/sv.js index e79c78787d5ec..22d85532a9a30 100644 --- a/apps/files_sharing/l10n/sv.js +++ b/apps/files_sharing/l10n/sv.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "Fel eller ingen uppdateringsparameter angiven", "Can't change permissions for public share links" : "Det går inte att ändra behörigheterna för offentliga länkar", "Cannot increase permissions" : "Kan inte utöka behörigheter", + "shared by %s" : "delad av %s", + "Download" : "Ladda ned", + "Direct link" : "Direktlänk", + "Add to your Nextcloud" : "Lägg till i molnet", "Share API is disabled" : "Delning av API är inaktiverad", "This share is password-protected" : "Den här delningen är lösenordsskyddad", "The password is wrong. Try again." : "Lösenordet är fel. Försök igen.", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "giltighet för länken har gått ut", "sharing is disabled" : "delning är inaktiverat", "For more info, please ask the person who sent this link." : "För mer information, kontakta den person som skickade den här länken.", - "shared by %s" : "delad av %s", - "Download" : "Ladda ned", - "Direct link" : "Direktlänk", - "Add to your Nextcloud" : "Lägg till i molnet", "Download %s" : "Ladda ned %s", "Upload files to %s" : "Ladda upp filer till %s", "Select or drop files" : "Välj eller dra filer hit", "Uploading files…" : "Laddar upp filer...", - "Uploaded files:" : "Uppladdade filer:", - "%s is publicly shared" : "%s är offentligt delad" + "Uploaded files:" : "Uppladdade filer:" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_sharing/l10n/sv.json b/apps/files_sharing/l10n/sv.json index 4a7875b51037c..cefff8855836c 100644 --- a/apps/files_sharing/l10n/sv.json +++ b/apps/files_sharing/l10n/sv.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "Fel eller ingen uppdateringsparameter angiven", "Can't change permissions for public share links" : "Det går inte att ändra behörigheterna för offentliga länkar", "Cannot increase permissions" : "Kan inte utöka behörigheter", + "shared by %s" : "delad av %s", + "Download" : "Ladda ned", + "Direct link" : "Direktlänk", + "Add to your Nextcloud" : "Lägg till i molnet", "Share API is disabled" : "Delning av API är inaktiverad", "This share is password-protected" : "Den här delningen är lösenordsskyddad", "The password is wrong. Try again." : "Lösenordet är fel. Försök igen.", @@ -99,15 +103,10 @@ "the link expired" : "giltighet för länken har gått ut", "sharing is disabled" : "delning är inaktiverat", "For more info, please ask the person who sent this link." : "För mer information, kontakta den person som skickade den här länken.", - "shared by %s" : "delad av %s", - "Download" : "Ladda ned", - "Direct link" : "Direktlänk", - "Add to your Nextcloud" : "Lägg till i molnet", "Download %s" : "Ladda ned %s", "Upload files to %s" : "Ladda upp filer till %s", "Select or drop files" : "Välj eller dra filer hit", "Uploading files…" : "Laddar upp filer...", - "Uploaded files:" : "Uppladdade filer:", - "%s is publicly shared" : "%s är offentligt delad" + "Uploaded files:" : "Uppladdade filer:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_sharing/l10n/tr.js b/apps/files_sharing/l10n/tr.js index 524333922e31f..cd4aa59072878 100644 --- a/apps/files_sharing/l10n/tr.js +++ b/apps/files_sharing/l10n/tr.js @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "Parametre yanlış ya da herhangi bir parametre belirtilmemiş", "Can't change permissions for public share links" : "Herkese açık paylaşılan bağlantıların erişim hakları değiştirilemez", "Cannot increase permissions" : "Erişim izinleri yükseltilemez", + "shared by %s" : "%s tarafından paylaşıldı", + "Download" : "İndir", + "Direct link" : "Doğrudan bağlantı", + "Add to your Nextcloud" : "Nextcloud hesabınıza ekleyin", "Share API is disabled" : "Paylaşım API arayüzü devre dışı", + "File sharing" : "Dosya paylaşımı", "This share is password-protected" : "Bu paylaşım parola korumalı", "The password is wrong. Try again." : "Parola yanlış. Yeniden deneyin.", "Password" : "Parola", @@ -101,10 +106,6 @@ OC.L10N.register( "the link expired" : "bağlantı süresi dolmuş", "sharing is disabled" : "paylaşım devre dışı bırakılmış", "For more info, please ask the person who sent this link." : "Ayrıntılı bilgi almak için bu bağlantıyı aldığınız kişi ile görüşün.", - "shared by %s" : "%s tarafından paylaşıldı", - "Download" : "İndir", - "Direct link" : "Doğrudan bağlantı", - "Add to your Nextcloud" : "Nextcloud hesabınıza ekleyin", "Download %s" : "%s İndir", "Upload files to %s" : "Dosyaları %s konumuna yükle", "Select or drop files" : "Dosyaları seçin ya da sürükleyip bırakın", diff --git a/apps/files_sharing/l10n/tr.json b/apps/files_sharing/l10n/tr.json index b0754cb52a2bc..418c9901c9681 100644 --- a/apps/files_sharing/l10n/tr.json +++ b/apps/files_sharing/l10n/tr.json @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "Parametre yanlış ya da herhangi bir parametre belirtilmemiş", "Can't change permissions for public share links" : "Herkese açık paylaşılan bağlantıların erişim hakları değiştirilemez", "Cannot increase permissions" : "Erişim izinleri yükseltilemez", + "shared by %s" : "%s tarafından paylaşıldı", + "Download" : "İndir", + "Direct link" : "Doğrudan bağlantı", + "Add to your Nextcloud" : "Nextcloud hesabınıza ekleyin", "Share API is disabled" : "Paylaşım API arayüzü devre dışı", + "File sharing" : "Dosya paylaşımı", "This share is password-protected" : "Bu paylaşım parola korumalı", "The password is wrong. Try again." : "Parola yanlış. Yeniden deneyin.", "Password" : "Parola", @@ -99,10 +104,6 @@ "the link expired" : "bağlantı süresi dolmuş", "sharing is disabled" : "paylaşım devre dışı bırakılmış", "For more info, please ask the person who sent this link." : "Ayrıntılı bilgi almak için bu bağlantıyı aldığınız kişi ile görüşün.", - "shared by %s" : "%s tarafından paylaşıldı", - "Download" : "İndir", - "Direct link" : "Doğrudan bağlantı", - "Add to your Nextcloud" : "Nextcloud hesabınıza ekleyin", "Download %s" : "%s İndir", "Upload files to %s" : "Dosyaları %s konumuna yükle", "Select or drop files" : "Dosyaları seçin ya da sürükleyip bırakın", diff --git a/apps/files_sharing/l10n/zh_CN.js b/apps/files_sharing/l10n/zh_CN.js index 2cedc0e2d7bbd..ea2e6162eb008 100644 --- a/apps/files_sharing/l10n/zh_CN.js +++ b/apps/files_sharing/l10n/zh_CN.js @@ -87,7 +87,12 @@ OC.L10N.register( "Wrong or no update parameter given" : "错误或没有更新参数给出", "Can't change permissions for public share links" : "不能改变公共分享链接权限", "Cannot increase permissions" : "不能增加权限", + "shared by %s" : "共享者 %s", + "Download" : "下载", + "Direct link" : "直接链接", + "Add to your Nextcloud" : "添加到你的 Nextcloud", "Share API is disabled" : "共享 API 已被禁用", + "File sharing" : "文件共享", "This share is password-protected" : "这是一个密码保护的共享", "The password is wrong. Try again." : "用户名或密码错误!请重试", "Password" : "密码", @@ -99,12 +104,8 @@ OC.L10N.register( "Reasons might be:" : "可能原因是:", "the item was removed" : "此项已移除", "the link expired" : "链接过期", - "sharing is disabled" : "分享已禁用", + "sharing is disabled" : "已禁用共享", "For more info, please ask the person who sent this link." : "欲知详情,请联系发给你链接的人。", - "shared by %s" : "共享者 %s", - "Download" : "下载", - "Direct link" : "直接链接", - "Add to your Nextcloud" : "添加到你的 Nextcloud", "Download %s" : "下载 %s", "Upload files to %s" : "上传文件到 %s", "Select or drop files" : "选择或删除文件", diff --git a/apps/files_sharing/l10n/zh_CN.json b/apps/files_sharing/l10n/zh_CN.json index 2f83b8d0fdc4f..34c859c5408f5 100644 --- a/apps/files_sharing/l10n/zh_CN.json +++ b/apps/files_sharing/l10n/zh_CN.json @@ -85,7 +85,12 @@ "Wrong or no update parameter given" : "错误或没有更新参数给出", "Can't change permissions for public share links" : "不能改变公共分享链接权限", "Cannot increase permissions" : "不能增加权限", + "shared by %s" : "共享者 %s", + "Download" : "下载", + "Direct link" : "直接链接", + "Add to your Nextcloud" : "添加到你的 Nextcloud", "Share API is disabled" : "共享 API 已被禁用", + "File sharing" : "文件共享", "This share is password-protected" : "这是一个密码保护的共享", "The password is wrong. Try again." : "用户名或密码错误!请重试", "Password" : "密码", @@ -97,12 +102,8 @@ "Reasons might be:" : "可能原因是:", "the item was removed" : "此项已移除", "the link expired" : "链接过期", - "sharing is disabled" : "分享已禁用", + "sharing is disabled" : "已禁用共享", "For more info, please ask the person who sent this link." : "欲知详情,请联系发给你链接的人。", - "shared by %s" : "共享者 %s", - "Download" : "下载", - "Direct link" : "直接链接", - "Add to your Nextcloud" : "添加到你的 Nextcloud", "Download %s" : "下载 %s", "Upload files to %s" : "上传文件到 %s", "Select or drop files" : "选择或删除文件", diff --git a/apps/files_sharing/l10n/zh_TW.js b/apps/files_sharing/l10n/zh_TW.js index ff6fbbcb0b231..0e08c501c08b2 100644 --- a/apps/files_sharing/l10n/zh_TW.js +++ b/apps/files_sharing/l10n/zh_TW.js @@ -87,6 +87,10 @@ OC.L10N.register( "Wrong or no update parameter given" : "更新參數不正確或未提供", "Can't change permissions for public share links" : "無法由公開分享的連結變更權限", "Cannot increase permissions" : "無法增加權限", + "shared by %s" : "分享自 %s", + "Download" : "下載", + "Direct link" : "直接連結", + "Add to your Nextcloud" : "加入到您的 Nextcloud", "Share API is disabled" : "分享 API 已停用", "This share is password-protected" : "這個分享有密碼保護", "The password is wrong. Try again." : "請檢查您的密碼並再試一次", @@ -101,15 +105,10 @@ OC.L10N.register( "the link expired" : "連結過期", "sharing is disabled" : "分享功能已停用", "For more info, please ask the person who sent this link." : "請詢問告訴您此連結的人以瞭解更多", - "shared by %s" : "分享自 %s", - "Download" : "下載", - "Direct link" : "直接連結", - "Add to your Nextcloud" : "加入到您的 Nextcloud", "Download %s" : "下載 %s", "Upload files to %s" : "上傳檔案到 %s", "Select or drop files" : "選擇或拖曳檔案至此", "Uploading files…" : "上傳檔案中…", - "Uploaded files:" : "已上傳的檔案:", - "%s is publicly shared" : "%s 是被公然分享的" + "Uploaded files:" : "已上傳的檔案:" }, "nplurals=1; plural=0;"); diff --git a/apps/files_sharing/l10n/zh_TW.json b/apps/files_sharing/l10n/zh_TW.json index 4b7c0f05d7baa..70aa2dc0a14c8 100644 --- a/apps/files_sharing/l10n/zh_TW.json +++ b/apps/files_sharing/l10n/zh_TW.json @@ -85,6 +85,10 @@ "Wrong or no update parameter given" : "更新參數不正確或未提供", "Can't change permissions for public share links" : "無法由公開分享的連結變更權限", "Cannot increase permissions" : "無法增加權限", + "shared by %s" : "分享自 %s", + "Download" : "下載", + "Direct link" : "直接連結", + "Add to your Nextcloud" : "加入到您的 Nextcloud", "Share API is disabled" : "分享 API 已停用", "This share is password-protected" : "這個分享有密碼保護", "The password is wrong. Try again." : "請檢查您的密碼並再試一次", @@ -99,15 +103,10 @@ "the link expired" : "連結過期", "sharing is disabled" : "分享功能已停用", "For more info, please ask the person who sent this link." : "請詢問告訴您此連結的人以瞭解更多", - "shared by %s" : "分享自 %s", - "Download" : "下載", - "Direct link" : "直接連結", - "Add to your Nextcloud" : "加入到您的 Nextcloud", "Download %s" : "下載 %s", "Upload files to %s" : "上傳檔案到 %s", "Select or drop files" : "選擇或拖曳檔案至此", "Uploading files…" : "上傳檔案中…", - "Uploaded files:" : "已上傳的檔案:", - "%s is publicly shared" : "%s 是被公然分享的" + "Uploaded files:" : "已上傳的檔案:" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_sharing/lib/Controller/ShareAPIController.php b/apps/files_sharing/lib/Controller/ShareAPIController.php index 10876e1656821..82a93c446e2e0 100644 --- a/apps/files_sharing/lib/Controller/ShareAPIController.php +++ b/apps/files_sharing/lib/Controller/ShareAPIController.php @@ -200,8 +200,16 @@ protected function formatShare(\OCP\Share\IShare $share, Node $recipientNode = n $result['share_with_displayname'] = $this->getDisplayNameFromAddressBook($share->getSharedWith(), 'EMAIL'); $result['token'] = $share->getToken(); } else if ($share->getShareType() === \OCP\Share::SHARE_TYPE_CIRCLE) { - $result['share_with_displayname'] = $share->getSharedWith(); - $result['share_with'] = explode(' ', $share->getSharedWith(), 2)[0]; + // getSharedWith() returns either "name (type, owner)" or + // "name (type, owner) [id]", depending on the Circles app version. + $hasCircleId = (substr($share->getSharedWith(), -1) === ']'); + + $displayNameLength = ($hasCircleId? strrpos($share->getSharedWith(), ' '): strlen($share->getSharedWith())); + $result['share_with_displayname'] = substr($share->getSharedWith(), 0, $displayNameLength); + + $shareWithStart = ($hasCircleId? strrpos($share->getSharedWith(), '[') + 1: 0); + $shareWithLength = ($hasCircleId? -1: strpos($share->getSharedWith(), ' ')); + $result['share_with'] = substr($share->getSharedWith(), $shareWithStart, $shareWithLength); } diff --git a/apps/files_sharing/lib/Controller/ShareController.php b/apps/files_sharing/lib/Controller/ShareController.php index c51bc1a75ddab..3669d8fda460a 100644 --- a/apps/files_sharing/lib/Controller/ShareController.php +++ b/apps/files_sharing/lib/Controller/ShareController.php @@ -385,7 +385,18 @@ public function showShare($token, $path = '') { // We just have direct previews for image files if ($share->getNode()->getMimePart() === 'image') { $shareTmpl['previewURL'] = $this->urlGenerator->linkToRouteAbsolute('files_sharing.publicpreview.directLink', ['token' => $token]); + $ogPreview = $shareTmpl['previewURL']; + + //Whatapp is kind of picky about their size requirements + if ($this->request->isUserAgent(['/^WhatsApp/'])) { + $ogPreview = $this->urlGenerator->linkToRouteAbsolute('files_sharing.PublicPreview.getPreview', [ + 't' => $token, + 'x' => 256, + 'y' => 256, + 'a' => true, + ]); + } } } else { $shareTmpl['previewImage'] = $this->urlGenerator->getAbsoluteURL($this->urlGenerator->imagePath('core', 'favicon-fb.png')); diff --git a/apps/files_trashbin/l10n/es_MX.js b/apps/files_trashbin/l10n/es_MX.js index 24cc0e4083ed8..84ee97bfd5461 100644 --- a/apps/files_trashbin/l10n/es_MX.js +++ b/apps/files_trashbin/l10n/es_MX.js @@ -3,7 +3,7 @@ OC.L10N.register( { "Couldn't delete %s permanently" : "No fue posible eliminar %s permanentemente", "Couldn't restore %s" : "No fue posible restaurar %s", - "Deleted files" : "Archivos borrados", + "Deleted files" : "Papelera", "Restore" : "Restaurar", "Delete" : "Borrar", "Delete permanently" : "Borrar permanentemente", diff --git a/apps/files_trashbin/l10n/es_MX.json b/apps/files_trashbin/l10n/es_MX.json index 3a539073e8bb4..a1d1ada60ffdb 100644 --- a/apps/files_trashbin/l10n/es_MX.json +++ b/apps/files_trashbin/l10n/es_MX.json @@ -1,7 +1,7 @@ { "translations": { "Couldn't delete %s permanently" : "No fue posible eliminar %s permanentemente", "Couldn't restore %s" : "No fue posible restaurar %s", - "Deleted files" : "Archivos borrados", + "Deleted files" : "Papelera", "Restore" : "Restaurar", "Delete" : "Borrar", "Delete permanently" : "Borrar permanentemente", diff --git a/apps/files_trashbin/l10n/mn.js b/apps/files_trashbin/l10n/mn.js new file mode 100644 index 0000000000000..c35b7e2e784f7 --- /dev/null +++ b/apps/files_trashbin/l10n/mn.js @@ -0,0 +1,14 @@ +OC.L10N.register( + "files_trashbin", + { + "Deleted files" : "Устгасан файлууд", + "Restore" : "Сэргээх", + "Delete" : "Устгах", + "Delete permanently" : "Үүрд устгах", + "Error" : "Алдаа", + "This operation is forbidden" : "Энэ үйлдэл хориотой", + "Select all" : "Бүгдийг сонгох", + "Name" : "Нэр", + "Deleted" : "Устгагдсан" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/files_trashbin/l10n/mn.json b/apps/files_trashbin/l10n/mn.json new file mode 100644 index 0000000000000..e88cd4422407f --- /dev/null +++ b/apps/files_trashbin/l10n/mn.json @@ -0,0 +1,12 @@ +{ "translations": { + "Deleted files" : "Устгасан файлууд", + "Restore" : "Сэргээх", + "Delete" : "Устгах", + "Delete permanently" : "Үүрд устгах", + "Error" : "Алдаа", + "This operation is forbidden" : "Энэ үйлдэл хориотой", + "Select all" : "Бүгдийг сонгох", + "Name" : "Нэр", + "Deleted" : "Устгагдсан" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/apps/files_versions/l10n/af.js b/apps/files_versions/l10n/af.js index d46acbfa7b39a..73d5ce54cf939 100644 --- a/apps/files_versions/l10n/af.js +++ b/apps/files_versions/l10n/af.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n greep","%n grepe"], "Restore" : "Herstel", "No earlier versions available" : "Geen vroeëre weergawes beskikbaar", - "More versions …" : "Nog weergawes…", - "No versions available" : "Geen weergawes beskikbaar", - "More versions..." : "Nog weergawes…" + "More versions …" : "Nog weergawes…" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/af.json b/apps/files_versions/l10n/af.json index 6bb7deb60692e..c0459b2044f6f 100644 --- a/apps/files_versions/l10n/af.json +++ b/apps/files_versions/l10n/af.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n greep","%n grepe"], "Restore" : "Herstel", "No earlier versions available" : "Geen vroeëre weergawes beskikbaar", - "More versions …" : "Nog weergawes…", - "No versions available" : "Geen weergawes beskikbaar", - "More versions..." : "Nog weergawes…" + "More versions …" : "Nog weergawes…" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/ar.js b/apps/files_versions/l10n/ar.js index a4e16f8afdd57..cb4fb02dd374f 100644 --- a/apps/files_versions/l10n/ar.js +++ b/apps/files_versions/l10n/ar.js @@ -5,7 +5,7 @@ OC.L10N.register( "Versions" : "الإصدارات", "Failed to revert {file} to revision {timestamp}." : "فشل في استعادة {ملف} لنتقيح {الطابع الزمني}", "Restore" : "استعادة ", - "More versions..." : "المزيد من الإصدارات", - "No other versions available" : "لا توجد إصدارات أخرى متاحة" + "No earlier versions available" : "ليس هناك أية نُسخة سابقة", + "More versions …" : "المزيد مِن النُسَخ …" }, "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/apps/files_versions/l10n/ar.json b/apps/files_versions/l10n/ar.json index e6fc4b88d2f85..c45da41a76101 100644 --- a/apps/files_versions/l10n/ar.json +++ b/apps/files_versions/l10n/ar.json @@ -3,7 +3,7 @@ "Versions" : "الإصدارات", "Failed to revert {file} to revision {timestamp}." : "فشل في استعادة {ملف} لنتقيح {الطابع الزمني}", "Restore" : "استعادة ", - "More versions..." : "المزيد من الإصدارات", - "No other versions available" : "لا توجد إصدارات أخرى متاحة" + "No earlier versions available" : "ليس هناك أية نُسخة سابقة", + "More versions …" : "المزيد مِن النُسَخ …" },"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/apps/files_versions/l10n/ast.js b/apps/files_versions/l10n/ast.js index f6f56bc210090..8a55b7be4e639 100644 --- a/apps/files_versions/l10n/ast.js +++ b/apps/files_versions/l10n/ast.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "Nun hai versiones más tempranes disponibles", - "More versions …" : "Más versiones...", - "No versions available" : "Nun hai versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/ast.json b/apps/files_versions/l10n/ast.json index 0c61764c38295..d98d9f4d6bb8a 100644 --- a/apps/files_versions/l10n/ast.json +++ b/apps/files_versions/l10n/ast.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "Nun hai versiones más tempranes disponibles", - "More versions …" : "Más versiones...", - "No versions available" : "Nun hai versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/az.js b/apps/files_versions/l10n/az.js index 9e5a3500fd1f0..a3c554b463b50 100644 --- a/apps/files_versions/l10n/az.js +++ b/apps/files_versions/l10n/az.js @@ -4,8 +4,6 @@ OC.L10N.register( "Could not revert: %s" : "Geri qaytarmaq olmur: %s", "Versions" : "Versiyaları", "Failed to revert {file} to revision {timestamp}." : "{timestamp} yenidən baxılması üçün {file} geri qaytarmaq mümkün olmadı.", - "Restore" : "Geri qaytar", - "More versions..." : "Əlavə versiyalar", - "No other versions available" : "Başqa versiyalar mövcud deyil" + "Restore" : "Geri qaytar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/az.json b/apps/files_versions/l10n/az.json index 0780769ee104f..30f539f670b5f 100644 --- a/apps/files_versions/l10n/az.json +++ b/apps/files_versions/l10n/az.json @@ -2,8 +2,6 @@ "Could not revert: %s" : "Geri qaytarmaq olmur: %s", "Versions" : "Versiyaları", "Failed to revert {file} to revision {timestamp}." : "{timestamp} yenidən baxılması üçün {file} geri qaytarmaq mümkün olmadı.", - "Restore" : "Geri qaytar", - "More versions..." : "Əlavə versiyalar", - "No other versions available" : "Başqa versiyalar mövcud deyil" + "Restore" : "Geri qaytar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/bg.js b/apps/files_versions/l10n/bg.js index b9bf92b30ee43..a57eeb9473e33 100644 --- a/apps/files_versions/l10n/bg.js +++ b/apps/files_versions/l10n/bg.js @@ -6,7 +6,7 @@ OC.L10N.register( "Failed to revert {file} to revision {timestamp}." : "Грешка при връщане на {file} към версия {timestamp}.", "_%n byte_::_%n bytes_" : ["%n байт","%n байта"], "Restore" : "Възтановяване", - "No versions available" : "Няма налични версии", - "More versions..." : "Още версии..." + "No earlier versions available" : "Няма други налични по-ранни версии", + "More versions …" : "Още версии ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/bg.json b/apps/files_versions/l10n/bg.json index 3b16ecd57bc4b..2808e5c406a7a 100644 --- a/apps/files_versions/l10n/bg.json +++ b/apps/files_versions/l10n/bg.json @@ -4,7 +4,7 @@ "Failed to revert {file} to revision {timestamp}." : "Грешка при връщане на {file} към версия {timestamp}.", "_%n byte_::_%n bytes_" : ["%n байт","%n байта"], "Restore" : "Възтановяване", - "No versions available" : "Няма налични версии", - "More versions..." : "Още версии..." + "No earlier versions available" : "Няма други налични по-ранни версии", + "More versions …" : "Още версии ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/bn_BD.js b/apps/files_versions/l10n/bn_BD.js index 28c6e723f7fb3..1893d748c3fcb 100644 --- a/apps/files_versions/l10n/bn_BD.js +++ b/apps/files_versions/l10n/bn_BD.js @@ -4,8 +4,6 @@ OC.L10N.register( "Could not revert: %s" : "ফিরে যাওয়া গেলনা: %s", "Versions" : "সংষ্করন", "Failed to revert {file} to revision {timestamp}." : " {file} সংশোধিত {timestamp} এ ফিরে যেতে ব্যার্থ হলো।", - "Restore" : "ফিরিয়ে দাও", - "More versions..." : "আরো সংষ্করণ....", - "No other versions available" : "আর কোন সংষ্করণ প্রাপ্তব্য নয়" + "Restore" : "ফিরিয়ে দাও" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/bn_BD.json b/apps/files_versions/l10n/bn_BD.json index 6a24cb0bf487f..3e8dc13cff491 100644 --- a/apps/files_versions/l10n/bn_BD.json +++ b/apps/files_versions/l10n/bn_BD.json @@ -2,8 +2,6 @@ "Could not revert: %s" : "ফিরে যাওয়া গেলনা: %s", "Versions" : "সংষ্করন", "Failed to revert {file} to revision {timestamp}." : " {file} সংশোধিত {timestamp} এ ফিরে যেতে ব্যার্থ হলো।", - "Restore" : "ফিরিয়ে দাও", - "More versions..." : "আরো সংষ্করণ....", - "No other versions available" : "আর কোন সংষ্করণ প্রাপ্তব্য নয়" + "Restore" : "ফিরিয়ে দাও" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/bs.js b/apps/files_versions/l10n/bs.js index 785eb379820dc..34b703f9d71f4 100644 --- a/apps/files_versions/l10n/bs.js +++ b/apps/files_versions/l10n/bs.js @@ -4,8 +4,6 @@ OC.L10N.register( "Could not revert: %s" : "Nije moguće vratiti: %s", "Versions" : "Verzije", "Failed to revert {file} to revision {timestamp}." : "Nije uspelo vraćanje {file} na reviziju {timestamp}.", - "Restore" : "Obnovi", - "More versions..." : "Više verzija...", - "No other versions available" : "Druge verzije su nedostupne" + "Restore" : "Obnovi" }, "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/apps/files_versions/l10n/bs.json b/apps/files_versions/l10n/bs.json index a95fe7327ad17..fa7df2592c999 100644 --- a/apps/files_versions/l10n/bs.json +++ b/apps/files_versions/l10n/bs.json @@ -2,8 +2,6 @@ "Could not revert: %s" : "Nije moguće vratiti: %s", "Versions" : "Verzije", "Failed to revert {file} to revision {timestamp}." : "Nije uspelo vraćanje {file} na reviziju {timestamp}.", - "Restore" : "Obnovi", - "More versions..." : "Više verzija...", - "No other versions available" : "Druge verzije su nedostupne" + "Restore" : "Obnovi" },"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);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/ca.js b/apps/files_versions/l10n/ca.js index ab4296823c41a..0efca5aef44a8 100644 --- a/apps/files_versions/l10n/ca.js +++ b/apps/files_versions/l10n/ca.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Recupera", "No earlier versions available" : "No hi ha versions anteriors disponibles", - "More versions …" : "Més versións ...", - "No versions available" : "No hi ha versions disponibles", - "More versions..." : "Més versions..." + "More versions …" : "Més versións ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/ca.json b/apps/files_versions/l10n/ca.json index 4019d5c536a3e..f549d7015fac6 100644 --- a/apps/files_versions/l10n/ca.json +++ b/apps/files_versions/l10n/ca.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Recupera", "No earlier versions available" : "No hi ha versions anteriors disponibles", - "More versions …" : "Més versións ...", - "No versions available" : "No hi ha versions disponibles", - "More versions..." : "Més versions..." + "More versions …" : "Més versións ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/cs.js b/apps/files_versions/l10n/cs.js index c9daaf919890e..deb7e3e33b92b 100644 --- a/apps/files_versions/l10n/cs.js +++ b/apps/files_versions/l10n/cs.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n bajt","%n bajty","%n bajtů"], "Restore" : "Obnovit", "No earlier versions available" : "Nejsou dostupné dřívější verze", - "More versions …" : "Víc verzí …", - "No versions available" : "Nejsou dostupné žádné verze", - "More versions..." : "Více verzí..." + "More versions …" : "Víc verzí …" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/files_versions/l10n/cs.json b/apps/files_versions/l10n/cs.json index 0486090f2ab27..6b72774799814 100644 --- a/apps/files_versions/l10n/cs.json +++ b/apps/files_versions/l10n/cs.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n bajt","%n bajty","%n bajtů"], "Restore" : "Obnovit", "No earlier versions available" : "Nejsou dostupné dřívější verze", - "More versions …" : "Víc verzí …", - "No versions available" : "Nejsou dostupné žádné verze", - "More versions..." : "Více verzí..." + "More versions …" : "Víc verzí …" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/files_versions/l10n/da.js b/apps/files_versions/l10n/da.js index 4fce738597f15..0297427d0db64 100644 --- a/apps/files_versions/l10n/da.js +++ b/apps/files_versions/l10n/da.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Gendan", "No earlier versions available" : "Ingen tidligere versioner tilgængelige", - "More versions …" : "Flere versioner ...", - "No versions available" : "Ingen tilgængelige versioner", - "More versions..." : "Flere versioner..." + "More versions …" : "Flere versioner ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/da.json b/apps/files_versions/l10n/da.json index 08aef15ad7f55..22ffb92ff5c5e 100644 --- a/apps/files_versions/l10n/da.json +++ b/apps/files_versions/l10n/da.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Gendan", "No earlier versions available" : "Ingen tidligere versioner tilgængelige", - "More versions …" : "Flere versioner ...", - "No versions available" : "Ingen tilgængelige versioner", - "More versions..." : "Flere versioner..." + "More versions …" : "Flere versioner ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/de.js b/apps/files_versions/l10n/de.js index 3273cc2fae1a9..3f8865b343056 100644 --- a/apps/files_versions/l10n/de.js +++ b/apps/files_versions/l10n/de.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n Byte","%n Bytes"], "Restore" : "Wiederherstellen", "No earlier versions available" : "Keine Vorgänger-Versionen vorhanden", - "More versions …" : "Weitere Versionen…", - "No versions available" : "Keine Versionen verfügbar", - "More versions..." : "Weitere Versionen…" + "More versions …" : "Weitere Versionen…" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/de.json b/apps/files_versions/l10n/de.json index 9fd77268b9245..6b4f5376b795a 100644 --- a/apps/files_versions/l10n/de.json +++ b/apps/files_versions/l10n/de.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n Byte","%n Bytes"], "Restore" : "Wiederherstellen", "No earlier versions available" : "Keine Vorgänger-Versionen vorhanden", - "More versions …" : "Weitere Versionen…", - "No versions available" : "Keine Versionen verfügbar", - "More versions..." : "Weitere Versionen…" + "More versions …" : "Weitere Versionen…" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/de_DE.js b/apps/files_versions/l10n/de_DE.js index 3273cc2fae1a9..3f8865b343056 100644 --- a/apps/files_versions/l10n/de_DE.js +++ b/apps/files_versions/l10n/de_DE.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n Byte","%n Bytes"], "Restore" : "Wiederherstellen", "No earlier versions available" : "Keine Vorgänger-Versionen vorhanden", - "More versions …" : "Weitere Versionen…", - "No versions available" : "Keine Versionen verfügbar", - "More versions..." : "Weitere Versionen…" + "More versions …" : "Weitere Versionen…" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/de_DE.json b/apps/files_versions/l10n/de_DE.json index 9fd77268b9245..6b4f5376b795a 100644 --- a/apps/files_versions/l10n/de_DE.json +++ b/apps/files_versions/l10n/de_DE.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n Byte","%n Bytes"], "Restore" : "Wiederherstellen", "No earlier versions available" : "Keine Vorgänger-Versionen vorhanden", - "More versions …" : "Weitere Versionen…", - "No versions available" : "Keine Versionen verfügbar", - "More versions..." : "Weitere Versionen…" + "More versions …" : "Weitere Versionen…" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/el.js b/apps/files_versions/l10n/el.js index 4992bd7e29e0e..9742232bfeebb 100644 --- a/apps/files_versions/l10n/el.js +++ b/apps/files_versions/l10n/el.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n bytes","%n bytes"], "Restore" : "Επαναφορά", "No earlier versions available" : "Δεν είναι διαθέριμες νεότερες εκδόσεις", - "More versions …" : "Περισσότερες εκδόσεις ...", - "No versions available" : "Δεν υπάρχουν εκδόσεις διαθέσιμες", - "More versions..." : "Περισσότερες εκδόσεις..." + "More versions …" : "Περισσότερες εκδόσεις ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/el.json b/apps/files_versions/l10n/el.json index a687a3a18a86a..0932c5b66205a 100644 --- a/apps/files_versions/l10n/el.json +++ b/apps/files_versions/l10n/el.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n bytes","%n bytes"], "Restore" : "Επαναφορά", "No earlier versions available" : "Δεν είναι διαθέριμες νεότερες εκδόσεις", - "More versions …" : "Περισσότερες εκδόσεις ...", - "No versions available" : "Δεν υπάρχουν εκδόσεις διαθέσιμες", - "More versions..." : "Περισσότερες εκδόσεις..." + "More versions …" : "Περισσότερες εκδόσεις ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/en_GB.js b/apps/files_versions/l10n/en_GB.js index 6127c0dcdf463..586d1a95d40d8 100644 --- a/apps/files_versions/l10n/en_GB.js +++ b/apps/files_versions/l10n/en_GB.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restore", "No earlier versions available" : "No earlier versions available", - "More versions …" : "More versions …", - "No versions available" : "No versions available", - "More versions..." : "More versions..." + "More versions …" : "More versions …" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/en_GB.json b/apps/files_versions/l10n/en_GB.json index 683af5d9168e2..290d972c1a11e 100644 --- a/apps/files_versions/l10n/en_GB.json +++ b/apps/files_versions/l10n/en_GB.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restore", "No earlier versions available" : "No earlier versions available", - "More versions …" : "More versions …", - "No versions available" : "No versions available", - "More versions..." : "More versions..." + "More versions …" : "More versions …" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/eo.js b/apps/files_versions/l10n/eo.js index aee99fa353bac..cd098fe940e2c 100644 --- a/apps/files_versions/l10n/eo.js +++ b/apps/files_versions/l10n/eo.js @@ -4,8 +4,6 @@ OC.L10N.register( "Could not revert: %s" : "Ne eblas malfari: %s", "Versions" : "Versioj", "Failed to revert {file} to revision {timestamp}." : "Malsukcesis returnigo de {file} al la revizio {timestamp}.", - "Restore" : "Restaŭri", - "No versions available" : "Neniu versio disponebla", - "More versions..." : "Pli da versioj..." + "Restore" : "Restaŭri" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/eo.json b/apps/files_versions/l10n/eo.json index 545a7d5d0bc21..b5682170f593b 100644 --- a/apps/files_versions/l10n/eo.json +++ b/apps/files_versions/l10n/eo.json @@ -2,8 +2,6 @@ "Could not revert: %s" : "Ne eblas malfari: %s", "Versions" : "Versioj", "Failed to revert {file} to revision {timestamp}." : "Malsukcesis returnigo de {file} al la revizio {timestamp}.", - "Restore" : "Restaŭri", - "No versions available" : "Neniu versio disponebla", - "More versions..." : "Pli da versioj..." + "Restore" : "Restaŭri" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es.js b/apps/files_versions/l10n/es.js index c5cbac93f9b2d..f4dbd588fbe2d 100644 --- a/apps/files_versions/l10n/es.js +++ b/apps/files_versions/l10n/es.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Recuperar", "No earlier versions available" : "No hay versiones previas disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es.json b/apps/files_versions/l10n/es.json index 2e7fbbc575242..47b63ba34188a 100644 --- a/apps/files_versions/l10n/es.json +++ b/apps/files_versions/l10n/es.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Recuperar", "No earlier versions available" : "No hay versiones previas disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es_419.js b/apps/files_versions/l10n/es_419.js index 7cfb569dec791..e1269727f587e 100644 --- a/apps/files_versions/l10n/es_419.js +++ b/apps/files_versions/l10n/es_419.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_419.json b/apps/files_versions/l10n/es_419.json index e346d38166f14..6d1928e054dad 100644 --- a/apps/files_versions/l10n/es_419.json +++ b/apps/files_versions/l10n/es_419.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es_AR.js b/apps/files_versions/l10n/es_AR.js index 8bda31e11d354..024131912c097 100644 --- a/apps/files_versions/l10n/es_AR.js +++ b/apps/files_versions/l10n/es_AR.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones más antiguas disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_AR.json b/apps/files_versions/l10n/es_AR.json index b31be35fcbc4e..60853f8ae412c 100644 --- a/apps/files_versions/l10n/es_AR.json +++ b/apps/files_versions/l10n/es_AR.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones más antiguas disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es_CL.js b/apps/files_versions/l10n/es_CL.js index 7cfb569dec791..e1269727f587e 100644 --- a/apps/files_versions/l10n/es_CL.js +++ b/apps/files_versions/l10n/es_CL.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_CL.json b/apps/files_versions/l10n/es_CL.json index e346d38166f14..6d1928e054dad 100644 --- a/apps/files_versions/l10n/es_CL.json +++ b/apps/files_versions/l10n/es_CL.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es_CO.js b/apps/files_versions/l10n/es_CO.js index 7cfb569dec791..e1269727f587e 100644 --- a/apps/files_versions/l10n/es_CO.js +++ b/apps/files_versions/l10n/es_CO.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_CO.json b/apps/files_versions/l10n/es_CO.json index e346d38166f14..6d1928e054dad 100644 --- a/apps/files_versions/l10n/es_CO.json +++ b/apps/files_versions/l10n/es_CO.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es_CR.js b/apps/files_versions/l10n/es_CR.js index 7cfb569dec791..e1269727f587e 100644 --- a/apps/files_versions/l10n/es_CR.js +++ b/apps/files_versions/l10n/es_CR.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_CR.json b/apps/files_versions/l10n/es_CR.json index e346d38166f14..6d1928e054dad 100644 --- a/apps/files_versions/l10n/es_CR.json +++ b/apps/files_versions/l10n/es_CR.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es_DO.js b/apps/files_versions/l10n/es_DO.js index 7cfb569dec791..e1269727f587e 100644 --- a/apps/files_versions/l10n/es_DO.js +++ b/apps/files_versions/l10n/es_DO.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_DO.json b/apps/files_versions/l10n/es_DO.json index e346d38166f14..6d1928e054dad 100644 --- a/apps/files_versions/l10n/es_DO.json +++ b/apps/files_versions/l10n/es_DO.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es_EC.js b/apps/files_versions/l10n/es_EC.js index 7cfb569dec791..e1269727f587e 100644 --- a/apps/files_versions/l10n/es_EC.js +++ b/apps/files_versions/l10n/es_EC.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_EC.json b/apps/files_versions/l10n/es_EC.json index e346d38166f14..6d1928e054dad 100644 --- a/apps/files_versions/l10n/es_EC.json +++ b/apps/files_versions/l10n/es_EC.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es_GT.js b/apps/files_versions/l10n/es_GT.js index 7cfb569dec791..e1269727f587e 100644 --- a/apps/files_versions/l10n/es_GT.js +++ b/apps/files_versions/l10n/es_GT.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_GT.json b/apps/files_versions/l10n/es_GT.json index e346d38166f14..6d1928e054dad 100644 --- a/apps/files_versions/l10n/es_GT.json +++ b/apps/files_versions/l10n/es_GT.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es_HN.js b/apps/files_versions/l10n/es_HN.js index 7cfb569dec791..e1269727f587e 100644 --- a/apps/files_versions/l10n/es_HN.js +++ b/apps/files_versions/l10n/es_HN.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_HN.json b/apps/files_versions/l10n/es_HN.json index e346d38166f14..6d1928e054dad 100644 --- a/apps/files_versions/l10n/es_HN.json +++ b/apps/files_versions/l10n/es_HN.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es_MX.js b/apps/files_versions/l10n/es_MX.js index 7cfb569dec791..e1269727f587e 100644 --- a/apps/files_versions/l10n/es_MX.js +++ b/apps/files_versions/l10n/es_MX.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_MX.json b/apps/files_versions/l10n/es_MX.json index e346d38166f14..6d1928e054dad 100644 --- a/apps/files_versions/l10n/es_MX.json +++ b/apps/files_versions/l10n/es_MX.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es_NI.js b/apps/files_versions/l10n/es_NI.js index 7cfb569dec791..e1269727f587e 100644 --- a/apps/files_versions/l10n/es_NI.js +++ b/apps/files_versions/l10n/es_NI.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_NI.json b/apps/files_versions/l10n/es_NI.json index e346d38166f14..6d1928e054dad 100644 --- a/apps/files_versions/l10n/es_NI.json +++ b/apps/files_versions/l10n/es_NI.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es_PA.js b/apps/files_versions/l10n/es_PA.js index 7cfb569dec791..e1269727f587e 100644 --- a/apps/files_versions/l10n/es_PA.js +++ b/apps/files_versions/l10n/es_PA.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_PA.json b/apps/files_versions/l10n/es_PA.json index e346d38166f14..6d1928e054dad 100644 --- a/apps/files_versions/l10n/es_PA.json +++ b/apps/files_versions/l10n/es_PA.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es_PE.js b/apps/files_versions/l10n/es_PE.js index 7cfb569dec791..e1269727f587e 100644 --- a/apps/files_versions/l10n/es_PE.js +++ b/apps/files_versions/l10n/es_PE.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_PE.json b/apps/files_versions/l10n/es_PE.json index e346d38166f14..6d1928e054dad 100644 --- a/apps/files_versions/l10n/es_PE.json +++ b/apps/files_versions/l10n/es_PE.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es_PR.js b/apps/files_versions/l10n/es_PR.js index 7cfb569dec791..e1269727f587e 100644 --- a/apps/files_versions/l10n/es_PR.js +++ b/apps/files_versions/l10n/es_PR.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_PR.json b/apps/files_versions/l10n/es_PR.json index e346d38166f14..6d1928e054dad 100644 --- a/apps/files_versions/l10n/es_PR.json +++ b/apps/files_versions/l10n/es_PR.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es_PY.js b/apps/files_versions/l10n/es_PY.js index 7cfb569dec791..e1269727f587e 100644 --- a/apps/files_versions/l10n/es_PY.js +++ b/apps/files_versions/l10n/es_PY.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_PY.json b/apps/files_versions/l10n/es_PY.json index e346d38166f14..6d1928e054dad 100644 --- a/apps/files_versions/l10n/es_PY.json +++ b/apps/files_versions/l10n/es_PY.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es_SV.js b/apps/files_versions/l10n/es_SV.js index 7cfb569dec791..e1269727f587e 100644 --- a/apps/files_versions/l10n/es_SV.js +++ b/apps/files_versions/l10n/es_SV.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_SV.json b/apps/files_versions/l10n/es_SV.json index e346d38166f14..6d1928e054dad 100644 --- a/apps/files_versions/l10n/es_SV.json +++ b/apps/files_versions/l10n/es_SV.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/es_UY.js b/apps/files_versions/l10n/es_UY.js index 7cfb569dec791..e1269727f587e 100644 --- a/apps/files_versions/l10n/es_UY.js +++ b/apps/files_versions/l10n/es_UY.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/es_UY.json b/apps/files_versions/l10n/es_UY.json index e346d38166f14..6d1928e054dad 100644 --- a/apps/files_versions/l10n/es_UY.json +++ b/apps/files_versions/l10n/es_UY.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "No hay versiones anteriores disponibles", - "More versions …" : "Más versiones ...", - "No versions available" : "No hay versiones disponibles", - "More versions..." : "Más versiones..." + "More versions …" : "Más versiones ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/et_EE.js b/apps/files_versions/l10n/et_EE.js index e5f4e59a41ab3..ef4798a9ff4e9 100644 --- a/apps/files_versions/l10n/et_EE.js +++ b/apps/files_versions/l10n/et_EE.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n bait","%n baiti"], "Restore" : "Taasta", "No earlier versions available" : "Eelnevaid versioone pole saadaval", - "More versions …" : "Veel versioone ...", - "No versions available" : "Ühtegi versiooni pole saadaval", - "More versions..." : "Rohkem versioone..." + "More versions …" : "Veel versioone ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/et_EE.json b/apps/files_versions/l10n/et_EE.json index eb5ac1b16363e..a7d707c8694b6 100644 --- a/apps/files_versions/l10n/et_EE.json +++ b/apps/files_versions/l10n/et_EE.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n bait","%n baiti"], "Restore" : "Taasta", "No earlier versions available" : "Eelnevaid versioone pole saadaval", - "More versions …" : "Veel versioone ...", - "No versions available" : "Ühtegi versiooni pole saadaval", - "More versions..." : "Rohkem versioone..." + "More versions …" : "Veel versioone ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/eu.js b/apps/files_versions/l10n/eu.js index 1060bf1390e18..5e140d1106c6e 100644 --- a/apps/files_versions/l10n/eu.js +++ b/apps/files_versions/l10n/eu.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%nbyte","%n bytes"], "Restore" : "Berrezarri", "No earlier versions available" : "Ez dago aurreko bertsiorik", - "More versions …" : "Bertsio gehiago...", - "No versions available" : "Ez dago bertsiorik eskuragarri", - "More versions..." : "Bertsio gehiago..." + "More versions …" : "Bertsio gehiago..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/eu.json b/apps/files_versions/l10n/eu.json index 24f18a507e4c9..2137d3353b130 100644 --- a/apps/files_versions/l10n/eu.json +++ b/apps/files_versions/l10n/eu.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%nbyte","%n bytes"], "Restore" : "Berrezarri", "No earlier versions available" : "Ez dago aurreko bertsiorik", - "More versions …" : "Bertsio gehiago...", - "No versions available" : "Ez dago bertsiorik eskuragarri", - "More versions..." : "Bertsio gehiago..." + "More versions …" : "Bertsio gehiago..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/fa.js b/apps/files_versions/l10n/fa.js index 89964bd856381..35332939df172 100644 --- a/apps/files_versions/l10n/fa.js +++ b/apps/files_versions/l10n/fa.js @@ -4,8 +4,9 @@ OC.L10N.register( "Could not revert: %s" : "بازگردانی امکان ناپذیر است: %s", "Versions" : "نسخه ها", "Failed to revert {file} to revision {timestamp}." : "برگرداندن {file} به نسخه {timestamp} با شکست روبرو شد", + "_%n byte_::_%n bytes_" : ["%n بایت"], "Restore" : "بازیابی", - "More versions..." : "نسخه های بیشتر", - "No other versions available" : "نسخه ی دیگری در دسترس نیست" + "No earlier versions available" : "هیچ نسخه قدیمی تری در دسترس نیست", + "More versions …" : "نسخه های بیشتر ..." }, "nplurals=1; plural=0;"); diff --git a/apps/files_versions/l10n/fa.json b/apps/files_versions/l10n/fa.json index 900c4e2469164..2618427c67400 100644 --- a/apps/files_versions/l10n/fa.json +++ b/apps/files_versions/l10n/fa.json @@ -2,8 +2,9 @@ "Could not revert: %s" : "بازگردانی امکان ناپذیر است: %s", "Versions" : "نسخه ها", "Failed to revert {file} to revision {timestamp}." : "برگرداندن {file} به نسخه {timestamp} با شکست روبرو شد", + "_%n byte_::_%n bytes_" : ["%n بایت"], "Restore" : "بازیابی", - "More versions..." : "نسخه های بیشتر", - "No other versions available" : "نسخه ی دیگری در دسترس نیست" + "No earlier versions available" : "هیچ نسخه قدیمی تری در دسترس نیست", + "More versions …" : "نسخه های بیشتر ..." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_versions/l10n/fi.js b/apps/files_versions/l10n/fi.js index b89debb63c12e..5e92df7d344bc 100644 --- a/apps/files_versions/l10n/fi.js +++ b/apps/files_versions/l10n/fi.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n tavu","%n tavua"], "Restore" : "Palauta", "No earlier versions available" : "Ei aikaisempia versioita saatavilla", - "More versions …" : "Lisää versioita...", - "No versions available" : "Ei versioita saatavilla", - "More versions..." : "Lisää versioita..." + "More versions …" : "Lisää versioita..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/fi.json b/apps/files_versions/l10n/fi.json index 58d3311b77cdc..1c46aa8ab1e5f 100644 --- a/apps/files_versions/l10n/fi.json +++ b/apps/files_versions/l10n/fi.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n tavu","%n tavua"], "Restore" : "Palauta", "No earlier versions available" : "Ei aikaisempia versioita saatavilla", - "More versions …" : "Lisää versioita...", - "No versions available" : "Ei versioita saatavilla", - "More versions..." : "Lisää versioita..." + "More versions …" : "Lisää versioita..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/fr.js b/apps/files_versions/l10n/fr.js index ffe2aef426897..10855800b3242 100644 --- a/apps/files_versions/l10n/fr.js +++ b/apps/files_versions/l10n/fr.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n octet","%n octets"], "Restore" : "Restaurer", "No earlier versions available" : "Aucune version antérieure disponible", - "More versions …" : "Plus de versions ...", - "No versions available" : "Aucune version n'est disponible", - "More versions..." : "Plus de versions..." + "More versions …" : "Plus de versions ..." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/files_versions/l10n/fr.json b/apps/files_versions/l10n/fr.json index 10380e1097297..5a7cfadc55b9f 100644 --- a/apps/files_versions/l10n/fr.json +++ b/apps/files_versions/l10n/fr.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n octet","%n octets"], "Restore" : "Restaurer", "No earlier versions available" : "Aucune version antérieure disponible", - "More versions …" : "Plus de versions ...", - "No versions available" : "Aucune version n'est disponible", - "More versions..." : "Plus de versions..." + "More versions …" : "Plus de versions ..." },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/gl.js b/apps/files_versions/l10n/gl.js index 68e6bd9d8bae8..8579b44b762e7 100644 --- a/apps/files_versions/l10n/gl.js +++ b/apps/files_versions/l10n/gl.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "Non hai versións anteriores dispoñíbeis", - "More versions …" : "Máis versións ...", - "No versions available" : "Non hai versións dispoñíbeis", - "More versions..." : "Máis versións..." + "More versions …" : "Máis versións ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/gl.json b/apps/files_versions/l10n/gl.json index a6d797d76b19e..e75c0276f41bb 100644 --- a/apps/files_versions/l10n/gl.json +++ b/apps/files_versions/l10n/gl.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "Non hai versións anteriores dispoñíbeis", - "More versions …" : "Máis versións ...", - "No versions available" : "Non hai versións dispoñíbeis", - "More versions..." : "Máis versións..." + "More versions …" : "Máis versións ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/he.js b/apps/files_versions/l10n/he.js index faa8693c6385c..09e655c422f3a 100644 --- a/apps/files_versions/l10n/he.js +++ b/apps/files_versions/l10n/he.js @@ -6,7 +6,7 @@ OC.L10N.register( "Failed to revert {file} to revision {timestamp}." : "נכשל אחזור {file} לגרסה {timestamp}.", "_%n byte_::_%n bytes_" : ["%n בייט","%n בייטים"], "Restore" : "שחזור", - "No versions available" : "אין גרסאות זמינות", - "More versions..." : "גרסאות נוספות..." + "No earlier versions available" : "אין גרסאות קודמות זמינות", + "More versions …" : "גרסאות נוספות…" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/he.json b/apps/files_versions/l10n/he.json index 94c24a5289f7c..380df68f9717f 100644 --- a/apps/files_versions/l10n/he.json +++ b/apps/files_versions/l10n/he.json @@ -4,7 +4,7 @@ "Failed to revert {file} to revision {timestamp}." : "נכשל אחזור {file} לגרסה {timestamp}.", "_%n byte_::_%n bytes_" : ["%n בייט","%n בייטים"], "Restore" : "שחזור", - "No versions available" : "אין גרסאות זמינות", - "More versions..." : "גרסאות נוספות..." + "No earlier versions available" : "אין גרסאות קודמות זמינות", + "More versions …" : "גרסאות נוספות…" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/hr.js b/apps/files_versions/l10n/hr.js index ff1c95fe50c20..086c250884808 100644 --- a/apps/files_versions/l10n/hr.js +++ b/apps/files_versions/l10n/hr.js @@ -4,8 +4,6 @@ OC.L10N.register( "Could not revert: %s" : "Nije moguće vratiti: %s", "Versions" : "Verzije", "Failed to revert {file} to revision {timestamp}." : "Nije uspelo vraćanje {file} na reviziju {timestamp}.", - "Restore" : "Obnovite", - "More versions..." : "Više verzija...", - "No other versions available" : "Nikakve druge verzije nisu dostupne" + "Restore" : "Obnovite" }, "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/apps/files_versions/l10n/hr.json b/apps/files_versions/l10n/hr.json index 1683703eede80..5206b0045de2a 100644 --- a/apps/files_versions/l10n/hr.json +++ b/apps/files_versions/l10n/hr.json @@ -2,8 +2,6 @@ "Could not revert: %s" : "Nije moguće vratiti: %s", "Versions" : "Verzije", "Failed to revert {file} to revision {timestamp}." : "Nije uspelo vraćanje {file} na reviziju {timestamp}.", - "Restore" : "Obnovite", - "More versions..." : "Više verzija...", - "No other versions available" : "Nikakve druge verzije nisu dostupne" + "Restore" : "Obnovite" },"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;" } \ No newline at end of file diff --git a/apps/files_versions/l10n/hu.js b/apps/files_versions/l10n/hu.js index ecf008d08b059..7259d07742986 100644 --- a/apps/files_versions/l10n/hu.js +++ b/apps/files_versions/l10n/hu.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n bájt","%n bájt"], "Restore" : "Visszaállítás", "No earlier versions available" : "Nincsenek elérhető korábbi verziók", - "More versions …" : "További változatok...", - "No versions available" : "Nincs elérhető verzió", - "More versions..." : "További változatok..." + "More versions …" : "További változatok..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/hu.json b/apps/files_versions/l10n/hu.json index dd4042722b494..4a2f18eaf418a 100644 --- a/apps/files_versions/l10n/hu.json +++ b/apps/files_versions/l10n/hu.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n bájt","%n bájt"], "Restore" : "Visszaállítás", "No earlier versions available" : "Nincsenek elérhető korábbi verziók", - "More versions …" : "További változatok...", - "No versions available" : "Nincs elérhető verzió", - "More versions..." : "További változatok..." + "More versions …" : "További változatok..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/ia.js b/apps/files_versions/l10n/ia.js index aa016c6bdd7c2..da29e9a9660ed 100644 --- a/apps/files_versions/l10n/ia.js +++ b/apps/files_versions/l10n/ia.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "Nulle versiones anterior disponibile", - "More versions …" : "Plus versiones …", - "No versions available" : "Nulle versiones disponibile", - "More versions..." : "Plus versiones..." + "More versions …" : "Plus versiones …" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/ia.json b/apps/files_versions/l10n/ia.json index bc94dc5792055..d2d71d5be0019 100644 --- a/apps/files_versions/l10n/ia.json +++ b/apps/files_versions/l10n/ia.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "Nulle versiones anterior disponibile", - "More versions …" : "Plus versiones …", - "No versions available" : "Nulle versiones disponibile", - "More versions..." : "Plus versiones..." + "More versions …" : "Plus versiones …" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/id.js b/apps/files_versions/l10n/id.js index 949f32bd6c581..df866b6a28c6d 100644 --- a/apps/files_versions/l10n/id.js +++ b/apps/files_versions/l10n/id.js @@ -5,8 +5,6 @@ OC.L10N.register( "Versions" : "Versi", "Failed to revert {file} to revision {timestamp}." : "Gagal mengembalikan {file} ke revisi {timestamp}.", "_%n byte_::_%n bytes_" : ["%n bytes"], - "Restore" : "Pulihkan", - "No versions available" : "Tidak ada versi yang tersedia", - "More versions..." : "Versi lainnya..." + "Restore" : "Pulihkan" }, "nplurals=1; plural=0;"); diff --git a/apps/files_versions/l10n/id.json b/apps/files_versions/l10n/id.json index ab467bce42137..3ce13ade24a2d 100644 --- a/apps/files_versions/l10n/id.json +++ b/apps/files_versions/l10n/id.json @@ -3,8 +3,6 @@ "Versions" : "Versi", "Failed to revert {file} to revision {timestamp}." : "Gagal mengembalikan {file} ke revisi {timestamp}.", "_%n byte_::_%n bytes_" : ["%n bytes"], - "Restore" : "Pulihkan", - "No versions available" : "Tidak ada versi yang tersedia", - "More versions..." : "Versi lainnya..." + "Restore" : "Pulihkan" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_versions/l10n/is.js b/apps/files_versions/l10n/is.js index cf26daed8138b..8369f832c6561 100644 --- a/apps/files_versions/l10n/is.js +++ b/apps/files_versions/l10n/is.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n bæti","%n bæti"], "Restore" : "Endurheimta", "No earlier versions available" : "Engar eldri útgáfur í boði", - "More versions …" : "Fleiri útgáfur ...", - "No versions available" : "Engar aðrar útgáfur í boði", - "More versions..." : "Fleiri útgáfur..." + "More versions …" : "Fleiri útgáfur ..." }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/files_versions/l10n/is.json b/apps/files_versions/l10n/is.json index b630cf5249186..2c26c4c7e4cfc 100644 --- a/apps/files_versions/l10n/is.json +++ b/apps/files_versions/l10n/is.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n bæti","%n bæti"], "Restore" : "Endurheimta", "No earlier versions available" : "Engar eldri útgáfur í boði", - "More versions …" : "Fleiri útgáfur ...", - "No versions available" : "Engar aðrar útgáfur í boði", - "More versions..." : "Fleiri útgáfur..." + "More versions …" : "Fleiri útgáfur ..." },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/it.js b/apps/files_versions/l10n/it.js index e7790e1765bee..76fad6bdab1a4 100644 --- a/apps/files_versions/l10n/it.js +++ b/apps/files_versions/l10n/it.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n byte"], "Restore" : "Ripristina", "No earlier versions available" : "Nessuna versione precedente disponibile", - "More versions …" : "Altre versioni...", - "No versions available" : "Nessuna versione disponibile", - "More versions..." : "Altre versioni..." + "More versions …" : "Altre versioni..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/it.json b/apps/files_versions/l10n/it.json index bda521d3e7c84..bd7d24b594ed4 100644 --- a/apps/files_versions/l10n/it.json +++ b/apps/files_versions/l10n/it.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n byte"], "Restore" : "Ripristina", "No earlier versions available" : "Nessuna versione precedente disponibile", - "More versions …" : "Altre versioni...", - "No versions available" : "Nessuna versione disponibile", - "More versions..." : "Altre versioni..." + "More versions …" : "Altre versioni..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/ja.js b/apps/files_versions/l10n/ja.js index 405c12f1cb71d..25f593f02d54b 100644 --- a/apps/files_versions/l10n/ja.js +++ b/apps/files_versions/l10n/ja.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n バイト"], "Restore" : "復元", "No earlier versions available" : "以前のバージョンは利用できません", - "More versions …" : "他のバージョン …", - "No versions available" : "履歴はありません", - "More versions..." : "他のバージョン..." + "More versions …" : "他のバージョン …" }, "nplurals=1; plural=0;"); diff --git a/apps/files_versions/l10n/ja.json b/apps/files_versions/l10n/ja.json index 81f32fd61cfbe..d842425be7a69 100644 --- a/apps/files_versions/l10n/ja.json +++ b/apps/files_versions/l10n/ja.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n バイト"], "Restore" : "復元", "No earlier versions available" : "以前のバージョンは利用できません", - "More versions …" : "他のバージョン …", - "No versions available" : "履歴はありません", - "More versions..." : "他のバージョン..." + "More versions …" : "他のバージョン …" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_versions/l10n/ka_GE.js b/apps/files_versions/l10n/ka_GE.js index fbbfb595e0c35..464d43af1c9e8 100644 --- a/apps/files_versions/l10n/ka_GE.js +++ b/apps/files_versions/l10n/ka_GE.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n ბაიტი"], "Restore" : "აღდგენა", "No earlier versions available" : "წინა ვერსიები ხელმისაწვდომი არაა", - "More versions …" : "მეტი ვერსია …", - "No versions available" : "ვერსიები ხელმიუწვდომელია", - "More versions..." : "მეტი ვერსია…" + "More versions …" : "მეტი ვერსია …" }, "nplurals=1; plural=0;"); diff --git a/apps/files_versions/l10n/ka_GE.json b/apps/files_versions/l10n/ka_GE.json index a0448dbe5b01f..89e9436c5d87b 100644 --- a/apps/files_versions/l10n/ka_GE.json +++ b/apps/files_versions/l10n/ka_GE.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n ბაიტი"], "Restore" : "აღდგენა", "No earlier versions available" : "წინა ვერსიები ხელმისაწვდომი არაა", - "More versions …" : "მეტი ვერსია …", - "No versions available" : "ვერსიები ხელმიუწვდომელია", - "More versions..." : "მეტი ვერსია…" + "More versions …" : "მეტი ვერსია …" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_versions/l10n/km.js b/apps/files_versions/l10n/km.js index a544d546281c2..5768960a12bbb 100644 --- a/apps/files_versions/l10n/km.js +++ b/apps/files_versions/l10n/km.js @@ -4,8 +4,6 @@ OC.L10N.register( "Could not revert: %s" : "មិន​អាច​ត្រឡប់៖ %s", "Versions" : "កំណែ", "Failed to revert {file} to revision {timestamp}." : "មិន​អាច​ត្រឡប់ {file} ទៅ​កំណែ​សម្រួល {timestamp} បាន​ទេ។", - "Restore" : "ស្ដារ​មក​វិញ", - "More versions..." : "កំណែ​ច្រើន​ទៀត...", - "No other versions available" : "មិន​មាន​កំណែ​ផ្សេង​ទៀត​ទេ" + "Restore" : "ស្ដារ​មក​វិញ" }, "nplurals=1; plural=0;"); diff --git a/apps/files_versions/l10n/km.json b/apps/files_versions/l10n/km.json index 31f3598faf627..cce4cdb227c39 100644 --- a/apps/files_versions/l10n/km.json +++ b/apps/files_versions/l10n/km.json @@ -2,8 +2,6 @@ "Could not revert: %s" : "មិន​អាច​ត្រឡប់៖ %s", "Versions" : "កំណែ", "Failed to revert {file} to revision {timestamp}." : "មិន​អាច​ត្រឡប់ {file} ទៅ​កំណែ​សម្រួល {timestamp} បាន​ទេ។", - "Restore" : "ស្ដារ​មក​វិញ", - "More versions..." : "កំណែ​ច្រើន​ទៀត...", - "No other versions available" : "មិន​មាន​កំណែ​ផ្សេង​ទៀត​ទេ" + "Restore" : "ស្ដារ​មក​វិញ" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_versions/l10n/kn.js b/apps/files_versions/l10n/kn.js index 1bd3ed427202d..181fe6322e2d2 100644 --- a/apps/files_versions/l10n/kn.js +++ b/apps/files_versions/l10n/kn.js @@ -4,8 +4,6 @@ OC.L10N.register( "Could not revert: %s" : "ಹಿಂತಿರುಗಲಾಗಲಿಲ್ಲ: %s", "Versions" : "ಆವೃತ್ತಿಗಳು", "Failed to revert {file} to revision {timestamp}." : "{timestamp} ದ ಪರಿಷ್ಕರಣೆ ಇಂದ {file} ಕಡತವನ್ನು ಹಿಂದಿರುಗಿಸಲು ವಿಫಲವಾಗಿದೆ.", - "Restore" : "ಮರುಸ್ಥಾಪಿಸು", - "More versions..." : "ಇನ್ನಷ್ಟು ಆವೃತ್ತಿಗಳು ...", - "No other versions available" : "ಇನ್ನಿತರೆ ಯಾವುದೇ ಆವೃತ್ತಿಗಳು ಲಭ್ಯವಿಲ್ಲ" + "Restore" : "ಮರುಸ್ಥಾಪಿಸು" }, "nplurals=1; plural=0;"); diff --git a/apps/files_versions/l10n/kn.json b/apps/files_versions/l10n/kn.json index 63dc60590a3bc..56d909779e44e 100644 --- a/apps/files_versions/l10n/kn.json +++ b/apps/files_versions/l10n/kn.json @@ -2,8 +2,6 @@ "Could not revert: %s" : "ಹಿಂತಿರುಗಲಾಗಲಿಲ್ಲ: %s", "Versions" : "ಆವೃತ್ತಿಗಳು", "Failed to revert {file} to revision {timestamp}." : "{timestamp} ದ ಪರಿಷ್ಕರಣೆ ಇಂದ {file} ಕಡತವನ್ನು ಹಿಂದಿರುಗಿಸಲು ವಿಫಲವಾಗಿದೆ.", - "Restore" : "ಮರುಸ್ಥಾಪಿಸು", - "More versions..." : "ಇನ್ನಷ್ಟು ಆವೃತ್ತಿಗಳು ...", - "No other versions available" : "ಇನ್ನಿತರೆ ಯಾವುದೇ ಆವೃತ್ತಿಗಳು ಲಭ್ಯವಿಲ್ಲ" + "Restore" : "ಮರುಸ್ಥಾಪಿಸು" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_versions/l10n/ko.js b/apps/files_versions/l10n/ko.js index 81b258b106012..821e2b9a0791a 100644 --- a/apps/files_versions/l10n/ko.js +++ b/apps/files_versions/l10n/ko.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n 바이트"], "Restore" : "복원", "No earlier versions available" : "이전 버전을 사용할 수 없음", - "More versions …" : "더 많은 버전 …", - "No versions available" : "버전을 사용할 수 없음", - "More versions..." : "더 많은 버전..." + "More versions …" : "더 많은 버전 …" }, "nplurals=1; plural=0;"); diff --git a/apps/files_versions/l10n/ko.json b/apps/files_versions/l10n/ko.json index 0b6a54a1e9c90..072904543faa8 100644 --- a/apps/files_versions/l10n/ko.json +++ b/apps/files_versions/l10n/ko.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n 바이트"], "Restore" : "복원", "No earlier versions available" : "이전 버전을 사용할 수 없음", - "More versions …" : "더 많은 버전 …", - "No versions available" : "버전을 사용할 수 없음", - "More versions..." : "더 많은 버전..." + "More versions …" : "더 많은 버전 …" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_versions/l10n/lb.js b/apps/files_versions/l10n/lb.js index 3e1694329b470..285a20a0817bb 100644 --- a/apps/files_versions/l10n/lb.js +++ b/apps/files_versions/l10n/lb.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n Byte","%n Bytes"], "Restore" : "Zrécksetzen", "No earlier versions available" : "Keng méi al Versiounen disponibel", - "More versions …" : "Méi Versiounen …", - "No versions available" : "Keng Versiounen disponibel", - "More versions..." : "Méi Versiounen..." + "More versions …" : "Méi Versiounen …" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/lb.json b/apps/files_versions/l10n/lb.json index 34e9982780915..7e1d44c899d9c 100644 --- a/apps/files_versions/l10n/lb.json +++ b/apps/files_versions/l10n/lb.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n Byte","%n Bytes"], "Restore" : "Zrécksetzen", "No earlier versions available" : "Keng méi al Versiounen disponibel", - "More versions …" : "Méi Versiounen …", - "No versions available" : "Keng Versiounen disponibel", - "More versions..." : "Méi Versiounen..." + "More versions …" : "Méi Versiounen …" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/lt_LT.js b/apps/files_versions/l10n/lt_LT.js index 735b43b1db7ba..a38a9657503cf 100644 --- a/apps/files_versions/l10n/lt_LT.js +++ b/apps/files_versions/l10n/lt_LT.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n baitas","%n baitai","%n baitų"], "Restore" : "Atkurti", "No earlier versions available" : "Nėra ankstesnių versijų", - "More versions …" : "Daugiau versijų …", - "No versions available" : "Nėra prieinama jokių versijų", - "More versions..." : "Daugiau versijų..." + "More versions …" : "Daugiau versijų …" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/files_versions/l10n/lt_LT.json b/apps/files_versions/l10n/lt_LT.json index 357d120470101..a8842fc16136f 100644 --- a/apps/files_versions/l10n/lt_LT.json +++ b/apps/files_versions/l10n/lt_LT.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n baitas","%n baitai","%n baitų"], "Restore" : "Atkurti", "No earlier versions available" : "Nėra ankstesnių versijų", - "More versions …" : "Daugiau versijų …", - "No versions available" : "Nėra prieinama jokių versijų", - "More versions..." : "Daugiau versijų..." + "More versions …" : "Daugiau versijų …" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/lv.js b/apps/files_versions/l10n/lv.js index 1e08296ee330d..ea84b83841d3b 100644 --- a/apps/files_versions/l10n/lv.js +++ b/apps/files_versions/l10n/lv.js @@ -5,8 +5,6 @@ OC.L10N.register( "Versions" : "Versijas", "Failed to revert {file} to revision {timestamp}." : "Neizdevās atjaunot {file} no rediģējuma {timestamp} ", "_%n byte_::_%n bytes_" : ["%n baiti","%n baiti","%n baiti"], - "Restore" : "Atjaunot", - "No versions available" : "Nav versijas", - "More versions..." : "Vairāk versiju..." + "Restore" : "Atjaunot" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/apps/files_versions/l10n/lv.json b/apps/files_versions/l10n/lv.json index 784b2be056bc5..b4a203fbee932 100644 --- a/apps/files_versions/l10n/lv.json +++ b/apps/files_versions/l10n/lv.json @@ -3,8 +3,6 @@ "Versions" : "Versijas", "Failed to revert {file} to revision {timestamp}." : "Neizdevās atjaunot {file} no rediģējuma {timestamp} ", "_%n byte_::_%n bytes_" : ["%n baiti","%n baiti","%n baiti"], - "Restore" : "Atjaunot", - "No versions available" : "Nav versijas", - "More versions..." : "Vairāk versiju..." + "Restore" : "Atjaunot" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/mk.js b/apps/files_versions/l10n/mk.js index b447f8d54f40e..4b1e11115e9e9 100644 --- a/apps/files_versions/l10n/mk.js +++ b/apps/files_versions/l10n/mk.js @@ -4,8 +4,6 @@ OC.L10N.register( "Could not revert: %s" : "Не можев да го вратам: %s", "Versions" : "Верзии", "Failed to revert {file} to revision {timestamp}." : "Не успеав да го вратам {file} на ревизијата {timestamp}.", - "Restore" : "Врати", - "More versions..." : "Повеќе верзии...", - "No other versions available" : "Не постојат други верзии" + "Restore" : "Врати" }, "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"); diff --git a/apps/files_versions/l10n/mk.json b/apps/files_versions/l10n/mk.json index 74e3d0a096d2b..fd61f962ff3ed 100644 --- a/apps/files_versions/l10n/mk.json +++ b/apps/files_versions/l10n/mk.json @@ -2,8 +2,6 @@ "Could not revert: %s" : "Не можев да го вратам: %s", "Versions" : "Верзии", "Failed to revert {file} to revision {timestamp}." : "Не успеав да го вратам {file} на ревизијата {timestamp}.", - "Restore" : "Врати", - "More versions..." : "Повеќе верзии...", - "No other versions available" : "Не постојат други верзии" + "Restore" : "Врати" },"pluralForm" :"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;" } \ No newline at end of file diff --git a/apps/files_versions/l10n/ms_MY.js b/apps/files_versions/l10n/ms_MY.js index 82711624e8458..077f8248c4cab 100644 --- a/apps/files_versions/l10n/ms_MY.js +++ b/apps/files_versions/l10n/ms_MY.js @@ -4,8 +4,6 @@ OC.L10N.register( "Could not revert: %s" : "Tidak dapat kembalikan: %s", "Versions" : "Versi", "Failed to revert {file} to revision {timestamp}." : "Gagal kembalikan {file} ke semakan {timestamp}.", - "Restore" : "Pulihkan", - "More versions..." : "Lagi versi...", - "No other versions available" : "Tiada lagi versi lain" + "Restore" : "Pulihkan" }, "nplurals=1; plural=0;"); diff --git a/apps/files_versions/l10n/ms_MY.json b/apps/files_versions/l10n/ms_MY.json index 9d04d87fe250d..7516e526d74e6 100644 --- a/apps/files_versions/l10n/ms_MY.json +++ b/apps/files_versions/l10n/ms_MY.json @@ -2,8 +2,6 @@ "Could not revert: %s" : "Tidak dapat kembalikan: %s", "Versions" : "Versi", "Failed to revert {file} to revision {timestamp}." : "Gagal kembalikan {file} ke semakan {timestamp}.", - "Restore" : "Pulihkan", - "More versions..." : "Lagi versi...", - "No other versions available" : "Tiada lagi versi lain" + "Restore" : "Pulihkan" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_versions/l10n/nb.js b/apps/files_versions/l10n/nb.js index b15f9e8083455..a798ceb59f0de 100644 --- a/apps/files_versions/l10n/nb.js +++ b/apps/files_versions/l10n/nb.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Gjenopprett", "No earlier versions available" : "Ingen tidligere versjoner tilgjengelige", - "More versions …" : "Flere versjoner…", - "No versions available" : "Ingen versjoner tilgjengelig", - "More versions..." : "Flere versjoner…" + "More versions …" : "Flere versjoner…" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/nb.json b/apps/files_versions/l10n/nb.json index 4c178b7a81f10..5cb8e8dc125ed 100644 --- a/apps/files_versions/l10n/nb.json +++ b/apps/files_versions/l10n/nb.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Gjenopprett", "No earlier versions available" : "Ingen tidligere versjoner tilgjengelige", - "More versions …" : "Flere versjoner…", - "No versions available" : "Ingen versjoner tilgjengelig", - "More versions..." : "Flere versjoner…" + "More versions …" : "Flere versjoner…" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/nl.js b/apps/files_versions/l10n/nl.js index b20dfe45af5e0..83f2de4b3657d 100644 --- a/apps/files_versions/l10n/nl.js +++ b/apps/files_versions/l10n/nl.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Herstellen", "No earlier versions available" : "Geen oudere versies beschikbaar", - "More versions …" : "Meer versies...", - "No versions available" : "Geen versies beschikbaar", - "More versions..." : "Meer versies..." + "More versions …" : "Meer versies..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/nl.json b/apps/files_versions/l10n/nl.json index 4b6243f9be2de..59554c81316a1 100644 --- a/apps/files_versions/l10n/nl.json +++ b/apps/files_versions/l10n/nl.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Herstellen", "No earlier versions available" : "Geen oudere versies beschikbaar", - "More versions …" : "Meer versies...", - "No versions available" : "Geen versies beschikbaar", - "More versions..." : "Meer versies..." + "More versions …" : "Meer versies..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/nn_NO.js b/apps/files_versions/l10n/nn_NO.js index 877b4a4cd6901..a107f0a811cf1 100644 --- a/apps/files_versions/l10n/nn_NO.js +++ b/apps/files_versions/l10n/nn_NO.js @@ -4,8 +4,6 @@ OC.L10N.register( "Could not revert: %s" : "Klarte ikkje å tilbakestilla: %s", "Versions" : "Utgåver", "Failed to revert {file} to revision {timestamp}." : "Klarte ikkje å tilbakestilla {file} til utgåva {timestamp}.", - "Restore" : "Gjenopprett", - "More versions..." : "Fleire utgåver …", - "No other versions available" : "Ingen andre utgåver tilgjengeleg" + "Restore" : "Gjenopprett" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/nn_NO.json b/apps/files_versions/l10n/nn_NO.json index 8cb02d34d862b..a04c8decc6cab 100644 --- a/apps/files_versions/l10n/nn_NO.json +++ b/apps/files_versions/l10n/nn_NO.json @@ -2,8 +2,6 @@ "Could not revert: %s" : "Klarte ikkje å tilbakestilla: %s", "Versions" : "Utgåver", "Failed to revert {file} to revision {timestamp}." : "Klarte ikkje å tilbakestilla {file} til utgåva {timestamp}.", - "Restore" : "Gjenopprett", - "More versions..." : "Fleire utgåver …", - "No other versions available" : "Ingen andre utgåver tilgjengeleg" + "Restore" : "Gjenopprett" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/pl.js b/apps/files_versions/l10n/pl.js index 54a90a51cad42..603cac001a009 100644 --- a/apps/files_versions/l10n/pl.js +++ b/apps/files_versions/l10n/pl.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n bajt","%n bajtów","%n bajtów","%n bajtów"], "Restore" : "Przywróć", "No earlier versions available" : "Brak dostępnych wcześniejszych wersji", - "More versions …" : "Więcej wersji...", - "No versions available" : "Brak wersji", - "More versions..." : "Więcej wersji..." + "More versions …" : "Więcej wersji..." }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/files_versions/l10n/pl.json b/apps/files_versions/l10n/pl.json index 64130b65e0649..78043af8c4058 100644 --- a/apps/files_versions/l10n/pl.json +++ b/apps/files_versions/l10n/pl.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n bajt","%n bajtów","%n bajtów","%n bajtów"], "Restore" : "Przywróć", "No earlier versions available" : "Brak dostępnych wcześniejszych wersji", - "More versions …" : "Więcej wersji...", - "No versions available" : "Brak wersji", - "More versions..." : "Więcej wersji..." + "More versions …" : "Więcej wersji..." },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/pt_BR.js b/apps/files_versions/l10n/pt_BR.js index 86f0fdae18153..0aab1b79abcb7 100644 --- a/apps/files_versions/l10n/pt_BR.js +++ b/apps/files_versions/l10n/pt_BR.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "Não há versões mais novas disponíveis", - "More versions …" : "Mais versões...", - "No versions available" : "Não há versões disponíveis", - "More versions..." : "Mais versões..." + "More versions …" : "Mais versões..." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/files_versions/l10n/pt_BR.json b/apps/files_versions/l10n/pt_BR.json index 006c224a16e46..bfdde62e79382 100644 --- a/apps/files_versions/l10n/pt_BR.json +++ b/apps/files_versions/l10n/pt_BR.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Restaurar", "No earlier versions available" : "Não há versões mais novas disponíveis", - "More versions …" : "Mais versões...", - "No versions available" : "Não há versões disponíveis", - "More versions..." : "Mais versões..." + "More versions …" : "Mais versões..." },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/pt_PT.js b/apps/files_versions/l10n/pt_PT.js index 1fe4b7b51f75d..8ea3634ee1656 100644 --- a/apps/files_versions/l10n/pt_PT.js +++ b/apps/files_versions/l10n/pt_PT.js @@ -4,8 +4,6 @@ OC.L10N.register( "Could not revert: %s" : "Não foi possível reverter: %s", "Versions" : "Versões", "Failed to revert {file} to revision {timestamp}." : "Falhou a recuperação do ficheiro {file} para a revisão {timestamp}.", - "Restore" : "Restaurar", - "More versions..." : "Mais versões...", - "No other versions available" : "Não existem versões mais antigas" + "Restore" : "Restaurar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/pt_PT.json b/apps/files_versions/l10n/pt_PT.json index f26967f44d132..bcebe2471c81f 100644 --- a/apps/files_versions/l10n/pt_PT.json +++ b/apps/files_versions/l10n/pt_PT.json @@ -2,8 +2,6 @@ "Could not revert: %s" : "Não foi possível reverter: %s", "Versions" : "Versões", "Failed to revert {file} to revision {timestamp}." : "Falhou a recuperação do ficheiro {file} para a revisão {timestamp}.", - "Restore" : "Restaurar", - "More versions..." : "Mais versões...", - "No other versions available" : "Não existem versões mais antigas" + "Restore" : "Restaurar" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/ro.js b/apps/files_versions/l10n/ro.js index 7801481b3e71d..e45b5ae4f9900 100644 --- a/apps/files_versions/l10n/ro.js +++ b/apps/files_versions/l10n/ro.js @@ -6,8 +6,6 @@ OC.L10N.register( "Failed to revert {file} to revision {timestamp}." : "S-a eșuat restaurarea fișierului {file} la revizia {timestamp}.", "_%n byte_::_%n bytes_" : ["%n byte","%n byți","%n byți"], "Restore" : "Restaurare", - "More versions …" : "Mai multe versiuni...", - "No versions available" : "Nu există versiuni disponibile", - "More versions..." : "Mai multe versiuni..." + "More versions …" : "Mai multe versiuni..." }, "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"); diff --git a/apps/files_versions/l10n/ro.json b/apps/files_versions/l10n/ro.json index 28280d9eaab61..db1664b355ebd 100644 --- a/apps/files_versions/l10n/ro.json +++ b/apps/files_versions/l10n/ro.json @@ -4,8 +4,6 @@ "Failed to revert {file} to revision {timestamp}." : "S-a eșuat restaurarea fișierului {file} la revizia {timestamp}.", "_%n byte_::_%n bytes_" : ["%n byte","%n byți","%n byți"], "Restore" : "Restaurare", - "More versions …" : "Mai multe versiuni...", - "No versions available" : "Nu există versiuni disponibile", - "More versions..." : "Mai multe versiuni..." + "More versions …" : "Mai multe versiuni..." },"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/apps/files_versions/l10n/ru.js b/apps/files_versions/l10n/ru.js index 0d128bb0703cd..fbce7c94c9875 100644 --- a/apps/files_versions/l10n/ru.js +++ b/apps/files_versions/l10n/ru.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n байт","%n байта","%n байт","%n байт"], "Restore" : "Откатить", "No earlier versions available" : "Нет более ранних версий…", - "More versions …" : "Ещё версии…", - "No versions available" : "Нет доступных версий", - "More versions..." : "Ещё версии..." + "More versions …" : "Ещё версии…" }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/apps/files_versions/l10n/ru.json b/apps/files_versions/l10n/ru.json index d8577d33573d3..86dde80449813 100644 --- a/apps/files_versions/l10n/ru.json +++ b/apps/files_versions/l10n/ru.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n байт","%n байта","%n байт","%n байт"], "Restore" : "Откатить", "No earlier versions available" : "Нет более ранних версий…", - "More versions …" : "Ещё версии…", - "No versions available" : "Нет доступных версий", - "More versions..." : "Ещё версии..." + "More versions …" : "Ещё версии…" },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/sk.js b/apps/files_versions/l10n/sk.js index 41c13cd4c185f..0c06a7bf23963 100644 --- a/apps/files_versions/l10n/sk.js +++ b/apps/files_versions/l10n/sk.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n bajt","%n bajtov","%n bajtov"], "Restore" : "Obnoviť", "No earlier versions available" : "Nie sú dostupné predchádzajúce verzie", - "More versions …" : "Viac verzií ...", - "No versions available" : "Žiadne verzie nie sú dostupné", - "More versions..." : "Viac verzií..." + "More versions …" : "Viac verzií ..." }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/files_versions/l10n/sk.json b/apps/files_versions/l10n/sk.json index c66d5b0c7c0fb..76a4d6f8261fc 100644 --- a/apps/files_versions/l10n/sk.json +++ b/apps/files_versions/l10n/sk.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n bajt","%n bajtov","%n bajtov"], "Restore" : "Obnoviť", "No earlier versions available" : "Nie sú dostupné predchádzajúce verzie", - "More versions …" : "Viac verzií ...", - "No versions available" : "Žiadne verzie nie sú dostupné", - "More versions..." : "Viac verzií..." + "More versions …" : "Viac verzií ..." },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/files_versions/l10n/sl.js b/apps/files_versions/l10n/sl.js index 1c4b75c04027e..0f045d82eba70 100644 --- a/apps/files_versions/l10n/sl.js +++ b/apps/files_versions/l10n/sl.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n byte-a","%n byte-i","%n byte-ov"], "Restore" : "Obnovi", "No earlier versions available" : "Ni starejših različic", - "More versions …" : "Več različic ...", - "No versions available" : "Ni različic na voljo", - "More versions..." : "Več različic..." + "More versions …" : "Več različic ..." }, "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); diff --git a/apps/files_versions/l10n/sl.json b/apps/files_versions/l10n/sl.json index 1325aa1425cff..e0be7ad609899 100644 --- a/apps/files_versions/l10n/sl.json +++ b/apps/files_versions/l10n/sl.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n byte-a","%n byte-i","%n byte-ov"], "Restore" : "Obnovi", "No earlier versions available" : "Ni starejših različic", - "More versions …" : "Več različic ...", - "No versions available" : "Ni različic na voljo", - "More versions..." : "Več različic..." + "More versions …" : "Več različic ..." },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/sq.js b/apps/files_versions/l10n/sq.js index 2bc424787de7e..36a1b19be23c4 100644 --- a/apps/files_versions/l10n/sq.js +++ b/apps/files_versions/l10n/sq.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n bajte","%n bajte"], "Restore" : "Riktheje", "No earlier versions available" : "Nuk ka versione të tjera të gatshme", - "More versions …" : "Më shumë versione ...", - "No versions available" : "Ska versione të gatshme", - "More versions..." : "Më shumë versione…" + "More versions …" : "Më shumë versione ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/sq.json b/apps/files_versions/l10n/sq.json index 5a18299c5f795..414421a0c235e 100644 --- a/apps/files_versions/l10n/sq.json +++ b/apps/files_versions/l10n/sq.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n bajte","%n bajte"], "Restore" : "Riktheje", "No earlier versions available" : "Nuk ka versione të tjera të gatshme", - "More versions …" : "Më shumë versione ...", - "No versions available" : "Ska versione të gatshme", - "More versions..." : "Më shumë versione…" + "More versions …" : "Më shumë versione ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/sr.js b/apps/files_versions/l10n/sr.js index ed1e96c457371..5bde1f51cf3f0 100644 --- a/apps/files_versions/l10n/sr.js +++ b/apps/files_versions/l10n/sr.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n бајт","%n бајта","%n бајтова"], "Restore" : "Врати", "No earlier versions available" : "Нема старијих верзија", - "More versions …" : "Још верзија …", - "No versions available" : "Нема доступних верзија", - "More versions..." : "Још верзија..." + "More versions …" : "Још верзија …" }, "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/apps/files_versions/l10n/sr.json b/apps/files_versions/l10n/sr.json index b9c1a71153dd3..0943ab436d321 100644 --- a/apps/files_versions/l10n/sr.json +++ b/apps/files_versions/l10n/sr.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n бајт","%n бајта","%n бајтова"], "Restore" : "Врати", "No earlier versions available" : "Нема старијих верзија", - "More versions …" : "Још верзија …", - "No versions available" : "Нема доступних верзија", - "More versions..." : "Још верзија..." + "More versions …" : "Још верзија …" },"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);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/sv.js b/apps/files_versions/l10n/sv.js index aff6c95965fc3..88f004962b5af 100644 --- a/apps/files_versions/l10n/sv.js +++ b/apps/files_versions/l10n/sv.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Återskapa", "No earlier versions available" : "Inga tidigare versioner tillgängliga", - "More versions …" : "Fler versioner ...", - "No versions available" : "Inga versioner tillgängliga", - "More versions..." : "Fler versioner..." + "More versions …" : "Fler versioner ..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_versions/l10n/sv.json b/apps/files_versions/l10n/sv.json index c6e7250636fc6..66397530c806a 100644 --- a/apps/files_versions/l10n/sv.json +++ b/apps/files_versions/l10n/sv.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n byte","%n bytes"], "Restore" : "Återskapa", "No earlier versions available" : "Inga tidigare versioner tillgängliga", - "More versions …" : "Fler versioner ...", - "No versions available" : "Inga versioner tillgängliga", - "More versions..." : "Fler versioner..." + "More versions …" : "Fler versioner ..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/th.js b/apps/files_versions/l10n/th.js index 50175c27d2e58..261bd4cbd4d08 100644 --- a/apps/files_versions/l10n/th.js +++ b/apps/files_versions/l10n/th.js @@ -4,8 +4,6 @@ OC.L10N.register( "Could not revert: %s" : "ไม่สามารถย้อนกลับ: %s", "Versions" : "รุ่น", "Failed to revert {file} to revision {timestamp}." : "{file} ล้มเหลวที่จะย้อนกลับ มีการแก้ไขเมื่อ {timestamp}", - "Restore" : "คืนค่า", - "More versions..." : "รุ่นอื่นๆ ...", - "No other versions available" : "ยังไม่มีรุ่นที่ใหม่กว่า" + "Restore" : "คืนค่า" }, "nplurals=1; plural=0;"); diff --git a/apps/files_versions/l10n/th.json b/apps/files_versions/l10n/th.json index 82f0a05ec6654..cd1f24fd89f1d 100644 --- a/apps/files_versions/l10n/th.json +++ b/apps/files_versions/l10n/th.json @@ -2,8 +2,6 @@ "Could not revert: %s" : "ไม่สามารถย้อนกลับ: %s", "Versions" : "รุ่น", "Failed to revert {file} to revision {timestamp}." : "{file} ล้มเหลวที่จะย้อนกลับ มีการแก้ไขเมื่อ {timestamp}", - "Restore" : "คืนค่า", - "More versions..." : "รุ่นอื่นๆ ...", - "No other versions available" : "ยังไม่มีรุ่นที่ใหม่กว่า" + "Restore" : "คืนค่า" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_versions/l10n/tr.js b/apps/files_versions/l10n/tr.js index a3861ead6fe24..f7524e10b9a34 100644 --- a/apps/files_versions/l10n/tr.js +++ b/apps/files_versions/l10n/tr.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n bayt","%n bayt"], "Restore" : "Geri yükle", "No earlier versions available" : "Kullanılabilecek daha önceki bir sürüm yok", - "More versions …" : "Diğer sürümler ...", - "No versions available" : "Herhangi bir sürüm yok", - "More versions..." : "Diğer sürümler..." + "More versions …" : "Diğer sürümler ..." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/files_versions/l10n/tr.json b/apps/files_versions/l10n/tr.json index 4f6898c0f6786..7fc0942eba85e 100644 --- a/apps/files_versions/l10n/tr.json +++ b/apps/files_versions/l10n/tr.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n bayt","%n bayt"], "Restore" : "Geri yükle", "No earlier versions available" : "Kullanılabilecek daha önceki bir sürüm yok", - "More versions …" : "Diğer sürümler ...", - "No versions available" : "Herhangi bir sürüm yok", - "More versions..." : "Diğer sürümler..." + "More versions …" : "Diğer sürümler ..." },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/uk.js b/apps/files_versions/l10n/uk.js index bea96a8a45031..34a9faedbd5fb 100644 --- a/apps/files_versions/l10n/uk.js +++ b/apps/files_versions/l10n/uk.js @@ -4,8 +4,9 @@ OC.L10N.register( "Could not revert: %s" : "Не вдалося відновити: %s", "Versions" : "Версії", "Failed to revert {file} to revision {timestamp}." : "Не вдалося повернути {file} до ревізії {timestamp}.", + "_%n byte_::_%n bytes_" : ["%n байт","%n байтів","%n байта"], "Restore" : "Відновити", - "More versions..." : "Більше версій ...", - "No other versions available" : "Інші версії недоступні" + "No earlier versions available" : "Попередні версії недоступні", + "More versions …" : "Більше версій …" }, "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/apps/files_versions/l10n/uk.json b/apps/files_versions/l10n/uk.json index 83ad7c61e8ba8..8bd76ae3526bf 100644 --- a/apps/files_versions/l10n/uk.json +++ b/apps/files_versions/l10n/uk.json @@ -2,8 +2,9 @@ "Could not revert: %s" : "Не вдалося відновити: %s", "Versions" : "Версії", "Failed to revert {file} to revision {timestamp}." : "Не вдалося повернути {file} до ревізії {timestamp}.", + "_%n byte_::_%n bytes_" : ["%n байт","%n байтів","%n байта"], "Restore" : "Відновити", - "More versions..." : "Більше версій ...", - "No other versions available" : "Інші версії недоступні" + "No earlier versions available" : "Попередні версії недоступні", + "More versions …" : "Більше версій …" },"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);" } \ No newline at end of file diff --git a/apps/files_versions/l10n/vi.js b/apps/files_versions/l10n/vi.js index e24d005e3d758..b706c9a97be89 100644 --- a/apps/files_versions/l10n/vi.js +++ b/apps/files_versions/l10n/vi.js @@ -4,8 +4,6 @@ OC.L10N.register( "Could not revert: %s" : "Không thể khôi phục: %s", "Versions" : "Phiên bản", "Failed to revert {file} to revision {timestamp}." : "Thất bại khi trở lại {file} khi sử đổi {timestamp}.", - "Restore" : "Khôi phục", - "No versions available" : "Không có phiên bản có sẵn", - "More versions..." : "Nhiều phiên bản ..." + "Restore" : "Khôi phục" }, "nplurals=1; plural=0;"); diff --git a/apps/files_versions/l10n/vi.json b/apps/files_versions/l10n/vi.json index 874c40cc8be9a..7f9deca4e085e 100644 --- a/apps/files_versions/l10n/vi.json +++ b/apps/files_versions/l10n/vi.json @@ -2,8 +2,6 @@ "Could not revert: %s" : "Không thể khôi phục: %s", "Versions" : "Phiên bản", "Failed to revert {file} to revision {timestamp}." : "Thất bại khi trở lại {file} khi sử đổi {timestamp}.", - "Restore" : "Khôi phục", - "No versions available" : "Không có phiên bản có sẵn", - "More versions..." : "Nhiều phiên bản ..." + "Restore" : "Khôi phục" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_versions/l10n/zh_CN.js b/apps/files_versions/l10n/zh_CN.js index cd3f22b2ba491..cc269e58af604 100644 --- a/apps/files_versions/l10n/zh_CN.js +++ b/apps/files_versions/l10n/zh_CN.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n 比特"], "Restore" : "恢复", "No earlier versions available" : "无可用的更早的版本", - "More versions …" : "更多版本…", - "No versions available" : "没有可用的版本", - "More versions..." : "更多版本..." + "More versions …" : "更多版本…" }, "nplurals=1; plural=0;"); diff --git a/apps/files_versions/l10n/zh_CN.json b/apps/files_versions/l10n/zh_CN.json index 865d994e74f1d..89e4d02c9c640 100644 --- a/apps/files_versions/l10n/zh_CN.json +++ b/apps/files_versions/l10n/zh_CN.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n 比特"], "Restore" : "恢复", "No earlier versions available" : "无可用的更早的版本", - "More versions …" : "更多版本…", - "No versions available" : "没有可用的版本", - "More versions..." : "更多版本..." + "More versions …" : "更多版本…" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/files_versions/l10n/zh_TW.js b/apps/files_versions/l10n/zh_TW.js index a72984b0892ba..edc155906769e 100644 --- a/apps/files_versions/l10n/zh_TW.js +++ b/apps/files_versions/l10n/zh_TW.js @@ -7,8 +7,6 @@ OC.L10N.register( "_%n byte_::_%n bytes_" : ["%n bytes"], "Restore" : "復原", "No earlier versions available" : "沒有更早的版本了", - "More versions …" : "更多版本…", - "No versions available" : "沒有其他版本了", - "More versions..." : "更多版本…" + "More versions …" : "更多版本…" }, "nplurals=1; plural=0;"); diff --git a/apps/files_versions/l10n/zh_TW.json b/apps/files_versions/l10n/zh_TW.json index 975db0ad27937..f3d543c65e528 100644 --- a/apps/files_versions/l10n/zh_TW.json +++ b/apps/files_versions/l10n/zh_TW.json @@ -5,8 +5,6 @@ "_%n byte_::_%n bytes_" : ["%n bytes"], "Restore" : "復原", "No earlier versions available" : "沒有更早的版本了", - "More versions …" : "更多版本…", - "No versions available" : "沒有其他版本了", - "More versions..." : "更多版本…" + "More versions …" : "更多版本…" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/oauth2/l10n/ar.js b/apps/oauth2/l10n/ar.js new file mode 100644 index 0000000000000..9771d51454024 --- /dev/null +++ b/apps/oauth2/l10n/ar.js @@ -0,0 +1,11 @@ +OC.L10N.register( + "oauth2", + { + "Name" : "الإسم", + "Redirection URI" : "رابط إعادة التوجيه", + "Client Identifier" : "مُعرِّف العميل", + "Secret" : "السر", + "Add client" : "إضافة عميل", + "Add" : "إضافة" +}, +"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/apps/oauth2/l10n/ar.json b/apps/oauth2/l10n/ar.json new file mode 100644 index 0000000000000..bfa7e0487eabc --- /dev/null +++ b/apps/oauth2/l10n/ar.json @@ -0,0 +1,9 @@ +{ "translations": { + "Name" : "الإسم", + "Redirection URI" : "رابط إعادة التوجيه", + "Client Identifier" : "مُعرِّف العميل", + "Secret" : "السر", + "Add client" : "إضافة عميل", + "Add" : "إضافة" +},"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/apps/oauth2/l10n/ast.js b/apps/oauth2/l10n/ast.js index ddb11d0b9edc7..07a7510eda655 100644 --- a/apps/oauth2/l10n/ast.js +++ b/apps/oauth2/l10n/ast.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Veceros d'OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permite a los servicios esternos solicitar accesu a %s.", "Name" : "Nome", diff --git a/apps/oauth2/l10n/ast.json b/apps/oauth2/l10n/ast.json index 5e2db794420e9..53ac163ef17b4 100644 --- a/apps/oauth2/l10n/ast.json +++ b/apps/oauth2/l10n/ast.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Veceros d'OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permite a los servicios esternos solicitar accesu a %s.", "Name" : "Nome", diff --git a/apps/oauth2/l10n/da.js b/apps/oauth2/l10n/da.js index b92b030cd25d2..564ec11479f70 100644 --- a/apps/oauth2/l10n/da.js +++ b/apps/oauth2/l10n/da.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 klienter", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 tillader eksterne services at forespørge adgang til din %s.", "Name" : "Navn", diff --git a/apps/oauth2/l10n/da.json b/apps/oauth2/l10n/da.json index e6899c73ac513..3a833e639d251 100644 --- a/apps/oauth2/l10n/da.json +++ b/apps/oauth2/l10n/da.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 klienter", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 tillader eksterne services at forespørge adgang til din %s.", "Name" : "Navn", diff --git a/apps/oauth2/l10n/de.js b/apps/oauth2/l10n/de.js index a3927dbd5170a..f3b969d64a5c1 100644 --- a/apps/oauth2/l10n/de.js +++ b/apps/oauth2/l10n/de.js @@ -1,7 +1,8 @@ OC.L10N.register( "oauth2", { - "OAuth 2.0 clients" : "OAuth-2.0-Clients", + "OAuth 2.0" : "OAuth 2.0", + "OAuth 2.0 clients" : "OAuth 2.0-Clients", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 erlaubt es externen Diensten nach Zugriff auf %s zu fragen.", "Name" : "Name", "Redirection URI" : "Weiterleitungs-URI", diff --git a/apps/oauth2/l10n/de.json b/apps/oauth2/l10n/de.json index 42c48422d935b..c8c16bfc9b624 100644 --- a/apps/oauth2/l10n/de.json +++ b/apps/oauth2/l10n/de.json @@ -1,5 +1,6 @@ { "translations": { - "OAuth 2.0 clients" : "OAuth-2.0-Clients", + "OAuth 2.0" : "OAuth 2.0", + "OAuth 2.0 clients" : "OAuth 2.0-Clients", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 erlaubt es externen Diensten nach Zugriff auf %s zu fragen.", "Name" : "Name", "Redirection URI" : "Weiterleitungs-URI", diff --git a/apps/oauth2/l10n/de_DE.js b/apps/oauth2/l10n/de_DE.js index a3927dbd5170a..f3b969d64a5c1 100644 --- a/apps/oauth2/l10n/de_DE.js +++ b/apps/oauth2/l10n/de_DE.js @@ -1,7 +1,8 @@ OC.L10N.register( "oauth2", { - "OAuth 2.0 clients" : "OAuth-2.0-Clients", + "OAuth 2.0" : "OAuth 2.0", + "OAuth 2.0 clients" : "OAuth 2.0-Clients", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 erlaubt es externen Diensten nach Zugriff auf %s zu fragen.", "Name" : "Name", "Redirection URI" : "Weiterleitungs-URI", diff --git a/apps/oauth2/l10n/de_DE.json b/apps/oauth2/l10n/de_DE.json index 42c48422d935b..c8c16bfc9b624 100644 --- a/apps/oauth2/l10n/de_DE.json +++ b/apps/oauth2/l10n/de_DE.json @@ -1,5 +1,6 @@ { "translations": { - "OAuth 2.0 clients" : "OAuth-2.0-Clients", + "OAuth 2.0" : "OAuth 2.0", + "OAuth 2.0 clients" : "OAuth 2.0-Clients", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 erlaubt es externen Diensten nach Zugriff auf %s zu fragen.", "Name" : "Name", "Redirection URI" : "Weiterleitungs-URI", diff --git a/apps/oauth2/l10n/el.js b/apps/oauth2/l10n/el.js index 76443d98d0727..98031ed423ee7 100644 --- a/apps/oauth2/l10n/el.js +++ b/apps/oauth2/l10n/el.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Πελάτες OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "Το OAuth 2.0 επιτρέπει σε εξωτερικές υπηρεσίες να ζητούν πρόσβαση στο %s σας.", "Name" : "Όνομα", diff --git a/apps/oauth2/l10n/el.json b/apps/oauth2/l10n/el.json index defc366540ac7..e10f10bdac9c7 100644 --- a/apps/oauth2/l10n/el.json +++ b/apps/oauth2/l10n/el.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Πελάτες OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "Το OAuth 2.0 επιτρέπει σε εξωτερικές υπηρεσίες να ζητούν πρόσβαση στο %s σας.", "Name" : "Όνομα", diff --git a/apps/oauth2/l10n/en_GB.js b/apps/oauth2/l10n/en_GB.js index 55b0b7534d996..6d89985d8a8f7 100644 --- a/apps/oauth2/l10n/en_GB.js +++ b/apps/oauth2/l10n/en_GB.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 clients", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 allows external services to request access to %s.", "Name" : "Name", diff --git a/apps/oauth2/l10n/en_GB.json b/apps/oauth2/l10n/en_GB.json index f6fabc7196498..3f19d168e85a8 100644 --- a/apps/oauth2/l10n/en_GB.json +++ b/apps/oauth2/l10n/en_GB.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 clients", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 allows external services to request access to %s.", "Name" : "Name", diff --git a/apps/oauth2/l10n/es.js b/apps/oauth2/l10n/es.js index cc9762352eb3a..d9e8052265d81 100644 --- a/apps/oauth2/l10n/es.js +++ b/apps/oauth2/l10n/es.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAut 2.0 permite a servicios externos solicitar acceso a %s.", "Name" : "Nombre", diff --git a/apps/oauth2/l10n/es.json b/apps/oauth2/l10n/es.json index bc6dacc6c5047..adddffe23cea2 100644 --- a/apps/oauth2/l10n/es.json +++ b/apps/oauth2/l10n/es.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAut 2.0 permite a servicios externos solicitar acceso a %s.", "Name" : "Nombre", diff --git a/apps/oauth2/l10n/es_MX.js b/apps/oauth2/l10n/es_MX.js index ecad08fd552b3..c5e0d2f46b0d3 100644 --- a/apps/oauth2/l10n/es_MX.js +++ b/apps/oauth2/l10n/es_MX.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Name" : "Nombre", diff --git a/apps/oauth2/l10n/es_MX.json b/apps/oauth2/l10n/es_MX.json index 5e42b16f40d53..ac9eef5ebf8c8 100644 --- a/apps/oauth2/l10n/es_MX.json +++ b/apps/oauth2/l10n/es_MX.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Name" : "Nombre", diff --git a/apps/oauth2/l10n/et_EE.js b/apps/oauth2/l10n/et_EE.js index 8cba010336baa..7a65047e10c54 100644 --- a/apps/oauth2/l10n/et_EE.js +++ b/apps/oauth2/l10n/et_EE.js @@ -2,8 +2,10 @@ OC.L10N.register( "oauth2", { "OAuth 2.0 clients" : "OAuth 2.0 kliendid", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 lubab välistel teenustel %s teenusele ligipääsu taotleda.", "Name" : "Nimi", "Redirection URI" : "Suunamise URI", + "Client Identifier" : "Kliendi identifikaator", "Secret" : "Saladus", "Add client" : "Lisa klient", "Add" : "Lisa" diff --git a/apps/oauth2/l10n/et_EE.json b/apps/oauth2/l10n/et_EE.json index cbe3238027fdd..cbf3d2335d3be 100644 --- a/apps/oauth2/l10n/et_EE.json +++ b/apps/oauth2/l10n/et_EE.json @@ -1,7 +1,9 @@ { "translations": { "OAuth 2.0 clients" : "OAuth 2.0 kliendid", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 lubab välistel teenustel %s teenusele ligipääsu taotleda.", "Name" : "Nimi", "Redirection URI" : "Suunamise URI", + "Client Identifier" : "Kliendi identifikaator", "Secret" : "Saladus", "Add client" : "Lisa klient", "Add" : "Lisa" diff --git a/apps/oauth2/l10n/fi.js b/apps/oauth2/l10n/fi.js index c88e7d95a43c3..072ec9fffb516 100644 --- a/apps/oauth2/l10n/fi.js +++ b/apps/oauth2/l10n/fi.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 -asiakkaat", "Name" : "Nimi", "Redirection URI" : "Uudelleenohjaus URI", diff --git a/apps/oauth2/l10n/fi.json b/apps/oauth2/l10n/fi.json index 2fdbf7298465d..9f4d8511d6171 100644 --- a/apps/oauth2/l10n/fi.json +++ b/apps/oauth2/l10n/fi.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 -asiakkaat", "Name" : "Nimi", "Redirection URI" : "Uudelleenohjaus URI", diff --git a/apps/oauth2/l10n/fr.js b/apps/oauth2/l10n/fr.js index ce5533c073ba9..b62b0dec18216 100644 --- a/apps/oauth2/l10n/fr.js +++ b/apps/oauth2/l10n/fr.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clients OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permet à des services externes de demander l'accès à %s.", "Name" : "Nom", diff --git a/apps/oauth2/l10n/fr.json b/apps/oauth2/l10n/fr.json index e26315e70aa97..e93e5f26883cd 100644 --- a/apps/oauth2/l10n/fr.json +++ b/apps/oauth2/l10n/fr.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clients OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permet à des services externes de demander l'accès à %s.", "Name" : "Nom", diff --git a/apps/oauth2/l10n/gl.js b/apps/oauth2/l10n/gl.js index 5ca248e1c0e40..2aaff4b52f600 100644 --- a/apps/oauth2/l10n/gl.js +++ b/apps/oauth2/l10n/gl.js @@ -1,13 +1,9 @@ OC.L10N.register( "oauth2", { - "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "OAuth 2.0 allows external services to request access to your %s." : "OAuth 2.0 permítelle aos servizos externos solicitar acceso ao seu %s.", "Name" : "Nome", - "Redirection URI" : "URI de redireccionamento", "Client Identifier" : "Identificador do cliente", - "Secret" : "Secreto", "Add client" : "Engadir cliente", "Add" : "Engadir" }, diff --git a/apps/oauth2/l10n/gl.json b/apps/oauth2/l10n/gl.json index e26fbbe9330bb..8f3a48034a67a 100644 --- a/apps/oauth2/l10n/gl.json +++ b/apps/oauth2/l10n/gl.json @@ -1,11 +1,7 @@ { "translations": { - "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", - "OAuth 2.0 allows external services to request access to your %s." : "OAuth 2.0 permítelle aos servizos externos solicitar acceso ao seu %s.", "Name" : "Nome", - "Redirection URI" : "URI de redireccionamento", "Client Identifier" : "Identificador do cliente", - "Secret" : "Secreto", "Add client" : "Engadir cliente", "Add" : "Engadir" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/apps/oauth2/l10n/he.js b/apps/oauth2/l10n/he.js new file mode 100644 index 0000000000000..250205239a85c --- /dev/null +++ b/apps/oauth2/l10n/he.js @@ -0,0 +1,14 @@ +OC.L10N.register( + "oauth2", + { + "OAuth 2.0" : "OAuth 2.0", + "OAuth 2.0 clients" : "לקוחות OAuth 2.0", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 מאפשר לשירותים חיצוניים לבקש גישה אל %s.", + "Name" : "שם", + "Redirection URI" : "כתובת הפנייה", + "Client Identifier" : "זיהוי לקו", + "Secret" : "סוד", + "Add client" : "הוספת לקוחי", + "Add" : "הוספה" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/he.json b/apps/oauth2/l10n/he.json new file mode 100644 index 0000000000000..09505d773023b --- /dev/null +++ b/apps/oauth2/l10n/he.json @@ -0,0 +1,12 @@ +{ "translations": { + "OAuth 2.0" : "OAuth 2.0", + "OAuth 2.0 clients" : "לקוחות OAuth 2.0", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 מאפשר לשירותים חיצוניים לבקש גישה אל %s.", + "Name" : "שם", + "Redirection URI" : "כתובת הפנייה", + "Client Identifier" : "זיהוי לקו", + "Secret" : "סוד", + "Add client" : "הוספת לקוחי", + "Add" : "הוספה" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/apps/oauth2/l10n/hu.js b/apps/oauth2/l10n/hu.js index 48747669a31bf..64124c7a5d40f 100644 --- a/apps/oauth2/l10n/hu.js +++ b/apps/oauth2/l10n/hu.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 kliensek", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 megengedi külső szolgáltatásoknak, hogy hozzáférést kérjenek ehhez: %s.", "Name" : "Név", diff --git a/apps/oauth2/l10n/hu.json b/apps/oauth2/l10n/hu.json index c69fbb0fcd8ab..8c07c53e66ff9 100644 --- a/apps/oauth2/l10n/hu.json +++ b/apps/oauth2/l10n/hu.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 kliensek", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 megengedi külső szolgáltatásoknak, hogy hozzáférést kérjenek ehhez: %s.", "Name" : "Név", diff --git a/apps/oauth2/l10n/is.js b/apps/oauth2/l10n/is.js index 92ee10c7ae3df..cc060b16adce0 100644 --- a/apps/oauth2/l10n/is.js +++ b/apps/oauth2/l10n/is.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 biðlarar", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 gerir utanaðkomandi þjónustum kleift að biðja um aðgang að %s.", "Name" : "Nafn", diff --git a/apps/oauth2/l10n/is.json b/apps/oauth2/l10n/is.json index 715c2a52e60f1..0729159583e9f 100644 --- a/apps/oauth2/l10n/is.json +++ b/apps/oauth2/l10n/is.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 biðlarar", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 gerir utanaðkomandi þjónustum kleift að biðja um aðgang að %s.", "Name" : "Nafn", diff --git a/apps/oauth2/l10n/it.js b/apps/oauth2/l10n/it.js index 90afda1f9cba2..94c33e0eaaa25 100644 --- a/apps/oauth2/l10n/it.js +++ b/apps/oauth2/l10n/it.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Client OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 consente a servizi esterni di richiedere accesso al tuo %s.", "Name" : "Nome", diff --git a/apps/oauth2/l10n/it.json b/apps/oauth2/l10n/it.json index 9f1726e58561e..0fa30df53f43f 100644 --- a/apps/oauth2/l10n/it.json +++ b/apps/oauth2/l10n/it.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Client OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 consente a servizi esterni di richiedere accesso al tuo %s.", "Name" : "Nome", diff --git a/apps/oauth2/l10n/ka_GE.js b/apps/oauth2/l10n/ka_GE.js index 145866ff4a248..bc15a0bb375a0 100644 --- a/apps/oauth2/l10n/ka_GE.js +++ b/apps/oauth2/l10n/ka_GE.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 კლიენტები", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 გარე სერვისებს ანიჭებს %s-ზე წვდომის მოთხოვნის უფლებას.", "Name" : "სახელი", diff --git a/apps/oauth2/l10n/ka_GE.json b/apps/oauth2/l10n/ka_GE.json index df2aa60a6605a..234349103b126 100644 --- a/apps/oauth2/l10n/ka_GE.json +++ b/apps/oauth2/l10n/ka_GE.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 კლიენტები", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 გარე სერვისებს ანიჭებს %s-ზე წვდომის მოთხოვნის უფლებას.", "Name" : "სახელი", diff --git a/apps/oauth2/l10n/nb.js b/apps/oauth2/l10n/nb.js index e88d0bbf65536..00f4914626ea4 100644 --- a/apps/oauth2/l10n/nb.js +++ b/apps/oauth2/l10n/nb.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0-klienter", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 lar eksterne tjenester forespørre tilgang til %s.", "Name" : "Navn", diff --git a/apps/oauth2/l10n/nb.json b/apps/oauth2/l10n/nb.json index b32ec95061828..6ea4e9c859aef 100644 --- a/apps/oauth2/l10n/nb.json +++ b/apps/oauth2/l10n/nb.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0-klienter", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 lar eksterne tjenester forespørre tilgang til %s.", "Name" : "Navn", diff --git a/apps/oauth2/l10n/nl.js b/apps/oauth2/l10n/nl.js index cfdb8ece7d8b4..047280bd1cd68 100644 --- a/apps/oauth2/l10n/nl.js +++ b/apps/oauth2/l10n/nl.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 Clients", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 staat externe services toe om toegang te vragen aan %s", "Name" : "Naam", diff --git a/apps/oauth2/l10n/nl.json b/apps/oauth2/l10n/nl.json index fd2d6fbfa6dcb..d0564c48be624 100644 --- a/apps/oauth2/l10n/nl.json +++ b/apps/oauth2/l10n/nl.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 Clients", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 staat externe services toe om toegang te vragen aan %s", "Name" : "Naam", diff --git a/apps/oauth2/l10n/pl.js b/apps/oauth2/l10n/pl.js index 0b6be71337954..d8383e462eb16 100644 --- a/apps/oauth2/l10n/pl.js +++ b/apps/oauth2/l10n/pl.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Klienci OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 umożliwia usługom zewnętrznym żądanie dostępu do %s.", "Name" : "Nazwa", diff --git a/apps/oauth2/l10n/pl.json b/apps/oauth2/l10n/pl.json index 84825a9635803..8cc1ba7ecfdc4 100644 --- a/apps/oauth2/l10n/pl.json +++ b/apps/oauth2/l10n/pl.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Klienci OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 umożliwia usługom zewnętrznym żądanie dostępu do %s.", "Name" : "Nazwa", diff --git a/apps/oauth2/l10n/pt_BR.js b/apps/oauth2/l10n/pt_BR.js index 8a703da5e298f..4cdf0a5f90397 100644 --- a/apps/oauth2/l10n/pt_BR.js +++ b/apps/oauth2/l10n/pt_BR.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permite que serviços externos requisitem acesso a %s.", "Name" : "Nome", diff --git a/apps/oauth2/l10n/pt_BR.json b/apps/oauth2/l10n/pt_BR.json index 16c4871ef0d8c..74f23369db4ab 100644 --- a/apps/oauth2/l10n/pt_BR.json +++ b/apps/oauth2/l10n/pt_BR.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permite que serviços externos requisitem acesso a %s.", "Name" : "Nome", diff --git a/apps/oauth2/l10n/pt_PT.js b/apps/oauth2/l10n/pt_PT.js new file mode 100644 index 0000000000000..f89a56c39d1f5 --- /dev/null +++ b/apps/oauth2/l10n/pt_PT.js @@ -0,0 +1,14 @@ +OC.L10N.register( + "oauth2", + { + "OAuth 2.0" : "OAuth 2.0", + "OAuth 2.0 clients" : "Clientes OAuth 2.0", + "OAuth 2.0 allows external services to request access to %s." : "OAuth2.0 permite que dispositivos externos peçam acesso a %s.", + "Name" : "Nome", + "Redirection URI" : "URI de redireccionamento", + "Client Identifier" : "Identificador de Cliente", + "Secret" : "Segredo", + "Add client" : "Adicionar cliente", + "Add" : "Adicionar" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/pt_PT.json b/apps/oauth2/l10n/pt_PT.json new file mode 100644 index 0000000000000..15f16743e78a3 --- /dev/null +++ b/apps/oauth2/l10n/pt_PT.json @@ -0,0 +1,12 @@ +{ "translations": { + "OAuth 2.0" : "OAuth 2.0", + "OAuth 2.0 clients" : "Clientes OAuth 2.0", + "OAuth 2.0 allows external services to request access to %s." : "OAuth2.0 permite que dispositivos externos peçam acesso a %s.", + "Name" : "Nome", + "Redirection URI" : "URI de redireccionamento", + "Client Identifier" : "Identificador de Cliente", + "Secret" : "Segredo", + "Add client" : "Adicionar cliente", + "Add" : "Adicionar" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/apps/oauth2/l10n/ru.js b/apps/oauth2/l10n/ru.js index 7edd72964cd98..4adf2f65cebe7 100644 --- a/apps/oauth2/l10n/ru.js +++ b/apps/oauth2/l10n/ru.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Клиенты OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 позволяет внешним службам запрашивать доступ к %s.", "Name" : "Имя", diff --git a/apps/oauth2/l10n/ru.json b/apps/oauth2/l10n/ru.json index f83068d609701..793dd149678a6 100644 --- a/apps/oauth2/l10n/ru.json +++ b/apps/oauth2/l10n/ru.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Клиенты OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 позволяет внешним службам запрашивать доступ к %s.", "Name" : "Имя", diff --git a/apps/oauth2/l10n/sk.js b/apps/oauth2/l10n/sk.js index 5de3a2a5144f1..977ffe779a062 100644 --- a/apps/oauth2/l10n/sk.js +++ b/apps/oauth2/l10n/sk.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "klienti OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 umožňuje externým službám vyžiadať prístup k %s.", "Name" : "Názov", diff --git a/apps/oauth2/l10n/sk.json b/apps/oauth2/l10n/sk.json index bb8e9db4cafb4..bc0e014f8595c 100644 --- a/apps/oauth2/l10n/sk.json +++ b/apps/oauth2/l10n/sk.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "klienti OAuth 2.0", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 umožňuje externým službám vyžiadať prístup k %s.", "Name" : "Názov", diff --git a/apps/oauth2/l10n/sr.js b/apps/oauth2/l10n/sr.js index 17bf401136de8..0f24d5940dcef 100644 --- a/apps/oauth2/l10n/sr.js +++ b/apps/oauth2/l10n/sr.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 клијенти", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 дозвољава спољним сервисима да захтевају приступ на %s.", "Name" : "Име", diff --git a/apps/oauth2/l10n/sr.json b/apps/oauth2/l10n/sr.json index ce91adc6253a8..4acdc07d5d2f4 100644 --- a/apps/oauth2/l10n/sr.json +++ b/apps/oauth2/l10n/sr.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 клијенти", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 дозвољава спољним сервисима да захтевају приступ на %s.", "Name" : "Име", diff --git a/apps/oauth2/l10n/sv.js b/apps/oauth2/l10n/sv.js index 6008633294f74..5d2946a1d2239 100644 --- a/apps/oauth2/l10n/sv.js +++ b/apps/oauth2/l10n/sv.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 klienter", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 tillåter externa tjänster att efterfråga tillgång till %s.", "Name" : "Namn", diff --git a/apps/oauth2/l10n/sv.json b/apps/oauth2/l10n/sv.json index 6fa51297312e5..464282a4491c6 100644 --- a/apps/oauth2/l10n/sv.json +++ b/apps/oauth2/l10n/sv.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 klienter", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 tillåter externa tjänster att efterfråga tillgång till %s.", "Name" : "Namn", diff --git a/apps/oauth2/l10n/tr.js b/apps/oauth2/l10n/tr.js index 25bd1645f6119..92b680c60dcf7 100644 --- a/apps/oauth2/l10n/tr.js +++ b/apps/oauth2/l10n/tr.js @@ -1,6 +1,7 @@ OC.L10N.register( "oauth2", { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 istemcileri", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 dış hizmetlerin %s için erişim isteğinde bulunmasını sağlar.", "Name" : "Ad", diff --git a/apps/oauth2/l10n/tr.json b/apps/oauth2/l10n/tr.json index 9b8bafb3c4fd1..b244dc88c08a8 100644 --- a/apps/oauth2/l10n/tr.json +++ b/apps/oauth2/l10n/tr.json @@ -1,4 +1,5 @@ { "translations": { + "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 istemcileri", "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 dış hizmetlerin %s için erişim isteğinde bulunmasını sağlar.", "Name" : "Ad", diff --git a/apps/oauth2/l10n/zh_TW.js b/apps/oauth2/l10n/zh_TW.js index 2eda8ab0a9882..3a8d4c21c6c29 100644 --- a/apps/oauth2/l10n/zh_TW.js +++ b/apps/oauth2/l10n/zh_TW.js @@ -1,13 +1,14 @@ OC.L10N.register( "oauth2", { - "OAuth 2.0 clients" : "OAuth 2.0 用戶端", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0允許其他裝置存取 %s.", + "OAuth 2.0" : "OAuth 2.0", + "OAuth 2.0 clients" : "OAuth 2.0 客戶端", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 允許其他裝置存取 %s", "Name" : "名稱", - "Redirection URI" : "URI轉向", - "Client Identifier" : "用戶辨識", - "Secret" : "秘密", - "Add client" : "新增用戶", + "Redirection URI" : "重導向 URI", + "Client Identifier" : "用戶識別", + "Secret" : "秘密口令 (Secret)", + "Add client" : "新增客戶端", "Add" : "新增" }, "nplurals=1; plural=0;"); diff --git a/apps/oauth2/l10n/zh_TW.json b/apps/oauth2/l10n/zh_TW.json index 7bdcfd0833ea3..c125265fdb560 100644 --- a/apps/oauth2/l10n/zh_TW.json +++ b/apps/oauth2/l10n/zh_TW.json @@ -1,11 +1,12 @@ { "translations": { - "OAuth 2.0 clients" : "OAuth 2.0 用戶端", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0允許其他裝置存取 %s.", + "OAuth 2.0" : "OAuth 2.0", + "OAuth 2.0 clients" : "OAuth 2.0 客戶端", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 允許其他裝置存取 %s", "Name" : "名稱", - "Redirection URI" : "URI轉向", - "Client Identifier" : "用戶辨識", - "Secret" : "秘密", - "Add client" : "新增用戶", + "Redirection URI" : "重導向 URI", + "Client Identifier" : "用戶識別", + "Secret" : "秘密口令 (Secret)", + "Add client" : "新增客戶端", "Add" : "新增" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/provisioning_api/lib/Controller/UsersController.php b/apps/provisioning_api/lib/Controller/UsersController.php index ffae68d5a95a5..22ee0402e4bae 100644 --- a/apps/provisioning_api/lib/Controller/UsersController.php +++ b/apps/provisioning_api/lib/Controller/UsersController.php @@ -31,6 +31,7 @@ namespace OCA\Provisioning_API\Controller; use OC\Accounts\AccountManager; +use OC\HintException; use OC\Settings\Mailer\NewUserMailHelper; use OC_Helper; use OCP\App\IAppManager; @@ -187,15 +188,22 @@ public function addUser($userid, $password, $groups = null) { try { $newUser = $this->userManager->createUser($userid, $password); - $this->logger->info('Successful addUser call with userid: '.$userid, ['app' => 'ocs_api']); + $this->logger->info('Successful addUser call with userid: ' . $userid, ['app' => 'ocs_api']); if (is_array($groups)) { foreach ($groups as $group) { $this->groupManager->get($group)->addUser($newUser); - $this->logger->info('Added userid '.$userid.' to group '.$group, ['app' => 'ocs_api']); + $this->logger->info('Added userid ' . $userid . ' to group ' . $group, ['app' => 'ocs_api']); } } return new DataResponse(); + } catch (HintException $e ) { + $this->logger->logException($e, [ + 'message' => 'Failed addUser attempt with hint exception.', + 'level' => \OCP\Util::WARN, + 'app' => 'ocs_api', + ]); + throw new OCSException($e->getHint(), 107); } catch (\Exception $e) { $this->logger->error('Failed addUser attempt with exception: '.$e->getMessage(), ['app' => 'ocs_api']); throw new OCSException('Bad request', 101); diff --git a/apps/sharebymail/l10n/ast.js b/apps/sharebymail/l10n/ast.js index 854e3e0444b1a..68b2b6646f50d 100644 --- a/apps/sharebymail/l10n/ast.js +++ b/apps/sharebymail/l10n/ast.js @@ -31,10 +31,6 @@ OC.L10N.register( "Could not find share" : "Nun pudo alcontrase la compartición", "Share by mail" : "Unviar per corréu", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Permite a los usuarios compartir un enllaz personalizáu a un ficheru o carpeta poniendo una direición de corréu.", - "Failed to send share by E-mail" : "Fallu al unviar la compartición per corréu", - "Failed to create the E-mail" : "Fallu al crear el corréu", - "Cheers!" : "¡Salú!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola bones,

%scompartió%s contigo nel nome de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola bones,

%s compartió %s contigo.

" + "Failed to send share by E-mail" : "Fallu al unviar la compartición per corréu" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/ast.json b/apps/sharebymail/l10n/ast.json index 6e110b9d0cada..705013043267e 100644 --- a/apps/sharebymail/l10n/ast.json +++ b/apps/sharebymail/l10n/ast.json @@ -29,10 +29,6 @@ "Could not find share" : "Nun pudo alcontrase la compartición", "Share by mail" : "Unviar per corréu", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Permite a los usuarios compartir un enllaz personalizáu a un ficheru o carpeta poniendo una direición de corréu.", - "Failed to send share by E-mail" : "Fallu al unviar la compartición per corréu", - "Failed to create the E-mail" : "Fallu al crear el corréu", - "Cheers!" : "¡Salú!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola bones,

%scompartió%s contigo nel nome de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola bones,

%s compartió %s contigo.

" + "Failed to send share by E-mail" : "Fallu al unviar la compartición per corréu" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/ca.js b/apps/sharebymail/l10n/ca.js index a80a751958282..fb9d5072b12c0 100644 --- a/apps/sharebymail/l10n/ca.js +++ b/apps/sharebymail/l10n/ca.js @@ -36,12 +36,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Permet als usuaris compartir un enllaç personalitzat a un fitxer o carpeta posant una adreça de correu electrònic.", "Send password by mail" : "Enviar contrasenya per correu", "Enforce password protection" : "Reforça la protecció amb contrasenya", - "Failed to send share by E-mail" : "No s'ha pogut enviar compartir per correu electrònic", - "%s shared »%s« with you on behalf of %s" : "%s compartit »%s« amb vostè en nom de %s", - "Failed to create the E-mail" : "No s'ha pogut crear el correu electrònic", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s compartit »%s« amb vostè en nom de %s\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s compartit »%s« amb tu.\n\n%s\n\n", - "Cheers!" : "Salut!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s compartit %s amb vosaltres en representació de %s.

" + "Failed to send share by E-mail" : "No s'ha pogut enviar compartir per correu electrònic" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/ca.json b/apps/sharebymail/l10n/ca.json index 6e0981ab4e322..5028ee3540ae2 100644 --- a/apps/sharebymail/l10n/ca.json +++ b/apps/sharebymail/l10n/ca.json @@ -34,12 +34,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Permet als usuaris compartir un enllaç personalitzat a un fitxer o carpeta posant una adreça de correu electrònic.", "Send password by mail" : "Enviar contrasenya per correu", "Enforce password protection" : "Reforça la protecció amb contrasenya", - "Failed to send share by E-mail" : "No s'ha pogut enviar compartir per correu electrònic", - "%s shared »%s« with you on behalf of %s" : "%s compartit »%s« amb vostè en nom de %s", - "Failed to create the E-mail" : "No s'ha pogut crear el correu electrònic", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s compartit »%s« amb vostè en nom de %s\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s compartit »%s« amb tu.\n\n%s\n\n", - "Cheers!" : "Salut!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s compartit %s amb vosaltres en representació de %s.

" + "Failed to send share by E-mail" : "No s'ha pogut enviar compartir per correu electrònic" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/cs.js b/apps/sharebymail/l10n/cs.js index b2cbfa08f4104..25012c581dddf 100644 --- a/apps/sharebymail/l10n/cs.js +++ b/apps/sharebymail/l10n/cs.js @@ -18,7 +18,7 @@ OC.L10N.register( "Password to access {file} was sent to you" : "Heslo pro přístupu k {file} vám bylo zasláno", "Sharing %s failed, this item is already shared with %s" : "Sdílení %s selhalo, tato položka je již s %s sdílena", "We can't send you the auto-generated password. Please set a valid email address in your personal settings and try again." : "Nemůžeme vám zaslat automaticky vygenerované heslo. Nastavte si v osobním nastavení platnou e-mailovou adresu a zkuste to znovu.", - "Failed to send share by email" : "Sdílení emailem se nezdařilo", + "Failed to send share by email" : "Sdílení e-mailem se nezdařilo", "%s shared »%s« with you" : "%s s vámi sdílel(a) »%s»", "%s shared »%s« with you." : "%s s vámi nasdílel(a) »%s«.", "Click the button below to open it." : "Pro otevření kliknětena tlačítko níže.", @@ -33,18 +33,11 @@ OC.L10N.register( "Password to access »%s« shared with %s" : "Heslo pro přístup k »%s« sdíleno s %s", "This is the password: %s" : "Toto je heslo: %s", "You can choose a different password at any time in the share dialog." : "V dialogu sdílení můžete kdykoliv vybrat jiné heslo.", - "Could not find share" : "Nelze nalézt sdílení", + "Could not find share" : "Sdílení se nedaří nalézt", "Share by mail" : "Sdílet e-mailem", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Dovoluje uživatelům odeslat personalizovaný odkaz na soubor nebo složku po zadání e-mailové adresy.", "Send password by mail" : "Odeslat heslo e-mailem", - "Enforce password protection" : "Vynutit ochranu hesla", - "Failed to send share by E-mail" : "Odeslání sdílení E-mailem se nezdařilo", - "%s shared »%s« with you on behalf of %s" : "%s s vámi sdílel »%s» místo %s", - "Failed to create the E-mail" : "Vytváření E-mailu se nezdařilo", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Ahoj,\n\n%s s vámi sdílel(a) »%s» na místo %s\n\n%s", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Ahoj,\n\n\n%s s vámi sdílel »%s».\n\n%s", - "Cheers!" : "Mějte se!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Ahoj,

%s s vámi sdílel(a) %s namísto %s.

", - "Hey there,

%s shared %s with you.

" : "Nazdar,

%s s vámi sdílel(a) %s.

" + "Enforce password protection" : "Vynutit ochranu heslem", + "Failed to send share by E-mail" : "Odeslání sdílení e-mailem se nezdařilo" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/sharebymail/l10n/cs.json b/apps/sharebymail/l10n/cs.json index 80b4476b45ddd..02f938b830aa7 100644 --- a/apps/sharebymail/l10n/cs.json +++ b/apps/sharebymail/l10n/cs.json @@ -16,7 +16,7 @@ "Password to access {file} was sent to you" : "Heslo pro přístupu k {file} vám bylo zasláno", "Sharing %s failed, this item is already shared with %s" : "Sdílení %s selhalo, tato položka je již s %s sdílena", "We can't send you the auto-generated password. Please set a valid email address in your personal settings and try again." : "Nemůžeme vám zaslat automaticky vygenerované heslo. Nastavte si v osobním nastavení platnou e-mailovou adresu a zkuste to znovu.", - "Failed to send share by email" : "Sdílení emailem se nezdařilo", + "Failed to send share by email" : "Sdílení e-mailem se nezdařilo", "%s shared »%s« with you" : "%s s vámi sdílel(a) »%s»", "%s shared »%s« with you." : "%s s vámi nasdílel(a) »%s«.", "Click the button below to open it." : "Pro otevření kliknětena tlačítko níže.", @@ -31,18 +31,11 @@ "Password to access »%s« shared with %s" : "Heslo pro přístup k »%s« sdíleno s %s", "This is the password: %s" : "Toto je heslo: %s", "You can choose a different password at any time in the share dialog." : "V dialogu sdílení můžete kdykoliv vybrat jiné heslo.", - "Could not find share" : "Nelze nalézt sdílení", + "Could not find share" : "Sdílení se nedaří nalézt", "Share by mail" : "Sdílet e-mailem", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Dovoluje uživatelům odeslat personalizovaný odkaz na soubor nebo složku po zadání e-mailové adresy.", "Send password by mail" : "Odeslat heslo e-mailem", - "Enforce password protection" : "Vynutit ochranu hesla", - "Failed to send share by E-mail" : "Odeslání sdílení E-mailem se nezdařilo", - "%s shared »%s« with you on behalf of %s" : "%s s vámi sdílel »%s» místo %s", - "Failed to create the E-mail" : "Vytváření E-mailu se nezdařilo", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Ahoj,\n\n%s s vámi sdílel(a) »%s» na místo %s\n\n%s", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Ahoj,\n\n\n%s s vámi sdílel »%s».\n\n%s", - "Cheers!" : "Mějte se!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Ahoj,

%s s vámi sdílel(a) %s namísto %s.

", - "Hey there,

%s shared %s with you.

" : "Nazdar,

%s s vámi sdílel(a) %s.

" + "Enforce password protection" : "Vynutit ochranu heslem", + "Failed to send share by E-mail" : "Odeslání sdílení e-mailem se nezdařilo" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/da.js b/apps/sharebymail/l10n/da.js index cd9584039bf61..73c43606469c9 100644 --- a/apps/sharebymail/l10n/da.js +++ b/apps/sharebymail/l10n/da.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Tillad brugere at dele et personligt link til en fil eller folder ved at skrive en email ind.", "Send password by mail" : "Send kodeord på mail", "Enforce password protection" : "Tving kodeords beskyttelse", - "Failed to send share by E-mail" : "Kunne ikke dele via e-mail", - "%s shared »%s« with you on behalf of %s" : "%s delte »%s« med dig for %s", - "Failed to create the E-mail" : "Oprettelse af e-mail mislykkedes", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hej,\n\n%s delte »%s« med dig, for %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hey there,\n\n%s delte »%s« med dig.\n\n%s\n\n", - "Cheers!" : "Hej!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hej,

%s delte %s med dig, for %s.

", - "Hey there,

%s shared %s with you.

" : "Hej,

%s delte %s med dig.

" + "Failed to send share by E-mail" : "Kunne ikke dele via e-mail" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/da.json b/apps/sharebymail/l10n/da.json index 77a40542d3144..c3fd1a1487c4e 100644 --- a/apps/sharebymail/l10n/da.json +++ b/apps/sharebymail/l10n/da.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Tillad brugere at dele et personligt link til en fil eller folder ved at skrive en email ind.", "Send password by mail" : "Send kodeord på mail", "Enforce password protection" : "Tving kodeords beskyttelse", - "Failed to send share by E-mail" : "Kunne ikke dele via e-mail", - "%s shared »%s« with you on behalf of %s" : "%s delte »%s« med dig for %s", - "Failed to create the E-mail" : "Oprettelse af e-mail mislykkedes", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hej,\n\n%s delte »%s« med dig, for %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hey there,\n\n%s delte »%s« med dig.\n\n%s\n\n", - "Cheers!" : "Hej!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hej,

%s delte %s med dig, for %s.

", - "Hey there,

%s shared %s with you.

" : "Hej,

%s delte %s med dig.

" + "Failed to send share by E-mail" : "Kunne ikke dele via e-mail" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/de.js b/apps/sharebymail/l10n/de.js index ad26d8f1c5a40..63b0d0f55b690 100644 --- a/apps/sharebymail/l10n/de.js +++ b/apps/sharebymail/l10n/de.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Ermöglicht Benutzern eine personalisierte Verknüpfung zu einer Datei oder einem Ordner durch Eingabe einer E-Mail-Adresse zu teilen.", "Send password by mail" : "Passwort per Mail senden", "Enforce password protection" : "Passwortschutz erzwingen", - "Failed to send share by E-mail" : "Fehler beim Senden der Freigabe per E-Mail", - "%s shared »%s« with you on behalf of %s" : "%s hat »%s« im Auftrag von %s mit Dir geteilt", - "Failed to create the E-mail" : "Erstellen der E-Mail ist fehlgeschalgen", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hallo,\n\n%s hat »%s« im Auftrag von %s mit Dir geteilt.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hallo,\n\n%s hat »%s« mit Dir geteilt.\n\n%s\n", - "Cheers!" : "Einen schönen Tag noch!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hallo,

%s hat %s im Auftrag von %s mit Dir geteilt.

", - "Hey there,

%s shared %s with you.

" : "Hallo,

%s hat %s mit Dir geteilt.

" + "Failed to send share by E-mail" : "Fehler beim Senden der Freigabe per E-Mail" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/de.json b/apps/sharebymail/l10n/de.json index 64c6ac197ea75..acb51a3ff9aa6 100644 --- a/apps/sharebymail/l10n/de.json +++ b/apps/sharebymail/l10n/de.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Ermöglicht Benutzern eine personalisierte Verknüpfung zu einer Datei oder einem Ordner durch Eingabe einer E-Mail-Adresse zu teilen.", "Send password by mail" : "Passwort per Mail senden", "Enforce password protection" : "Passwortschutz erzwingen", - "Failed to send share by E-mail" : "Fehler beim Senden der Freigabe per E-Mail", - "%s shared »%s« with you on behalf of %s" : "%s hat »%s« im Auftrag von %s mit Dir geteilt", - "Failed to create the E-mail" : "Erstellen der E-Mail ist fehlgeschalgen", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hallo,\n\n%s hat »%s« im Auftrag von %s mit Dir geteilt.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hallo,\n\n%s hat »%s« mit Dir geteilt.\n\n%s\n", - "Cheers!" : "Einen schönen Tag noch!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hallo,

%s hat %s im Auftrag von %s mit Dir geteilt.

", - "Hey there,

%s shared %s with you.

" : "Hallo,

%s hat %s mit Dir geteilt.

" + "Failed to send share by E-mail" : "Fehler beim Senden der Freigabe per E-Mail" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/de_DE.js b/apps/sharebymail/l10n/de_DE.js index 1aa24570027a0..ad208376738d2 100644 --- a/apps/sharebymail/l10n/de_DE.js +++ b/apps/sharebymail/l10n/de_DE.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Ermöglicht Benutzern eine personalisierte Verknüpfung zu einer Datei oder einem Ordner durch Eingabe einer E-Mail-Adresse zu teilen.", "Send password by mail" : "Passwort per Mail senden", "Enforce password protection" : "Passwortschutz erzwingen", - "Failed to send share by E-mail" : "Fehler beim Senden der Freigabe per E-Mail", - "%s shared »%s« with you on behalf of %s" : "%s hat »%s« im Auftrag von %s mit Ihnen geteilt", - "Failed to create the E-mail" : "Erstellen der E-Mail fehlgeschlagen", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hallo,\n\n%s hat »%s« im Auftrag von %s mit Ihnen geteilt.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hallo,\n\n%s hat »%s« mit Ihnen geteilt.\n\n%s\n", - "Cheers!" : "Einen schönen Tag noch!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hallo,

%s hat %s im Auftrag von %s mit Ihnen geteilt.

", - "Hey there,

%s shared %s with you.

" : "Hallo,

%s hat %s mit Ihnen geteilt.

" + "Failed to send share by E-mail" : "Fehler beim Senden der Freigabe per E-Mail" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/de_DE.json b/apps/sharebymail/l10n/de_DE.json index 6cc73b38876c4..56eb2b91c0389 100644 --- a/apps/sharebymail/l10n/de_DE.json +++ b/apps/sharebymail/l10n/de_DE.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Ermöglicht Benutzern eine personalisierte Verknüpfung zu einer Datei oder einem Ordner durch Eingabe einer E-Mail-Adresse zu teilen.", "Send password by mail" : "Passwort per Mail senden", "Enforce password protection" : "Passwortschutz erzwingen", - "Failed to send share by E-mail" : "Fehler beim Senden der Freigabe per E-Mail", - "%s shared »%s« with you on behalf of %s" : "%s hat »%s« im Auftrag von %s mit Ihnen geteilt", - "Failed to create the E-mail" : "Erstellen der E-Mail fehlgeschlagen", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hallo,\n\n%s hat »%s« im Auftrag von %s mit Ihnen geteilt.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hallo,\n\n%s hat »%s« mit Ihnen geteilt.\n\n%s\n", - "Cheers!" : "Einen schönen Tag noch!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hallo,

%s hat %s im Auftrag von %s mit Ihnen geteilt.

", - "Hey there,

%s shared %s with you.

" : "Hallo,

%s hat %s mit Ihnen geteilt.

" + "Failed to send share by E-mail" : "Fehler beim Senden der Freigabe per E-Mail" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/el.js b/apps/sharebymail/l10n/el.js index 1cca5b74fb9d8..4cb0be51c68bd 100644 --- a/apps/sharebymail/l10n/el.js +++ b/apps/sharebymail/l10n/el.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Να επιτρέπεται οι χρήστες να στέλνουν εξατομικευμένο σύνδεσμο σε ένα αρχείο ή φάκελο μέσω mail.", "Send password by mail" : "Αποστολή συνθηματικου με ηλεκτρονική αλληλογραφία", "Enforce password protection" : "Επιβάλετε προστασία συνθηματικού", - "Failed to send share by E-mail" : "Αποτυχία αποστολής συνδέσμου διαμοιρασμού μέσω Ηλ.ταχυδρομείου", - "%s shared »%s« with you on behalf of %s" : "%s διαμοιράστηκε »%s« με εσάς από μέρους του %s", - "Failed to create the E-mail" : "Αποτυχία δημιουργίας του Ηλ.ταχυδρομείου", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Γεια σας,\n\n%s διαμοιράστηκε »%s« με εσάς από μέρους του %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Γεια σας,\n\n%s διαμοιράστηκε »%s« με εσάς.\n\n%s\n", - "Cheers!" : "Με εκτίμηση!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Γεια σας,

%s διαμοιράστηκε %s με εσάς από μέρους του %s.

", - "Hey there,

%s shared %s with you.

" : "Γεια σας,

%s διαμοιράστηκε %s με εσάς.

" + "Failed to send share by E-mail" : "Αποτυχία αποστολής συνδέσμου διαμοιρασμού μέσω Ηλ.ταχυδρομείου" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/el.json b/apps/sharebymail/l10n/el.json index 432e4ca129a0d..f15f5b004991a 100644 --- a/apps/sharebymail/l10n/el.json +++ b/apps/sharebymail/l10n/el.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Να επιτρέπεται οι χρήστες να στέλνουν εξατομικευμένο σύνδεσμο σε ένα αρχείο ή φάκελο μέσω mail.", "Send password by mail" : "Αποστολή συνθηματικου με ηλεκτρονική αλληλογραφία", "Enforce password protection" : "Επιβάλετε προστασία συνθηματικού", - "Failed to send share by E-mail" : "Αποτυχία αποστολής συνδέσμου διαμοιρασμού μέσω Ηλ.ταχυδρομείου", - "%s shared »%s« with you on behalf of %s" : "%s διαμοιράστηκε »%s« με εσάς από μέρους του %s", - "Failed to create the E-mail" : "Αποτυχία δημιουργίας του Ηλ.ταχυδρομείου", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Γεια σας,\n\n%s διαμοιράστηκε »%s« με εσάς από μέρους του %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Γεια σας,\n\n%s διαμοιράστηκε »%s« με εσάς.\n\n%s\n", - "Cheers!" : "Με εκτίμηση!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Γεια σας,

%s διαμοιράστηκε %s με εσάς από μέρους του %s.

", - "Hey there,

%s shared %s with you.

" : "Γεια σας,

%s διαμοιράστηκε %s με εσάς.

" + "Failed to send share by E-mail" : "Αποτυχία αποστολής συνδέσμου διαμοιρασμού μέσω Ηλ.ταχυδρομείου" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/en_GB.js b/apps/sharebymail/l10n/en_GB.js index 463c28fa6312f..a0d66483d6356 100644 --- a/apps/sharebymail/l10n/en_GB.js +++ b/apps/sharebymail/l10n/en_GB.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Allows users to share a personalised link to a file or folder by putting in an email address.", "Send password by mail" : "Send password by mail", "Enforce password protection" : "Enforce password protection", - "Failed to send share by E-mail" : "Failed to send share by E-mail", - "%s shared »%s« with you on behalf of %s" : "%s shared »%s« with you on behalf of %s", - "Failed to create the E-mail" : "Failed to create the E-mail", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n", - "Cheers!" : "Cheers!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hey there,

%s shared %s with you on behalf of %s.

", - "Hey there,

%s shared %s with you.

" : "Hey there,

%s shared %s with you.

" + "Failed to send share by E-mail" : "Failed to send share by E-mail" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/en_GB.json b/apps/sharebymail/l10n/en_GB.json index 5b9d653745c3b..93babcfee85ba 100644 --- a/apps/sharebymail/l10n/en_GB.json +++ b/apps/sharebymail/l10n/en_GB.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Allows users to share a personalised link to a file or folder by putting in an email address.", "Send password by mail" : "Send password by mail", "Enforce password protection" : "Enforce password protection", - "Failed to send share by E-mail" : "Failed to send share by E-mail", - "%s shared »%s« with you on behalf of %s" : "%s shared »%s« with you on behalf of %s", - "Failed to create the E-mail" : "Failed to create the E-mail", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n", - "Cheers!" : "Cheers!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hey there,

%s shared %s with you on behalf of %s.

", - "Hey there,

%s shared %s with you.

" : "Hey there,

%s shared %s with you.

" + "Failed to send share by E-mail" : "Failed to send share by E-mail" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es.js b/apps/sharebymail/l10n/es.js index 3f01dc6f3fef0..00a22c7a6e0db 100644 --- a/apps/sharebymail/l10n/es.js +++ b/apps/sharebymail/l10n/es.js @@ -16,7 +16,7 @@ OC.L10N.register( "Password to access {file} was sent to {email}" : "Se ha enviado a {email} una contraseña para acceder a {file}", "Password to access %1$s was sent to you" : "Se te ha enviado una contraseña para acceder a %1$s", "Password to access {file} was sent to you" : "Se te ha enviado una contraseña para acceder a {file}", - "Sharing %s failed, this item is already shared with %s" : "Falló el compartir %s , este ítem ya se encontraba compartido con %s", + "Sharing %s failed, this item is already shared with %s" : "Fallo al compartir %s, ya que este elemento ya estaba compartido con %s", "We can't send you the auto-generated password. Please set a valid email address in your personal settings and try again." : "No podemos enviarte la contraseña autogenerada. Por favor, indica una dirección de correo electrónico válida en tu configuración personal y vuelve a intentarlo.", "Failed to send share by email" : "Fallo al enviar compartido por correo electrónico", "%s shared »%s« with you" : "%s compartió »%s« con usted", @@ -26,10 +26,10 @@ OC.L10N.register( "%s via %s" : "%s por %s", "%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n" : "%s compartió »%s« contigo.\nDeberías haber recibido ya un correo por separado con un enlace para acceder.\n", "%s shared »%s« with you. You should have already received a separate mail with a link to access it." : "%s compartió »%s« con usted. Debería haber recibido un mensaje de correo separado con un enlace para abrirlo.", - "Password to access »%s« shared to you by %s" : "Contraseña para acceder »%s« compartido con usted por %s", + "Password to access »%s« shared to you by %s" : "Contraseña para acceder »%s« compartida contigo por %s", "Password to access »%s«" : "Contraseña para acceder »%s«", "It is protected with the following password: %s" : "Está protegido con la siguiente contraseña: %s", - "You just shared »%s« with %s. The share was already send to the recipient. Due to the security policies defined by the administrator of %s each share needs to be protected by password and it is not allowed to send the password directly to the recipient. Therefore you need to forward the password manually to the recipient." : "Usted acaba de compartir »%s« con %s. El recurso compartido ya fue enviado al destinatario. Debido a las reglas de seguridad definadas por el administrador de %s cada recurso compartido necesita ser protegido por una contraseña y no esta permitido que usted mande la contraseña directamente al destinatario. Por eso, usted necesita mandar la contraseña manualmente al destinatario.", + "You just shared »%s« with %s. The share was already send to the recipient. Due to the security policies defined by the administrator of %s each share needs to be protected by password and it is not allowed to send the password directly to the recipient. Therefore you need to forward the password manually to the recipient." : "Acabas de compartir »%s« con %s. El recurso compartido ya ha sido enviado al destinatario. Debido a las reglas de seguridad definidas por el administrador de %s cada recurso compartido necesita ser protegido con contraseña y no está permitido que mandes la contraseña directamente al destinatario. Por eso, necesitas mandar la contraseña al destinatario por tu cuenta.", "Password to access »%s« shared with %s" : "Se ha compartido con %s una contraseña para acceder a »%s«", "This is the password: %s" : "Esta es la contraseña: %s", "You can choose a different password at any time in the share dialog." : "Puedes elegir una contraseña diferente en cualquier momento en el diálogo de compartir.", @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Permite a los usuarios compartir un enlace personalizado a un archivo o carpeta enviándolo a una dirección de correo electrónico", "Send password by mail" : "Enviar contraseñas por email", "Enforce password protection" : "Imponer la protección de contraseña", - "Failed to send share by E-mail" : "Falló enviar recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s compartió »%s« con usted a nombre de %s", - "Failed to create the E-mail" : "Falló crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "¡Hola!,\n\n%s compartió »%s« con usted a nombre de %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s compartió »%s« con usted.\n\n%s\n\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s compartió %s con usted a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s compartió %s con usted.

" + "Failed to send share by E-mail" : "Fallo al enviar recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es.json b/apps/sharebymail/l10n/es.json index 1faa382564d25..64c8a8145350b 100644 --- a/apps/sharebymail/l10n/es.json +++ b/apps/sharebymail/l10n/es.json @@ -14,7 +14,7 @@ "Password to access {file} was sent to {email}" : "Se ha enviado a {email} una contraseña para acceder a {file}", "Password to access %1$s was sent to you" : "Se te ha enviado una contraseña para acceder a %1$s", "Password to access {file} was sent to you" : "Se te ha enviado una contraseña para acceder a {file}", - "Sharing %s failed, this item is already shared with %s" : "Falló el compartir %s , este ítem ya se encontraba compartido con %s", + "Sharing %s failed, this item is already shared with %s" : "Fallo al compartir %s, ya que este elemento ya estaba compartido con %s", "We can't send you the auto-generated password. Please set a valid email address in your personal settings and try again." : "No podemos enviarte la contraseña autogenerada. Por favor, indica una dirección de correo electrónico válida en tu configuración personal y vuelve a intentarlo.", "Failed to send share by email" : "Fallo al enviar compartido por correo electrónico", "%s shared »%s« with you" : "%s compartió »%s« con usted", @@ -24,10 +24,10 @@ "%s via %s" : "%s por %s", "%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n" : "%s compartió »%s« contigo.\nDeberías haber recibido ya un correo por separado con un enlace para acceder.\n", "%s shared »%s« with you. You should have already received a separate mail with a link to access it." : "%s compartió »%s« con usted. Debería haber recibido un mensaje de correo separado con un enlace para abrirlo.", - "Password to access »%s« shared to you by %s" : "Contraseña para acceder »%s« compartido con usted por %s", + "Password to access »%s« shared to you by %s" : "Contraseña para acceder »%s« compartida contigo por %s", "Password to access »%s«" : "Contraseña para acceder »%s«", "It is protected with the following password: %s" : "Está protegido con la siguiente contraseña: %s", - "You just shared »%s« with %s. The share was already send to the recipient. Due to the security policies defined by the administrator of %s each share needs to be protected by password and it is not allowed to send the password directly to the recipient. Therefore you need to forward the password manually to the recipient." : "Usted acaba de compartir »%s« con %s. El recurso compartido ya fue enviado al destinatario. Debido a las reglas de seguridad definadas por el administrador de %s cada recurso compartido necesita ser protegido por una contraseña y no esta permitido que usted mande la contraseña directamente al destinatario. Por eso, usted necesita mandar la contraseña manualmente al destinatario.", + "You just shared »%s« with %s. The share was already send to the recipient. Due to the security policies defined by the administrator of %s each share needs to be protected by password and it is not allowed to send the password directly to the recipient. Therefore you need to forward the password manually to the recipient." : "Acabas de compartir »%s« con %s. El recurso compartido ya ha sido enviado al destinatario. Debido a las reglas de seguridad definidas por el administrador de %s cada recurso compartido necesita ser protegido con contraseña y no está permitido que mandes la contraseña directamente al destinatario. Por eso, necesitas mandar la contraseña al destinatario por tu cuenta.", "Password to access »%s« shared with %s" : "Se ha compartido con %s una contraseña para acceder a »%s«", "This is the password: %s" : "Esta es la contraseña: %s", "You can choose a different password at any time in the share dialog." : "Puedes elegir una contraseña diferente en cualquier momento en el diálogo de compartir.", @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Permite a los usuarios compartir un enlace personalizado a un archivo o carpeta enviándolo a una dirección de correo electrónico", "Send password by mail" : "Enviar contraseñas por email", "Enforce password protection" : "Imponer la protección de contraseña", - "Failed to send share by E-mail" : "Falló enviar recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s compartió »%s« con usted a nombre de %s", - "Failed to create the E-mail" : "Falló crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "¡Hola!,\n\n%s compartió »%s« con usted a nombre de %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s compartió »%s« con usted.\n\n%s\n\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s compartió %s con usted a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s compartió %s con usted.

" + "Failed to send share by E-mail" : "Fallo al enviar recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es_419.js b/apps/sharebymail/l10n/es_419.js index 92f61e8f63efc..910e3f0138cd5 100644 --- a/apps/sharebymail/l10n/es_419.js +++ b/apps/sharebymail/l10n/es_419.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es_419.json b/apps/sharebymail/l10n/es_419.json index 43a4bc87eb29a..0ce9ccb255eb2 100644 --- a/apps/sharebymail/l10n/es_419.json +++ b/apps/sharebymail/l10n/es_419.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es_AR.js b/apps/sharebymail/l10n/es_AR.js index f2fa571d1cde3..c61c3a50cb85b 100644 --- a/apps/sharebymail/l10n/es_AR.js +++ b/apps/sharebymail/l10n/es_AR.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir un link personalizado a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« con usted a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« con usted a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« con usted.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s con usted a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s con usted.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es_AR.json b/apps/sharebymail/l10n/es_AR.json index d7c9861e44b3e..af909025f20e2 100644 --- a/apps/sharebymail/l10n/es_AR.json +++ b/apps/sharebymail/l10n/es_AR.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir un link personalizado a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« con usted a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« con usted a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« con usted.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s con usted a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s con usted.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es_CL.js b/apps/sharebymail/l10n/es_CL.js index 92f61e8f63efc..910e3f0138cd5 100644 --- a/apps/sharebymail/l10n/es_CL.js +++ b/apps/sharebymail/l10n/es_CL.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es_CL.json b/apps/sharebymail/l10n/es_CL.json index 43a4bc87eb29a..0ce9ccb255eb2 100644 --- a/apps/sharebymail/l10n/es_CL.json +++ b/apps/sharebymail/l10n/es_CL.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es_CO.js b/apps/sharebymail/l10n/es_CO.js index 92f61e8f63efc..910e3f0138cd5 100644 --- a/apps/sharebymail/l10n/es_CO.js +++ b/apps/sharebymail/l10n/es_CO.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es_CO.json b/apps/sharebymail/l10n/es_CO.json index 43a4bc87eb29a..0ce9ccb255eb2 100644 --- a/apps/sharebymail/l10n/es_CO.json +++ b/apps/sharebymail/l10n/es_CO.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es_CR.js b/apps/sharebymail/l10n/es_CR.js index 92f61e8f63efc..910e3f0138cd5 100644 --- a/apps/sharebymail/l10n/es_CR.js +++ b/apps/sharebymail/l10n/es_CR.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es_CR.json b/apps/sharebymail/l10n/es_CR.json index 43a4bc87eb29a..0ce9ccb255eb2 100644 --- a/apps/sharebymail/l10n/es_CR.json +++ b/apps/sharebymail/l10n/es_CR.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es_DO.js b/apps/sharebymail/l10n/es_DO.js index 92f61e8f63efc..910e3f0138cd5 100644 --- a/apps/sharebymail/l10n/es_DO.js +++ b/apps/sharebymail/l10n/es_DO.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es_DO.json b/apps/sharebymail/l10n/es_DO.json index 43a4bc87eb29a..0ce9ccb255eb2 100644 --- a/apps/sharebymail/l10n/es_DO.json +++ b/apps/sharebymail/l10n/es_DO.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es_EC.js b/apps/sharebymail/l10n/es_EC.js index 92f61e8f63efc..910e3f0138cd5 100644 --- a/apps/sharebymail/l10n/es_EC.js +++ b/apps/sharebymail/l10n/es_EC.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es_EC.json b/apps/sharebymail/l10n/es_EC.json index 43a4bc87eb29a..0ce9ccb255eb2 100644 --- a/apps/sharebymail/l10n/es_EC.json +++ b/apps/sharebymail/l10n/es_EC.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es_GT.js b/apps/sharebymail/l10n/es_GT.js index 92f61e8f63efc..910e3f0138cd5 100644 --- a/apps/sharebymail/l10n/es_GT.js +++ b/apps/sharebymail/l10n/es_GT.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es_GT.json b/apps/sharebymail/l10n/es_GT.json index 43a4bc87eb29a..0ce9ccb255eb2 100644 --- a/apps/sharebymail/l10n/es_GT.json +++ b/apps/sharebymail/l10n/es_GT.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es_HN.js b/apps/sharebymail/l10n/es_HN.js index 92f61e8f63efc..910e3f0138cd5 100644 --- a/apps/sharebymail/l10n/es_HN.js +++ b/apps/sharebymail/l10n/es_HN.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es_HN.json b/apps/sharebymail/l10n/es_HN.json index 43a4bc87eb29a..0ce9ccb255eb2 100644 --- a/apps/sharebymail/l10n/es_HN.json +++ b/apps/sharebymail/l10n/es_HN.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es_MX.js b/apps/sharebymail/l10n/es_MX.js index 92f61e8f63efc..910e3f0138cd5 100644 --- a/apps/sharebymail/l10n/es_MX.js +++ b/apps/sharebymail/l10n/es_MX.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es_MX.json b/apps/sharebymail/l10n/es_MX.json index 43a4bc87eb29a..0ce9ccb255eb2 100644 --- a/apps/sharebymail/l10n/es_MX.json +++ b/apps/sharebymail/l10n/es_MX.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es_NI.js b/apps/sharebymail/l10n/es_NI.js index 92f61e8f63efc..910e3f0138cd5 100644 --- a/apps/sharebymail/l10n/es_NI.js +++ b/apps/sharebymail/l10n/es_NI.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es_NI.json b/apps/sharebymail/l10n/es_NI.json index 43a4bc87eb29a..0ce9ccb255eb2 100644 --- a/apps/sharebymail/l10n/es_NI.json +++ b/apps/sharebymail/l10n/es_NI.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es_PA.js b/apps/sharebymail/l10n/es_PA.js index 92f61e8f63efc..910e3f0138cd5 100644 --- a/apps/sharebymail/l10n/es_PA.js +++ b/apps/sharebymail/l10n/es_PA.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es_PA.json b/apps/sharebymail/l10n/es_PA.json index 43a4bc87eb29a..0ce9ccb255eb2 100644 --- a/apps/sharebymail/l10n/es_PA.json +++ b/apps/sharebymail/l10n/es_PA.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es_PE.js b/apps/sharebymail/l10n/es_PE.js index 92f61e8f63efc..910e3f0138cd5 100644 --- a/apps/sharebymail/l10n/es_PE.js +++ b/apps/sharebymail/l10n/es_PE.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es_PE.json b/apps/sharebymail/l10n/es_PE.json index 43a4bc87eb29a..0ce9ccb255eb2 100644 --- a/apps/sharebymail/l10n/es_PE.json +++ b/apps/sharebymail/l10n/es_PE.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es_PR.js b/apps/sharebymail/l10n/es_PR.js index 92f61e8f63efc..910e3f0138cd5 100644 --- a/apps/sharebymail/l10n/es_PR.js +++ b/apps/sharebymail/l10n/es_PR.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es_PR.json b/apps/sharebymail/l10n/es_PR.json index 43a4bc87eb29a..0ce9ccb255eb2 100644 --- a/apps/sharebymail/l10n/es_PR.json +++ b/apps/sharebymail/l10n/es_PR.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es_PY.js b/apps/sharebymail/l10n/es_PY.js index 92f61e8f63efc..910e3f0138cd5 100644 --- a/apps/sharebymail/l10n/es_PY.js +++ b/apps/sharebymail/l10n/es_PY.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es_PY.json b/apps/sharebymail/l10n/es_PY.json index 43a4bc87eb29a..0ce9ccb255eb2 100644 --- a/apps/sharebymail/l10n/es_PY.json +++ b/apps/sharebymail/l10n/es_PY.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es_SV.js b/apps/sharebymail/l10n/es_SV.js index 92f61e8f63efc..910e3f0138cd5 100644 --- a/apps/sharebymail/l10n/es_SV.js +++ b/apps/sharebymail/l10n/es_SV.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es_SV.json b/apps/sharebymail/l10n/es_SV.json index 43a4bc87eb29a..0ce9ccb255eb2 100644 --- a/apps/sharebymail/l10n/es_SV.json +++ b/apps/sharebymail/l10n/es_SV.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/es_UY.js b/apps/sharebymail/l10n/es_UY.js index 92f61e8f63efc..910e3f0138cd5 100644 --- a/apps/sharebymail/l10n/es_UY.js +++ b/apps/sharebymail/l10n/es_UY.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/es_UY.json b/apps/sharebymail/l10n/es_UY.json index 43a4bc87eb29a..0ce9ccb255eb2 100644 --- a/apps/sharebymail/l10n/es_UY.json +++ b/apps/sharebymail/l10n/es_UY.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Le permite a los usuarios compartir una liga personalizada a un archivo o carpeta colocando una dirección de correo eletrónico. ", "Send password by mail" : "La contraseña ha sido enviada por correo", "Enforce password protection" : "Forzar protección con contraseña", - "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico", - "%s shared »%s« with you on behalf of %s" : "%s ha compartido »%s« contigo a nombre de %s", - "Failed to create the E-mail" : "Se presentó una falla al crear el correo electrónico", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo a nombre de %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s ha compartido »%s« contigo.\n\n%s\n", - "Cheers!" : "¡Saludos!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s ha compartido %s contigo a nombre de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s ha compartido %s contigo.

" + "Failed to send share by E-mail" : "Se presentó una falla al enviar el recurso compartido por correo electrónico" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/et_EE.js b/apps/sharebymail/l10n/et_EE.js new file mode 100644 index 0000000000000..5c43ba96da949 --- /dev/null +++ b/apps/sharebymail/l10n/et_EE.js @@ -0,0 +1,33 @@ +OC.L10N.register( + "sharebymail", + { + "Shared with %1$s" : "Jagatud kasutajatega %1$s", + "Shared with {email}" : "Jagatud aadressile {email}", + "Shared with %1$s by %2$s" : "Jagatud kasutajatega %1$s kasutaja %2$s poolt", + "Shared with {email} by {actor}" : "Jagatud aadressile {email} {actor} poolt", + "Password for mail share sent to %1$s" : "Meiliga jagamise parool saadetud aadressile %1$s", + "Password for mail share sent to {email}" : "Meiliga jagamise parool saadetud aadressile {email}", + "Password for mail share sent to you" : "Meiliga jagamise parool sulle saadetud", + "Password to access %1$s was sent to %2s" : "Parool %1$s ligipääsuks saadeti aadressile %2s", + "Password to access {file} was sent to {email}" : "Parool {file} ligipääsuks saadeti aadressile {email}", + "Password to access %1$s was sent to you" : "Sulle saadeti %1$s ligipääsuparool", + "Password to access {file} was sent to you" : "Sulle saadeti {file} ligipääsuparool", + "Sharing %s failed, this item is already shared with %s" : "%s jagamine ebaõnnestus, see on juba %s jagatud", + "We can't send you the auto-generated password. Please set a valid email address in your personal settings and try again." : "Me ei saa sulle automaatselt genereeritud parooli saata. Palun määra korrektne e-posti aadress oma isiklikes sätetes ja proovi uuesti.", + "%s shared »%s« with you" : "%s jagas faili »%s« sinuga", + "%s shared »%s« with you." : "%s jagas faili »%s« sinuga", + "Click the button below to open it." : "Vajuta allolevat nuppu, et see avada.", + "Open »%s«" : "Ava »%s«", + "%s via %s" : "%s üle %s", + "%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n" : "%s jagas sinuga »%s«.\n Sa oleks pidanud juba saama eraldi e-kirja lingiga, mille kaudu sellele ligi pääsed.\n", + "%s shared »%s« with you. You should have already received a separate mail with a link to access it." : "%s jagas sinuga »%s«. Sa oleks pidanud juba saama eraldi e-kirja lingiga, mille kaudu sellele ligi pääsed.", + "Password to access »%s« shared to you by %s" : "Parool »%s« ligipääsuks jagati sinuga %s poolt", + "Password to access »%s«" : "Parool ligipääsuks: %s", + "It is protected with the following password: %s" : "See on kaitstud järgneva parooliga: %s", + "This is the password: %s" : "Parooliks on: %s", + "Could not find share" : "Jagamist ei leitud.", + "Share by mail" : "Jaga e-postiga", + "Send password by mail" : "Saada parool e-postiga", + "Enforce password protection" : "Sunni parooliga kaitsmist" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/et_EE.json b/apps/sharebymail/l10n/et_EE.json new file mode 100644 index 0000000000000..cec17dcb06aef --- /dev/null +++ b/apps/sharebymail/l10n/et_EE.json @@ -0,0 +1,31 @@ +{ "translations": { + "Shared with %1$s" : "Jagatud kasutajatega %1$s", + "Shared with {email}" : "Jagatud aadressile {email}", + "Shared with %1$s by %2$s" : "Jagatud kasutajatega %1$s kasutaja %2$s poolt", + "Shared with {email} by {actor}" : "Jagatud aadressile {email} {actor} poolt", + "Password for mail share sent to %1$s" : "Meiliga jagamise parool saadetud aadressile %1$s", + "Password for mail share sent to {email}" : "Meiliga jagamise parool saadetud aadressile {email}", + "Password for mail share sent to you" : "Meiliga jagamise parool sulle saadetud", + "Password to access %1$s was sent to %2s" : "Parool %1$s ligipääsuks saadeti aadressile %2s", + "Password to access {file} was sent to {email}" : "Parool {file} ligipääsuks saadeti aadressile {email}", + "Password to access %1$s was sent to you" : "Sulle saadeti %1$s ligipääsuparool", + "Password to access {file} was sent to you" : "Sulle saadeti {file} ligipääsuparool", + "Sharing %s failed, this item is already shared with %s" : "%s jagamine ebaõnnestus, see on juba %s jagatud", + "We can't send you the auto-generated password. Please set a valid email address in your personal settings and try again." : "Me ei saa sulle automaatselt genereeritud parooli saata. Palun määra korrektne e-posti aadress oma isiklikes sätetes ja proovi uuesti.", + "%s shared »%s« with you" : "%s jagas faili »%s« sinuga", + "%s shared »%s« with you." : "%s jagas faili »%s« sinuga", + "Click the button below to open it." : "Vajuta allolevat nuppu, et see avada.", + "Open »%s«" : "Ava »%s«", + "%s via %s" : "%s üle %s", + "%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n" : "%s jagas sinuga »%s«.\n Sa oleks pidanud juba saama eraldi e-kirja lingiga, mille kaudu sellele ligi pääsed.\n", + "%s shared »%s« with you. You should have already received a separate mail with a link to access it." : "%s jagas sinuga »%s«. Sa oleks pidanud juba saama eraldi e-kirja lingiga, mille kaudu sellele ligi pääsed.", + "Password to access »%s« shared to you by %s" : "Parool »%s« ligipääsuks jagati sinuga %s poolt", + "Password to access »%s«" : "Parool ligipääsuks: %s", + "It is protected with the following password: %s" : "See on kaitstud järgneva parooliga: %s", + "This is the password: %s" : "Parooliks on: %s", + "Could not find share" : "Jagamist ei leitud.", + "Share by mail" : "Jaga e-postiga", + "Send password by mail" : "Saada parool e-postiga", + "Enforce password protection" : "Sunni parooliga kaitsmist" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/apps/sharebymail/l10n/fi.js b/apps/sharebymail/l10n/fi.js index 76ce2b3eed20a..e049dad961867 100644 --- a/apps/sharebymail/l10n/fi.js +++ b/apps/sharebymail/l10n/fi.js @@ -5,25 +5,26 @@ OC.L10N.register( "Shared with {email}" : "Jaettu käyttäjälle {email}", "Shared with %1$s by %2$s" : "Jaettu käyttäjälle %1$s käyttäjältä %2$s", "Shared with {email} by {actor}" : "Jaettu käyttäjälle {email} käyttäjältä {actor}", - "You shared %1$s with %2$s by mail" : "Jaoit kohteen %1$s käyttäjälle %2$s sähköpostitse", - "You shared {file} with {email} by mail" : "Jaoit kohteen {file} käyttäjälle {email} sähköpostitse", - "%3$s shared %1$s with %2$s by mail" : "%3$s jakoi kohteen %1$s käyttäjälle %2$s sähköpostitse", - "{actor} shared {file} with {email} by mail" : "{actor} jakoi kohteen {file} käyttäjälle {email} sähköpostitse", + "You shared %1$s with %2$s by mail" : "Jaoit tiedoston %1$s sähköpostitse osoitteeseen %2$s", + "You shared {file} with {email} by mail" : "Jaoit tiedoston {file} sähköpostitse osoitteeseen {email}", + "%3$s shared %1$s with %2$s by mail" : "%3$s jakoi tiedoston %1$s sähköpostitse osoitteeseen %2$s", + "{actor} shared {file} with {email} by mail" : "{actor} jakoi tiedoston {file} sähköpostitse osoitteeseen {email}", + "Password to access {file} was sent to you" : "Salasana tiedoston {file} käyttämiseksi lähetettiin sinulle", "Sharing %s failed, this item is already shared with %s" : "Kohteen %s jakaminen epäonnistui, koska se on jo jaettu käyttäjälle %s", - "Failed to send share by E-mail" : "Jaon lähettäminen sähköpostitse epäonnistui", + "Failed to send share by email" : "Jaon lähettäminen sähköpostitse epäonnistui", "%s shared »%s« with you" : "%s jakoi kohteen »%s« kanssasi", - "%s shared »%s« with you on behalf of %s" : "%s jakoi kohteen »%s« kanssasi käyttäjän %s puolesta", - "Failed to create the E-mail" : "Sähköpostiosoitteen luonti epäonnistui", + "%s shared »%s« with you." : "%s jakoi kohteen »%s« kanssasi.", + "Click the button below to open it." : "Klikkaa alla olevaa linkkiä avataksesi sen.", + "Open »%s«" : "Avaa »%s«", + "%s via %s" : "%s (palvelun %s kautta)", + "It is protected with the following password: %s" : "Se on suojattu seuraavalla salasanalla: %s", + "This is the password: %s" : "Tämä on salasana: %s", + "You can choose a different password at any time in the share dialog." : "Voit valita muun salasanan koska tahansa jakovalikossa.", "Could not find share" : "Jakoa ei löytynyt", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hei,\n\n%s jakoi kohteen »%s« kanssasi käyttäjän %s puolesta.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hei,\n\n%s jakoi kohteen »%s« kanssasi.\n\n%s\n\n", - "Cheers!" : "Kiitos!", - "Hey there,\n\n%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n\nIt is protected with the following password: %s\n\n" : "Hei,\n\n%s jakoi kohteen »%s« kanssasi.\nSinulla pitäisi olla erillinen sähköpostiviesti, joka sisältää linkin siihen.\n\nSe on suojattu salasanalla: %s\n\n", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hei,

%s jakoi kohteen %s kanssasi käyttäjän %s puolesta.

", - "Hey there,

%s shared %s with you.

" : "Hei,

%s jakoi kohteen %s kanssasi.

", - "Hey there,

%s shared %s with you.
You should have already received a separate mail with a link to access it.

It is protected with the following password: %s

" : "Hei,

%s jakoi kohteen %s kanssasi.
Sinulla pitäisi olla erillinen sähköpostiviesti, joka sisältää linkin siihen.

Se on suojattu salasanalla: %s

", "Share by mail" : "Jaa sähköpostitse", - "Send a personalized link to a file or folder by mail." : "Lähetä personoitu linkki tiedostoon tai kansioon sähköpostitse.", - "Send password by mail" : "Lähetä salasana sähköpostitse" + "Allows users to share a personalized link to a file or folder by putting in an email address." : "Salli käyttäjien jakaa personoitu linkki tiedostoon tai kansioon syöttämällä sähköpostiosoitteen.", + "Send password by mail" : "Lähetä salasana sähköpostitse", + "Enforce password protection" : "Pakota salasanasuojaus", + "Failed to send share by E-mail" : "Jaon lähettäminen sähköpostitse epäonnistui" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/fi.json b/apps/sharebymail/l10n/fi.json index fd11319129987..d39caea52d893 100644 --- a/apps/sharebymail/l10n/fi.json +++ b/apps/sharebymail/l10n/fi.json @@ -3,25 +3,26 @@ "Shared with {email}" : "Jaettu käyttäjälle {email}", "Shared with %1$s by %2$s" : "Jaettu käyttäjälle %1$s käyttäjältä %2$s", "Shared with {email} by {actor}" : "Jaettu käyttäjälle {email} käyttäjältä {actor}", - "You shared %1$s with %2$s by mail" : "Jaoit kohteen %1$s käyttäjälle %2$s sähköpostitse", - "You shared {file} with {email} by mail" : "Jaoit kohteen {file} käyttäjälle {email} sähköpostitse", - "%3$s shared %1$s with %2$s by mail" : "%3$s jakoi kohteen %1$s käyttäjälle %2$s sähköpostitse", - "{actor} shared {file} with {email} by mail" : "{actor} jakoi kohteen {file} käyttäjälle {email} sähköpostitse", + "You shared %1$s with %2$s by mail" : "Jaoit tiedoston %1$s sähköpostitse osoitteeseen %2$s", + "You shared {file} with {email} by mail" : "Jaoit tiedoston {file} sähköpostitse osoitteeseen {email}", + "%3$s shared %1$s with %2$s by mail" : "%3$s jakoi tiedoston %1$s sähköpostitse osoitteeseen %2$s", + "{actor} shared {file} with {email} by mail" : "{actor} jakoi tiedoston {file} sähköpostitse osoitteeseen {email}", + "Password to access {file} was sent to you" : "Salasana tiedoston {file} käyttämiseksi lähetettiin sinulle", "Sharing %s failed, this item is already shared with %s" : "Kohteen %s jakaminen epäonnistui, koska se on jo jaettu käyttäjälle %s", - "Failed to send share by E-mail" : "Jaon lähettäminen sähköpostitse epäonnistui", + "Failed to send share by email" : "Jaon lähettäminen sähköpostitse epäonnistui", "%s shared »%s« with you" : "%s jakoi kohteen »%s« kanssasi", - "%s shared »%s« with you on behalf of %s" : "%s jakoi kohteen »%s« kanssasi käyttäjän %s puolesta", - "Failed to create the E-mail" : "Sähköpostiosoitteen luonti epäonnistui", + "%s shared »%s« with you." : "%s jakoi kohteen »%s« kanssasi.", + "Click the button below to open it." : "Klikkaa alla olevaa linkkiä avataksesi sen.", + "Open »%s«" : "Avaa »%s«", + "%s via %s" : "%s (palvelun %s kautta)", + "It is protected with the following password: %s" : "Se on suojattu seuraavalla salasanalla: %s", + "This is the password: %s" : "Tämä on salasana: %s", + "You can choose a different password at any time in the share dialog." : "Voit valita muun salasanan koska tahansa jakovalikossa.", "Could not find share" : "Jakoa ei löytynyt", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hei,\n\n%s jakoi kohteen »%s« kanssasi käyttäjän %s puolesta.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hei,\n\n%s jakoi kohteen »%s« kanssasi.\n\n%s\n\n", - "Cheers!" : "Kiitos!", - "Hey there,\n\n%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n\nIt is protected with the following password: %s\n\n" : "Hei,\n\n%s jakoi kohteen »%s« kanssasi.\nSinulla pitäisi olla erillinen sähköpostiviesti, joka sisältää linkin siihen.\n\nSe on suojattu salasanalla: %s\n\n", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hei,

%s jakoi kohteen %s kanssasi käyttäjän %s puolesta.

", - "Hey there,

%s shared %s with you.

" : "Hei,

%s jakoi kohteen %s kanssasi.

", - "Hey there,

%s shared %s with you.
You should have already received a separate mail with a link to access it.

It is protected with the following password: %s

" : "Hei,

%s jakoi kohteen %s kanssasi.
Sinulla pitäisi olla erillinen sähköpostiviesti, joka sisältää linkin siihen.

Se on suojattu salasanalla: %s

", "Share by mail" : "Jaa sähköpostitse", - "Send a personalized link to a file or folder by mail." : "Lähetä personoitu linkki tiedostoon tai kansioon sähköpostitse.", - "Send password by mail" : "Lähetä salasana sähköpostitse" + "Allows users to share a personalized link to a file or folder by putting in an email address." : "Salli käyttäjien jakaa personoitu linkki tiedostoon tai kansioon syöttämällä sähköpostiosoitteen.", + "Send password by mail" : "Lähetä salasana sähköpostitse", + "Enforce password protection" : "Pakota salasanasuojaus", + "Failed to send share by E-mail" : "Jaon lähettäminen sähköpostitse epäonnistui" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/fr.js b/apps/sharebymail/l10n/fr.js index d823ae21cf285..0a66fce6b5473 100644 --- a/apps/sharebymail/l10n/fr.js +++ b/apps/sharebymail/l10n/fr.js @@ -18,33 +18,26 @@ OC.L10N.register( "Password to access {file} was sent to you" : "Le mot de passe pour accèder à {file} vous a été envoyé", "Sharing %s failed, this item is already shared with %s" : "Le partage de %s a échoué, cet élément est déjà partagé avec %s", "We can't send you the auto-generated password. Please set a valid email address in your personal settings and try again." : "Nous ne pouvons pas vous envoyer le mot de passe généré automatiquement. Veuillez renseigner une adresse e-mail valide dans vos paramètres personnels puis réessayer.", - "Failed to send share by email" : "Erreur lors de l'envoi du partage par e-mail", + "Failed to send share by email" : "Échec lors de l'envoi du partage par e-mail", "%s shared »%s« with you" : "%s a partagé «%s» avec vous", "%s shared »%s« with you." : "%s a partagé «%s» avec vous.", "Click the button below to open it." : "Cliquez sur le bouton ci-dessous pour l'ouvrir.", "Open »%s«" : "Ouvrir «%s»", "%s via %s" : "%s via %s", - "%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n" : "%s a partagé «%s» avec vous.\nVous avez normalement déjà reçu un autre email avec un lien pour y accéder.\n", - "%s shared »%s« with you. You should have already received a separate mail with a link to access it." : "%s a partagé «%s» avec vous. Vous avez normalement déjà reçu un autre email avec un lien pour y accéder.", - "Password to access »%s« shared to you by %s" : "Mot de passe pour accèder à «%s» partagé par %s", - "Password to access »%s«" : "Mot de passe pour accèder à «%s»", + "%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n" : "%s a partagé «%s» avec vous.\nVous avez normalement déjà reçu un autre e-mail avec un lien pour y accéder.\n", + "%s shared »%s« with you. You should have already received a separate mail with a link to access it." : "%s a partagé «%s» avec vous. Vous avez normalement déjà reçu un autre e-mail avec un lien pour y accéder.", + "Password to access »%s« shared to you by %s" : "Mot de passe pour accéder à «%s» partagé avec vous par %s", + "Password to access »%s«" : "Mot de passe pour accéder à «%s»", "It is protected with the following password: %s" : "Il est protégé avec le mot de passe suivant : %s", "You just shared »%s« with %s. The share was already send to the recipient. Due to the security policies defined by the administrator of %s each share needs to be protected by password and it is not allowed to send the password directly to the recipient. Therefore you need to forward the password manually to the recipient." : "Vous venez de partager «%s» avec %s. Le partage a déjà été envoyé au destinataire. En raison de la politique de sécurité définie par l'administrateur de %s, chaque partage a besoin d'être protégé par mot de passe et il n'est pas autorisé d'envoyer le mot de passe directement au destinataire. C'est pourquoi vous devez transmettre le mot de passe manuellement au destinataire.", "Password to access »%s« shared with %s" : "Mot de passe pour accèder à «%s» partagé avec %s", "This is the password: %s" : "Voici le mot de passe : %s", "You can choose a different password at any time in the share dialog." : "Vous pouvez choisir un mot de passe différent à n'importe quel moment dans la boîte de dialogue de partage.", "Could not find share" : "Impossible de trouver le partage", - "Share by mail" : "Partage par email", + "Share by mail" : "Partage par e-mail", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Autoriser les utilisateurs de partager un lien personnalisé vers un fichier ou un dossier en renseignant une adresse e-mail.", - "Send password by mail" : "Envoyer le mot de passe par email", + "Send password by mail" : "Envoyer le mot de passe par e-mail", "Enforce password protection" : "Imposer la protection par mot de passe", - "Failed to send share by E-mail" : "Erreur lors de l'envoi du partage par email", - "%s shared »%s« with you on behalf of %s" : "%s a partagé «%s» avec vous de la part de %s", - "Failed to create the E-mail" : "Erreur lors de la création du mail", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Bonjour,\n\n%s a partagé «%s» avec vous de la part de %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Bonjour,\n\n%s a partagé «%s» avec vous.\n\n%s\n\n", - "Cheers!" : "À bientôt !", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Bonjour,

%s a partagé %s avec vous de la part de %s.

", - "Hey there,

%s shared %s with you.

" : "Bonjour,

%s a partagé %s avec vous.

" + "Failed to send share by E-mail" : "Échec lors de l'envoi du partage par e-mail" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/sharebymail/l10n/fr.json b/apps/sharebymail/l10n/fr.json index ed1df58468bc8..23cd35032a309 100644 --- a/apps/sharebymail/l10n/fr.json +++ b/apps/sharebymail/l10n/fr.json @@ -16,33 +16,26 @@ "Password to access {file} was sent to you" : "Le mot de passe pour accèder à {file} vous a été envoyé", "Sharing %s failed, this item is already shared with %s" : "Le partage de %s a échoué, cet élément est déjà partagé avec %s", "We can't send you the auto-generated password. Please set a valid email address in your personal settings and try again." : "Nous ne pouvons pas vous envoyer le mot de passe généré automatiquement. Veuillez renseigner une adresse e-mail valide dans vos paramètres personnels puis réessayer.", - "Failed to send share by email" : "Erreur lors de l'envoi du partage par e-mail", + "Failed to send share by email" : "Échec lors de l'envoi du partage par e-mail", "%s shared »%s« with you" : "%s a partagé «%s» avec vous", "%s shared »%s« with you." : "%s a partagé «%s» avec vous.", "Click the button below to open it." : "Cliquez sur le bouton ci-dessous pour l'ouvrir.", "Open »%s«" : "Ouvrir «%s»", "%s via %s" : "%s via %s", - "%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n" : "%s a partagé «%s» avec vous.\nVous avez normalement déjà reçu un autre email avec un lien pour y accéder.\n", - "%s shared »%s« with you. You should have already received a separate mail with a link to access it." : "%s a partagé «%s» avec vous. Vous avez normalement déjà reçu un autre email avec un lien pour y accéder.", - "Password to access »%s« shared to you by %s" : "Mot de passe pour accèder à «%s» partagé par %s", - "Password to access »%s«" : "Mot de passe pour accèder à «%s»", + "%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n" : "%s a partagé «%s» avec vous.\nVous avez normalement déjà reçu un autre e-mail avec un lien pour y accéder.\n", + "%s shared »%s« with you. You should have already received a separate mail with a link to access it." : "%s a partagé «%s» avec vous. Vous avez normalement déjà reçu un autre e-mail avec un lien pour y accéder.", + "Password to access »%s« shared to you by %s" : "Mot de passe pour accéder à «%s» partagé avec vous par %s", + "Password to access »%s«" : "Mot de passe pour accéder à «%s»", "It is protected with the following password: %s" : "Il est protégé avec le mot de passe suivant : %s", "You just shared »%s« with %s. The share was already send to the recipient. Due to the security policies defined by the administrator of %s each share needs to be protected by password and it is not allowed to send the password directly to the recipient. Therefore you need to forward the password manually to the recipient." : "Vous venez de partager «%s» avec %s. Le partage a déjà été envoyé au destinataire. En raison de la politique de sécurité définie par l'administrateur de %s, chaque partage a besoin d'être protégé par mot de passe et il n'est pas autorisé d'envoyer le mot de passe directement au destinataire. C'est pourquoi vous devez transmettre le mot de passe manuellement au destinataire.", "Password to access »%s« shared with %s" : "Mot de passe pour accèder à «%s» partagé avec %s", "This is the password: %s" : "Voici le mot de passe : %s", "You can choose a different password at any time in the share dialog." : "Vous pouvez choisir un mot de passe différent à n'importe quel moment dans la boîte de dialogue de partage.", "Could not find share" : "Impossible de trouver le partage", - "Share by mail" : "Partage par email", + "Share by mail" : "Partage par e-mail", "Allows users to share a personalized link to a file or folder by putting in an email address." : "Autoriser les utilisateurs de partager un lien personnalisé vers un fichier ou un dossier en renseignant une adresse e-mail.", - "Send password by mail" : "Envoyer le mot de passe par email", + "Send password by mail" : "Envoyer le mot de passe par e-mail", "Enforce password protection" : "Imposer la protection par mot de passe", - "Failed to send share by E-mail" : "Erreur lors de l'envoi du partage par email", - "%s shared »%s« with you on behalf of %s" : "%s a partagé «%s» avec vous de la part de %s", - "Failed to create the E-mail" : "Erreur lors de la création du mail", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Bonjour,\n\n%s a partagé «%s» avec vous de la part de %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Bonjour,\n\n%s a partagé «%s» avec vous.\n\n%s\n\n", - "Cheers!" : "À bientôt !", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Bonjour,

%s a partagé %s avec vous de la part de %s.

", - "Hey there,

%s shared %s with you.

" : "Bonjour,

%s a partagé %s avec vous.

" + "Failed to send share by E-mail" : "Échec lors de l'envoi du partage par e-mail" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/gl.js b/apps/sharebymail/l10n/gl.js index bac9c912b407a..3383cbe0f0cc2 100644 --- a/apps/sharebymail/l10n/gl.js +++ b/apps/sharebymail/l10n/gl.js @@ -38,12 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Permite a usuarios compartir un enlace personalizado a un ficheiro ou carpeta indicando unha dirección de correo ", "Send password by mail" : "Enviar contrasinal por correo", "Enforce password protection" : "Aplicar protección por contrasinal", - "Failed to send share by E-mail" : "Fallou ó compartir por correo", - "%s shared »%s« with you on behalf of %s" : "%s compartiu »%s« contigo en representación de %s", - "Failed to create the E-mail" : "Fallo ó crear o correo", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s compartiu »%s« contigo en representación de %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s compartiu »%s« contigo.\n\n%s\n\n", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s compartiu %s contigo en representación de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s compartiu %scontigo,

" + "Failed to send share by E-mail" : "Fallou ó compartir por correo" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/gl.json b/apps/sharebymail/l10n/gl.json index 0e2e007d9ab17..aba33a661d96a 100644 --- a/apps/sharebymail/l10n/gl.json +++ b/apps/sharebymail/l10n/gl.json @@ -36,12 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Permite a usuarios compartir un enlace personalizado a un ficheiro ou carpeta indicando unha dirección de correo ", "Send password by mail" : "Enviar contrasinal por correo", "Enforce password protection" : "Aplicar protección por contrasinal", - "Failed to send share by E-mail" : "Fallou ó compartir por correo", - "%s shared »%s« with you on behalf of %s" : "%s compartiu »%s« contigo en representación de %s", - "Failed to create the E-mail" : "Fallo ó crear o correo", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hola,\n\n%s compartiu »%s« contigo en representación de %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hola,\n\n%s compartiu »%s« contigo.\n\n%s\n\n", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hola,

%s compartiu %s contigo en representación de %s.

", - "Hey there,

%s shared %s with you.

" : "Hola,

%s compartiu %scontigo,

" + "Failed to send share by E-mail" : "Fallou ó compartir por correo" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/hu.js b/apps/sharebymail/l10n/hu.js index fc68b5676b2bb..24bb948712db0 100644 --- a/apps/sharebymail/l10n/hu.js +++ b/apps/sharebymail/l10n/hu.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Segítségével személyre szabott megosztási linket hozhatsz létre egy fájlhoz vagy mappához az e-mail cím beleírásával.", "Send password by mail" : "Jelszó kiküldése e-mailben", "Enforce password protection" : "Jelszóvédelem kényszerítése", - "Failed to send share by E-mail" : "Nem sikerült elküldeni a megosztó e-mailt!", - "%s shared »%s« with you on behalf of %s" : "%s megosztotta ezt: »%s« veled %s nevében.", - "Failed to create the E-mail" : "Nem sikerült létrehozni az e-mailt.", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Üdv,\n\n%s megosztotta ezt: »%s« veled %s nevében.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Üdvözöljük!\n\nÉrtesítjük, hogy %s megosztotta Önnel a következőt: »%s«.\n\n%s\n", - "Cheers!" : "Üdvözlettel,", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Üdv,

%s megosztotta ezt: %s veled %s nevében.

", - "Hey there,

%s shared %s with you.

" : "Üdvözöljük!

Értesítjük, hogy %s megosztotta Önnel a következőt: %s.

" + "Failed to send share by E-mail" : "Nem sikerült elküldeni a megosztó e-mailt!" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/hu.json b/apps/sharebymail/l10n/hu.json index 3c2227c842f96..653f85d04e452 100644 --- a/apps/sharebymail/l10n/hu.json +++ b/apps/sharebymail/l10n/hu.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Segítségével személyre szabott megosztási linket hozhatsz létre egy fájlhoz vagy mappához az e-mail cím beleírásával.", "Send password by mail" : "Jelszó kiküldése e-mailben", "Enforce password protection" : "Jelszóvédelem kényszerítése", - "Failed to send share by E-mail" : "Nem sikerült elküldeni a megosztó e-mailt!", - "%s shared »%s« with you on behalf of %s" : "%s megosztotta ezt: »%s« veled %s nevében.", - "Failed to create the E-mail" : "Nem sikerült létrehozni az e-mailt.", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Üdv,\n\n%s megosztotta ezt: »%s« veled %s nevében.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Üdvözöljük!\n\nÉrtesítjük, hogy %s megosztotta Önnel a következőt: »%s«.\n\n%s\n", - "Cheers!" : "Üdvözlettel,", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Üdv,

%s megosztotta ezt: %s veled %s nevében.

", - "Hey there,

%s shared %s with you.

" : "Üdvözöljük!

Értesítjük, hogy %s megosztotta Önnel a következőt: %s.

" + "Failed to send share by E-mail" : "Nem sikerült elküldeni a megosztó e-mailt!" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/is.js b/apps/sharebymail/l10n/is.js index 6fc01805d9b05..6112da2ee369f 100644 --- a/apps/sharebymail/l10n/is.js +++ b/apps/sharebymail/l10n/is.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Gerir notendum kleift að deila sérsniðnum tengli á skrá eða möppu með því að setja inn tölvupóstfang.", "Send password by mail" : "Senda lykilorð með pósti", "Enforce password protection" : "Krefjast verndunar með aðgangsorði", - "Failed to send share by E-mail" : "Gat ekki sent sameign með tölvupósti", - "%s shared »%s« with you on behalf of %s" : "%s deildi »%s« með þér fyrir hönd %s", - "Failed to create the E-mail" : "Mistókst að útbúa tölvupóstinn", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Góðan daginn,\n\n%s deildi »%s« með þér fyrir hönd %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Góðan daginn,\n\n%s deildi »%s« með þér.\n\n%s\n\n", - "Cheers!" : "Til hamingju!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Góðan daginn,

%s deildi %s með þér fyrir hönd %s.

", - "Hey there,

%s shared %s with you.

" : "Góðan daginn,

%s deildi %s með þér.

" + "Failed to send share by E-mail" : "Gat ekki sent sameign með tölvupósti" }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/sharebymail/l10n/is.json b/apps/sharebymail/l10n/is.json index e4ce4e630924a..4278c0fce6892 100644 --- a/apps/sharebymail/l10n/is.json +++ b/apps/sharebymail/l10n/is.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Gerir notendum kleift að deila sérsniðnum tengli á skrá eða möppu með því að setja inn tölvupóstfang.", "Send password by mail" : "Senda lykilorð með pósti", "Enforce password protection" : "Krefjast verndunar með aðgangsorði", - "Failed to send share by E-mail" : "Gat ekki sent sameign með tölvupósti", - "%s shared »%s« with you on behalf of %s" : "%s deildi »%s« með þér fyrir hönd %s", - "Failed to create the E-mail" : "Mistókst að útbúa tölvupóstinn", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Góðan daginn,\n\n%s deildi »%s« með þér fyrir hönd %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Góðan daginn,\n\n%s deildi »%s« með þér.\n\n%s\n\n", - "Cheers!" : "Til hamingju!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Góðan daginn,

%s deildi %s með þér fyrir hönd %s.

", - "Hey there,

%s shared %s with you.

" : "Góðan daginn,

%s deildi %s með þér.

" + "Failed to send share by E-mail" : "Gat ekki sent sameign með tölvupósti" },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/it.js b/apps/sharebymail/l10n/it.js index 705dd042ff107..f9450be2203b9 100644 --- a/apps/sharebymail/l10n/it.js +++ b/apps/sharebymail/l10n/it.js @@ -9,7 +9,7 @@ OC.L10N.register( "Password for mail share sent to {email}" : "Password per la condivisione tramite posta inviata a {email}", "Password for mail share sent to you" : "Password per la condivisione tramite posta inviata a te", "You shared %1$s with %2$s by mail" : "Hai condiviso %1$s con %2$s tramite posta", - "You shared {file} with {email} by mail" : "Hai condiviso {file} con {user} tramite posta", + "You shared {file} with {email} by mail" : "Hai condiviso {file} con {email} tramite posta", "%3$s shared %1$s with %2$s by mail" : "%3$s ha condiviso %1$s con %2$s tramite email", "{actor} shared {file} with {email} by mail" : "{actor} ha condiviso {file} con {email} tramite email", "Password to access %1$s was sent to %2s" : "La password per accedere a %1$s è stata inviata a %2s", @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Consente agli utenti di condividere un collegamento personalizzato a un file o a una cartella inserendo un indirizzo di posta elettronica.", "Send password by mail" : "Invia password tramite posta", "Enforce password protection" : "Imponi la protezione con password", - "Failed to send share by E-mail" : "Invio non riuscito della condivisione tramite email", - "%s shared »%s« with you on behalf of %s" : "%s ha condiviso «%s» con te per conto di %s", - "Failed to create the E-mail" : "Creazione dell'email non riuscita", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Ciao,\n\n%s ha condiviso «%s» con te per conto di %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Ciao,\n\n%s ha condiviso «%s» con te.\n\n%s\n\n", - "Cheers!" : "Saluti!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Ciao,

%s ha condiviso %s con te per conto di %s.

", - "Hey there,

%s shared %s with you.

" : "Ciao,

%s ha condiviso %s con te.

" + "Failed to send share by E-mail" : "Invio non riuscito della condivisione tramite email" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/it.json b/apps/sharebymail/l10n/it.json index f2096a3e91a4b..34876a41f7c49 100644 --- a/apps/sharebymail/l10n/it.json +++ b/apps/sharebymail/l10n/it.json @@ -7,7 +7,7 @@ "Password for mail share sent to {email}" : "Password per la condivisione tramite posta inviata a {email}", "Password for mail share sent to you" : "Password per la condivisione tramite posta inviata a te", "You shared %1$s with %2$s by mail" : "Hai condiviso %1$s con %2$s tramite posta", - "You shared {file} with {email} by mail" : "Hai condiviso {file} con {user} tramite posta", + "You shared {file} with {email} by mail" : "Hai condiviso {file} con {email} tramite posta", "%3$s shared %1$s with %2$s by mail" : "%3$s ha condiviso %1$s con %2$s tramite email", "{actor} shared {file} with {email} by mail" : "{actor} ha condiviso {file} con {email} tramite email", "Password to access %1$s was sent to %2s" : "La password per accedere a %1$s è stata inviata a %2s", @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Consente agli utenti di condividere un collegamento personalizzato a un file o a una cartella inserendo un indirizzo di posta elettronica.", "Send password by mail" : "Invia password tramite posta", "Enforce password protection" : "Imponi la protezione con password", - "Failed to send share by E-mail" : "Invio non riuscito della condivisione tramite email", - "%s shared »%s« with you on behalf of %s" : "%s ha condiviso «%s» con te per conto di %s", - "Failed to create the E-mail" : "Creazione dell'email non riuscita", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Ciao,\n\n%s ha condiviso «%s» con te per conto di %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Ciao,\n\n%s ha condiviso «%s» con te.\n\n%s\n\n", - "Cheers!" : "Saluti!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Ciao,

%s ha condiviso %s con te per conto di %s.

", - "Hey there,

%s shared %s with you.

" : "Ciao,

%s ha condiviso %s con te.

" + "Failed to send share by E-mail" : "Invio non riuscito della condivisione tramite email" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/ja.js b/apps/sharebymail/l10n/ja.js index 29fb7e59be8aa..ef464cee17401 100644 --- a/apps/sharebymail/l10n/ja.js +++ b/apps/sharebymail/l10n/ja.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "ユーザーがメールアドレスを使ってファイルやフォルダーを個別に共有", "Send password by mail" : "メールでパスワード送信", "Enforce password protection" : "常にパスワード保護を有効にする", - "Failed to send share by E-mail" : "メールで共有の送信に失敗しました", - "%s shared »%s« with you on behalf of %s" : "%s があなたと »%s« を %s のために共有しました", - "Failed to create the E-mail" : "メールの作成に失敗しました", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "こんにちは。\n\n%s が »%s« をあなたと %s のために共有しました。\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "こんにちは。\n\n%s が »%s« をあなたと共有しました。\n\n%s\n", - "Cheers!" : "それでは!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "こんにちは。

%s が %s をあなたと %s のために共有しました。

", - "Hey there,

%s shared %s with you.

" : "こんにちは。

%s が %s をあなたと共有しました。

" + "Failed to send share by E-mail" : "メールで共有の送信に失敗しました" }, "nplurals=1; plural=0;"); diff --git a/apps/sharebymail/l10n/ja.json b/apps/sharebymail/l10n/ja.json index 61c31c40e7d51..fce68c8302fa5 100644 --- a/apps/sharebymail/l10n/ja.json +++ b/apps/sharebymail/l10n/ja.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "ユーザーがメールアドレスを使ってファイルやフォルダーを個別に共有", "Send password by mail" : "メールでパスワード送信", "Enforce password protection" : "常にパスワード保護を有効にする", - "Failed to send share by E-mail" : "メールで共有の送信に失敗しました", - "%s shared »%s« with you on behalf of %s" : "%s があなたと »%s« を %s のために共有しました", - "Failed to create the E-mail" : "メールの作成に失敗しました", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "こんにちは。\n\n%s が »%s« をあなたと %s のために共有しました。\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "こんにちは。\n\n%s が »%s« をあなたと共有しました。\n\n%s\n", - "Cheers!" : "それでは!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "こんにちは。

%s が %s をあなたと %s のために共有しました。

", - "Hey there,

%s shared %s with you.

" : "こんにちは。

%s が %s をあなたと共有しました。

" + "Failed to send share by E-mail" : "メールで共有の送信に失敗しました" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/ka_GE.js b/apps/sharebymail/l10n/ka_GE.js index a750af79b52c3..8d2d43afc6ce8 100644 --- a/apps/sharebymail/l10n/ka_GE.js +++ b/apps/sharebymail/l10n/ka_GE.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "მიეცით უფლება მომხმარებლებს ელ-მისამართში მოთავსებით, ფაილზე ან დირექტორიაზე გააზიარონ პერსონალიზირებული ბმულები", "Send password by mail" : "პაროლის გაგზავნა ფოსტით", "Enforce password protection" : "პროლით დაცვის იძულება", - "Failed to send share by E-mail" : "საოფსტო გაზიარების გაგზავნა ვერ მოხერხდა", - "%s shared »%s« with you on behalf of %s" : "%s მომხმარებელმა გაგიზიარათ »%s« სახელით %s", - "Failed to create the E-mail" : "ელ-ფოსტის შექმნა ვერ მოხერხდა", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "გამარჯობა,\n\nთქვენთან სახელით %s %s-სგან გაზიარდა »%s«.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "გამარჯობა,\n\n%s მომხმარებელმა გაგიზიარათ »%s«.\n\n%s\n", - "Cheers!" : "წარმატებები", - "Hey there,

%s shared %s with you on behalf of %s.

" : "გამარჯობა,

მომხმარებელმა %s გაგიზიარათ %s სახელით %s.

", - "Hey there,

%s shared %s with you.

" : "გამარჯობა,

მომხმარებელმა %s გაგიზიარათ %s.

" + "Failed to send share by E-mail" : "საოფსტო გაზიარების გაგზავნა ვერ მოხერხდა" }, "nplurals=1; plural=0;"); diff --git a/apps/sharebymail/l10n/ka_GE.json b/apps/sharebymail/l10n/ka_GE.json index 2ab8fa47aacd4..140b8dbb34470 100644 --- a/apps/sharebymail/l10n/ka_GE.json +++ b/apps/sharebymail/l10n/ka_GE.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "მიეცით უფლება მომხმარებლებს ელ-მისამართში მოთავსებით, ფაილზე ან დირექტორიაზე გააზიარონ პერსონალიზირებული ბმულები", "Send password by mail" : "პაროლის გაგზავნა ფოსტით", "Enforce password protection" : "პროლით დაცვის იძულება", - "Failed to send share by E-mail" : "საოფსტო გაზიარების გაგზავნა ვერ მოხერხდა", - "%s shared »%s« with you on behalf of %s" : "%s მომხმარებელმა გაგიზიარათ »%s« სახელით %s", - "Failed to create the E-mail" : "ელ-ფოსტის შექმნა ვერ მოხერხდა", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "გამარჯობა,\n\nთქვენთან სახელით %s %s-სგან გაზიარდა »%s«.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "გამარჯობა,\n\n%s მომხმარებელმა გაგიზიარათ »%s«.\n\n%s\n", - "Cheers!" : "წარმატებები", - "Hey there,

%s shared %s with you on behalf of %s.

" : "გამარჯობა,

მომხმარებელმა %s გაგიზიარათ %s სახელით %s.

", - "Hey there,

%s shared %s with you.

" : "გამარჯობა,

მომხმარებელმა %s გაგიზიარათ %s.

" + "Failed to send share by E-mail" : "საოფსტო გაზიარების გაგზავნა ვერ მოხერხდა" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/ko.js b/apps/sharebymail/l10n/ko.js index 2d7bb473e2d9b..eea1f4ea2858a 100644 --- a/apps/sharebymail/l10n/ko.js +++ b/apps/sharebymail/l10n/ko.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "파일이나 폴더를 공유하는 개인화된 링크를 이메일 주소를 통해서 공유합니다.", "Send password by mail" : "이메일로 암호 보내기", "Enforce password protection" : "암호 보호 강제", - "Failed to send share by E-mail" : "이메일로 공유를 보낼 수 없음", - "%s shared »%s« with you on behalf of %s" : "%s 님이 %s을(를) 공유함(%s 님 대신)", - "Failed to create the E-mail" : "이메일을 생성할 수 없음", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "안녕하세요,\n\n%s 님이 여러분과 %s을(를) 공유했습니다(%s 님 대신).\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "안녕하세요,\n\n%s 님이 여러분과 %s을(를) 공유했습니다.\n\n%s\n\n", - "Cheers!" : "감사합니다!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "안녕하세요,

%s 님이 여러분과 %s을(를) 공유했습니다(%s 님 대신).

", - "Hey there,

%s shared %s with you.

" : "안녕하세요,

%s 님이 여러분과 %s을(를) 공유했습니다.

" + "Failed to send share by E-mail" : "이메일로 공유를 보낼 수 없음" }, "nplurals=1; plural=0;"); diff --git a/apps/sharebymail/l10n/ko.json b/apps/sharebymail/l10n/ko.json index 736dc8a298ed6..8a6d6536a0f49 100644 --- a/apps/sharebymail/l10n/ko.json +++ b/apps/sharebymail/l10n/ko.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "파일이나 폴더를 공유하는 개인화된 링크를 이메일 주소를 통해서 공유합니다.", "Send password by mail" : "이메일로 암호 보내기", "Enforce password protection" : "암호 보호 강제", - "Failed to send share by E-mail" : "이메일로 공유를 보낼 수 없음", - "%s shared »%s« with you on behalf of %s" : "%s 님이 %s을(를) 공유함(%s 님 대신)", - "Failed to create the E-mail" : "이메일을 생성할 수 없음", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "안녕하세요,\n\n%s 님이 여러분과 %s을(를) 공유했습니다(%s 님 대신).\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "안녕하세요,\n\n%s 님이 여러분과 %s을(를) 공유했습니다.\n\n%s\n\n", - "Cheers!" : "감사합니다!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "안녕하세요,

%s 님이 여러분과 %s을(를) 공유했습니다(%s 님 대신).

", - "Hey there,

%s shared %s with you.

" : "안녕하세요,

%s 님이 여러분과 %s을(를) 공유했습니다.

" + "Failed to send share by E-mail" : "이메일로 공유를 보낼 수 없음" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/lt_LT.js b/apps/sharebymail/l10n/lt_LT.js index 2c3fb59305f38..4adcb4242f4b4 100644 --- a/apps/sharebymail/l10n/lt_LT.js +++ b/apps/sharebymail/l10n/lt_LT.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Leidžia vartotojams bendrinti asmeninę nuorodą į failą ar aplanką, pateikiant el. pašto adresą.", "Send password by mail" : "Siųti slaptažodį elektroniniu paštu", "Enforce password protection" : "Apsaugoti slaptažodžiu", - "Failed to send share by E-mail" : "Nepavyko išsiųsti bendrinimo el. paštu", - "%s shared »%s« with you on behalf of %s" : "%s su jumis pasidalino »%s« , %s vardu.", - "Failed to create the E-mail" : "Nepavyko sukurti el. pašto", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Labas,\n\n%s su jumis pasidalino »%s« , %s vardu.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Labas,\n\n%s pasidalino »%s« su tavimi.\n\n%s\n\n", - "Cheers!" : "Sveikinimai!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Labas,

%s pasidalino su jumis %s , %s vardu.

", - "Hey there,

%s shared %s with you.

" : "Sveiki,

%s pradėjo su jumis bendrinti %s.

" + "Failed to send share by E-mail" : "Nepavyko išsiųsti bendrinimo el. paštu" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/sharebymail/l10n/lt_LT.json b/apps/sharebymail/l10n/lt_LT.json index 625265c468b38..61f2ea0994abc 100644 --- a/apps/sharebymail/l10n/lt_LT.json +++ b/apps/sharebymail/l10n/lt_LT.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Leidžia vartotojams bendrinti asmeninę nuorodą į failą ar aplanką, pateikiant el. pašto adresą.", "Send password by mail" : "Siųti slaptažodį elektroniniu paštu", "Enforce password protection" : "Apsaugoti slaptažodžiu", - "Failed to send share by E-mail" : "Nepavyko išsiųsti bendrinimo el. paštu", - "%s shared »%s« with you on behalf of %s" : "%s su jumis pasidalino »%s« , %s vardu.", - "Failed to create the E-mail" : "Nepavyko sukurti el. pašto", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Labas,\n\n%s su jumis pasidalino »%s« , %s vardu.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Labas,\n\n%s pasidalino »%s« su tavimi.\n\n%s\n\n", - "Cheers!" : "Sveikinimai!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Labas,

%s pasidalino su jumis %s , %s vardu.

", - "Hey there,

%s shared %s with you.

" : "Sveiki,

%s pradėjo su jumis bendrinti %s.

" + "Failed to send share by E-mail" : "Nepavyko išsiųsti bendrinimo el. paštu" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/nb.js b/apps/sharebymail/l10n/nb.js index 57920a8fbbd97..b6af751394171 100644 --- a/apps/sharebymail/l10n/nb.js +++ b/apps/sharebymail/l10n/nb.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Tillater brukere å dele en personalisert lenke til ei fil eller mappe ved å skrive inn en e-postadresse.", "Send password by mail" : "Send passord via e-post", "Enforce password protection" : "Krev passordbeskyttelse", - "Failed to send share by E-mail" : "Mislyktes i å sende delt ressurs per e-post", - "%s shared »%s« with you on behalf of %s" : "%s delte »%s« med deg på vegne av %s", - "Failed to create the E-mail" : "Klarte ikke å opprette e-posten", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hei,\n\n%s delte »%s« med deg på vegne av %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hei,\n\n%s delte »%s« med deg.\n\n%s\n\n", - "Cheers!" : "Skål!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hei,

%s delte %s med deg på vegne av %s.

", - "Hey there,

%s shared %s with you.

" : "Hei,

%s delte %s med deg.

" + "Failed to send share by E-mail" : "Mislyktes i å sende delt ressurs per e-post" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/nb.json b/apps/sharebymail/l10n/nb.json index f7bd8fd214ec7..c34b6525321e7 100644 --- a/apps/sharebymail/l10n/nb.json +++ b/apps/sharebymail/l10n/nb.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Tillater brukere å dele en personalisert lenke til ei fil eller mappe ved å skrive inn en e-postadresse.", "Send password by mail" : "Send passord via e-post", "Enforce password protection" : "Krev passordbeskyttelse", - "Failed to send share by E-mail" : "Mislyktes i å sende delt ressurs per e-post", - "%s shared »%s« with you on behalf of %s" : "%s delte »%s« med deg på vegne av %s", - "Failed to create the E-mail" : "Klarte ikke å opprette e-posten", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hei,\n\n%s delte »%s« med deg på vegne av %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hei,\n\n%s delte »%s« med deg.\n\n%s\n\n", - "Cheers!" : "Skål!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hei,

%s delte %s med deg på vegne av %s.

", - "Hey there,

%s shared %s with you.

" : "Hei,

%s delte %s med deg.

" + "Failed to send share by E-mail" : "Mislyktes i å sende delt ressurs per e-post" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/nl.js b/apps/sharebymail/l10n/nl.js index b90ca013d23d1..8692aefd15a83 100644 --- a/apps/sharebymail/l10n/nl.js +++ b/apps/sharebymail/l10n/nl.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Staat gebruikers toe om een gepersonaliseerde link of map te delen door een e-mailadres op te geven.", "Send password by mail" : "Wachtwoord per email verzenden", "Enforce password protection" : "Wachtwoord-beveiliging afdwingen", - "Failed to send share by E-mail" : "delen per email is mislukt", - "%s shared »%s« with you on behalf of %s" : "%s deelde »%s« met jou in naam van %s", - "Failed to create the E-mail" : "Maken van de mail is mislukt", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hallo daar,\n\n%s deelde \"%s\" met je namens %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hallo daar,\n\n%s deelde \"%s\" met je.\n\n%s\n\n", - "Cheers!" : "Proost!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hallo daar,

%s deelde %s met je namens %s.

", - "Hey there,

%s shared %s with you.

" : "Hallo daar,

%s deelde %s met je.

" + "Failed to send share by E-mail" : "delen per email is mislukt" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/nl.json b/apps/sharebymail/l10n/nl.json index 3dfe01a3e39c7..c304f3a9dbd03 100644 --- a/apps/sharebymail/l10n/nl.json +++ b/apps/sharebymail/l10n/nl.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Staat gebruikers toe om een gepersonaliseerde link of map te delen door een e-mailadres op te geven.", "Send password by mail" : "Wachtwoord per email verzenden", "Enforce password protection" : "Wachtwoord-beveiliging afdwingen", - "Failed to send share by E-mail" : "delen per email is mislukt", - "%s shared »%s« with you on behalf of %s" : "%s deelde »%s« met jou in naam van %s", - "Failed to create the E-mail" : "Maken van de mail is mislukt", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hallo daar,\n\n%s deelde \"%s\" met je namens %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hallo daar,\n\n%s deelde \"%s\" met je.\n\n%s\n\n", - "Cheers!" : "Proost!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hallo daar,

%s deelde %s met je namens %s.

", - "Hey there,

%s shared %s with you.

" : "Hallo daar,

%s deelde %s met je.

" + "Failed to send share by E-mail" : "delen per email is mislukt" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/pl.js b/apps/sharebymail/l10n/pl.js index a267d0b8daf2f..0692ed37d26c7 100644 --- a/apps/sharebymail/l10n/pl.js +++ b/apps/sharebymail/l10n/pl.js @@ -5,12 +5,12 @@ OC.L10N.register( "Shared with {email}" : "Współdzielone z {email}", "Shared with %1$s by %2$s" : "Współdzielone z %1$s przez %2$s", "Shared with {email} by {actor}" : "Współdzielone z {email} przez {actor}", - "Password for mail share sent to %1$s" : "Hasło do współdzielenia przez mail zostało wysłane do %1$s", - "Password for mail share sent to {email}" : "Hasło do współdzielenia przez mail zostało wysłane do {email}", - "Password for mail share sent to you" : "Hasło do współdzielenia przez mail zostało wysłane do Ciebie", - "You shared %1$s with %2$s by mail" : "Współdzielisz %1$s z %2$s przez e-maila", - "You shared {file} with {email} by mail" : "Współdzielisz {file} z {email} przez e-maila", - "%3$s shared %1$s with %2$s by mail" : "%3$s współdzieli %1$s z %2$s przez e-maila", + "Password for mail share sent to %1$s" : "Hasło do współdzielenia przez e-mail zostało wysłane do %1$s", + "Password for mail share sent to {email}" : "Hasło do współdzielenia przez e-mail zostało wysłane do {email}", + "Password for mail share sent to you" : "Hasło do współdzielenia przez e-mail zostało wysłane do Ciebie", + "You shared %1$s with %2$s by mail" : "Współdzielisz %1$s z %2$s przez e-mail", + "You shared {file} with {email} by mail" : "Współdzielisz {file} z {email} przez e-mail", + "%3$s shared %1$s with %2$s by mail" : "%3$s współdzieli %1$s z %2$s przez e-mail", "{actor} shared {file} with {email} by mail" : "{actor} współdzieli {file} z {email} przez e-maila", "Password to access %1$s was sent to %2s" : "Hasło dostepu do %1$s zostało wysłane do %2s", "Password to access {file} was sent to {email}" : "Hasło dostępu do {file} zostało wysłane do {email}", @@ -24,12 +24,12 @@ OC.L10N.register( "Click the button below to open it." : "Kliknij przycisk poniżej, żeby to otworzyć.", "Open »%s«" : "Otwórz »%s«", "%s via %s" : "%s przez %s", - "%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n" : "%s współdzieli z Tobą »%s«.\nPowinieneś już otrzymać osobny e-mail zawierający link dostępowy.\n", - "%s shared »%s« with you. You should have already received a separate mail with a link to access it." : "%s współdzieli »%s« z Tobą. Powinieneś już otrzymać osobnego e-maila z linkiem do dostępu.", + "%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n" : "%s współdzieli z Tobą »%s«.\nPowinien już przyjść do Ciebie osobny e-mail zawierający link dostępowy.\n", + "%s shared »%s« with you. You should have already received a separate mail with a link to access it." : "%s współdzieli »%s« z Tobą. Powinien już przyjść do Ciebie osobny e-mail z odnośnikiem dostępowym.", "Password to access »%s« shared to you by %s" : "Hasło dostępu do »%s« jest udostępnione Tobie przez %s", "Password to access »%s«" : "Hasło do dostępu »%s«", - "It is protected with the following password: %s" : "To jest chronione z nstępującym hasłem: %s", - "You just shared »%s« with %s. The share was already send to the recipient. Due to the security policies defined by the administrator of %s each share needs to be protected by password and it is not allowed to send the password directly to the recipient. Therefore you need to forward the password manually to the recipient." : "Właśnie udostępniłeś »%s« użytkownikowi %s. Udostępniony udział został już wysłany do odbiorcy, jednak zgodnie z polityką bezpieczeństwa ustanowioną przez administratora %s każdy udział musi zostać zabezpieczony hasłem. Wysyłanie hasła bezpośrednio do odbiorcy jest zabronione, dlatego też musisz mu je przekazać w klasyczny sposób.", + "It is protected with the following password: %s" : "To jest chronione następującym hasłem: %s", + "You just shared »%s« with %s. The share was already send to the recipient. Due to the security policies defined by the administrator of %s each share needs to be protected by password and it is not allowed to send the password directly to the recipient. Therefore you need to forward the password manually to the recipient." : "Właśnie udostępniono »%s« użytkownikowi %s. Udostępniony udział został już wysłany do odbiorcy, jednak zgodnie z polityką bezpieczeństwa ustanowioną przez administratora %s każdy udział musi zostać zabezpieczony hasłem. Wysyłanie hasła bezpośrednio do odbiorcy jest zabronione, dlatego też musisz mu je przekazać w klasyczny sposób.", "Password to access »%s« shared with %s" : "Hasło dostępu do »%s« zostało udostępnione %s", "This is the password: %s" : "To jest hasło: %s", "You can choose a different password at any time in the share dialog." : "Możesz zmienić hasło w okienku współdzielenia w dowolnym momencie.", @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Umożliwia współdzielenie spersonalizowanego linku do pliku lub folderu, umieszczając go w wiadomości e-mail.", "Send password by mail" : "Wyślij hasło e-mailem", "Enforce password protection" : "Wymuś zabezpieczenie hasłem", - "Failed to send share by E-mail" : "Nie udało się wysłać współdzielenia przez e-maila", - "%s shared »%s« with you on behalf of %s" : "%s współdzieli »%s« z Tobą w imieniu %s", - "Failed to create the E-mail" : "Nie udało się utworzyć e-maila", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hej,\n\n%s współdzieli »%s« z Tobą w imieniu %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hej,\n\n%s współdzieli »%s« z Tobą.\n\n%s\n\n", - "Cheers!" : "Zdrówko!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hej,

%s współdzieli %s z Tobą w imieniu %s.

", - "Hey there,

%s shared %s with you.

" : "Hej,

%s współdzieli %s z Tobą.

" + "Failed to send share by E-mail" : "Nie udało się wysłać współdzielenia przez e-mail" }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/sharebymail/l10n/pl.json b/apps/sharebymail/l10n/pl.json index f9e72eb5f6921..d7aacbc8e549a 100644 --- a/apps/sharebymail/l10n/pl.json +++ b/apps/sharebymail/l10n/pl.json @@ -3,12 +3,12 @@ "Shared with {email}" : "Współdzielone z {email}", "Shared with %1$s by %2$s" : "Współdzielone z %1$s przez %2$s", "Shared with {email} by {actor}" : "Współdzielone z {email} przez {actor}", - "Password for mail share sent to %1$s" : "Hasło do współdzielenia przez mail zostało wysłane do %1$s", - "Password for mail share sent to {email}" : "Hasło do współdzielenia przez mail zostało wysłane do {email}", - "Password for mail share sent to you" : "Hasło do współdzielenia przez mail zostało wysłane do Ciebie", - "You shared %1$s with %2$s by mail" : "Współdzielisz %1$s z %2$s przez e-maila", - "You shared {file} with {email} by mail" : "Współdzielisz {file} z {email} przez e-maila", - "%3$s shared %1$s with %2$s by mail" : "%3$s współdzieli %1$s z %2$s przez e-maila", + "Password for mail share sent to %1$s" : "Hasło do współdzielenia przez e-mail zostało wysłane do %1$s", + "Password for mail share sent to {email}" : "Hasło do współdzielenia przez e-mail zostało wysłane do {email}", + "Password for mail share sent to you" : "Hasło do współdzielenia przez e-mail zostało wysłane do Ciebie", + "You shared %1$s with %2$s by mail" : "Współdzielisz %1$s z %2$s przez e-mail", + "You shared {file} with {email} by mail" : "Współdzielisz {file} z {email} przez e-mail", + "%3$s shared %1$s with %2$s by mail" : "%3$s współdzieli %1$s z %2$s przez e-mail", "{actor} shared {file} with {email} by mail" : "{actor} współdzieli {file} z {email} przez e-maila", "Password to access %1$s was sent to %2s" : "Hasło dostepu do %1$s zostało wysłane do %2s", "Password to access {file} was sent to {email}" : "Hasło dostępu do {file} zostało wysłane do {email}", @@ -22,12 +22,12 @@ "Click the button below to open it." : "Kliknij przycisk poniżej, żeby to otworzyć.", "Open »%s«" : "Otwórz »%s«", "%s via %s" : "%s przez %s", - "%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n" : "%s współdzieli z Tobą »%s«.\nPowinieneś już otrzymać osobny e-mail zawierający link dostępowy.\n", - "%s shared »%s« with you. You should have already received a separate mail with a link to access it." : "%s współdzieli »%s« z Tobą. Powinieneś już otrzymać osobnego e-maila z linkiem do dostępu.", + "%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n" : "%s współdzieli z Tobą »%s«.\nPowinien już przyjść do Ciebie osobny e-mail zawierający link dostępowy.\n", + "%s shared »%s« with you. You should have already received a separate mail with a link to access it." : "%s współdzieli »%s« z Tobą. Powinien już przyjść do Ciebie osobny e-mail z odnośnikiem dostępowym.", "Password to access »%s« shared to you by %s" : "Hasło dostępu do »%s« jest udostępnione Tobie przez %s", "Password to access »%s«" : "Hasło do dostępu »%s«", - "It is protected with the following password: %s" : "To jest chronione z nstępującym hasłem: %s", - "You just shared »%s« with %s. The share was already send to the recipient. Due to the security policies defined by the administrator of %s each share needs to be protected by password and it is not allowed to send the password directly to the recipient. Therefore you need to forward the password manually to the recipient." : "Właśnie udostępniłeś »%s« użytkownikowi %s. Udostępniony udział został już wysłany do odbiorcy, jednak zgodnie z polityką bezpieczeństwa ustanowioną przez administratora %s każdy udział musi zostać zabezpieczony hasłem. Wysyłanie hasła bezpośrednio do odbiorcy jest zabronione, dlatego też musisz mu je przekazać w klasyczny sposób.", + "It is protected with the following password: %s" : "To jest chronione następującym hasłem: %s", + "You just shared »%s« with %s. The share was already send to the recipient. Due to the security policies defined by the administrator of %s each share needs to be protected by password and it is not allowed to send the password directly to the recipient. Therefore you need to forward the password manually to the recipient." : "Właśnie udostępniono »%s« użytkownikowi %s. Udostępniony udział został już wysłany do odbiorcy, jednak zgodnie z polityką bezpieczeństwa ustanowioną przez administratora %s każdy udział musi zostać zabezpieczony hasłem. Wysyłanie hasła bezpośrednio do odbiorcy jest zabronione, dlatego też musisz mu je przekazać w klasyczny sposób.", "Password to access »%s« shared with %s" : "Hasło dostępu do »%s« zostało udostępnione %s", "This is the password: %s" : "To jest hasło: %s", "You can choose a different password at any time in the share dialog." : "Możesz zmienić hasło w okienku współdzielenia w dowolnym momencie.", @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Umożliwia współdzielenie spersonalizowanego linku do pliku lub folderu, umieszczając go w wiadomości e-mail.", "Send password by mail" : "Wyślij hasło e-mailem", "Enforce password protection" : "Wymuś zabezpieczenie hasłem", - "Failed to send share by E-mail" : "Nie udało się wysłać współdzielenia przez e-maila", - "%s shared »%s« with you on behalf of %s" : "%s współdzieli »%s« z Tobą w imieniu %s", - "Failed to create the E-mail" : "Nie udało się utworzyć e-maila", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hej,\n\n%s współdzieli »%s« z Tobą w imieniu %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hej,\n\n%s współdzieli »%s« z Tobą.\n\n%s\n\n", - "Cheers!" : "Zdrówko!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hej,

%s współdzieli %s z Tobą w imieniu %s.

", - "Hey there,

%s shared %s with you.

" : "Hej,

%s współdzieli %s z Tobą.

" + "Failed to send share by E-mail" : "Nie udało się wysłać współdzielenia przez e-mail" },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/pt_BR.js b/apps/sharebymail/l10n/pt_BR.js index d2508731e9e36..747d5ea6a815f 100644 --- a/apps/sharebymail/l10n/pt_BR.js +++ b/apps/sharebymail/l10n/pt_BR.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Permite que os usuários compartilhem um link personalizado para um arquivo ou pasta, inserindo um endereço de e-mail.", "Send password by mail" : "Enviar senha por e-mail", "Enforce password protection" : "Reforce a proteção por senha", - "Failed to send share by E-mail" : "Falha ao enviar compartilhamento por e-mail", - "%s shared »%s« with you on behalf of %s" : "%s compartilhou »%s« com você em nome de %s", - "Failed to create the E-mail" : "Falhou ao criar o e-mail", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Olá,\n%s compartilhou »%s« com você em nome de %s.\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Olá,\n%s compartilhou »%s« com você.\n%s\n", - "Cheers!" : "Saudações!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Olá,

%s compartilhou %s com você em nome de %s.

", - "Hey there,

%s shared %s with you.

" : "Olá,

%s compartilhou %s com você.

" + "Failed to send share by E-mail" : "Falha ao enviar compartilhamento por e-mail" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/sharebymail/l10n/pt_BR.json b/apps/sharebymail/l10n/pt_BR.json index 25c84b332da30..604e02cba4bb9 100644 --- a/apps/sharebymail/l10n/pt_BR.json +++ b/apps/sharebymail/l10n/pt_BR.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Permite que os usuários compartilhem um link personalizado para um arquivo ou pasta, inserindo um endereço de e-mail.", "Send password by mail" : "Enviar senha por e-mail", "Enforce password protection" : "Reforce a proteção por senha", - "Failed to send share by E-mail" : "Falha ao enviar compartilhamento por e-mail", - "%s shared »%s« with you on behalf of %s" : "%s compartilhou »%s« com você em nome de %s", - "Failed to create the E-mail" : "Falhou ao criar o e-mail", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Olá,\n%s compartilhou »%s« com você em nome de %s.\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Olá,\n%s compartilhou »%s« com você.\n%s\n", - "Cheers!" : "Saudações!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Olá,

%s compartilhou %s com você em nome de %s.

", - "Hey there,

%s shared %s with you.

" : "Olá,

%s compartilhou %s com você.

" + "Failed to send share by E-mail" : "Falha ao enviar compartilhamento por e-mail" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/pt_PT.js b/apps/sharebymail/l10n/pt_PT.js new file mode 100644 index 0000000000000..6e8f1dd1972e1 --- /dev/null +++ b/apps/sharebymail/l10n/pt_PT.js @@ -0,0 +1,43 @@ +OC.L10N.register( + "sharebymail", + { + "Shared with %1$s" : "Partilhar com %1$s", + "Shared with {email}" : "Partilhado com {email}", + "Shared with %1$s by %2$s" : "Partilhado com %1$s por %2$s", + "Shared with {email} by {actor}" : "Partilhado com {email} por {actor}", + "Password for mail share sent to %1$s" : "Palavra-chave da partilha por email enviada para %1$s", + "Password for mail share sent to {email}" : "Palavra-chave da partilha por email enviada para {email}", + "Password for mail share sent to you" : "Palavra-chave da partilha por email enviada para si", + "You shared %1$s with %2$s by mail" : "Partilhou %1$s com %2$s por e-mail", + "You shared {file} with {email} by mail" : "Partilhou {file} com {email} por e-mail", + "%3$s shared %1$s with %2$s by mail" : "%3$s partilhou %1$s com %2$s por e-mail", + "{actor} shared {file} with {email} by mail" : "{actor} partilhou {file} com {email} por e-mail", + "Password to access %1$s was sent to %2s" : "Palavra-chave de acesso a %1$s enviada para %2s", + "Password to access {file} was sent to {email}" : "Palavra-chave de acesso a {file} enviada para {email}", + "Password to access %1$s was sent to you" : "Palavra-chave de acesso a %1$s enviada para si", + "Password to access {file} was sent to you" : "Palavra-chave de acesso a {file} enviada para si", + "Sharing %s failed, this item is already shared with %s" : "Partilha de %s falhou, este item já está partilhado com %s", + "We can't send you the auto-generated password. Please set a valid email address in your personal settings and try again." : "Não foi possível enviar-lhe a palavra-chave automáticamente gerada. Por favor defina um endereço de email válido nas suas definições pessoais e tente novamente.", + "Failed to send share by email" : "Falhou o envio da partilha por email.", + "%s shared »%s« with you" : "%s partilhou »%s« consigo", + "%s shared »%s« with you." : "%s partilhou »%s« consigo.", + "Click the button below to open it." : "Clicar no botão abaixo para abrir.", + "Open »%s«" : "Abrir »%s«", + "%s via %s" : "%s via %s", + "%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n" : "%s partilhou »%s« consigo.\nJá deverá ter recebido um outro email com uma hiperligação para efectuar o acesso .\n", + "%s shared »%s« with you. You should have already received a separate mail with a link to access it." : "%s partilhou »%s« consigo. Já deverá ter recebido um outro email com uma hiperligação para efectuar o acesso.", + "Password to access »%s« shared to you by %s" : "Palavra-chave para acesso a »%s« partilhada consigo por %s", + "Password to access »%s«" : "Palavra-chave de acesso »%s«", + "It is protected with the following password: %s" : "Está protegido com a seguinte palavra-chave: %s", + "You just shared »%s« with %s. The share was already send to the recipient. Due to the security policies defined by the administrator of %s each share needs to be protected by password and it is not allowed to send the password directly to the recipient. Therefore you need to forward the password manually to the recipient." : "Partilhou »%s« com %s. A partilha já foi enviada ao destinatário. Devido à política de segurança definida pelo administrador de %s cada partilha deverá ser protegida por uma palavra-chave e não é permitido o envio da mesma directamente para o destinatário. Assim, necessita de enviar a palavra-chave manualmente para o respectivo destinatário.", + "Password to access »%s« shared with %s" : "Palavra-chave para aceder a »%s« partilhada com %s", + "This is the password: %s" : "Esta é a palavra-chave: %s", + "You can choose a different password at any time in the share dialog." : "Pode escolher uma palavra-chave diferente a qualquer altura utilizando a caixa de diálogo \"partilha\".", + "Could not find share" : "Não foi possível encontrar a partilha", + "Share by mail" : "Partilhado por e-mail", + "Allows users to share a personalized link to a file or folder by putting in an email address." : "Permitir aos utilizadores a partilha de uma hiperligação personalizada para um ficheiro ou pasta colocando um endereço de email.", + "Send password by mail" : "Enviar palavra-chave por e-mail", + "Enforce password protection" : "Forçar proteção por palavra-passe", + "Failed to send share by E-mail" : "Falhou o envio da partilha por email." +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/pt_PT.json b/apps/sharebymail/l10n/pt_PT.json new file mode 100644 index 0000000000000..19d0fb50ed8ce --- /dev/null +++ b/apps/sharebymail/l10n/pt_PT.json @@ -0,0 +1,41 @@ +{ "translations": { + "Shared with %1$s" : "Partilhar com %1$s", + "Shared with {email}" : "Partilhado com {email}", + "Shared with %1$s by %2$s" : "Partilhado com %1$s por %2$s", + "Shared with {email} by {actor}" : "Partilhado com {email} por {actor}", + "Password for mail share sent to %1$s" : "Palavra-chave da partilha por email enviada para %1$s", + "Password for mail share sent to {email}" : "Palavra-chave da partilha por email enviada para {email}", + "Password for mail share sent to you" : "Palavra-chave da partilha por email enviada para si", + "You shared %1$s with %2$s by mail" : "Partilhou %1$s com %2$s por e-mail", + "You shared {file} with {email} by mail" : "Partilhou {file} com {email} por e-mail", + "%3$s shared %1$s with %2$s by mail" : "%3$s partilhou %1$s com %2$s por e-mail", + "{actor} shared {file} with {email} by mail" : "{actor} partilhou {file} com {email} por e-mail", + "Password to access %1$s was sent to %2s" : "Palavra-chave de acesso a %1$s enviada para %2s", + "Password to access {file} was sent to {email}" : "Palavra-chave de acesso a {file} enviada para {email}", + "Password to access %1$s was sent to you" : "Palavra-chave de acesso a %1$s enviada para si", + "Password to access {file} was sent to you" : "Palavra-chave de acesso a {file} enviada para si", + "Sharing %s failed, this item is already shared with %s" : "Partilha de %s falhou, este item já está partilhado com %s", + "We can't send you the auto-generated password. Please set a valid email address in your personal settings and try again." : "Não foi possível enviar-lhe a palavra-chave automáticamente gerada. Por favor defina um endereço de email válido nas suas definições pessoais e tente novamente.", + "Failed to send share by email" : "Falhou o envio da partilha por email.", + "%s shared »%s« with you" : "%s partilhou »%s« consigo", + "%s shared »%s« with you." : "%s partilhou »%s« consigo.", + "Click the button below to open it." : "Clicar no botão abaixo para abrir.", + "Open »%s«" : "Abrir »%s«", + "%s via %s" : "%s via %s", + "%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n" : "%s partilhou »%s« consigo.\nJá deverá ter recebido um outro email com uma hiperligação para efectuar o acesso .\n", + "%s shared »%s« with you. You should have already received a separate mail with a link to access it." : "%s partilhou »%s« consigo. Já deverá ter recebido um outro email com uma hiperligação para efectuar o acesso.", + "Password to access »%s« shared to you by %s" : "Palavra-chave para acesso a »%s« partilhada consigo por %s", + "Password to access »%s«" : "Palavra-chave de acesso »%s«", + "It is protected with the following password: %s" : "Está protegido com a seguinte palavra-chave: %s", + "You just shared »%s« with %s. The share was already send to the recipient. Due to the security policies defined by the administrator of %s each share needs to be protected by password and it is not allowed to send the password directly to the recipient. Therefore you need to forward the password manually to the recipient." : "Partilhou »%s« com %s. A partilha já foi enviada ao destinatário. Devido à política de segurança definida pelo administrador de %s cada partilha deverá ser protegida por uma palavra-chave e não é permitido o envio da mesma directamente para o destinatário. Assim, necessita de enviar a palavra-chave manualmente para o respectivo destinatário.", + "Password to access »%s« shared with %s" : "Palavra-chave para aceder a »%s« partilhada com %s", + "This is the password: %s" : "Esta é a palavra-chave: %s", + "You can choose a different password at any time in the share dialog." : "Pode escolher uma palavra-chave diferente a qualquer altura utilizando a caixa de diálogo \"partilha\".", + "Could not find share" : "Não foi possível encontrar a partilha", + "Share by mail" : "Partilhado por e-mail", + "Allows users to share a personalized link to a file or folder by putting in an email address." : "Permitir aos utilizadores a partilha de uma hiperligação personalizada para um ficheiro ou pasta colocando um endereço de email.", + "Send password by mail" : "Enviar palavra-chave por e-mail", + "Enforce password protection" : "Forçar proteção por palavra-passe", + "Failed to send share by E-mail" : "Falhou o envio da partilha por email." +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/apps/sharebymail/l10n/ru.js b/apps/sharebymail/l10n/ru.js index f981462d663fa..eb66fa9d58a57 100644 --- a/apps/sharebymail/l10n/ru.js +++ b/apps/sharebymail/l10n/ru.js @@ -1,9 +1,9 @@ OC.L10N.register( "sharebymail", { - "Shared with %1$s" : "Предоставлен общий доступ для %1$s", + "Shared with %1$s" : "Предоставлен общий доступ %1$s", "Shared with {email}" : "Предоставлен общий доступ для {email}", - "Shared with %1$s by %2$s" : "%2$s предоставил(а) общий доступ для %1$s", + "Shared with %1$s by %2$s" : "%2$s предоставил(а) общий доступ %1$s", "Shared with {email} by {actor}" : "{actor} предоставил(а) общий доступ для {email}", "Password for mail share sent to %1$s" : "Пароль для доступа по адресу электронной почты был отправлен на адрес %1$s", "Password for mail share sent to {email}" : "Пароль для доступа по адресу электронной почты был отправлен на адрес {email}", @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Позволяет пользователям делиться персонализированной ссылкой на файл или каталог, указав адрес электронной почты.", "Send password by mail" : "Отправлять пароль по электронной почте", "Enforce password protection" : "Требовать защиту паролем", - "Failed to send share by E-mail" : "Не удалось поделиться по e-mail", - "%s shared »%s« with you on behalf of %s" : "%s предоставил(а) Вам общий доступ к «%s» от имени %s", - "Failed to create the E-mail" : "Не удалось создать сообщение электронной почты", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Привет,\n\n%s предоставил(а) Вам общий доступ к «%s» от имени %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Привет,\n\n%s предоставил(а) Вам общий доступ к «%s».\n\n%s\n\n", - "Cheers!" : "Всего наилучшего!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Привет,

%s предоставил(а) Вам общий доступ к «%s» от имени %s.

", - "Hey there,

%s shared %s with you.

" : "Привет,

%s предоставил(а) Вам общий доступ к «%s».

" + "Failed to send share by E-mail" : "Не удалось поделиться по e-mail" }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/apps/sharebymail/l10n/ru.json b/apps/sharebymail/l10n/ru.json index 9d636279aa54d..e2c5985bad425 100644 --- a/apps/sharebymail/l10n/ru.json +++ b/apps/sharebymail/l10n/ru.json @@ -1,7 +1,7 @@ { "translations": { - "Shared with %1$s" : "Предоставлен общий доступ для %1$s", + "Shared with %1$s" : "Предоставлен общий доступ %1$s", "Shared with {email}" : "Предоставлен общий доступ для {email}", - "Shared with %1$s by %2$s" : "%2$s предоставил(а) общий доступ для %1$s", + "Shared with %1$s by %2$s" : "%2$s предоставил(а) общий доступ %1$s", "Shared with {email} by {actor}" : "{actor} предоставил(а) общий доступ для {email}", "Password for mail share sent to %1$s" : "Пароль для доступа по адресу электронной почты был отправлен на адрес %1$s", "Password for mail share sent to {email}" : "Пароль для доступа по адресу электронной почты был отправлен на адрес {email}", @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Позволяет пользователям делиться персонализированной ссылкой на файл или каталог, указав адрес электронной почты.", "Send password by mail" : "Отправлять пароль по электронной почте", "Enforce password protection" : "Требовать защиту паролем", - "Failed to send share by E-mail" : "Не удалось поделиться по e-mail", - "%s shared »%s« with you on behalf of %s" : "%s предоставил(а) Вам общий доступ к «%s» от имени %s", - "Failed to create the E-mail" : "Не удалось создать сообщение электронной почты", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Привет,\n\n%s предоставил(а) Вам общий доступ к «%s» от имени %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Привет,\n\n%s предоставил(а) Вам общий доступ к «%s».\n\n%s\n\n", - "Cheers!" : "Всего наилучшего!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Привет,

%s предоставил(а) Вам общий доступ к «%s» от имени %s.

", - "Hey there,

%s shared %s with you.

" : "Привет,

%s предоставил(а) Вам общий доступ к «%s».

" + "Failed to send share by E-mail" : "Не удалось поделиться по e-mail" },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/sk.js b/apps/sharebymail/l10n/sk.js index 3e9594099877d..d10d5d49959c0 100644 --- a/apps/sharebymail/l10n/sk.js +++ b/apps/sharebymail/l10n/sk.js @@ -2,23 +2,35 @@ OC.L10N.register( "sharebymail", { "Shared with %1$s" : "Sprístupnené používateľovi %1$s", - "Shared with {email}" : "Sprístupnené {email}", + "Shared with {email}" : "Sprístupnené pre {email}", "Shared with %1$s by %2$s" : "Sprístupnené používateľovi %1$s používateľom %2$s", "Shared with {email} by {actor}" : "Sprístupnené {email} používateľom {actor}", "You shared %1$s with %2$s by mail" : "Sprístupnili ste %1$s používateľovi %2$s pomocou emailu", "You shared {file} with {email} by mail" : "Sprístupnili ste {file} používateľovi {email} pomocou emailu", "%3$s shared %1$s with %2$s by mail" : "%3$s sprístupnil %1$s používateľovi %2$s pomocou emailu", "{actor} shared {file} with {email} by mail" : "{actor} sprístupnil {file} používateľovi {email} pomocou emailu", + "Password to access {file} was sent to {email}" : "Heslo na sprístupnenie {file} bolo zaslané na {email}", + "Password to access %1$s was sent to you" : "Heslo na sprístupnenie %1$s Vám bolo zaslané", + "Password to access {file} was sent to you" : "Heslo na sprístupnenie {file} Vám bolo zaslané", "Sharing %s failed, this item is already shared with %s" : "Sprístupnenie %s zlyhalo, táto položka je už používateľovi %s sprístupnená", - "Failed to send share by E-mail" : "Nebolo možné poslať sprístupnenie emailom", + "We can't send you the auto-generated password. Please set a valid email address in your personal settings and try again." : "Vygenerované heslo Vám nemôže byť zaslané. Zadajte správnu mailovú adresu vo Vašich osobných nastaveniach a skúste znovu.", + "Failed to send share by email" : "Zaslanie sprístupnenia cez e-mail zlyhalo", "%s shared »%s« with you" : "%s vám sprístupnil »%s«", - "%s shared »%s« with you on behalf of %s" : "%s vám sprístupnil »%s« menom používateľa %s", - "Failed to create the E-mail" : "Nebolo možné vytvoriť emailovú správu", + "%s shared »%s« with you." : "%s Vám sprístupnil »%s«", + "Click the button below to open it." : "Stlačte tlačidlo nižšie pre otvorenie.", + "Open »%s«" : "Otvoriť »%s«", + "%s via %s" : "%s cez %s", + "%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n" : "%s Vám sprístupnil »%s«.\nSpráva s odkazom by Vám už mala byť doručená.\n", + "%s shared »%s« with you. You should have already received a separate mail with a link to access it." : "%s Vám sprístupnil »%s«. Správa s odkazom by Vám už mala byť doručená.", + "Password to access »%s«" : "Heslo pre prístup k »%s«", + "Password to access »%s« shared with %s" : "Heslo pre prístup k »%s« sprístupnené používateľovi %s", + "This is the password: %s" : "Toto je heslo: %s", + "You can choose a different password at any time in the share dialog." : "Kedykoľvek môžete vybrať iné heslo v okne zdieľania.", "Could not find share" : "Nebolo možné nájsť sprístupnenie", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Dobrý deň,\n\n%s vám sprístupnil »%s« menom používateľa %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Dobrý deň,\n\n%s vám sprístupnil »%s«.\n\n%s\n\n", - "Cheers!" : "Pekný deň!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Dobrý deň,

%s vám sprístupnil %s menom používateľa %s.

", - "Hey there,

%s shared %s with you.

" : "Dobrý deň,

%s vám sprístupnil %s.

" + "Share by mail" : "Sprístupniť e-mailom", + "Allows users to share a personalized link to a file or folder by putting in an email address." : "Povoľuje používateľom zdieľať personalizovaný odkaz na súbor alebo priečinok zadaním e-mailovej adresy.", + "Send password by mail" : "Odoslať heslo e-mailom", + "Enforce password protection" : "Vynútiť ochranu heslom", + "Failed to send share by E-mail" : "Nebolo možné poslať sprístupnenie emailom" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/sharebymail/l10n/sk.json b/apps/sharebymail/l10n/sk.json index a0f6d257813f8..89f0b8fc2f316 100644 --- a/apps/sharebymail/l10n/sk.json +++ b/apps/sharebymail/l10n/sk.json @@ -1,22 +1,34 @@ { "translations": { "Shared with %1$s" : "Sprístupnené používateľovi %1$s", - "Shared with {email}" : "Sprístupnené {email}", + "Shared with {email}" : "Sprístupnené pre {email}", "Shared with %1$s by %2$s" : "Sprístupnené používateľovi %1$s používateľom %2$s", "Shared with {email} by {actor}" : "Sprístupnené {email} používateľom {actor}", "You shared %1$s with %2$s by mail" : "Sprístupnili ste %1$s používateľovi %2$s pomocou emailu", "You shared {file} with {email} by mail" : "Sprístupnili ste {file} používateľovi {email} pomocou emailu", "%3$s shared %1$s with %2$s by mail" : "%3$s sprístupnil %1$s používateľovi %2$s pomocou emailu", "{actor} shared {file} with {email} by mail" : "{actor} sprístupnil {file} používateľovi {email} pomocou emailu", + "Password to access {file} was sent to {email}" : "Heslo na sprístupnenie {file} bolo zaslané na {email}", + "Password to access %1$s was sent to you" : "Heslo na sprístupnenie %1$s Vám bolo zaslané", + "Password to access {file} was sent to you" : "Heslo na sprístupnenie {file} Vám bolo zaslané", "Sharing %s failed, this item is already shared with %s" : "Sprístupnenie %s zlyhalo, táto položka je už používateľovi %s sprístupnená", - "Failed to send share by E-mail" : "Nebolo možné poslať sprístupnenie emailom", + "We can't send you the auto-generated password. Please set a valid email address in your personal settings and try again." : "Vygenerované heslo Vám nemôže byť zaslané. Zadajte správnu mailovú adresu vo Vašich osobných nastaveniach a skúste znovu.", + "Failed to send share by email" : "Zaslanie sprístupnenia cez e-mail zlyhalo", "%s shared »%s« with you" : "%s vám sprístupnil »%s«", - "%s shared »%s« with you on behalf of %s" : "%s vám sprístupnil »%s« menom používateľa %s", - "Failed to create the E-mail" : "Nebolo možné vytvoriť emailovú správu", + "%s shared »%s« with you." : "%s Vám sprístupnil »%s«", + "Click the button below to open it." : "Stlačte tlačidlo nižšie pre otvorenie.", + "Open »%s«" : "Otvoriť »%s«", + "%s via %s" : "%s cez %s", + "%s shared »%s« with you.\nYou should have already received a separate mail with a link to access it.\n" : "%s Vám sprístupnil »%s«.\nSpráva s odkazom by Vám už mala byť doručená.\n", + "%s shared »%s« with you. You should have already received a separate mail with a link to access it." : "%s Vám sprístupnil »%s«. Správa s odkazom by Vám už mala byť doručená.", + "Password to access »%s«" : "Heslo pre prístup k »%s«", + "Password to access »%s« shared with %s" : "Heslo pre prístup k »%s« sprístupnené používateľovi %s", + "This is the password: %s" : "Toto je heslo: %s", + "You can choose a different password at any time in the share dialog." : "Kedykoľvek môžete vybrať iné heslo v okne zdieľania.", "Could not find share" : "Nebolo možné nájsť sprístupnenie", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Dobrý deň,\n\n%s vám sprístupnil »%s« menom používateľa %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Dobrý deň,\n\n%s vám sprístupnil »%s«.\n\n%s\n\n", - "Cheers!" : "Pekný deň!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Dobrý deň,

%s vám sprístupnil %s menom používateľa %s.

", - "Hey there,

%s shared %s with you.

" : "Dobrý deň,

%s vám sprístupnil %s.

" + "Share by mail" : "Sprístupniť e-mailom", + "Allows users to share a personalized link to a file or folder by putting in an email address." : "Povoľuje používateľom zdieľať personalizovaný odkaz na súbor alebo priečinok zadaním e-mailovej adresy.", + "Send password by mail" : "Odoslať heslo e-mailom", + "Enforce password protection" : "Vynútiť ochranu heslom", + "Failed to send share by E-mail" : "Nebolo možné poslať sprístupnenie emailom" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/sq.js b/apps/sharebymail/l10n/sq.js index 18d251b26a8a2..29c57a44fe656 100644 --- a/apps/sharebymail/l10n/sq.js +++ b/apps/sharebymail/l10n/sq.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Lejo përdoruesit të ndajnë një lidhje të personalizuar me një skedar ose dosje duke e vendosur në një adresë e-mail.", "Send password by mail" : "Dërgo fjalëkalimin me mail", "Enforce password protection" : "Forco mbrojtjen e fjalëkalimit", - "Failed to send share by E-mail" : "Dështoi në dërgimin e shpërndarjeve me anë të E-mail", - "%s shared »%s« with you on behalf of %s" : "%s ndarë »%s« me ju në emër të %s", - "Failed to create the E-mail" : "Dështuat për të krijuar E-mail", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Çkemi\n\n ndau »%s%s« me ju në emër të %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Çkemi\n\n%s ndau »%s» me ju.\n\n%s\n\n", - "Cheers!" : "Gëzuar!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Çkemi,

%s ndau %s me ju në emër të %s.

", - "Hey there,

%s shared %s with you.

" : "Çkemi,

%s ndau %s me ju.

" + "Failed to send share by E-mail" : "Dështoi në dërgimin e shpërndarjeve me anë të E-mail" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/sq.json b/apps/sharebymail/l10n/sq.json index e80fa8819fdf8..839ad8bc2fa79 100644 --- a/apps/sharebymail/l10n/sq.json +++ b/apps/sharebymail/l10n/sq.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Lejo përdoruesit të ndajnë një lidhje të personalizuar me një skedar ose dosje duke e vendosur në një adresë e-mail.", "Send password by mail" : "Dërgo fjalëkalimin me mail", "Enforce password protection" : "Forco mbrojtjen e fjalëkalimit", - "Failed to send share by E-mail" : "Dështoi në dërgimin e shpërndarjeve me anë të E-mail", - "%s shared »%s« with you on behalf of %s" : "%s ndarë »%s« me ju në emër të %s", - "Failed to create the E-mail" : "Dështuat për të krijuar E-mail", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Çkemi\n\n ndau »%s%s« me ju në emër të %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Çkemi\n\n%s ndau »%s» me ju.\n\n%s\n\n", - "Cheers!" : "Gëzuar!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Çkemi,

%s ndau %s me ju në emër të %s.

", - "Hey there,

%s shared %s with you.

" : "Çkemi,

%s ndau %s me ju.

" + "Failed to send share by E-mail" : "Dështoi në dërgimin e shpërndarjeve me anë të E-mail" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/sr.js b/apps/sharebymail/l10n/sr.js index f2af39e921de8..f904e4c7e698b 100644 --- a/apps/sharebymail/l10n/sr.js +++ b/apps/sharebymail/l10n/sr.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Дозвољава корисницима да поделе персонализовану везу до фајла или фасцикле преко е-поште.", "Send password by mail" : "Пошаљи лозинку е-поштом", "Enforce password protection" : "Захтевај заштиту лозинком", - "Failed to send share by E-mail" : "Грешка у слању дељења е-поштом", - "%s shared »%s« with you on behalf of %s" : "%s је поделио »%s« са Вама у име корисника %s", - "Failed to create the E-mail" : "Грешка при креирању е-поште", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Поздрав,\n\n%s је поделио »%s« са Вама у име корисника %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Поздрав,\n\n%s је поделио »%s« са Вама.\n\n%s\n", - "Cheers!" : "Здраво!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Поздрав,

%s је поделио %s са Вама у име корисника %s.

", - "Hey there,

%s shared %s with you.

" : "Поздрав,

%sје поделио %sса Вама.

" + "Failed to send share by E-mail" : "Грешка у слању дељења е-поштом" }, "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/apps/sharebymail/l10n/sr.json b/apps/sharebymail/l10n/sr.json index b074abe425390..40806a3680c6b 100644 --- a/apps/sharebymail/l10n/sr.json +++ b/apps/sharebymail/l10n/sr.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Дозвољава корисницима да поделе персонализовану везу до фајла или фасцикле преко е-поште.", "Send password by mail" : "Пошаљи лозинку е-поштом", "Enforce password protection" : "Захтевај заштиту лозинком", - "Failed to send share by E-mail" : "Грешка у слању дељења е-поштом", - "%s shared »%s« with you on behalf of %s" : "%s је поделио »%s« са Вама у име корисника %s", - "Failed to create the E-mail" : "Грешка при креирању е-поште", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Поздрав,\n\n%s је поделио »%s« са Вама у име корисника %s.\n\n%s\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Поздрав,\n\n%s је поделио »%s« са Вама.\n\n%s\n", - "Cheers!" : "Здраво!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Поздрав,

%s је поделио %s са Вама у име корисника %s.

", - "Hey there,

%s shared %s with you.

" : "Поздрав,

%sје поделио %sса Вама.

" + "Failed to send share by E-mail" : "Грешка у слању дељења е-поштом" },"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);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/sv.js b/apps/sharebymail/l10n/sv.js index 03789a8af9683..4931f1dff2c1f 100644 --- a/apps/sharebymail/l10n/sv.js +++ b/apps/sharebymail/l10n/sv.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Tillåt användare att dela en personlig länk till en fil eller mapp genom att ange en e-postadress", "Send password by mail" : "Skicka lösenord via e-post", "Enforce password protection" : "Tvinga lösenordsskydd", - "Failed to send share by E-mail" : "Misslyckades att dela via e-post", - "%s shared »%s« with you on behalf of %s" : "%s delade »%s« med dig på begäran av %s", - "Failed to create the E-mail" : "Misslyckades att skapa e-post", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hej!\n\n%s delade »%s« med dig från%s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hej,\n\n%s delade »%s« med dig.\n\n%s\n", - "Cheers!" : "Ha det fint!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hej!

%s delade %s med dig från %s.

", - "Hey there,

%s shared %s with you.

" : "Hej!

%s delade %s med dig.

" + "Failed to send share by E-mail" : "Misslyckades att dela via e-post" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/sharebymail/l10n/sv.json b/apps/sharebymail/l10n/sv.json index ced3fece12886..ce47faee59b8b 100644 --- a/apps/sharebymail/l10n/sv.json +++ b/apps/sharebymail/l10n/sv.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Tillåt användare att dela en personlig länk till en fil eller mapp genom att ange en e-postadress", "Send password by mail" : "Skicka lösenord via e-post", "Enforce password protection" : "Tvinga lösenordsskydd", - "Failed to send share by E-mail" : "Misslyckades att dela via e-post", - "%s shared »%s« with you on behalf of %s" : "%s delade »%s« med dig på begäran av %s", - "Failed to create the E-mail" : "Misslyckades att skapa e-post", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Hej!\n\n%s delade »%s« med dig från%s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Hej,\n\n%s delade »%s« med dig.\n\n%s\n", - "Cheers!" : "Ha det fint!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Hej!

%s delade %s med dig från %s.

", - "Hey there,

%s shared %s with you.

" : "Hej!

%s delade %s med dig.

" + "Failed to send share by E-mail" : "Misslyckades att dela via e-post" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/tr.js b/apps/sharebymail/l10n/tr.js index 904ab5365ffd4..50acb0a3d20c8 100644 --- a/apps/sharebymail/l10n/tr.js +++ b/apps/sharebymail/l10n/tr.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "Kullanıcıların bir e-posta adresi yazarak bir dosya ya da klasör için kişisel bir bağlantı paylaşmasını sağlar.", "Send password by mail" : "Parolayı e-posta ile gönder", "Enforce password protection" : "Parola koruması dayatılsın", - "Failed to send share by E-mail" : "Paylaşım e-postası gönderilemedi", - "%s shared »%s« with you on behalf of %s" : "%s sizinle »%s« ögesini %s adına paylaştı", - "Failed to create the E-mail" : "E-posta oluşturulamadı", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Merhaba,\n\n%s sizinle »%s« ögesini %s adına paylaştı.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Merhaba,\n\n%s sizinle »%s« ögesini paylaştı.\n\n%s\n\n", - "Cheers!" : "Hoşça kalın!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Merhaba,

%s sizinle %s ögesini %s adına paylaştı.

", - "Hey there,

%s shared %s with you.

" : "Merhaba,

%s sizinle %s ögesini paylaştı.

" + "Failed to send share by E-mail" : "Paylaşım e-postası gönderilemedi" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/sharebymail/l10n/tr.json b/apps/sharebymail/l10n/tr.json index 657db4036f8e9..7b9081d4c3b23 100644 --- a/apps/sharebymail/l10n/tr.json +++ b/apps/sharebymail/l10n/tr.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "Kullanıcıların bir e-posta adresi yazarak bir dosya ya da klasör için kişisel bir bağlantı paylaşmasını sağlar.", "Send password by mail" : "Parolayı e-posta ile gönder", "Enforce password protection" : "Parola koruması dayatılsın", - "Failed to send share by E-mail" : "Paylaşım e-postası gönderilemedi", - "%s shared »%s« with you on behalf of %s" : "%s sizinle »%s« ögesini %s adına paylaştı", - "Failed to create the E-mail" : "E-posta oluşturulamadı", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "Merhaba,\n\n%s sizinle »%s« ögesini %s adına paylaştı.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "Merhaba,\n\n%s sizinle »%s« ögesini paylaştı.\n\n%s\n\n", - "Cheers!" : "Hoşça kalın!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "Merhaba,

%s sizinle %s ögesini %s adına paylaştı.

", - "Hey there,

%s shared %s with you.

" : "Merhaba,

%s sizinle %s ögesini paylaştı.

" + "Failed to send share by E-mail" : "Paylaşım e-postası gönderilemedi" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/sharebymail/l10n/zh_CN.js b/apps/sharebymail/l10n/zh_CN.js index 1e21de4d9d214..dc1ee4f76daf6 100644 --- a/apps/sharebymail/l10n/zh_CN.js +++ b/apps/sharebymail/l10n/zh_CN.js @@ -38,13 +38,6 @@ OC.L10N.register( "Allows users to share a personalized link to a file or folder by putting in an email address." : "允许用户通过电子邮件地址来共享文件或文件夹的个性化链接。", "Send password by mail" : "通过电子邮件发送密码", "Enforce password protection" : "强制密码保护", - "Failed to send share by E-mail" : "通过电子邮件发送共享失败", - "%s shared »%s« with you on behalf of %s" : "%s 共享 »%s« 和你代表 %s", - "Failed to create the E-mail" : "创建电子邮件失败", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "嘿那儿,\n\n%s 共享 »%s« 与你代表 %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "嘿那儿,\n\n%s 共享 »%s« 与你.\n\n%s\n\n", - "Cheers!" : "干杯!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "嘿那儿,

%s 共享 %s 与你代表 %s.

", - "Hey there,

%s shared %s with you.

" : "嘿那儿,

%s 共享 %s 与你.

" + "Failed to send share by E-mail" : "通过电子邮件发送共享失败" }, "nplurals=1; plural=0;"); diff --git a/apps/sharebymail/l10n/zh_CN.json b/apps/sharebymail/l10n/zh_CN.json index b435c7c2aa1d6..865cd9d20845f 100644 --- a/apps/sharebymail/l10n/zh_CN.json +++ b/apps/sharebymail/l10n/zh_CN.json @@ -36,13 +36,6 @@ "Allows users to share a personalized link to a file or folder by putting in an email address." : "允许用户通过电子邮件地址来共享文件或文件夹的个性化链接。", "Send password by mail" : "通过电子邮件发送密码", "Enforce password protection" : "强制密码保护", - "Failed to send share by E-mail" : "通过电子邮件发送共享失败", - "%s shared »%s« with you on behalf of %s" : "%s 共享 »%s« 和你代表 %s", - "Failed to create the E-mail" : "创建电子邮件失败", - "Hey there,\n\n%s shared »%s« with you on behalf of %s.\n\n%s\n\n" : "嘿那儿,\n\n%s 共享 »%s« 与你代表 %s.\n\n%s\n\n", - "Hey there,\n\n%s shared »%s« with you.\n\n%s\n\n" : "嘿那儿,\n\n%s 共享 »%s« 与你.\n\n%s\n\n", - "Cheers!" : "干杯!", - "Hey there,

%s shared %s with you on behalf of %s.

" : "嘿那儿,

%s 共享 %s 与你代表 %s.

", - "Hey there,

%s shared %s with you.

" : "嘿那儿,

%s 共享 %s 与你.

" + "Failed to send share by E-mail" : "通过电子邮件发送共享失败" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/systemtags/l10n/cs.js b/apps/systemtags/l10n/cs.js index 4789010525aa2..5fc3ae2ba3c5d 100644 --- a/apps/systemtags/l10n/cs.js +++ b/apps/systemtags/l10n/cs.js @@ -43,7 +43,7 @@ OC.L10N.register( "System tags for a file have been modified" : "Systémové tagy souboru byly upraveny", "Collaborative tags" : "Značky pro spolupráci", "Create and edit collaborative tags. These tags affect all users." : "Vytvářejte a upravujte značky pro spolupráci. Tyto značky ovlivní všechny uživatele.", - "Select tag …" : "Vyberte značku …", + "Select tag …" : "Vyberte štítek…", "Name" : "Název", "Delete" : "Smazat", "Public" : "Veřejné", diff --git a/apps/systemtags/l10n/cs.json b/apps/systemtags/l10n/cs.json index dbf7f5be2dd05..92addac3ef607 100644 --- a/apps/systemtags/l10n/cs.json +++ b/apps/systemtags/l10n/cs.json @@ -41,7 +41,7 @@ "System tags for a file have been modified" : "Systémové tagy souboru byly upraveny", "Collaborative tags" : "Značky pro spolupráci", "Create and edit collaborative tags. These tags affect all users." : "Vytvářejte a upravujte značky pro spolupráci. Tyto značky ovlivní všechny uživatele.", - "Select tag …" : "Vyberte značku …", + "Select tag …" : "Vyberte štítek…", "Name" : "Název", "Delete" : "Smazat", "Public" : "Veřejné", diff --git a/apps/systemtags/l10n/de.js b/apps/systemtags/l10n/de.js index ed17de8db15df..0e38580d0aba8 100644 --- a/apps/systemtags/l10n/de.js +++ b/apps/systemtags/l10n/de.js @@ -42,7 +42,7 @@ OC.L10N.register( "%s (invisible)" : "%s (unsichtbar)", "System tags for a file have been modified" : "System-Tags für eine Datei wurden geändert", "Collaborative tags" : "Gemeinsame Tags", - "Create and edit collaborative tags. These tags affect all users." : "Erstellen und bearbeite die gemeinsamen Tags. Diese Tags betreffen alle Benutzer.", + "Create and edit collaborative tags. These tags affect all users." : "Erstelle und bearbeite die gemeinsamen Tags. Diese Tags betreffen alle Benutzer.", "Select tag …" : "Tag wählen…", "Name" : "Name", "Delete" : "Löschen", diff --git a/apps/systemtags/l10n/de.json b/apps/systemtags/l10n/de.json index cf2491194f307..442b8d92a815a 100644 --- a/apps/systemtags/l10n/de.json +++ b/apps/systemtags/l10n/de.json @@ -40,7 +40,7 @@ "%s (invisible)" : "%s (unsichtbar)", "System tags for a file have been modified" : "System-Tags für eine Datei wurden geändert", "Collaborative tags" : "Gemeinsame Tags", - "Create and edit collaborative tags. These tags affect all users." : "Erstellen und bearbeite die gemeinsamen Tags. Diese Tags betreffen alle Benutzer.", + "Create and edit collaborative tags. These tags affect all users." : "Erstelle und bearbeite die gemeinsamen Tags. Diese Tags betreffen alle Benutzer.", "Select tag …" : "Tag wählen…", "Name" : "Name", "Delete" : "Löschen", diff --git a/apps/systemtags/l10n/es.js b/apps/systemtags/l10n/es.js index d380ab58271b4..2aa5c8dfa58a5 100644 --- a/apps/systemtags/l10n/es.js +++ b/apps/systemtags/l10n/es.js @@ -49,7 +49,7 @@ OC.L10N.register( "Public" : "Público", "Restricted" : "Restringido", "Invisible" : "Invisible", - "Reset" : "Reiniciar", + "Reset" : "Restablecer", "No files in here" : "Aquí no hay archivos", "No entries found in this folder" : "No hay entradas en esta carpeta", "Size" : "Tamaño", diff --git a/apps/systemtags/l10n/es.json b/apps/systemtags/l10n/es.json index 51bb3668f6fcf..f855286a590db 100644 --- a/apps/systemtags/l10n/es.json +++ b/apps/systemtags/l10n/es.json @@ -47,7 +47,7 @@ "Public" : "Público", "Restricted" : "Restringido", "Invisible" : "Invisible", - "Reset" : "Reiniciar", + "Reset" : "Restablecer", "No files in here" : "Aquí no hay archivos", "No entries found in this folder" : "No hay entradas en esta carpeta", "Size" : "Tamaño", diff --git a/apps/systemtags/l10n/lv.js b/apps/systemtags/l10n/lv.js index 116f7a366ec47..cc3f8f49898b5 100644 --- a/apps/systemtags/l10n/lv.js +++ b/apps/systemtags/l10n/lv.js @@ -9,7 +9,7 @@ OC.L10N.register( "Select tags to filter by" : "Izvēlies atzīmes pēc kā filtrēt", "No tags found" : "Netika atrasta neviena atzīme", "Please select tags to filter by" : "Lūdzu izvēlies atzīmes pēc kā filtrēt", - "No files found for the selected tags" : "Faili netika atrasti ar atlasītām atzīmēm", + "No files found for the selected tags" : "Datnes ar atlasītām atzīmēm netika atrastas", "Added system tag %1$s" : "Pievienota sistēmas atzīme %1$s", "Added system tag {systemtag}" : "Pievienota sistēmas atzīme {systemtag}", "%1$s added system tag %2$s" : "%1$s pievienota sistēmas atzīme %2$s", @@ -31,11 +31,11 @@ OC.L10N.register( "%1$s updated system tag %3$s to %2$s" : "%1$spārmainija sistēmas atzīmi %3$s uz %2$s", "{actor} updated system tag {oldsystemtag} to {newsystemtag}" : "{actor} atjaunināja sistēmas atzīmi {oldsystemtag} uz {newsystemtag}", "You added system tag %2$s to %1$s" : "Tu pievienoji sistēmas atzīmi %2$s uz %1$s", - "You added system tag {systemtag} to {file}" : "Tu pievienoji sistēmas atzīmi {systemtag} failam {file}", + "You added system tag {systemtag} to {file}" : "Tu pievienoji sistēmas atzīmi {systemtag} datnei {file}", "%1$s added system tag %3$s to %2$s" : "%1$spievienoja sistēmas atzīmi %3$s uz %2$s", - "{actor} added system tag {systemtag} to {file}" : "{actor} added system tag {systemtag} to {file}", + "{actor} added system tag {systemtag} to {file}" : "{actor} pievienoja sistēmas atzīmi {systemtag} {file}", "You removed system tag %2$s from %1$s" : "Tu noņēmi sistēmas atzīmi %2$s no %1$s", - "You removed system tag {systemtag} from {file}" : "TU noņēmi sistēmas atzīmi {systemtag} no {file}", + "You removed system tag {systemtag} from {file}" : "Tu noņēmi sistēmas atzīmi {systemtag} no {file}", "%1$s removed system tag %3$s from %2$s" : "%1$s noņēma sistēmas atzīmi %3$s no %2$s", "{actor} removed system tag {systemtag} from {file}" : "{actor} noņēma sistēmas atzīmi {systemtag} no {file}", "%s (restricted)" : "%s (ierobežots)", diff --git a/apps/systemtags/l10n/lv.json b/apps/systemtags/l10n/lv.json index 7359422ea9ea7..9dd5a05233bfd 100644 --- a/apps/systemtags/l10n/lv.json +++ b/apps/systemtags/l10n/lv.json @@ -7,7 +7,7 @@ "Select tags to filter by" : "Izvēlies atzīmes pēc kā filtrēt", "No tags found" : "Netika atrasta neviena atzīme", "Please select tags to filter by" : "Lūdzu izvēlies atzīmes pēc kā filtrēt", - "No files found for the selected tags" : "Faili netika atrasti ar atlasītām atzīmēm", + "No files found for the selected tags" : "Datnes ar atlasītām atzīmēm netika atrastas", "Added system tag %1$s" : "Pievienota sistēmas atzīme %1$s", "Added system tag {systemtag}" : "Pievienota sistēmas atzīme {systemtag}", "%1$s added system tag %2$s" : "%1$s pievienota sistēmas atzīme %2$s", @@ -29,11 +29,11 @@ "%1$s updated system tag %3$s to %2$s" : "%1$spārmainija sistēmas atzīmi %3$s uz %2$s", "{actor} updated system tag {oldsystemtag} to {newsystemtag}" : "{actor} atjaunināja sistēmas atzīmi {oldsystemtag} uz {newsystemtag}", "You added system tag %2$s to %1$s" : "Tu pievienoji sistēmas atzīmi %2$s uz %1$s", - "You added system tag {systemtag} to {file}" : "Tu pievienoji sistēmas atzīmi {systemtag} failam {file}", + "You added system tag {systemtag} to {file}" : "Tu pievienoji sistēmas atzīmi {systemtag} datnei {file}", "%1$s added system tag %3$s to %2$s" : "%1$spievienoja sistēmas atzīmi %3$s uz %2$s", - "{actor} added system tag {systemtag} to {file}" : "{actor} added system tag {systemtag} to {file}", + "{actor} added system tag {systemtag} to {file}" : "{actor} pievienoja sistēmas atzīmi {systemtag} {file}", "You removed system tag %2$s from %1$s" : "Tu noņēmi sistēmas atzīmi %2$s no %1$s", - "You removed system tag {systemtag} from {file}" : "TU noņēmi sistēmas atzīmi {systemtag} no {file}", + "You removed system tag {systemtag} from {file}" : "Tu noņēmi sistēmas atzīmi {systemtag} no {file}", "%1$s removed system tag %3$s from %2$s" : "%1$s noņēma sistēmas atzīmi %3$s no %2$s", "{actor} removed system tag {systemtag} from {file}" : "{actor} noņēma sistēmas atzīmi {systemtag} no {file}", "%s (restricted)" : "%s (ierobežots)", diff --git a/apps/systemtags/l10n/nl.js b/apps/systemtags/l10n/nl.js index a778fc7ce7df1..0f7aed6ffc529 100644 --- a/apps/systemtags/l10n/nl.js +++ b/apps/systemtags/l10n/nl.js @@ -3,7 +3,7 @@ OC.L10N.register( { "Tags" : "Markering", "Update" : "Update", - "Create" : "Creeër", + "Create" : "Opslaan", "Select tag…" : "Selecteren markering…", "Tagged files" : "Gemarkeerde bestanden", "Select tags to filter by" : "Selecteer markering om op te filteren", @@ -41,15 +41,15 @@ OC.L10N.register( "%s (restricted)" : "%s (beperkt)", "%s (invisible)" : "%s (onzichtbaar)", "System tags for a file have been modified" : "Systeemmarkeringen voor een bestand zijn gewijzigd", - "Collaborative tags" : "Samenwerk markeringen", - "Create and edit collaborative tags. These tags affect all users." : "Maak en bewerk samenwerkingstags. Deze tags gelden voor alle gebruikers.", + "Collaborative tags" : "Systeemtags", + "Create and edit collaborative tags. These tags affect all users." : "Maak en bewerk systeemtags. Deze tags raken alle gebruikers.", "Select tag …" : "Selecteer tag …", - "Name" : "Naam", + "Name" : "Tag", "Delete" : "Verwijder", - "Public" : "Openbaar", - "Restricted" : "Beperkt", + "Public" : "Standaard", + "Restricted" : "Beschermd", "Invisible" : "Verborgen", - "Reset" : "Reset", + "Reset" : "Herstellen", "No files in here" : "Hier geen bestanden", "No entries found in this folder" : "Niets gevonden in deze map", "Size" : "Grootte", diff --git a/apps/systemtags/l10n/nl.json b/apps/systemtags/l10n/nl.json index 1915c7550b096..feac7b8cc935e 100644 --- a/apps/systemtags/l10n/nl.json +++ b/apps/systemtags/l10n/nl.json @@ -1,7 +1,7 @@ { "translations": { "Tags" : "Markering", "Update" : "Update", - "Create" : "Creeër", + "Create" : "Opslaan", "Select tag…" : "Selecteren markering…", "Tagged files" : "Gemarkeerde bestanden", "Select tags to filter by" : "Selecteer markering om op te filteren", @@ -39,15 +39,15 @@ "%s (restricted)" : "%s (beperkt)", "%s (invisible)" : "%s (onzichtbaar)", "System tags for a file have been modified" : "Systeemmarkeringen voor een bestand zijn gewijzigd", - "Collaborative tags" : "Samenwerk markeringen", - "Create and edit collaborative tags. These tags affect all users." : "Maak en bewerk samenwerkingstags. Deze tags gelden voor alle gebruikers.", + "Collaborative tags" : "Systeemtags", + "Create and edit collaborative tags. These tags affect all users." : "Maak en bewerk systeemtags. Deze tags raken alle gebruikers.", "Select tag …" : "Selecteer tag …", - "Name" : "Naam", + "Name" : "Tag", "Delete" : "Verwijder", - "Public" : "Openbaar", - "Restricted" : "Beperkt", + "Public" : "Standaard", + "Restricted" : "Beschermd", "Invisible" : "Verborgen", - "Reset" : "Reset", + "Reset" : "Herstellen", "No files in here" : "Hier geen bestanden", "No entries found in this folder" : "Niets gevonden in deze map", "Size" : "Grootte", diff --git a/apps/systemtags/l10n/sk.js b/apps/systemtags/l10n/sk.js new file mode 100644 index 0000000000000..77ddf39e4bb49 --- /dev/null +++ b/apps/systemtags/l10n/sk.js @@ -0,0 +1,58 @@ +OC.L10N.register( + "systemtags", + { + "Tags" : "Štítky", + "Update" : "Aktualizovať", + "Create" : "Vytvoriť", + "Select tag…" : "Vyber štítok...", + "Tagged files" : "Súbory so štítkom", + "Select tags to filter by" : "Vybrať štítky pre filter", + "No tags found" : "Štítky sa nenašli", + "Please select tags to filter by" : "Vyberte štítky pre filtrovanie", + "No files found for the selected tags" : "Neboli nájdené žiadne súbory označené vybranými štítkami", + "Added system tag %1$s" : "Pridaný systémový štítok %1$s", + "Added system tag {systemtag}" : "Pridaný systémový štítok {systemtag}", + "%1$s added system tag %2$s" : "%1$s pridal(a) systémový štítok %2$s", + "{actor} added system tag {systemtag}" : "{actor} pridal(a) systémový štítok {systemtag}", + "Removed system tag %1$s" : "Odstránený systémový štítok %1$s", + "Removed system tag {systemtag}" : "Odstránený systémový štítok {systemtag}", + "%1$s removed system tag %2$s" : "%1$s odstránil(a) systémový štítok %2$s", + "{actor} removed system tag {systemtag}" : "{actor} odstránil(a) systémový štítok {systemtag}", + "You created system tag %1$s" : "Vytvorili ste systémový štítok %1$s", + "You created system tag {systemtag}" : "Vytvorili ste systémový štítok {systemtag}", + "%1$s created system tag %2$s" : "%1$s vytvoril systémový štítok %2$s", + "{actor} created system tag {systemtag}" : "{actor} vytvoril(a) systémový štítok {systemtag}", + "You deleted system tag %1$s" : "Zmazali ste systémový štítok %1$s", + "You deleted system tag {systemtag}" : "Odstránili ste systémový štítok {systemtag}", + "%1$s deleted system tag %2$s" : "%1$s zmazal(a) systémový štítok %2$s", + "{actor} deleted system tag {systemtag}" : "{actor} odstránil(a) systémový štítok {systemtag}", + "You updated system tag %2$s to %1$s" : "Aktualizovali ste systémový štítok %2$s na %1$s", + "You updated system tag {oldsystemtag} to {newsystemtag}" : "Aktualizovali ste systémový štítok {oldsystemtag} na {newsystemtag}", + "%1$s updated system tag %3$s to %2$s" : "%1$s aktualizoval(a) systémový štítok %3$s na %2$s", + "{actor} updated system tag {oldsystemtag} to {newsystemtag}" : "{actor} aktualizoval(a) systémový štítok {oldsystemtag} na {newsystemtag}", + "You added system tag %2$s to %1$s" : "Pridali ste systémový štítok %2$s na %1$s", + "You added system tag {systemtag} to {file}" : "K {file} ste pridali systémový štítok {systemtag}", + "%1$s added system tag %3$s to %2$s" : "%1$s k %2$s pridal(a) systémový štítok %3$s", + "{actor} added system tag {systemtag} to {file}" : " {actor} k {file} pridal(a) systémový štítok {systemtag}", + "You removed system tag %2$s from %1$s" : "Z %2$s ste odstránili systémový štítok %1$s", + "You removed system tag {systemtag} from {file}" : "Z {file} ste odstránili systémový štítok {systemtag}", + "%1$s removed system tag %3$s from %2$s" : "%1$s odstránil(a) systémový štítok %3$s z %2$s", + "{actor} removed system tag {systemtag} from {file}" : "{actor} odstránil(a) systémový štítok {systemtag} z {file}", + "%s (restricted)" : "%s (obmedzené)", + "%s (invisible)" : "%s (neviditeľné)", + "System tags for a file have been modified" : "Systémové štítky súboru boli upravené", + "Collaborative tags" : "Značky pre spoluprácu", + "Create and edit collaborative tags. These tags affect all users." : "Vytvárajte a upravujte štítky pre spoluprácu. Tieto značky ovplyvnia všetkých používateľov.", + "Select tag …" : "Vybrať štítok ...", + "Name" : "Názov", + "Delete" : "Zmazať", + "Public" : "Verejné", + "Restricted" : "Obmedzené", + "Invisible" : "Neviditeľné", + "Reset" : "Vynulovať", + "No files in here" : "Žiadne súbory", + "No entries found in this folder" : "V tomto priečinku sa nič nenašlo", + "Size" : "Veľkosť", + "Modified" : "Upravené" +}, +"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/systemtags/l10n/sk.json b/apps/systemtags/l10n/sk.json new file mode 100644 index 0000000000000..a4d4bb322649b --- /dev/null +++ b/apps/systemtags/l10n/sk.json @@ -0,0 +1,56 @@ +{ "translations": { + "Tags" : "Štítky", + "Update" : "Aktualizovať", + "Create" : "Vytvoriť", + "Select tag…" : "Vyber štítok...", + "Tagged files" : "Súbory so štítkom", + "Select tags to filter by" : "Vybrať štítky pre filter", + "No tags found" : "Štítky sa nenašli", + "Please select tags to filter by" : "Vyberte štítky pre filtrovanie", + "No files found for the selected tags" : "Neboli nájdené žiadne súbory označené vybranými štítkami", + "Added system tag %1$s" : "Pridaný systémový štítok %1$s", + "Added system tag {systemtag}" : "Pridaný systémový štítok {systemtag}", + "%1$s added system tag %2$s" : "%1$s pridal(a) systémový štítok %2$s", + "{actor} added system tag {systemtag}" : "{actor} pridal(a) systémový štítok {systemtag}", + "Removed system tag %1$s" : "Odstránený systémový štítok %1$s", + "Removed system tag {systemtag}" : "Odstránený systémový štítok {systemtag}", + "%1$s removed system tag %2$s" : "%1$s odstránil(a) systémový štítok %2$s", + "{actor} removed system tag {systemtag}" : "{actor} odstránil(a) systémový štítok {systemtag}", + "You created system tag %1$s" : "Vytvorili ste systémový štítok %1$s", + "You created system tag {systemtag}" : "Vytvorili ste systémový štítok {systemtag}", + "%1$s created system tag %2$s" : "%1$s vytvoril systémový štítok %2$s", + "{actor} created system tag {systemtag}" : "{actor} vytvoril(a) systémový štítok {systemtag}", + "You deleted system tag %1$s" : "Zmazali ste systémový štítok %1$s", + "You deleted system tag {systemtag}" : "Odstránili ste systémový štítok {systemtag}", + "%1$s deleted system tag %2$s" : "%1$s zmazal(a) systémový štítok %2$s", + "{actor} deleted system tag {systemtag}" : "{actor} odstránil(a) systémový štítok {systemtag}", + "You updated system tag %2$s to %1$s" : "Aktualizovali ste systémový štítok %2$s na %1$s", + "You updated system tag {oldsystemtag} to {newsystemtag}" : "Aktualizovali ste systémový štítok {oldsystemtag} na {newsystemtag}", + "%1$s updated system tag %3$s to %2$s" : "%1$s aktualizoval(a) systémový štítok %3$s na %2$s", + "{actor} updated system tag {oldsystemtag} to {newsystemtag}" : "{actor} aktualizoval(a) systémový štítok {oldsystemtag} na {newsystemtag}", + "You added system tag %2$s to %1$s" : "Pridali ste systémový štítok %2$s na %1$s", + "You added system tag {systemtag} to {file}" : "K {file} ste pridali systémový štítok {systemtag}", + "%1$s added system tag %3$s to %2$s" : "%1$s k %2$s pridal(a) systémový štítok %3$s", + "{actor} added system tag {systemtag} to {file}" : " {actor} k {file} pridal(a) systémový štítok {systemtag}", + "You removed system tag %2$s from %1$s" : "Z %2$s ste odstránili systémový štítok %1$s", + "You removed system tag {systemtag} from {file}" : "Z {file} ste odstránili systémový štítok {systemtag}", + "%1$s removed system tag %3$s from %2$s" : "%1$s odstránil(a) systémový štítok %3$s z %2$s", + "{actor} removed system tag {systemtag} from {file}" : "{actor} odstránil(a) systémový štítok {systemtag} z {file}", + "%s (restricted)" : "%s (obmedzené)", + "%s (invisible)" : "%s (neviditeľné)", + "System tags for a file have been modified" : "Systémové štítky súboru boli upravené", + "Collaborative tags" : "Značky pre spoluprácu", + "Create and edit collaborative tags. These tags affect all users." : "Vytvárajte a upravujte štítky pre spoluprácu. Tieto značky ovplyvnia všetkých používateľov.", + "Select tag …" : "Vybrať štítok ...", + "Name" : "Názov", + "Delete" : "Zmazať", + "Public" : "Verejné", + "Restricted" : "Obmedzené", + "Invisible" : "Neviditeľné", + "Reset" : "Vynulovať", + "No files in here" : "Žiadne súbory", + "No entries found in this folder" : "V tomto priečinku sa nič nenašlo", + "Size" : "Veľkosť", + "Modified" : "Upravené" +},"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" +} \ No newline at end of file diff --git a/apps/systemtags/lib/Activity/Listener.php b/apps/systemtags/lib/Activity/Listener.php index 766e08ee8c3af..8c158410e4a27 100644 --- a/apps/systemtags/lib/Activity/Listener.php +++ b/apps/systemtags/lib/Activity/Listener.php @@ -185,7 +185,7 @@ public function mapperEvent(MapperEvent $event) { /** @var Node $node */ $node = array_shift($nodes); $al = $this->shareHelper->getPathsForAccessList($node); - $users = array_merge($users, $al['users']); + $users += $al['users']; } } @@ -203,6 +203,7 @@ public function mapperEvent(MapperEvent $event) { ->setObject($event->getObjectType(), (int) $event->getObjectId()); foreach ($users as $user => $path) { + $user = (string)$user; // numerical ids could be ints which are not accepted everywhere $activity->setAffectedUser($user); foreach ($tags as $tag) { diff --git a/apps/systemtags/list.php b/apps/systemtags/list.php index 67fdeca93e9a7..f8cdf715f1744 100644 --- a/apps/systemtags/list.php +++ b/apps/systemtags/list.php @@ -19,8 +19,24 @@ * along with this program. If not, see * */ + +// WARNING: this should be moved to proper AppFramework handling // Check if we are a user -OCP\User::checkLoggedIn(); +if (!\OC::$server->getUserSession()->isLoggedIn()) { + header('Location: ' . \OC::$server->getURLGenerator()->linkToRoute( + 'core.login.showLoginForm', + [ + 'redirect_url' => \OC::$server->getRequest()->getRequestUri(), + ] + ) + ); + exit(); +} +// Redirect to 2FA challenge selection if 2FA challenge was not solved yet +if (\OC::$server->getTwoFactorAuthManager()->needsSecondFactor(\OC::$server->getUserSession()->getUser())) { + header('Location: ' . \OC::$server->getURLGenerator()->linkToRoute('core.TwoFactorChallenge.selectChallenge')); + exit(); +} $tmpl = new OCP\Template('systemtags', 'list', ''); $tmpl->printPage(); diff --git a/apps/theming/css/theming.scss b/apps/theming/css/theming.scss index 63d466542e1ab..3bb26a1481416 100644 --- a/apps/theming/css/theming.scss +++ b/apps/theming/css/theming.scss @@ -91,11 +91,14 @@ } /* override styles for login screen in guest.css */ -#header .logo { - background-image: url(#{$image-logo}); - @if $theming-logo-mime != '' { +@if variable_exists('theming-logo-mime') and $theming-logo-mime != '' { + #header .logo { + background-image: url(#{$image-logo}); background-size: contain; } + #body-login #header .logo { + margin-bottom: 22px; + } } #body-login, diff --git a/apps/theming/l10n/af.js b/apps/theming/l10n/af.js index 2ea5095c8c224..d0074943d6bd9 100644 --- a/apps/theming/l10n/af.js +++ b/apps/theming/l10n/af.js @@ -9,15 +9,12 @@ OC.L10N.register( "The given web address is too long" : "Die gegewe webadres is te lank", "The given slogan is too long" : "Gegewe slagspreuk is te lank", "The given color is invalid" : "Die gegewe kleur is ongeldig", - "There is no error, the file uploaded with success" : "Geen fout is teëgekom nie, die lêer is met suksesvol opgelaai", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die opgelaaide lêer oorskry die upload_max_filesize riglyn in php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die opgelaaide lêer oorskry die MAX_FILE_SIZE riglyn wat in die HTML vorm gespesifiseer is", - "The uploaded file was only partially uploaded" : "Die opgelaaide lêer is slegs gedeeltelik opgelaai", "No file was uploaded" : "Geen lêer is opgelaai", "Missing a temporary folder" : "Ontbrekende tydelike gids", "No file uploaded" : "Geen lêer opgelaai", "Unsupported image type" : "Onondersteunde beeldtipe", - "You are already using a custom theme" : "U gebruik reeds ’n pasgemaakte tema", "Name" : "Naam", "Reset to default" : "Herstel na verstek", "Web address" : "Webadres", @@ -29,7 +26,9 @@ OC.L10N.register( "Login image" : "Aantekenbeeld", "Upload new login background" : "Laai nuwe aantekenagtergrond op", "Remove background image" : "Verwyder agtergrondbeeld", + "You are already using a custom theme" : "U gebruik reeds ’n pasgemaakte tema", "reset to default" : "herstel na verstek", - "Log in image" : "Aantekenbeeld" + "There is no error, the file uploaded with success" : "Geen fout is teëgekom nie, die lêer is met suksesvol opgelaai", + "The uploaded file was only partially uploaded" : "Die opgelaaide lêer is slegs gedeeltelik opgelaai" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/af.json b/apps/theming/l10n/af.json index ea36d75cc18fb..2893d111ded9c 100644 --- a/apps/theming/l10n/af.json +++ b/apps/theming/l10n/af.json @@ -7,15 +7,12 @@ "The given web address is too long" : "Die gegewe webadres is te lank", "The given slogan is too long" : "Gegewe slagspreuk is te lank", "The given color is invalid" : "Die gegewe kleur is ongeldig", - "There is no error, the file uploaded with success" : "Geen fout is teëgekom nie, die lêer is met suksesvol opgelaai", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die opgelaaide lêer oorskry die upload_max_filesize riglyn in php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die opgelaaide lêer oorskry die MAX_FILE_SIZE riglyn wat in die HTML vorm gespesifiseer is", - "The uploaded file was only partially uploaded" : "Die opgelaaide lêer is slegs gedeeltelik opgelaai", "No file was uploaded" : "Geen lêer is opgelaai", "Missing a temporary folder" : "Ontbrekende tydelike gids", "No file uploaded" : "Geen lêer opgelaai", "Unsupported image type" : "Onondersteunde beeldtipe", - "You are already using a custom theme" : "U gebruik reeds ’n pasgemaakte tema", "Name" : "Naam", "Reset to default" : "Herstel na verstek", "Web address" : "Webadres", @@ -27,7 +24,9 @@ "Login image" : "Aantekenbeeld", "Upload new login background" : "Laai nuwe aantekenagtergrond op", "Remove background image" : "Verwyder agtergrondbeeld", + "You are already using a custom theme" : "U gebruik reeds ’n pasgemaakte tema", "reset to default" : "herstel na verstek", - "Log in image" : "Aantekenbeeld" + "There is no error, the file uploaded with success" : "Geen fout is teëgekom nie, die lêer is met suksesvol opgelaai", + "The uploaded file was only partially uploaded" : "Die opgelaaide lêer is slegs gedeeltelik opgelaai" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/ar.js b/apps/theming/l10n/ar.js index c88b7be872d37..ddf7b4c45585f 100644 --- a/apps/theming/l10n/ar.js +++ b/apps/theming/l10n/ar.js @@ -9,9 +9,10 @@ OC.L10N.register( "The given web address is too long" : "هذا العنوان أطول مما يجب", "The given slogan is too long" : "هذا الشعار أطول مما يجب", "The given color is invalid" : "هناك خطأ في اللون", + "No file was uploaded" : "لم يتم رفع أي ملف", + "Missing a temporary folder" : "المجلد المؤقت غير موجود", "No file uploaded" : "لم يتم رفع الملف", "Unsupported image type" : "صيغة الصورة غير مقبولة", - "You are already using a custom theme" : "انت تستعمل قالب مخصص", "Theming" : "تخصيص القالب", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "السمات تجعل من الممكن بسهولة تخصيص الشكل والمظهر لنموذجك ودعم العملاء. سيكون هذا مرئيا لجميع المستخدمين.", "Name" : "الاسم", @@ -25,7 +26,8 @@ OC.L10N.register( "Login image" : "صورة الدخول", "Upload new login background" : "تحميل خلفية جديدة للدخول", "Remove background image" : "إزالة صورة الخلفية", + "You are already using a custom theme" : "انت تستعمل قالب مخصص", "reset to default" : "إلغاء كل التغييرات", - "Log in image" : "صورة الدخول" + "Failed to write file to disk." : "خطأ في الكتابة على القرص الصلب." }, "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/apps/theming/l10n/ar.json b/apps/theming/l10n/ar.json index bd7aca38418e5..16f3027613b4e 100644 --- a/apps/theming/l10n/ar.json +++ b/apps/theming/l10n/ar.json @@ -7,9 +7,10 @@ "The given web address is too long" : "هذا العنوان أطول مما يجب", "The given slogan is too long" : "هذا الشعار أطول مما يجب", "The given color is invalid" : "هناك خطأ في اللون", + "No file was uploaded" : "لم يتم رفع أي ملف", + "Missing a temporary folder" : "المجلد المؤقت غير موجود", "No file uploaded" : "لم يتم رفع الملف", "Unsupported image type" : "صيغة الصورة غير مقبولة", - "You are already using a custom theme" : "انت تستعمل قالب مخصص", "Theming" : "تخصيص القالب", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "السمات تجعل من الممكن بسهولة تخصيص الشكل والمظهر لنموذجك ودعم العملاء. سيكون هذا مرئيا لجميع المستخدمين.", "Name" : "الاسم", @@ -23,7 +24,8 @@ "Login image" : "صورة الدخول", "Upload new login background" : "تحميل خلفية جديدة للدخول", "Remove background image" : "إزالة صورة الخلفية", + "You are already using a custom theme" : "انت تستعمل قالب مخصص", "reset to default" : "إلغاء كل التغييرات", - "Log in image" : "صورة الدخول" + "Failed to write file to disk." : "خطأ في الكتابة على القرص الصلب." },"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/apps/theming/l10n/ast.js b/apps/theming/l10n/ast.js index c0f77789ae5e0..6268908327c90 100644 --- a/apps/theming/l10n/ast.js +++ b/apps/theming/l10n/ast.js @@ -8,9 +8,9 @@ OC.L10N.register( "The given web address is too long" : "La direición web dada ye perllarga", "The given slogan is too long" : "La conseña dada ye perllarga", "The given color is invalid" : "El color dau ye perllargu", + "No file was uploaded" : "Nun se xubieron fichjeros", "No file uploaded" : "Nun se xubieron ficheros", "Unsupported image type" : "Triba non sofitada d'imaxe", - "You are already using a custom theme" : "Yá tas usando un tema personalizáu", "Name" : "Nome", "Web address" : "Direición web", "Web address https://…" : "Direición web https://…", @@ -21,7 +21,8 @@ OC.L10N.register( "Login image" : "Imaxe d'aniciu de sesión", "Upload new login background" : "Xubir fondu nuevu d'aniciu de sesión", "Remove background image" : "Desaniciar imaxe de fondu", + "You are already using a custom theme" : "Yá tas usando un tema personalizáu", "reset to default" : "reafitar", - "Log in image" : "Imaxe d'aniciu de sesión" + "Failed to write file to disk." : "Fallu al escribir el ficheru nel discu" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/ast.json b/apps/theming/l10n/ast.json index 212247841bb54..a711e659ca60d 100644 --- a/apps/theming/l10n/ast.json +++ b/apps/theming/l10n/ast.json @@ -6,9 +6,9 @@ "The given web address is too long" : "La direición web dada ye perllarga", "The given slogan is too long" : "La conseña dada ye perllarga", "The given color is invalid" : "El color dau ye perllargu", + "No file was uploaded" : "Nun se xubieron fichjeros", "No file uploaded" : "Nun se xubieron ficheros", "Unsupported image type" : "Triba non sofitada d'imaxe", - "You are already using a custom theme" : "Yá tas usando un tema personalizáu", "Name" : "Nome", "Web address" : "Direición web", "Web address https://…" : "Direición web https://…", @@ -19,7 +19,8 @@ "Login image" : "Imaxe d'aniciu de sesión", "Upload new login background" : "Xubir fondu nuevu d'aniciu de sesión", "Remove background image" : "Desaniciar imaxe de fondu", + "You are already using a custom theme" : "Yá tas usando un tema personalizáu", "reset to default" : "reafitar", - "Log in image" : "Imaxe d'aniciu de sesión" + "Failed to write file to disk." : "Fallu al escribir el ficheru nel discu" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/bg.js b/apps/theming/l10n/bg.js index ddcc3d16e3483..939408d1964bf 100644 --- a/apps/theming/l10n/bg.js +++ b/apps/theming/l10n/bg.js @@ -10,7 +10,6 @@ OC.L10N.register( "The given color is invalid" : "Избраният цвят е невалиден", "No file uploaded" : "Няма качен файл", "Unsupported image type" : "Неподдържан тип изображение", - "You are already using a custom theme" : "Вие вече използвате персонализирана тема", "Theming" : "Теми", "Name" : "Име", "Web address" : "Уеб адрес", @@ -21,7 +20,7 @@ OC.L10N.register( "Upload new logo" : "Качване на ново лого", "Login image" : "Изображение при вписване", "Upload new login background" : "Качване на нов фон за входа", - "reset to default" : "възстановяване към стандартни", - "Log in image" : "Изображение при вписване" + "You are already using a custom theme" : "Вие вече използвате персонализирана тема", + "reset to default" : "възстановяване към стандартни" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/bg.json b/apps/theming/l10n/bg.json index 4978243f4f64c..3b0db9e4a96a8 100644 --- a/apps/theming/l10n/bg.json +++ b/apps/theming/l10n/bg.json @@ -8,7 +8,6 @@ "The given color is invalid" : "Избраният цвят е невалиден", "No file uploaded" : "Няма качен файл", "Unsupported image type" : "Неподдържан тип изображение", - "You are already using a custom theme" : "Вие вече използвате персонализирана тема", "Theming" : "Теми", "Name" : "Име", "Web address" : "Уеб адрес", @@ -19,7 +18,7 @@ "Upload new logo" : "Качване на ново лого", "Login image" : "Изображение при вписване", "Upload new login background" : "Качване на нов фон за входа", - "reset to default" : "възстановяване към стандартни", - "Log in image" : "Изображение при вписване" + "You are already using a custom theme" : "Вие вече използвате персонализирана тема", + "reset to default" : "възстановяване към стандартни" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/ca.js b/apps/theming/l10n/ca.js index ae523acb2b1ea..f0b24291edab6 100644 --- a/apps/theming/l10n/ca.js +++ b/apps/theming/l10n/ca.js @@ -11,7 +11,6 @@ OC.L10N.register( "The given color is invalid" : "El color donat no és vàlid", "No file uploaded" : "No s'ha carregat cap fitxer", "Unsupported image type" : "Tipus d'imatge no compatible", - "You are already using a custom theme" : "Ja esteu utilitzant un tema personalitzat", "Theming" : "Adaptació de temes", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "L'adaptació de temes permet personalitzar fàcilment l'aspecte de la vostra instància i els clients compatibles. Això serà visible per a tots els usuaris.", "Name" : "Nom", @@ -25,7 +24,7 @@ OC.L10N.register( "Login image" : "Login logo", "Upload new login background" : "Carregar nou fons d'inici de sessió", "Remove background image" : "Elimina la imatge de fons", - "reset to default" : "restablir a configuració predeterminada", - "Log in image" : "Imatge d'entrada" + "You are already using a custom theme" : "Ja esteu utilitzant un tema personalitzat", + "reset to default" : "restablir a configuració predeterminada" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/ca.json b/apps/theming/l10n/ca.json index 794bf8ba05c16..c26241baaf4a1 100644 --- a/apps/theming/l10n/ca.json +++ b/apps/theming/l10n/ca.json @@ -9,7 +9,6 @@ "The given color is invalid" : "El color donat no és vàlid", "No file uploaded" : "No s'ha carregat cap fitxer", "Unsupported image type" : "Tipus d'imatge no compatible", - "You are already using a custom theme" : "Ja esteu utilitzant un tema personalitzat", "Theming" : "Adaptació de temes", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "L'adaptació de temes permet personalitzar fàcilment l'aspecte de la vostra instància i els clients compatibles. Això serà visible per a tots els usuaris.", "Name" : "Nom", @@ -23,7 +22,7 @@ "Login image" : "Login logo", "Upload new login background" : "Carregar nou fons d'inici de sessió", "Remove background image" : "Elimina la imatge de fons", - "reset to default" : "restablir a configuració predeterminada", - "Log in image" : "Imatge d'entrada" + "You are already using a custom theme" : "Ja esteu utilitzant un tema personalitzat", + "reset to default" : "restablir a configuració predeterminada" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/cs.js b/apps/theming/l10n/cs.js index 0c77fada48263..3d56fef0d2e49 100644 --- a/apps/theming/l10n/cs.js +++ b/apps/theming/l10n/cs.js @@ -5,23 +5,19 @@ OC.L10N.register( "Saved" : "Uloženo", "Admin" : "Administrace", "a safe home for all your data" : "bezpečný domov pro všechna vaše data", + "Name cannot be empty" : "Název nemůže být prázdný", "The given name is too long" : "Zadaný název je příliš dlouhý", "The given web address is too long" : "Zadaná webová adresa je příliš dlouhá", "The given slogan is too long" : "Zadaný slogan je příliš dlouhý", "The given color is invalid" : "Zadaná barva je neplatná", - "There is no error, the file uploaded with success" : "Nenastala žádná chyba, soubor byl úspěšně nahrán", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Nahrávaný soubor přesahuje nastavení upload_max_filesize v php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Nahraný soubor překračuje nastavení MAX_FILE_SIZE, která byla zadána ve HTML formuláři", - "The uploaded file was only partially uploaded" : "Nahraný soubor byl nahrán pouze částečně", "No file was uploaded" : "Nebyl nahrán žádný soubor", "Missing a temporary folder" : "Chybí adresář pro dočasné soubory", - "Failed to write file to disk." : "Selhal zápis na disk", - "A PHP extension stopped the file upload." : "Rozšíření PHP zastavilo nahrávání souboru.", "No file uploaded" : "Nenahrán žádný soubor", "Unsupported image type" : "Nepodporovaný typ obrázku", - "You are already using a custom theme" : "Již používáte vlastní motiv", "Theming" : "Motivy", - "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Motivy umožňují jednoduché přizpůsobení vzhledu vaší instance a podporovaných klientů. Uvidí to všichni uživatelé.", + "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Motivy umožňují jednoduché přizpůsobení vzhledu vaší instance a podporovaných klientů. Tato přizpůsobení uvidí všichni uživatelé.", "Name" : "Název", "Reset to default" : "Obnovit výchozí", "Web address" : "Webová adresa", @@ -34,7 +30,11 @@ OC.L10N.register( "Upload new login background" : "Nahrát nové přihlašovací pozadí", "Remove background image" : "Odebrat obrázek pozadí", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Nainstalujte rozšíření Imagemagick PHP s podporou obrázků SVG, které automaticky generuje favicony na základě nahraného loga a barvy.", + "You are already using a custom theme" : "Již používáte vlastní motiv", "reset to default" : "obnovit výchozí", - "Log in image" : "Přihlašovací obrázek" + "There is no error, the file uploaded with success" : "Nenastala žádná chyba, soubor byl úspěšně nahrán", + "The uploaded file was only partially uploaded" : "Nahraný soubor byl nahrán pouze částečně", + "Failed to write file to disk." : "Selhal zápis na disk", + "A PHP extension stopped the file upload." : "Rozšíření PHP zastavilo nahrávání souboru." }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/theming/l10n/cs.json b/apps/theming/l10n/cs.json index 05da28a614683..6040528d3da74 100644 --- a/apps/theming/l10n/cs.json +++ b/apps/theming/l10n/cs.json @@ -3,23 +3,19 @@ "Saved" : "Uloženo", "Admin" : "Administrace", "a safe home for all your data" : "bezpečný domov pro všechna vaše data", + "Name cannot be empty" : "Název nemůže být prázdný", "The given name is too long" : "Zadaný název je příliš dlouhý", "The given web address is too long" : "Zadaná webová adresa je příliš dlouhá", "The given slogan is too long" : "Zadaný slogan je příliš dlouhý", "The given color is invalid" : "Zadaná barva je neplatná", - "There is no error, the file uploaded with success" : "Nenastala žádná chyba, soubor byl úspěšně nahrán", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Nahrávaný soubor přesahuje nastavení upload_max_filesize v php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Nahraný soubor překračuje nastavení MAX_FILE_SIZE, která byla zadána ve HTML formuláři", - "The uploaded file was only partially uploaded" : "Nahraný soubor byl nahrán pouze částečně", "No file was uploaded" : "Nebyl nahrán žádný soubor", "Missing a temporary folder" : "Chybí adresář pro dočasné soubory", - "Failed to write file to disk." : "Selhal zápis na disk", - "A PHP extension stopped the file upload." : "Rozšíření PHP zastavilo nahrávání souboru.", "No file uploaded" : "Nenahrán žádný soubor", "Unsupported image type" : "Nepodporovaný typ obrázku", - "You are already using a custom theme" : "Již používáte vlastní motiv", "Theming" : "Motivy", - "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Motivy umožňují jednoduché přizpůsobení vzhledu vaší instance a podporovaných klientů. Uvidí to všichni uživatelé.", + "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Motivy umožňují jednoduché přizpůsobení vzhledu vaší instance a podporovaných klientů. Tato přizpůsobení uvidí všichni uživatelé.", "Name" : "Název", "Reset to default" : "Obnovit výchozí", "Web address" : "Webová adresa", @@ -32,7 +28,11 @@ "Upload new login background" : "Nahrát nové přihlašovací pozadí", "Remove background image" : "Odebrat obrázek pozadí", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Nainstalujte rozšíření Imagemagick PHP s podporou obrázků SVG, které automaticky generuje favicony na základě nahraného loga a barvy.", + "You are already using a custom theme" : "Již používáte vlastní motiv", "reset to default" : "obnovit výchozí", - "Log in image" : "Přihlašovací obrázek" + "There is no error, the file uploaded with success" : "Nenastala žádná chyba, soubor byl úspěšně nahrán", + "The uploaded file was only partially uploaded" : "Nahraný soubor byl nahrán pouze částečně", + "Failed to write file to disk." : "Selhal zápis na disk", + "A PHP extension stopped the file upload." : "Rozšíření PHP zastavilo nahrávání souboru." },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/theming/l10n/da.js b/apps/theming/l10n/da.js index d81ce607e7b89..cd91d9ecde32b 100644 --- a/apps/theming/l10n/da.js +++ b/apps/theming/l10n/da.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "Webadressen er for lang", "The given slogan is too long" : "Sloganet er for langt", "The given color is invalid" : "Farven er ikke gyldig", - "There is no error, the file uploaded with success" : "Der skete ingen fejl, filen blev succesfuldt uploadet", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Den uploadede fil overstiger MAX_FILE_SIZE indstilingen, som specificeret i HTML formularen", - "The uploaded file was only partially uploaded" : "Filen blev kun delvist uploadet.", "No file was uploaded" : "Ingen fil uploadet", "Missing a temporary folder" : "Manglende midlertidig mappe.", - "Failed to write file to disk." : "Fejl ved skrivning af fil til disk.", - "A PHP extension stopped the file upload." : "En PHP-udvidelse stoppede file uploaden.", "No file uploaded" : "Ingen fil uploadet", "Unsupported image type" : "Ikke-understøttet billede format", - "You are already using a custom theme" : "Du bruger allerede et brugerdefineret tema", "Theming" : "Temaer", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Theming gør det muligt nemt at tilpasse udseendet på din installation og understøttede klienter. Dette vil være synlig for alle brugere.", "Name" : "Navn", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "Upload nyt login billede", "Remove background image" : "Fjern baggrundsbillede", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Installer Imagemagick PHP udvidelsen med SVG support for automatisk at genererer favikoner baseret på the uploadede logo og farver.", + "You are already using a custom theme" : "Du bruger allerede et brugerdefineret tema", "reset to default" : "nulstil til standardindstillinger ", - "Log in image" : "Log ind billede" + "There is no error, the file uploaded with success" : "Der skete ingen fejl, filen blev succesfuldt uploadet", + "The uploaded file was only partially uploaded" : "Filen blev kun delvist uploadet.", + "Failed to write file to disk." : "Fejl ved skrivning af fil til disk.", + "A PHP extension stopped the file upload." : "En PHP-udvidelse stoppede file uploaden." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/da.json b/apps/theming/l10n/da.json index 7c2653a85a252..9d6035c748f0c 100644 --- a/apps/theming/l10n/da.json +++ b/apps/theming/l10n/da.json @@ -7,17 +7,12 @@ "The given web address is too long" : "Webadressen er for lang", "The given slogan is too long" : "Sloganet er for langt", "The given color is invalid" : "Farven er ikke gyldig", - "There is no error, the file uploaded with success" : "Der skete ingen fejl, filen blev succesfuldt uploadet", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Den uploadede fil overstiger MAX_FILE_SIZE indstilingen, som specificeret i HTML formularen", - "The uploaded file was only partially uploaded" : "Filen blev kun delvist uploadet.", "No file was uploaded" : "Ingen fil uploadet", "Missing a temporary folder" : "Manglende midlertidig mappe.", - "Failed to write file to disk." : "Fejl ved skrivning af fil til disk.", - "A PHP extension stopped the file upload." : "En PHP-udvidelse stoppede file uploaden.", "No file uploaded" : "Ingen fil uploadet", "Unsupported image type" : "Ikke-understøttet billede format", - "You are already using a custom theme" : "Du bruger allerede et brugerdefineret tema", "Theming" : "Temaer", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Theming gør det muligt nemt at tilpasse udseendet på din installation og understøttede klienter. Dette vil være synlig for alle brugere.", "Name" : "Navn", @@ -32,7 +27,11 @@ "Upload new login background" : "Upload nyt login billede", "Remove background image" : "Fjern baggrundsbillede", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Installer Imagemagick PHP udvidelsen med SVG support for automatisk at genererer favikoner baseret på the uploadede logo og farver.", + "You are already using a custom theme" : "Du bruger allerede et brugerdefineret tema", "reset to default" : "nulstil til standardindstillinger ", - "Log in image" : "Log ind billede" + "There is no error, the file uploaded with success" : "Der skete ingen fejl, filen blev succesfuldt uploadet", + "The uploaded file was only partially uploaded" : "Filen blev kun delvist uploadet.", + "Failed to write file to disk." : "Fejl ved skrivning af fil til disk.", + "A PHP extension stopped the file upload." : "En PHP-udvidelse stoppede file uploaden." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/de.js b/apps/theming/l10n/de.js index 68ed24e0f8d2b..6435fb7bead50 100644 --- a/apps/theming/l10n/de.js +++ b/apps/theming/l10n/de.js @@ -5,21 +5,22 @@ OC.L10N.register( "Saved" : "Gespeichert", "Admin" : "Administrator", "a safe home for all your data" : "Ein sicheres Zuhause für Deine Daten", + "Name cannot be empty" : "Der Name darf nicht leer sein", "The given name is too long" : "Der eingegebene Name ist zu lang", "The given web address is too long" : "Die eingegebene Adresse ist zu lang", "The given slogan is too long" : "Der eingegebene Slogan ist zu lang", "The given color is invalid" : "Die gewählte Farbe ist ungültig", - "There is no error, the file uploaded with success" : "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", + "The file was uploaded" : "Die Datei wurde hochgeladen", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini", - "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE-Vorgabe erlaubt, die im HTML-Formular spezifiziert ist", - "The uploaded file was only partially uploaded" : "Die Datei konnte nur teilweise übertragen werden", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE - Vorgabe erlaubt, die im HTML-Formular spezifiziert ist.", + "The file was only partially uploaded" : "Die Datei konnte nur teilweise hochgeladen werden", "No file was uploaded" : "Es wurde keine Datei hochgeladen", "Missing a temporary folder" : "Kein temporärer Ordner vorhanden", - "Failed to write file to disk." : "Fehler beim Schreiben der Datei auf die Festplatte.", - "A PHP extension stopped the file upload." : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt.", + "Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden", + "A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt", "No file uploaded" : "Keine Datei hochgeladen", "Unsupported image type" : "Nicht unterstütztes Bild-Format", - "You are already using a custom theme" : "Du benutzt bereits ein eigenes Thema", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Du benutzt bereits ein benutzerdefiniertes Theme. Eine App für Themes würde dies überschreiben.", "Theming" : "Theming", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Theming ermöglicht es auf einfache Weise das Aussehen Deiner Installation und Clients anzupassen. Die Änderungen wirken sich auf alle Benutzer aus.", "Name" : "Name", @@ -34,7 +35,11 @@ OC.L10N.register( "Upload new login background" : "Neuen Anmelde-Hintergrund hochladen", "Remove background image" : "Entferne Hintergrundbild", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Installiere die Imagemagick PHP-Erweiterung mit Unterstützung für SVG-Bilder, um automatisch Favoriten-Icons auf Basis des hochgeladenen Icons und der Farbe zu erstellen.", + "You are already using a custom theme" : "Du benutzt bereits ein eigenes Thema", "reset to default" : "Auf Standard zurücksetzen", - "Log in image" : "Anmelde-Bild" + "There is no error, the file uploaded with success" : "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", + "The uploaded file was only partially uploaded" : "Die Datei konnte nur teilweise übertragen werden", + "Failed to write file to disk." : "Fehler beim Schreiben der Datei auf die Festplatte.", + "A PHP extension stopped the file upload." : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/de.json b/apps/theming/l10n/de.json index 447d395010e07..80f36772babc5 100644 --- a/apps/theming/l10n/de.json +++ b/apps/theming/l10n/de.json @@ -3,21 +3,22 @@ "Saved" : "Gespeichert", "Admin" : "Administrator", "a safe home for all your data" : "Ein sicheres Zuhause für Deine Daten", + "Name cannot be empty" : "Der Name darf nicht leer sein", "The given name is too long" : "Der eingegebene Name ist zu lang", "The given web address is too long" : "Die eingegebene Adresse ist zu lang", "The given slogan is too long" : "Der eingegebene Slogan ist zu lang", "The given color is invalid" : "Die gewählte Farbe ist ungültig", - "There is no error, the file uploaded with success" : "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", + "The file was uploaded" : "Die Datei wurde hochgeladen", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini", - "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE-Vorgabe erlaubt, die im HTML-Formular spezifiziert ist", - "The uploaded file was only partially uploaded" : "Die Datei konnte nur teilweise übertragen werden", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE - Vorgabe erlaubt, die im HTML-Formular spezifiziert ist.", + "The file was only partially uploaded" : "Die Datei konnte nur teilweise hochgeladen werden", "No file was uploaded" : "Es wurde keine Datei hochgeladen", "Missing a temporary folder" : "Kein temporärer Ordner vorhanden", - "Failed to write file to disk." : "Fehler beim Schreiben der Datei auf die Festplatte.", - "A PHP extension stopped the file upload." : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt.", + "Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden", + "A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt", "No file uploaded" : "Keine Datei hochgeladen", "Unsupported image type" : "Nicht unterstütztes Bild-Format", - "You are already using a custom theme" : "Du benutzt bereits ein eigenes Thema", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Du benutzt bereits ein benutzerdefiniertes Theme. Eine App für Themes würde dies überschreiben.", "Theming" : "Theming", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Theming ermöglicht es auf einfache Weise das Aussehen Deiner Installation und Clients anzupassen. Die Änderungen wirken sich auf alle Benutzer aus.", "Name" : "Name", @@ -32,7 +33,11 @@ "Upload new login background" : "Neuen Anmelde-Hintergrund hochladen", "Remove background image" : "Entferne Hintergrundbild", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Installiere die Imagemagick PHP-Erweiterung mit Unterstützung für SVG-Bilder, um automatisch Favoriten-Icons auf Basis des hochgeladenen Icons und der Farbe zu erstellen.", + "You are already using a custom theme" : "Du benutzt bereits ein eigenes Thema", "reset to default" : "Auf Standard zurücksetzen", - "Log in image" : "Anmelde-Bild" + "There is no error, the file uploaded with success" : "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", + "The uploaded file was only partially uploaded" : "Die Datei konnte nur teilweise übertragen werden", + "Failed to write file to disk." : "Fehler beim Schreiben der Datei auf die Festplatte.", + "A PHP extension stopped the file upload." : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/de_DE.js b/apps/theming/l10n/de_DE.js index ef18abd95fcad..022566c2ee31f 100644 --- a/apps/theming/l10n/de_DE.js +++ b/apps/theming/l10n/de_DE.js @@ -5,21 +5,22 @@ OC.L10N.register( "Saved" : "Gespeichert", "Admin" : "Administrator", "a safe home for all your data" : "Ein sicheres Zuhause für Ihre Daten", + "Name cannot be empty" : "Der Name darf nicht leer sein", "The given name is too long" : "Der eingegebene Name ist zu lang", "The given web address is too long" : "Die eingegebene Adresse ist zu lang", "The given slogan is too long" : "Der eingegebene Slogan ist zu lang", "The given color is invalid" : "Die gewählte Farbe ist ungültig", - "There is no error, the file uploaded with success" : "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", + "The file was uploaded" : "Die Datei wurde hochgeladen", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE-Vorgabe erlaubt, die im HTML-Formular spezifiziert ist", - "The uploaded file was only partially uploaded" : "Die Datei konnte nur teilweise übertragen werden", + "The file was only partially uploaded" : "Die Datei konnte nur teilweise hochgeladen werden", "No file was uploaded" : "Es wurde keine Datei hochgeladen", "Missing a temporary folder" : "Kein temporärer Ordner vorhanden", - "Failed to write file to disk." : "Fehler beim Schreiben der Datei auf die Festplatte.", - "A PHP extension stopped the file upload." : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt.", + "Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden", + "A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt", "No file uploaded" : "Keine Datei hochgeladen", "Unsupported image type" : "Nicht unterstütztes Bild-Format", - "You are already using a custom theme" : "Sie benutzen bereits ein eigenes Thema", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Sie benutzen bereits ein benutzerdefiniertes Theme. Eine App für Themes würde dies überschreiben.", "Theming" : "Theming", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Theming ermöglicht es auf einfache Weise das Aussehen Ihrer Installation und Clients anzupassen. Die Änderungen wirken sich auf alle Benutzer aus.", "Name" : "Name", @@ -34,7 +35,11 @@ OC.L10N.register( "Upload new login background" : "Neuen Anmelde-Hintergrund hochladen", "Remove background image" : "Entferne Hintergrundbild", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Installieren Sie die Imagemagick PHP-Erweiterung mit Unterstützung für SVG-Bilder, um automatisch Favoriten-Icons auf Basis des hochgeladenen Icons und der Farbe zu erstellen.", + "You are already using a custom theme" : "Sie benutzen bereits ein eigenes Thema", "reset to default" : "Auf Standard zurücksetzen", - "Log in image" : "Anmelde-Bild" + "There is no error, the file uploaded with success" : "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", + "The uploaded file was only partially uploaded" : "Die Datei konnte nur teilweise übertragen werden", + "Failed to write file to disk." : "Fehler beim Schreiben der Datei auf die Festplatte.", + "A PHP extension stopped the file upload." : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/de_DE.json b/apps/theming/l10n/de_DE.json index 29c070631a0be..2cb934e738fb4 100644 --- a/apps/theming/l10n/de_DE.json +++ b/apps/theming/l10n/de_DE.json @@ -3,21 +3,22 @@ "Saved" : "Gespeichert", "Admin" : "Administrator", "a safe home for all your data" : "Ein sicheres Zuhause für Ihre Daten", + "Name cannot be empty" : "Der Name darf nicht leer sein", "The given name is too long" : "Der eingegebene Name ist zu lang", "The given web address is too long" : "Die eingegebene Adresse ist zu lang", "The given slogan is too long" : "Der eingegebene Slogan ist zu lang", "The given color is invalid" : "Die gewählte Farbe ist ungültig", - "There is no error, the file uploaded with success" : "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", + "The file was uploaded" : "Die Datei wurde hochgeladen", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE-Vorgabe erlaubt, die im HTML-Formular spezifiziert ist", - "The uploaded file was only partially uploaded" : "Die Datei konnte nur teilweise übertragen werden", + "The file was only partially uploaded" : "Die Datei konnte nur teilweise hochgeladen werden", "No file was uploaded" : "Es wurde keine Datei hochgeladen", "Missing a temporary folder" : "Kein temporärer Ordner vorhanden", - "Failed to write file to disk." : "Fehler beim Schreiben der Datei auf die Festplatte.", - "A PHP extension stopped the file upload." : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt.", + "Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden", + "A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt", "No file uploaded" : "Keine Datei hochgeladen", "Unsupported image type" : "Nicht unterstütztes Bild-Format", - "You are already using a custom theme" : "Sie benutzen bereits ein eigenes Thema", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Sie benutzen bereits ein benutzerdefiniertes Theme. Eine App für Themes würde dies überschreiben.", "Theming" : "Theming", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Theming ermöglicht es auf einfache Weise das Aussehen Ihrer Installation und Clients anzupassen. Die Änderungen wirken sich auf alle Benutzer aus.", "Name" : "Name", @@ -32,7 +33,11 @@ "Upload new login background" : "Neuen Anmelde-Hintergrund hochladen", "Remove background image" : "Entferne Hintergrundbild", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Installieren Sie die Imagemagick PHP-Erweiterung mit Unterstützung für SVG-Bilder, um automatisch Favoriten-Icons auf Basis des hochgeladenen Icons und der Farbe zu erstellen.", + "You are already using a custom theme" : "Sie benutzen bereits ein eigenes Thema", "reset to default" : "Auf Standard zurücksetzen", - "Log in image" : "Anmelde-Bild" + "There is no error, the file uploaded with success" : "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen.", + "The uploaded file was only partially uploaded" : "Die Datei konnte nur teilweise übertragen werden", + "Failed to write file to disk." : "Fehler beim Schreiben der Datei auf die Festplatte.", + "A PHP extension stopped the file upload." : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/el.js b/apps/theming/l10n/el.js index 7988fa2f4f79e..0934e6923d544 100644 --- a/apps/theming/l10n/el.js +++ b/apps/theming/l10n/el.js @@ -5,21 +5,20 @@ OC.L10N.register( "Saved" : "Αποθηκεύτηκαν", "Admin" : "Διαχειριστής", "a safe home for all your data" : "μια ασφαλής τοποθεσία για όλα σας τα δεδομένα", + "Name cannot be empty" : "Το όνομα δεν μπορεί να είναι κενό", "The given name is too long" : "Το όνομα που δόθηκε είναι πολύ μεγάλο", "The given web address is too long" : "Η διεύθυνση ιστοσελίδας που δόθηκε είναι πολύ μεγάλη.", "The given slogan is too long" : "Το ρητό που δόθηκε είναι πολύ μεγάλο", "The given color is invalid" : "Δόθηκε μη έγκυρο χρώμα", - "There is no error, the file uploaded with success" : "Δεν υπάρχει σφάλμα, το αρχείο μεταφορτώθηκε με επιτυχία", + "The file was uploaded" : "Το αρχείο μεταφορτώθηκε", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Το μεταφορτωμένο αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Το μεταφορτωμένο αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE που καθορίστηκε στην φόρμα HTML.", - "The uploaded file was only partially uploaded" : "Το μεταφορτωμένο αρχείο μεταφορτώθηκε εν μέρει", "No file was uploaded" : "Δεν μεταφορτώθηκε κάποιο αρχείο", "Missing a temporary folder" : "Λείπει κάποιος προσωρινός φάκελος", - "Failed to write file to disk." : "Αποτυχία εγγραφής αρχείου στο δίσκο.", - "A PHP extension stopped the file upload." : "Μία επέκταση PHP διέκοψε τη μεταφόρτωση του αρχείου.", + "Could not write file to disk" : "Αδυναμία εγγραφής αρχείου στον δίσκο", + "A PHP extension stopped the file upload" : "Ένα πρόσθετο PHP διέκοψε την μεταφόρτωση του αρχείου", "No file uploaded" : "Δεν έχει μεταφορτωθεί αρχείο", "Unsupported image type" : "Μη υποστηριζόμενος τύπος εικόνας", - "You are already using a custom theme" : "Χρησιμοποιείτε ήδη προσαρμοσμένο θέμα", "Theming" : "Προσαρμογή θέματος", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Η προσαρμογή θέματος καθιστά δυνατή την εύκολη προσαρμογή της εμφάνισης της εμφάνισης της εγκατάστασής σας καθώς και των υποστηριζόμενων πελατών. Αυτή θα είναι ορατή για όλους τους χρήστες.", "Name" : "Όνομα", @@ -34,7 +33,11 @@ OC.L10N.register( "Upload new login background" : "Μεταφόρτωση νέου παρασκηνίου εισόδου", "Remove background image" : "Αφαίρεση εικόνας παρασκηνίου", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Εγκαταστήστε την επέκταση PHP Imagemagick με υποστήριξη SVG εικόνων, για να γίνει αυτόματη δημιουργία favicon βασισμένο πάνω στο μεταφορτωμένο λογότυπο και χρώμα.", + "You are already using a custom theme" : "Χρησιμοποιείτε ήδη προσαρμοσμένο θέμα", "reset to default" : "επαναφορά στα προεπιλεγμένα", - "Log in image" : "Εικόνα εισόδου" + "There is no error, the file uploaded with success" : "Δεν υπάρχει σφάλμα, το αρχείο μεταφορτώθηκε με επιτυχία", + "The uploaded file was only partially uploaded" : "Το μεταφορτωμένο αρχείο μεταφορτώθηκε εν μέρει", + "Failed to write file to disk." : "Αποτυχία εγγραφής αρχείου στο δίσκο.", + "A PHP extension stopped the file upload." : "Μία επέκταση PHP διέκοψε τη μεταφόρτωση του αρχείου." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/el.json b/apps/theming/l10n/el.json index 306c3faed110a..18f5379e13d10 100644 --- a/apps/theming/l10n/el.json +++ b/apps/theming/l10n/el.json @@ -3,21 +3,20 @@ "Saved" : "Αποθηκεύτηκαν", "Admin" : "Διαχειριστής", "a safe home for all your data" : "μια ασφαλής τοποθεσία για όλα σας τα δεδομένα", + "Name cannot be empty" : "Το όνομα δεν μπορεί να είναι κενό", "The given name is too long" : "Το όνομα που δόθηκε είναι πολύ μεγάλο", "The given web address is too long" : "Η διεύθυνση ιστοσελίδας που δόθηκε είναι πολύ μεγάλη.", "The given slogan is too long" : "Το ρητό που δόθηκε είναι πολύ μεγάλο", "The given color is invalid" : "Δόθηκε μη έγκυρο χρώμα", - "There is no error, the file uploaded with success" : "Δεν υπάρχει σφάλμα, το αρχείο μεταφορτώθηκε με επιτυχία", + "The file was uploaded" : "Το αρχείο μεταφορτώθηκε", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Το μεταφορτωμένο αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Το μεταφορτωμένο αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE που καθορίστηκε στην φόρμα HTML.", - "The uploaded file was only partially uploaded" : "Το μεταφορτωμένο αρχείο μεταφορτώθηκε εν μέρει", "No file was uploaded" : "Δεν μεταφορτώθηκε κάποιο αρχείο", "Missing a temporary folder" : "Λείπει κάποιος προσωρινός φάκελος", - "Failed to write file to disk." : "Αποτυχία εγγραφής αρχείου στο δίσκο.", - "A PHP extension stopped the file upload." : "Μία επέκταση PHP διέκοψε τη μεταφόρτωση του αρχείου.", + "Could not write file to disk" : "Αδυναμία εγγραφής αρχείου στον δίσκο", + "A PHP extension stopped the file upload" : "Ένα πρόσθετο PHP διέκοψε την μεταφόρτωση του αρχείου", "No file uploaded" : "Δεν έχει μεταφορτωθεί αρχείο", "Unsupported image type" : "Μη υποστηριζόμενος τύπος εικόνας", - "You are already using a custom theme" : "Χρησιμοποιείτε ήδη προσαρμοσμένο θέμα", "Theming" : "Προσαρμογή θέματος", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Η προσαρμογή θέματος καθιστά δυνατή την εύκολη προσαρμογή της εμφάνισης της εμφάνισης της εγκατάστασής σας καθώς και των υποστηριζόμενων πελατών. Αυτή θα είναι ορατή για όλους τους χρήστες.", "Name" : "Όνομα", @@ -32,7 +31,11 @@ "Upload new login background" : "Μεταφόρτωση νέου παρασκηνίου εισόδου", "Remove background image" : "Αφαίρεση εικόνας παρασκηνίου", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Εγκαταστήστε την επέκταση PHP Imagemagick με υποστήριξη SVG εικόνων, για να γίνει αυτόματη δημιουργία favicon βασισμένο πάνω στο μεταφορτωμένο λογότυπο και χρώμα.", + "You are already using a custom theme" : "Χρησιμοποιείτε ήδη προσαρμοσμένο θέμα", "reset to default" : "επαναφορά στα προεπιλεγμένα", - "Log in image" : "Εικόνα εισόδου" + "There is no error, the file uploaded with success" : "Δεν υπάρχει σφάλμα, το αρχείο μεταφορτώθηκε με επιτυχία", + "The uploaded file was only partially uploaded" : "Το μεταφορτωμένο αρχείο μεταφορτώθηκε εν μέρει", + "Failed to write file to disk." : "Αποτυχία εγγραφής αρχείου στο δίσκο.", + "A PHP extension stopped the file upload." : "Μία επέκταση PHP διέκοψε τη μεταφόρτωση του αρχείου." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/en_GB.js b/apps/theming/l10n/en_GB.js index a8e2fcf6414a5..211eb6dccc18e 100644 --- a/apps/theming/l10n/en_GB.js +++ b/apps/theming/l10n/en_GB.js @@ -5,21 +5,21 @@ OC.L10N.register( "Saved" : "Saved", "Admin" : "Admin", "a safe home for all your data" : "a safe home for all your data", + "Name cannot be empty" : "Name cannot be empty", "The given name is too long" : "The given name is too long", "The given web address is too long" : "The given web address is too long", "The given slogan is too long" : "The given slogan is too long", "The given color is invalid" : "The given colour is invalid", - "There is no error, the file uploaded with success" : "There is no error, the file uploaded with success", + "The file was uploaded" : "The file was uploaded", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "The uploaded file exceeds the upload_max_filesize directive in php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form", - "The uploaded file was only partially uploaded" : "The uploaded file was only partially uploaded", + "The file was only partially uploaded" : "The file was only partially uploaded", "No file was uploaded" : "No file was uploaded", "Missing a temporary folder" : "Missing a temporary folder", - "Failed to write file to disk." : "Failed to write file to disk.", - "A PHP extension stopped the file upload." : "A PHP extension stopped the file upload.", + "Could not write file to disk" : "Could not write file to disk", + "A PHP extension stopped the file upload" : "A PHP extension stopped the file upload", "No file uploaded" : "No file uploaded", "Unsupported image type" : "Unsupported image type", - "You are already using a custom theme" : "You are already using a custom theme", "Theming" : "Theming", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Theming makes it possible to easily customise the look and feel of your instance and supported clients. This will be visible for all users.", "Name" : "Name", @@ -34,7 +34,11 @@ OC.L10N.register( "Upload new login background" : "Upload new login background", "Remove background image" : "Remove background image", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color.", + "You are already using a custom theme" : "You are already using a custom theme", "reset to default" : "reset to default", - "Log in image" : "Log in image" + "There is no error, the file uploaded with success" : "There is no error, the file uploaded with success", + "The uploaded file was only partially uploaded" : "The uploaded file was only partially uploaded", + "Failed to write file to disk." : "Failed to write file to disk.", + "A PHP extension stopped the file upload." : "A PHP extension stopped the file upload." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/en_GB.json b/apps/theming/l10n/en_GB.json index a18111d87f090..21c26cb1c2f41 100644 --- a/apps/theming/l10n/en_GB.json +++ b/apps/theming/l10n/en_GB.json @@ -3,21 +3,21 @@ "Saved" : "Saved", "Admin" : "Admin", "a safe home for all your data" : "a safe home for all your data", + "Name cannot be empty" : "Name cannot be empty", "The given name is too long" : "The given name is too long", "The given web address is too long" : "The given web address is too long", "The given slogan is too long" : "The given slogan is too long", "The given color is invalid" : "The given colour is invalid", - "There is no error, the file uploaded with success" : "There is no error, the file uploaded with success", + "The file was uploaded" : "The file was uploaded", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "The uploaded file exceeds the upload_max_filesize directive in php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form", - "The uploaded file was only partially uploaded" : "The uploaded file was only partially uploaded", + "The file was only partially uploaded" : "The file was only partially uploaded", "No file was uploaded" : "No file was uploaded", "Missing a temporary folder" : "Missing a temporary folder", - "Failed to write file to disk." : "Failed to write file to disk.", - "A PHP extension stopped the file upload." : "A PHP extension stopped the file upload.", + "Could not write file to disk" : "Could not write file to disk", + "A PHP extension stopped the file upload" : "A PHP extension stopped the file upload", "No file uploaded" : "No file uploaded", "Unsupported image type" : "Unsupported image type", - "You are already using a custom theme" : "You are already using a custom theme", "Theming" : "Theming", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Theming makes it possible to easily customise the look and feel of your instance and supported clients. This will be visible for all users.", "Name" : "Name", @@ -32,7 +32,11 @@ "Upload new login background" : "Upload new login background", "Remove background image" : "Remove background image", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color.", + "You are already using a custom theme" : "You are already using a custom theme", "reset to default" : "reset to default", - "Log in image" : "Log in image" + "There is no error, the file uploaded with success" : "There is no error, the file uploaded with success", + "The uploaded file was only partially uploaded" : "The uploaded file was only partially uploaded", + "Failed to write file to disk." : "Failed to write file to disk.", + "A PHP extension stopped the file upload." : "A PHP extension stopped the file upload." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es.js b/apps/theming/l10n/es.js index 91eda3e021661..325cee972cad1 100644 --- a/apps/theming/l10n/es.js +++ b/apps/theming/l10n/es.js @@ -5,21 +5,22 @@ OC.L10N.register( "Saved" : "Guardado", "Admin" : "Administración", "a safe home for all your data" : "un hogar seguro para todos tus datos", + "Name cannot be empty" : "El nombre no puede estar vacío", "The given name is too long" : "El nombre provisto es muy largo", "The given web address is too long" : "La dirección provista es muy larga", "The given slogan is too long" : "El eslogan provisto es muy largo", "The given color is invalid" : "El color provisto es inválido", - "There is no error, the file uploaded with success" : "No ha habido errores, el archivo ha subido satisfactoriamente", + "The file was uploaded" : "Se ha subido el archivo", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo para subir excede la directiva upload_max_filesize en php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo para subir excede la directiva MAX_FILE_SIZE que se especifió en el formulario HTML", - "The uploaded file was only partially uploaded" : "El archivo para subir ha sido solo parcialmente subido", + "The file was only partially uploaded" : "El archivo se ha subido parcialmente", "No file was uploaded" : "No se ha subido ningún archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Fallo al escribir el archivo al disco.", - "A PHP extension stopped the file upload." : "Una extensión de PHP ha detenido la subida del archivo.", + "Could not write file to disk" : "No se puede escribir el archivo en el disco", + "A PHP extension stopped the file upload" : "Una extensión PHP ha cancelado la subida de archivos", "No file uploaded" : "No se ha subido archivo", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Usted ya usa un tema personalizado", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Ya estás usando un tema personalizado. La configuración de la aplicación de temas puede ser sobrescrita por el.", "Theming" : "Tema", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Los temas hacen posible personalizar fácilmente la apariencia de tu instancia y los clientes soportados. Esto será visible para todos los usuarios.", "Name" : "Nombre", @@ -34,7 +35,11 @@ OC.L10N.register( "Upload new login background" : "Subir una nueva imagen de fondo", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión de PHP Imagemagick con soporte para imágenes SVG para generar automáticamente faviconos basados en el logo y color subidos.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a configuración inicial", - "Log in image" : "Fondo de Pantalla" + "There is no error, the file uploaded with success" : "No ha habido errores, el archivo ha subido satisfactoriamente", + "The uploaded file was only partially uploaded" : "El archivo para subir ha sido solo parcialmente subido", + "Failed to write file to disk." : "Fallo al escribir el archivo al disco.", + "A PHP extension stopped the file upload." : "Una extensión de PHP ha detenido la subida del archivo." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es.json b/apps/theming/l10n/es.json index 1f6a55eb16f20..e091d8d1b56cd 100644 --- a/apps/theming/l10n/es.json +++ b/apps/theming/l10n/es.json @@ -3,21 +3,22 @@ "Saved" : "Guardado", "Admin" : "Administración", "a safe home for all your data" : "un hogar seguro para todos tus datos", + "Name cannot be empty" : "El nombre no puede estar vacío", "The given name is too long" : "El nombre provisto es muy largo", "The given web address is too long" : "La dirección provista es muy larga", "The given slogan is too long" : "El eslogan provisto es muy largo", "The given color is invalid" : "El color provisto es inválido", - "There is no error, the file uploaded with success" : "No ha habido errores, el archivo ha subido satisfactoriamente", + "The file was uploaded" : "Se ha subido el archivo", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo para subir excede la directiva upload_max_filesize en php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo para subir excede la directiva MAX_FILE_SIZE que se especifió en el formulario HTML", - "The uploaded file was only partially uploaded" : "El archivo para subir ha sido solo parcialmente subido", + "The file was only partially uploaded" : "El archivo se ha subido parcialmente", "No file was uploaded" : "No se ha subido ningún archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Fallo al escribir el archivo al disco.", - "A PHP extension stopped the file upload." : "Una extensión de PHP ha detenido la subida del archivo.", + "Could not write file to disk" : "No se puede escribir el archivo en el disco", + "A PHP extension stopped the file upload" : "Una extensión PHP ha cancelado la subida de archivos", "No file uploaded" : "No se ha subido archivo", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Usted ya usa un tema personalizado", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Ya estás usando un tema personalizado. La configuración de la aplicación de temas puede ser sobrescrita por el.", "Theming" : "Tema", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Los temas hacen posible personalizar fácilmente la apariencia de tu instancia y los clientes soportados. Esto será visible para todos los usuarios.", "Name" : "Nombre", @@ -32,7 +33,11 @@ "Upload new login background" : "Subir una nueva imagen de fondo", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión de PHP Imagemagick con soporte para imágenes SVG para generar automáticamente faviconos basados en el logo y color subidos.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a configuración inicial", - "Log in image" : "Fondo de Pantalla" + "There is no error, the file uploaded with success" : "No ha habido errores, el archivo ha subido satisfactoriamente", + "The uploaded file was only partially uploaded" : "El archivo para subir ha sido solo parcialmente subido", + "Failed to write file to disk." : "Fallo al escribir el archivo al disco.", + "A PHP extension stopped the file upload." : "Una extensión de PHP ha detenido la subida del archivo." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es_419.js b/apps/theming/l10n/es_419.js index fba2c6263c090..a5c28e1ee77ba 100644 --- a/apps/theming/l10n/es_419.js +++ b/apps/theming/l10n/es_419.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es_419.json b/apps/theming/l10n/es_419.json index d0be021859a9c..6099c9a9c1e85 100644 --- a/apps/theming/l10n/es_419.json +++ b/apps/theming/l10n/es_419.json @@ -7,17 +7,12 @@ "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -32,7 +27,11 @@ "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es_AR.js b/apps/theming/l10n/es_AR.js index 5e92199f17769..45ad11b077e1d 100644 --- a/apps/theming/l10n/es_AR.js +++ b/apps/theming/l10n/es_AR.js @@ -11,7 +11,6 @@ OC.L10N.register( "The given color is invalid" : "El color dado es inválido", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Usted ya se encuentra usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve su instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -25,7 +24,7 @@ OC.L10N.register( "Login image" : "Imágen de inicio de sesión", "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", - "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "You are already using a custom theme" : "Usted ya se encuentra usando un tema personalizado", + "reset to default" : "restaurar a predeterminado" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es_AR.json b/apps/theming/l10n/es_AR.json index 8ea9de1e3e8e8..fca7aff2c2e25 100644 --- a/apps/theming/l10n/es_AR.json +++ b/apps/theming/l10n/es_AR.json @@ -9,7 +9,6 @@ "The given color is invalid" : "El color dado es inválido", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Usted ya se encuentra usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve su instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -23,7 +22,7 @@ "Login image" : "Imágen de inicio de sesión", "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", - "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "You are already using a custom theme" : "Usted ya se encuentra usando un tema personalizado", + "reset to default" : "restaurar a predeterminado" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es_CL.js b/apps/theming/l10n/es_CL.js index fba2c6263c090..a5c28e1ee77ba 100644 --- a/apps/theming/l10n/es_CL.js +++ b/apps/theming/l10n/es_CL.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es_CL.json b/apps/theming/l10n/es_CL.json index d0be021859a9c..6099c9a9c1e85 100644 --- a/apps/theming/l10n/es_CL.json +++ b/apps/theming/l10n/es_CL.json @@ -7,17 +7,12 @@ "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -32,7 +27,11 @@ "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es_CO.js b/apps/theming/l10n/es_CO.js index fba2c6263c090..a5c28e1ee77ba 100644 --- a/apps/theming/l10n/es_CO.js +++ b/apps/theming/l10n/es_CO.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es_CO.json b/apps/theming/l10n/es_CO.json index d0be021859a9c..6099c9a9c1e85 100644 --- a/apps/theming/l10n/es_CO.json +++ b/apps/theming/l10n/es_CO.json @@ -7,17 +7,12 @@ "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -32,7 +27,11 @@ "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es_CR.js b/apps/theming/l10n/es_CR.js index fba2c6263c090..a5c28e1ee77ba 100644 --- a/apps/theming/l10n/es_CR.js +++ b/apps/theming/l10n/es_CR.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es_CR.json b/apps/theming/l10n/es_CR.json index d0be021859a9c..6099c9a9c1e85 100644 --- a/apps/theming/l10n/es_CR.json +++ b/apps/theming/l10n/es_CR.json @@ -7,17 +7,12 @@ "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -32,7 +27,11 @@ "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es_DO.js b/apps/theming/l10n/es_DO.js index fba2c6263c090..a5c28e1ee77ba 100644 --- a/apps/theming/l10n/es_DO.js +++ b/apps/theming/l10n/es_DO.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es_DO.json b/apps/theming/l10n/es_DO.json index d0be021859a9c..6099c9a9c1e85 100644 --- a/apps/theming/l10n/es_DO.json +++ b/apps/theming/l10n/es_DO.json @@ -7,17 +7,12 @@ "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -32,7 +27,11 @@ "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es_EC.js b/apps/theming/l10n/es_EC.js index fba2c6263c090..a5c28e1ee77ba 100644 --- a/apps/theming/l10n/es_EC.js +++ b/apps/theming/l10n/es_EC.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es_EC.json b/apps/theming/l10n/es_EC.json index d0be021859a9c..6099c9a9c1e85 100644 --- a/apps/theming/l10n/es_EC.json +++ b/apps/theming/l10n/es_EC.json @@ -7,17 +7,12 @@ "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -32,7 +27,11 @@ "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es_GT.js b/apps/theming/l10n/es_GT.js index fba2c6263c090..a5c28e1ee77ba 100644 --- a/apps/theming/l10n/es_GT.js +++ b/apps/theming/l10n/es_GT.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es_GT.json b/apps/theming/l10n/es_GT.json index d0be021859a9c..6099c9a9c1e85 100644 --- a/apps/theming/l10n/es_GT.json +++ b/apps/theming/l10n/es_GT.json @@ -7,17 +7,12 @@ "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -32,7 +27,11 @@ "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es_HN.js b/apps/theming/l10n/es_HN.js index fba2c6263c090..a5c28e1ee77ba 100644 --- a/apps/theming/l10n/es_HN.js +++ b/apps/theming/l10n/es_HN.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es_HN.json b/apps/theming/l10n/es_HN.json index d0be021859a9c..6099c9a9c1e85 100644 --- a/apps/theming/l10n/es_HN.json +++ b/apps/theming/l10n/es_HN.json @@ -7,17 +7,12 @@ "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -32,7 +27,11 @@ "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es_MX.js b/apps/theming/l10n/es_MX.js index fba2c6263c090..fe5f2f28f46f5 100644 --- a/apps/theming/l10n/es_MX.js +++ b/apps/theming/l10n/es_MX.js @@ -5,21 +5,21 @@ OC.L10N.register( "Saved" : "Guardado", "Admin" : "Administración", "a safe home for all your data" : "un lugar seguro para todos tus datos", + "Name cannot be empty" : "El nombre no puede estar en blanco", "The given name is too long" : "El nombre dado es demasiado largo", "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The file was uploaded" : "El archivo fue cargado", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", + "Could not write file to disk" : "No fue posible escribir a disco", + "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -34,7 +34,11 @@ OC.L10N.register( "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es_MX.json b/apps/theming/l10n/es_MX.json index d0be021859a9c..2b39ddc99ec55 100644 --- a/apps/theming/l10n/es_MX.json +++ b/apps/theming/l10n/es_MX.json @@ -3,21 +3,21 @@ "Saved" : "Guardado", "Admin" : "Administración", "a safe home for all your data" : "un lugar seguro para todos tus datos", + "Name cannot be empty" : "El nombre no puede estar en blanco", "The given name is too long" : "El nombre dado es demasiado largo", "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The file was uploaded" : "El archivo fue cargado", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", + "Could not write file to disk" : "No fue posible escribir a disco", + "A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -32,7 +32,11 @@ "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es_NI.js b/apps/theming/l10n/es_NI.js index fba2c6263c090..a5c28e1ee77ba 100644 --- a/apps/theming/l10n/es_NI.js +++ b/apps/theming/l10n/es_NI.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es_NI.json b/apps/theming/l10n/es_NI.json index d0be021859a9c..6099c9a9c1e85 100644 --- a/apps/theming/l10n/es_NI.json +++ b/apps/theming/l10n/es_NI.json @@ -7,17 +7,12 @@ "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -32,7 +27,11 @@ "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es_PA.js b/apps/theming/l10n/es_PA.js index fba2c6263c090..a5c28e1ee77ba 100644 --- a/apps/theming/l10n/es_PA.js +++ b/apps/theming/l10n/es_PA.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es_PA.json b/apps/theming/l10n/es_PA.json index d0be021859a9c..6099c9a9c1e85 100644 --- a/apps/theming/l10n/es_PA.json +++ b/apps/theming/l10n/es_PA.json @@ -7,17 +7,12 @@ "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -32,7 +27,11 @@ "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es_PE.js b/apps/theming/l10n/es_PE.js index fba2c6263c090..a5c28e1ee77ba 100644 --- a/apps/theming/l10n/es_PE.js +++ b/apps/theming/l10n/es_PE.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es_PE.json b/apps/theming/l10n/es_PE.json index d0be021859a9c..6099c9a9c1e85 100644 --- a/apps/theming/l10n/es_PE.json +++ b/apps/theming/l10n/es_PE.json @@ -7,17 +7,12 @@ "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -32,7 +27,11 @@ "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es_PR.js b/apps/theming/l10n/es_PR.js index fba2c6263c090..a5c28e1ee77ba 100644 --- a/apps/theming/l10n/es_PR.js +++ b/apps/theming/l10n/es_PR.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es_PR.json b/apps/theming/l10n/es_PR.json index d0be021859a9c..6099c9a9c1e85 100644 --- a/apps/theming/l10n/es_PR.json +++ b/apps/theming/l10n/es_PR.json @@ -7,17 +7,12 @@ "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -32,7 +27,11 @@ "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es_PY.js b/apps/theming/l10n/es_PY.js index fba2c6263c090..a5c28e1ee77ba 100644 --- a/apps/theming/l10n/es_PY.js +++ b/apps/theming/l10n/es_PY.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es_PY.json b/apps/theming/l10n/es_PY.json index d0be021859a9c..6099c9a9c1e85 100644 --- a/apps/theming/l10n/es_PY.json +++ b/apps/theming/l10n/es_PY.json @@ -7,17 +7,12 @@ "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -32,7 +27,11 @@ "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es_SV.js b/apps/theming/l10n/es_SV.js index fba2c6263c090..a5c28e1ee77ba 100644 --- a/apps/theming/l10n/es_SV.js +++ b/apps/theming/l10n/es_SV.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es_SV.json b/apps/theming/l10n/es_SV.json index d0be021859a9c..6099c9a9c1e85 100644 --- a/apps/theming/l10n/es_SV.json +++ b/apps/theming/l10n/es_SV.json @@ -7,17 +7,12 @@ "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -32,7 +27,11 @@ "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/es_UY.js b/apps/theming/l10n/es_UY.js index fba2c6263c090..a5c28e1ee77ba 100644 --- a/apps/theming/l10n/es_UY.js +++ b/apps/theming/l10n/es_UY.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/es_UY.json b/apps/theming/l10n/es_UY.json index d0be021859a9c..6099c9a9c1e85 100644 --- a/apps/theming/l10n/es_UY.json +++ b/apps/theming/l10n/es_UY.json @@ -7,17 +7,12 @@ "The given web address is too long" : "La dirección web dada es demasiado larga", "The given slogan is too long" : "El lema dado es demasiado largo", "The given color is invalid" : "El color dado es inválido", - "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML", - "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", "No file was uploaded" : "No se cargó el archivo", "Missing a temporary folder" : "Falta una carpeta temporal", - "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", - "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. ", "No file uploaded" : "No hay archivos cargados", "Unsupported image type" : "Tipo de imagen no soportado", - "You are already using a custom theme" : "Ya estás usando un tema personalizado", "Theming" : "Tematizar", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "El tematizar hace posible personalizar facilmente la manera en que se ve tu instancia y clientes soportados. Esto será visible para todos los usuarios. ", "Name" : "Nombre", @@ -32,7 +27,11 @@ "Upload new login background" : "Cargar nueva imagen de fondo para inicio de sesión", "Remove background image" : "Eliminar imagen de fondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instala la extensión Imagemagick de PHP con soporte a imagenes SVG para generar los favicons en automático con base en el logotipo cargado y el color.", + "You are already using a custom theme" : "Ya estás usando un tema personalizado", "reset to default" : "restaurar a predeterminado", - "Log in image" : "Imagen de inicio de sesión" + "There is no error, the file uploaded with success" : "No hay errores, el archivo se cargó exitosamente", + "The uploaded file was only partially uploaded" : "La carga del archivo solo se realizó parcialmente", + "Failed to write file to disk." : "Se presentó una falla al escribir el archivo en el disco. ", + "A PHP extension stopped the file upload." : "Una extensión de PHP detuvo la carga del archivo. " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/et_EE.js b/apps/theming/l10n/et_EE.js index bd2d3a0c4f3a4..4b7474b667534 100644 --- a/apps/theming/l10n/et_EE.js +++ b/apps/theming/l10n/et_EE.js @@ -9,9 +9,12 @@ OC.L10N.register( "The given web address is too long" : "Antud veebiaadress on liiga pikk", "The given slogan is too long" : "Antud tunnuslause on liiga pikk", "The given color is invalid" : "Antud värv ei sobi", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Üleslaetud fail on suurem, kui php.ini failis määratud upload_max_filesize", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Üleslaetud fail on suurem, kui MAX_FILE_SIZE atribuut, mis seadistati HTML vormis", + "No file was uploaded" : "Ühtegi faili ei latud üles", + "Missing a temporary folder" : "Ajutine kausta on puudu", "No file uploaded" : "Faili ei laetud üles", "Unsupported image type" : "Pildi tüüp pole toetatud", - "You are already using a custom theme" : "Kohandatud teema on juba kasutusel", "Theming" : "Teemad", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Teemad võimaldavad lihtsalt serveriinstantsi ja toetatud klientide välimus muuta. See on näha kõigile kasutajatele.", "Name" : "Nimi", @@ -22,10 +25,15 @@ OC.L10N.register( "Color" : "Värv", "Logo" : "Logo", "Upload new logo" : "Lae üles uus logo", - "Login image" : "Sisselogimise taustapilt", - "Upload new login background" : "Lae üles uus sisselogimise taustapilt", + "Login image" : "Avalehe taust", + "Upload new login background" : "Lae üles uus avalehe taustapilt", "Remove background image" : "Eemalda taustapilt", + "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Paigalda Imagemagick PHP laiendus SVG piltide toega, et üleslaetud logo ja värvi põhjal automaatselt faviconid genereerida. ", + "You are already using a custom theme" : "Kohandatud teema on juba kasutusel", "reset to default" : "taasta vaikeseaded", - "Log in image" : "Sisselogimise taustapilt" + "There is no error, the file uploaded with success" : "Vigu pole, fail laetu edukalt üles", + "The uploaded file was only partially uploaded" : "Üleslatud fail laeti üles ainult osaliselt", + "Failed to write file to disk." : "Faili kettale kirjutamine ebaõnnestus.", + "A PHP extension stopped the file upload." : "PHP laiendus seiskas faili üleslaadimise." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/et_EE.json b/apps/theming/l10n/et_EE.json index c51fa6a54e105..f8d45cd2e7b01 100644 --- a/apps/theming/l10n/et_EE.json +++ b/apps/theming/l10n/et_EE.json @@ -7,9 +7,12 @@ "The given web address is too long" : "Antud veebiaadress on liiga pikk", "The given slogan is too long" : "Antud tunnuslause on liiga pikk", "The given color is invalid" : "Antud värv ei sobi", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Üleslaetud fail on suurem, kui php.ini failis määratud upload_max_filesize", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Üleslaetud fail on suurem, kui MAX_FILE_SIZE atribuut, mis seadistati HTML vormis", + "No file was uploaded" : "Ühtegi faili ei latud üles", + "Missing a temporary folder" : "Ajutine kausta on puudu", "No file uploaded" : "Faili ei laetud üles", "Unsupported image type" : "Pildi tüüp pole toetatud", - "You are already using a custom theme" : "Kohandatud teema on juba kasutusel", "Theming" : "Teemad", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Teemad võimaldavad lihtsalt serveriinstantsi ja toetatud klientide välimus muuta. See on näha kõigile kasutajatele.", "Name" : "Nimi", @@ -20,10 +23,15 @@ "Color" : "Värv", "Logo" : "Logo", "Upload new logo" : "Lae üles uus logo", - "Login image" : "Sisselogimise taustapilt", - "Upload new login background" : "Lae üles uus sisselogimise taustapilt", + "Login image" : "Avalehe taust", + "Upload new login background" : "Lae üles uus avalehe taustapilt", "Remove background image" : "Eemalda taustapilt", + "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Paigalda Imagemagick PHP laiendus SVG piltide toega, et üleslaetud logo ja värvi põhjal automaatselt faviconid genereerida. ", + "You are already using a custom theme" : "Kohandatud teema on juba kasutusel", "reset to default" : "taasta vaikeseaded", - "Log in image" : "Sisselogimise taustapilt" + "There is no error, the file uploaded with success" : "Vigu pole, fail laetu edukalt üles", + "The uploaded file was only partially uploaded" : "Üleslatud fail laeti üles ainult osaliselt", + "Failed to write file to disk." : "Faili kettale kirjutamine ebaõnnestus.", + "A PHP extension stopped the file upload." : "PHP laiendus seiskas faili üleslaadimise." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/fi.js b/apps/theming/l10n/fi.js index 882231db1f897..942b2f781ae53 100644 --- a/apps/theming/l10n/fi.js +++ b/apps/theming/l10n/fi.js @@ -5,17 +5,20 @@ OC.L10N.register( "Saved" : "Tallennettu", "Admin" : "Ylläpito", "a safe home for all your data" : "turvallinen koti kaikille tiedostoillesi", + "Name cannot be empty" : "Nimi ei voi olla tyhjä", "The given name is too long" : "Nimi on liian pitkä", "The given web address is too long" : "Verkko-osoite on liian pitkä", "The given slogan is too long" : "Slogani on liian pitkä", "The given color is invalid" : "Väri on virheellinen", + "The file was uploaded" : "Tiedosto lähetettiin", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Lähetetty tiedosto ylittää php.ini-tiedoston upload_max_filesize-tietueen arvon", + "The file was only partially uploaded" : "Tiedosto lähetettiin vain osittain", "No file was uploaded" : "Tiedostoa ei lähetetty", "Missing a temporary folder" : "Väliaikaiskansio puuttuu", - "Failed to write file to disk." : "Levylle kirjoittaminen epäonnistui.", - "A PHP extension stopped the file upload." : "PHP-laajennus pysäytti tiedoston lähetyksen.", + "Could not write file to disk" : "Tiedostoa ei voitu kirjoittaa levylle", + "A PHP extension stopped the file upload" : "PHP-laajennus pysäytti tiedoston lähettämisen", "No file uploaded" : "Ei tiedostoa lähetetty", "Unsupported image type" : "Ei-tuettu kuvatiedostomuoto", - "You are already using a custom theme" : "Käytät jo kustomoitua ulkoasua", "Theming" : "Teema", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Teeman avulla voit helposti kustomoida web-käyttöliittymän ja tuettujen sovelluksien ulkonäköä ja tuntumaa. Teema näkyy kaikille käyttäjille.", "Name" : "Nimi", @@ -29,7 +32,11 @@ OC.L10N.register( "Login image" : "Kirjautumissivun kuva", "Upload new login background" : "Lähetä uusi kirjautumissivun taustakuva", "Remove background image" : "Poista taustakuva", + "You are already using a custom theme" : "Käytät jo kustomoitua ulkoasua", "reset to default" : "palauta oletukseksi", - "Log in image" : "Kirjautumissivun kuva" + "There is no error, the file uploaded with success" : "Ei virhettä, tiedosto lähetettiin onnistuneesti", + "The uploaded file was only partially uploaded" : "Lähetetty tiedosto lähetettiin vain osittain", + "Failed to write file to disk." : "Levylle kirjoittaminen epäonnistui.", + "A PHP extension stopped the file upload." : "PHP-laajennus pysäytti tiedoston lähetyksen." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/fi.json b/apps/theming/l10n/fi.json index 3ac21388f16cc..53fea953b9fd6 100644 --- a/apps/theming/l10n/fi.json +++ b/apps/theming/l10n/fi.json @@ -3,17 +3,20 @@ "Saved" : "Tallennettu", "Admin" : "Ylläpito", "a safe home for all your data" : "turvallinen koti kaikille tiedostoillesi", + "Name cannot be empty" : "Nimi ei voi olla tyhjä", "The given name is too long" : "Nimi on liian pitkä", "The given web address is too long" : "Verkko-osoite on liian pitkä", "The given slogan is too long" : "Slogani on liian pitkä", "The given color is invalid" : "Väri on virheellinen", + "The file was uploaded" : "Tiedosto lähetettiin", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Lähetetty tiedosto ylittää php.ini-tiedoston upload_max_filesize-tietueen arvon", + "The file was only partially uploaded" : "Tiedosto lähetettiin vain osittain", "No file was uploaded" : "Tiedostoa ei lähetetty", "Missing a temporary folder" : "Väliaikaiskansio puuttuu", - "Failed to write file to disk." : "Levylle kirjoittaminen epäonnistui.", - "A PHP extension stopped the file upload." : "PHP-laajennus pysäytti tiedoston lähetyksen.", + "Could not write file to disk" : "Tiedostoa ei voitu kirjoittaa levylle", + "A PHP extension stopped the file upload" : "PHP-laajennus pysäytti tiedoston lähettämisen", "No file uploaded" : "Ei tiedostoa lähetetty", "Unsupported image type" : "Ei-tuettu kuvatiedostomuoto", - "You are already using a custom theme" : "Käytät jo kustomoitua ulkoasua", "Theming" : "Teema", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Teeman avulla voit helposti kustomoida web-käyttöliittymän ja tuettujen sovelluksien ulkonäköä ja tuntumaa. Teema näkyy kaikille käyttäjille.", "Name" : "Nimi", @@ -27,7 +30,11 @@ "Login image" : "Kirjautumissivun kuva", "Upload new login background" : "Lähetä uusi kirjautumissivun taustakuva", "Remove background image" : "Poista taustakuva", + "You are already using a custom theme" : "Käytät jo kustomoitua ulkoasua", "reset to default" : "palauta oletukseksi", - "Log in image" : "Kirjautumissivun kuva" + "There is no error, the file uploaded with success" : "Ei virhettä, tiedosto lähetettiin onnistuneesti", + "The uploaded file was only partially uploaded" : "Lähetetty tiedosto lähetettiin vain osittain", + "Failed to write file to disk." : "Levylle kirjoittaminen epäonnistui.", + "A PHP extension stopped the file upload." : "PHP-laajennus pysäytti tiedoston lähetyksen." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/fr.js b/apps/theming/l10n/fr.js index aa3301bb8a05d..b59b700d0f2d0 100644 --- a/apps/theming/l10n/fr.js +++ b/apps/theming/l10n/fr.js @@ -5,21 +5,22 @@ OC.L10N.register( "Saved" : "Enregistré", "Admin" : "Administration", "a safe home for all your data" : "un endroit sûr pour toutes vos données", + "Name cannot be empty" : "Le nom ne peut pas être vide", "The given name is too long" : "Le nom donné est trop long", "The given web address is too long" : "L'adresse web donnée est trop longue", "The given slogan is too long" : "Le slogan donné est trop long", "The given color is invalid" : "La couleur donnée est invalide", - "There is no error, the file uploaded with success" : "Aucune erreur, le fichier a été téléversé avec succès", + "The file was uploaded" : "Le fichier a été téléversé", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Le fichier téléversé dépasse la valeur upload_max_filesize située dans le fichier php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Le fichier téléversé dépasse la valeur MAX_FILE_SIZE spécifiée dans le formulaire HTML", - "The uploaded file was only partially uploaded" : "Le fichier n'a été que partiellement téléversé", + "The file was only partially uploaded" : "Le fichier n'a été que partiellement envoyé", "No file was uploaded" : "Aucun fichier téléversé", "Missing a temporary folder" : "Absence de dossier temporaire", - "Failed to write file to disk." : "Erreur d'écriture du fichier sur le disque.", - "A PHP extension stopped the file upload." : "Une extension PHP a arrêté le téléversement du fichier.", + "Could not write file to disk" : "Impossible d'écrire le fichier sur le disque", + "A PHP extension stopped the file upload" : "Une extension PHP a arrêté le téléversement du fichier", "No file uploaded" : "Aucun fichier téléversé", "Unsupported image type" : "Ce type d'image n'est pas pris en charge", - "You are already using a custom theme" : "Vous utilisez déjà un thème personnalisé", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Vous utilisez déjà un thème personnalisé. Les paramètres de l'application Theming peuvent être remplacés par ceux-ci.", "Theming" : "Personnaliser l'apparence", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Cette extension permet de personnaliser facilement l'apparence de votre instance et des clients supportés. La personnalisation de l'apparence sera visible par tous les utilisateurs.", "Name" : "Nom", @@ -34,7 +35,11 @@ OC.L10N.register( "Upload new login background" : "Téléverser un nouvel arrière-plan de connexion", "Remove background image" : "Supprimer l'image en arrière-plan", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Installez l'extension PHP Imagemagick avec le support pour les images SVG afin de générer automatiquement les favicons sur base du logo téléversé et de la couleur.", + "You are already using a custom theme" : "Vous utilisez déjà un thème personnalisé", "reset to default" : "Restaurer les valeurs par défaut", - "Log in image" : "Image de connexion" + "There is no error, the file uploaded with success" : "Aucune erreur, le fichier a été téléversé avec succès", + "The uploaded file was only partially uploaded" : "Le fichier n'a été que partiellement téléversé", + "Failed to write file to disk." : "Erreur d'écriture du fichier sur le disque.", + "A PHP extension stopped the file upload." : "Une extension PHP a arrêté le téléversement du fichier." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/theming/l10n/fr.json b/apps/theming/l10n/fr.json index eef2dfdc1c875..965a3aa47ee28 100644 --- a/apps/theming/l10n/fr.json +++ b/apps/theming/l10n/fr.json @@ -3,21 +3,22 @@ "Saved" : "Enregistré", "Admin" : "Administration", "a safe home for all your data" : "un endroit sûr pour toutes vos données", + "Name cannot be empty" : "Le nom ne peut pas être vide", "The given name is too long" : "Le nom donné est trop long", "The given web address is too long" : "L'adresse web donnée est trop longue", "The given slogan is too long" : "Le slogan donné est trop long", "The given color is invalid" : "La couleur donnée est invalide", - "There is no error, the file uploaded with success" : "Aucune erreur, le fichier a été téléversé avec succès", + "The file was uploaded" : "Le fichier a été téléversé", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Le fichier téléversé dépasse la valeur upload_max_filesize située dans le fichier php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Le fichier téléversé dépasse la valeur MAX_FILE_SIZE spécifiée dans le formulaire HTML", - "The uploaded file was only partially uploaded" : "Le fichier n'a été que partiellement téléversé", + "The file was only partially uploaded" : "Le fichier n'a été que partiellement envoyé", "No file was uploaded" : "Aucun fichier téléversé", "Missing a temporary folder" : "Absence de dossier temporaire", - "Failed to write file to disk." : "Erreur d'écriture du fichier sur le disque.", - "A PHP extension stopped the file upload." : "Une extension PHP a arrêté le téléversement du fichier.", + "Could not write file to disk" : "Impossible d'écrire le fichier sur le disque", + "A PHP extension stopped the file upload" : "Une extension PHP a arrêté le téléversement du fichier", "No file uploaded" : "Aucun fichier téléversé", "Unsupported image type" : "Ce type d'image n'est pas pris en charge", - "You are already using a custom theme" : "Vous utilisez déjà un thème personnalisé", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Vous utilisez déjà un thème personnalisé. Les paramètres de l'application Theming peuvent être remplacés par ceux-ci.", "Theming" : "Personnaliser l'apparence", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Cette extension permet de personnaliser facilement l'apparence de votre instance et des clients supportés. La personnalisation de l'apparence sera visible par tous les utilisateurs.", "Name" : "Nom", @@ -32,7 +33,11 @@ "Upload new login background" : "Téléverser un nouvel arrière-plan de connexion", "Remove background image" : "Supprimer l'image en arrière-plan", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Installez l'extension PHP Imagemagick avec le support pour les images SVG afin de générer automatiquement les favicons sur base du logo téléversé et de la couleur.", + "You are already using a custom theme" : "Vous utilisez déjà un thème personnalisé", "reset to default" : "Restaurer les valeurs par défaut", - "Log in image" : "Image de connexion" + "There is no error, the file uploaded with success" : "Aucune erreur, le fichier a été téléversé avec succès", + "The uploaded file was only partially uploaded" : "Le fichier n'a été que partiellement téléversé", + "Failed to write file to disk." : "Erreur d'écriture du fichier sur le disque.", + "A PHP extension stopped the file upload." : "Une extension PHP a arrêté le téléversement du fichier." },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/hu.js b/apps/theming/l10n/hu.js index bb6291ff7ad9e..f3ade1c2d24f6 100644 --- a/apps/theming/l10n/hu.js +++ b/apps/theming/l10n/hu.js @@ -5,21 +5,17 @@ OC.L10N.register( "Saved" : "Mentve!", "Admin" : "Adminisztrátor", "a safe home for all your data" : "biztonságos hely az adataid számára", + "Name cannot be empty" : "A név nem lehet üres", "The given name is too long" : "A bevitt név túl hosszú", "The given web address is too long" : "A bevitt webcím túl hosszú", "The given slogan is too long" : "A bevitt szlogen túl hosszú", "The given color is invalid" : "A bevitt szín érvénytelen", - "There is no error, the file uploaded with success" : "Nincs hiba, a feltöltés sikeres", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "A feltöltés mérete meghaladja a php.ini upload_max_filesize direktívájában meghatározottat.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "A HTML-ben megadott MAX_FILE_SIZE méretét meghaladja a feltöltés mérete", - "The uploaded file was only partially uploaded" : "Csak részben került feltöltésre a fájl", "No file was uploaded" : "Nincs feltöltött fájl", "Missing a temporary folder" : "Átmeneti mappa hiányzik", - "Failed to write file to disk." : "Lemezre írás sikertelen.", - "A PHP extension stopped the file upload." : "Egy PHP kiterjesztés megakadályozta a feltöltést.", "No file uploaded" : "Nincs fájl feltöltve", "Unsupported image type" : "Nem támogatott képtípus", - "You are already using a custom theme" : "Már egyedi témát használ", "Theming" : "Témázás", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "A témák lehetőve teszik, hogy könnyedén személyre szabja a kinézetét az oldalnak, és a támogatott klienseknek. Ez minden felhasználó számára látható lesz.", "Name" : "Név", @@ -34,7 +30,11 @@ OC.L10N.register( "Upload new login background" : "Új bejelentkező kép feltöltése", "Remove background image" : "Háttérkép eltávolítása", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Telepítsd az Imagemagick PHP kiterjesztést SVG kép támogatással a feltöltött logóból és színből való automatikus favikon generáláshoz.", + "You are already using a custom theme" : "Már egyedi témát használ", "reset to default" : "Visszaállítás alapértelmezettre", - "Log in image" : "Bejelentkező kép" + "There is no error, the file uploaded with success" : "Nincs hiba, a feltöltés sikeres", + "The uploaded file was only partially uploaded" : "Csak részben került feltöltésre a fájl", + "Failed to write file to disk." : "Lemezre írás sikertelen.", + "A PHP extension stopped the file upload." : "Egy PHP kiterjesztés megakadályozta a feltöltést." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/hu.json b/apps/theming/l10n/hu.json index 83c5b77aae2c6..cb1195c17837c 100644 --- a/apps/theming/l10n/hu.json +++ b/apps/theming/l10n/hu.json @@ -3,21 +3,17 @@ "Saved" : "Mentve!", "Admin" : "Adminisztrátor", "a safe home for all your data" : "biztonságos hely az adataid számára", + "Name cannot be empty" : "A név nem lehet üres", "The given name is too long" : "A bevitt név túl hosszú", "The given web address is too long" : "A bevitt webcím túl hosszú", "The given slogan is too long" : "A bevitt szlogen túl hosszú", "The given color is invalid" : "A bevitt szín érvénytelen", - "There is no error, the file uploaded with success" : "Nincs hiba, a feltöltés sikeres", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "A feltöltés mérete meghaladja a php.ini upload_max_filesize direktívájában meghatározottat.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "A HTML-ben megadott MAX_FILE_SIZE méretét meghaladja a feltöltés mérete", - "The uploaded file was only partially uploaded" : "Csak részben került feltöltésre a fájl", "No file was uploaded" : "Nincs feltöltött fájl", "Missing a temporary folder" : "Átmeneti mappa hiányzik", - "Failed to write file to disk." : "Lemezre írás sikertelen.", - "A PHP extension stopped the file upload." : "Egy PHP kiterjesztés megakadályozta a feltöltést.", "No file uploaded" : "Nincs fájl feltöltve", "Unsupported image type" : "Nem támogatott képtípus", - "You are already using a custom theme" : "Már egyedi témát használ", "Theming" : "Témázás", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "A témák lehetőve teszik, hogy könnyedén személyre szabja a kinézetét az oldalnak, és a támogatott klienseknek. Ez minden felhasználó számára látható lesz.", "Name" : "Név", @@ -32,7 +28,11 @@ "Upload new login background" : "Új bejelentkező kép feltöltése", "Remove background image" : "Háttérkép eltávolítása", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Telepítsd az Imagemagick PHP kiterjesztést SVG kép támogatással a feltöltött logóból és színből való automatikus favikon generáláshoz.", + "You are already using a custom theme" : "Már egyedi témát használ", "reset to default" : "Visszaállítás alapértelmezettre", - "Log in image" : "Bejelentkező kép" + "There is no error, the file uploaded with success" : "Nincs hiba, a feltöltés sikeres", + "The uploaded file was only partially uploaded" : "Csak részben került feltöltésre a fájl", + "Failed to write file to disk." : "Lemezre írás sikertelen.", + "A PHP extension stopped the file upload." : "Egy PHP kiterjesztés megakadályozta a feltöltést." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/id.js b/apps/theming/l10n/id.js index fa6086692d6fe..58402f5b19de2 100644 --- a/apps/theming/l10n/id.js +++ b/apps/theming/l10n/id.js @@ -12,13 +12,13 @@ OC.L10N.register( "You are already using a custom theme" : "Anda telah siap menggunakan Tema Kustom", "Theming" : "Tema", "Name" : "Nama", - "reset to default" : "Atur ulang ke awal", "Web address" : "Alamat Web", "Web address https://…" : "Alamat Web https://...", "Slogan" : "Slogan", "Color" : "Warna", "Logo" : "Logo", "Upload new logo" : "Unggah Logo baru", - "Login image" : "Gambar ketika masuk" + "Login image" : "Gambar ketika masuk", + "reset to default" : "Atur ulang ke awal" }, "nplurals=1; plural=0;"); diff --git a/apps/theming/l10n/id.json b/apps/theming/l10n/id.json index 65a83d56942b7..15bebb7a13eed 100644 --- a/apps/theming/l10n/id.json +++ b/apps/theming/l10n/id.json @@ -10,13 +10,13 @@ "You are already using a custom theme" : "Anda telah siap menggunakan Tema Kustom", "Theming" : "Tema", "Name" : "Nama", - "reset to default" : "Atur ulang ke awal", "Web address" : "Alamat Web", "Web address https://…" : "Alamat Web https://...", "Slogan" : "Slogan", "Color" : "Warna", "Logo" : "Logo", "Upload new logo" : "Unggah Logo baru", - "Login image" : "Gambar ketika masuk" + "Login image" : "Gambar ketika masuk", + "reset to default" : "Atur ulang ke awal" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/theming/l10n/is.js b/apps/theming/l10n/is.js index b09f2bf280113..57948f63684b8 100644 --- a/apps/theming/l10n/is.js +++ b/apps/theming/l10n/is.js @@ -5,21 +5,17 @@ OC.L10N.register( "Saved" : "Vistað", "Admin" : "Stjórnandi", "a safe home for all your data" : "öruggur staður fyrir öll gögnin þín", + "Name cannot be empty" : "Heiti má ekki vera tómt", "The given name is too long" : "Uppgefið nafn er of langt", "The given web address is too long" : "Uppgefið veffang er of langt", "The given slogan is too long" : "Uppgefið slagorð er of langt", "The given color is invalid" : "Uppgefinn litur er ógildur", - "There is no error, the file uploaded with success" : "Engin villa, innsending heppnaðist", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Innsend skrá er stærri en upload_max stillingin í php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu", - "The uploaded file was only partially uploaded" : "Einungis hluti af innsendri skrá skilaði sér", "No file was uploaded" : "Engin skrá skilaði sér", "Missing a temporary folder" : "Vantar bráðabirgðamöppu", - "Failed to write file to disk." : "Tókst ekki að skrifa skrá á disk.", - "A PHP extension stopped the file upload." : "PHP-viðbót stöðvaði innsendingu skráar.", "No file uploaded" : "Engin skrá var send inn", "Unsupported image type" : "Óstudd gerð myndar", - "You are already using a custom theme" : "Þú ert nú þegar að nota sérsniðið þema", "Theming" : "Þemu", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Þemu gera þér kleift að breyta útliti og hegðun þíns eintaks af viðmótinu auk studdra biðlaraforrita. Það verður sýnilegt öllum notendum.", "Name" : "Heiti", @@ -33,7 +29,12 @@ OC.L10N.register( "Login image" : "Innskráningarmynd", "Upload new login background" : "Senda inn nýjan bakgrunn innskráningar", "Remove background image" : "Fjarlægja bakgrunnsmynd", + "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Settu inn Imagemagick PHP forritsviðaukann með stuðningi við SVG-myndir til að útbúa sjálfvirkt veftáknmyndir byggðar á innsendu táknmerki og lit.", + "You are already using a custom theme" : "Þú ert nú þegar að nota sérsniðið þema", "reset to default" : "endurstilla á sjálfgefið", - "Log in image" : "Innskráningarmynd" + "There is no error, the file uploaded with success" : "Engin villa, innsending heppnaðist", + "The uploaded file was only partially uploaded" : "Einungis hluti af innsendri skrá skilaði sér", + "Failed to write file to disk." : "Tókst ekki að skrifa skrá á disk.", + "A PHP extension stopped the file upload." : "PHP-viðbót stöðvaði innsendingu skráar." }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/theming/l10n/is.json b/apps/theming/l10n/is.json index 2489448cb78d9..29f5eed372a6f 100644 --- a/apps/theming/l10n/is.json +++ b/apps/theming/l10n/is.json @@ -3,21 +3,17 @@ "Saved" : "Vistað", "Admin" : "Stjórnandi", "a safe home for all your data" : "öruggur staður fyrir öll gögnin þín", + "Name cannot be empty" : "Heiti má ekki vera tómt", "The given name is too long" : "Uppgefið nafn er of langt", "The given web address is too long" : "Uppgefið veffang er of langt", "The given slogan is too long" : "Uppgefið slagorð er of langt", "The given color is invalid" : "Uppgefinn litur er ógildur", - "There is no error, the file uploaded with success" : "Engin villa, innsending heppnaðist", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Innsend skrá er stærri en upload_max stillingin í php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Innsenda skráin er stærri en MAX_FILE_SIZE sem skilgreint er í HTML sniðinu", - "The uploaded file was only partially uploaded" : "Einungis hluti af innsendri skrá skilaði sér", "No file was uploaded" : "Engin skrá skilaði sér", "Missing a temporary folder" : "Vantar bráðabirgðamöppu", - "Failed to write file to disk." : "Tókst ekki að skrifa skrá á disk.", - "A PHP extension stopped the file upload." : "PHP-viðbót stöðvaði innsendingu skráar.", "No file uploaded" : "Engin skrá var send inn", "Unsupported image type" : "Óstudd gerð myndar", - "You are already using a custom theme" : "Þú ert nú þegar að nota sérsniðið þema", "Theming" : "Þemu", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Þemu gera þér kleift að breyta útliti og hegðun þíns eintaks af viðmótinu auk studdra biðlaraforrita. Það verður sýnilegt öllum notendum.", "Name" : "Heiti", @@ -31,7 +27,12 @@ "Login image" : "Innskráningarmynd", "Upload new login background" : "Senda inn nýjan bakgrunn innskráningar", "Remove background image" : "Fjarlægja bakgrunnsmynd", + "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Settu inn Imagemagick PHP forritsviðaukann með stuðningi við SVG-myndir til að útbúa sjálfvirkt veftáknmyndir byggðar á innsendu táknmerki og lit.", + "You are already using a custom theme" : "Þú ert nú þegar að nota sérsniðið þema", "reset to default" : "endurstilla á sjálfgefið", - "Log in image" : "Innskráningarmynd" + "There is no error, the file uploaded with success" : "Engin villa, innsending heppnaðist", + "The uploaded file was only partially uploaded" : "Einungis hluti af innsendri skrá skilaði sér", + "Failed to write file to disk." : "Tókst ekki að skrifa skrá á disk.", + "A PHP extension stopped the file upload." : "PHP-viðbót stöðvaði innsendingu skráar." },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" } \ No newline at end of file diff --git a/apps/theming/l10n/it.js b/apps/theming/l10n/it.js index 5431dfa02c2f7..b4b593ac69023 100644 --- a/apps/theming/l10n/it.js +++ b/apps/theming/l10n/it.js @@ -5,21 +5,22 @@ OC.L10N.register( "Saved" : "Salvato", "Admin" : "Amministratore", "a safe home for all your data" : "un posto sicuro per tutti i tuoi dati", + "Name cannot be empty" : "Il nome non può essere vuoto", "The given name is too long" : "Questo nome è troppo lungo", "The given web address is too long" : "Questo indirizzo web è troppo lungo", "The given slogan is too long" : "Questo slogan è troppo lungo", "The given color is invalid" : "Questo colore non è valido", - "There is no error, the file uploaded with success" : "Non ci sono errori, il file è stato caricato correttamente", + "The file was uploaded" : "Il file è stato caricato", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Il file caricato supera la direttiva upload_max_filesize in php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Il file caricato supera la direttiva MAX_FILE_SIZE specificata nel modulo HTML", - "The uploaded file was only partially uploaded" : "Il file è stato caricato solo parzialmente", + "The file was only partially uploaded" : "Il file è stato caricato solo parzialmente", "No file was uploaded" : "Non è stato caricato alcun file", "Missing a temporary folder" : "Manca una cartella temporanea", - "Failed to write file to disk." : "Scrittura su disco non riuscita", - "A PHP extension stopped the file upload." : "Un'estensione PHP ha fermato il caricamento del file.", + "Could not write file to disk" : "Impossibile scrivere il file su disco", + "A PHP extension stopped the file upload" : "Un'estensione PHP ha fermato il caricamento del file", "No file uploaded" : "Nessun file caricato", "Unsupported image type" : "Tipo di immagine non supportato", - "You are already using a custom theme" : "Stai già usando un tema personalizzato", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Stai già utilizzando un tema personalizzato. Le impostazioni dell'applicazione dei temi potrebbero essere sovrascritte.", "Theming" : "Tema", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "La gestione dei temi rende semplice la personalizzazione dell'aspetto della tua istanza e dei client supportati. Ciò sarà visibile a tutti gli utenti.", "Name" : "Nome", @@ -34,7 +35,11 @@ OC.L10N.register( "Upload new login background" : "Carica nuovo sfondo di accesso", "Remove background image" : "Rimuovi immagine di sfondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Installa l'estensione Imagemacick di PHP con supporto per le immagini SVG per generare automaticamente favicon basate sul logo caricato e sul colore.", + "You are already using a custom theme" : "Stai già usando un tema personalizzato", "reset to default" : "ripristina valori predefiniti", - "Log in image" : "Immagine di accesso" + "There is no error, the file uploaded with success" : "Non ci sono errori, il file è stato caricato correttamente", + "The uploaded file was only partially uploaded" : "Il file è stato caricato solo parzialmente", + "Failed to write file to disk." : "Scrittura su disco non riuscita", + "A PHP extension stopped the file upload." : "Un'estensione PHP ha fermato il caricamento del file." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/it.json b/apps/theming/l10n/it.json index 0ef895a71acab..e430f2791f5ab 100644 --- a/apps/theming/l10n/it.json +++ b/apps/theming/l10n/it.json @@ -3,21 +3,22 @@ "Saved" : "Salvato", "Admin" : "Amministratore", "a safe home for all your data" : "un posto sicuro per tutti i tuoi dati", + "Name cannot be empty" : "Il nome non può essere vuoto", "The given name is too long" : "Questo nome è troppo lungo", "The given web address is too long" : "Questo indirizzo web è troppo lungo", "The given slogan is too long" : "Questo slogan è troppo lungo", "The given color is invalid" : "Questo colore non è valido", - "There is no error, the file uploaded with success" : "Non ci sono errori, il file è stato caricato correttamente", + "The file was uploaded" : "Il file è stato caricato", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Il file caricato supera la direttiva upload_max_filesize in php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Il file caricato supera la direttiva MAX_FILE_SIZE specificata nel modulo HTML", - "The uploaded file was only partially uploaded" : "Il file è stato caricato solo parzialmente", + "The file was only partially uploaded" : "Il file è stato caricato solo parzialmente", "No file was uploaded" : "Non è stato caricato alcun file", "Missing a temporary folder" : "Manca una cartella temporanea", - "Failed to write file to disk." : "Scrittura su disco non riuscita", - "A PHP extension stopped the file upload." : "Un'estensione PHP ha fermato il caricamento del file.", + "Could not write file to disk" : "Impossibile scrivere il file su disco", + "A PHP extension stopped the file upload" : "Un'estensione PHP ha fermato il caricamento del file", "No file uploaded" : "Nessun file caricato", "Unsupported image type" : "Tipo di immagine non supportato", - "You are already using a custom theme" : "Stai già usando un tema personalizzato", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Stai già utilizzando un tema personalizzato. Le impostazioni dell'applicazione dei temi potrebbero essere sovrascritte.", "Theming" : "Tema", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "La gestione dei temi rende semplice la personalizzazione dell'aspetto della tua istanza e dei client supportati. Ciò sarà visibile a tutti gli utenti.", "Name" : "Nome", @@ -32,7 +33,11 @@ "Upload new login background" : "Carica nuovo sfondo di accesso", "Remove background image" : "Rimuovi immagine di sfondo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Installa l'estensione Imagemacick di PHP con supporto per le immagini SVG per generare automaticamente favicon basate sul logo caricato e sul colore.", + "You are already using a custom theme" : "Stai già usando un tema personalizzato", "reset to default" : "ripristina valori predefiniti", - "Log in image" : "Immagine di accesso" + "There is no error, the file uploaded with success" : "Non ci sono errori, il file è stato caricato correttamente", + "The uploaded file was only partially uploaded" : "Il file è stato caricato solo parzialmente", + "Failed to write file to disk." : "Scrittura su disco non riuscita", + "A PHP extension stopped the file upload." : "Un'estensione PHP ha fermato il caricamento del file." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/ja.js b/apps/theming/l10n/ja.js index c6305e94eb9c5..df03dc04d3fac 100644 --- a/apps/theming/l10n/ja.js +++ b/apps/theming/l10n/ja.js @@ -9,15 +9,11 @@ OC.L10N.register( "The given web address is too long" : "Webアドレスが長すぎます", "The given slogan is too long" : "スローガンが長すぎます", "The given color is invalid" : "無効な色です", - "There is no error, the file uploaded with success" : "ファイルはエラーなくアップロードされました", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "アップロードファイルサイズが、php.ini の upload_max_filesize を超過しています", "No file was uploaded" : "ファイルはアップロードされませんでした", "Missing a temporary folder" : "一時領域フォルダーがありません", - "Failed to write file to disk." : "ファイルをディスクに書き込めませんでした", - "A PHP extension stopped the file upload." : "PHP拡張でファイルのアップロードが停止されています", "No file uploaded" : "ファイルがアップロードされていません", "Unsupported image type" : "サポートされていない画像形式です", - "You are already using a custom theme" : "あなたは既にカスタムテーマを利用しています", "Theming" : "テーマ", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "テーマではあなたのインスタンスとサポートされたクライアントのルック&フィールを簡単に変更できます。この変更は全てのユーザが対象となります。", "Name" : "名前", @@ -31,7 +27,10 @@ OC.L10N.register( "Login image" : "ログイン画像", "Upload new login background" : "新しいログイン背景画像をアップロード", "Remove background image" : "背景画像を削除", + "You are already using a custom theme" : "あなたは既にカスタムテーマを利用しています", "reset to default" : "デフォルトに戻す", - "Log in image" : "ログイン画像" + "There is no error, the file uploaded with success" : "ファイルはエラーなくアップロードされました", + "Failed to write file to disk." : "ファイルをディスクに書き込めませんでした", + "A PHP extension stopped the file upload." : "PHP拡張でファイルのアップロードが停止されています" }, "nplurals=1; plural=0;"); diff --git a/apps/theming/l10n/ja.json b/apps/theming/l10n/ja.json index f7486f33ddb26..772f9e259fb2c 100644 --- a/apps/theming/l10n/ja.json +++ b/apps/theming/l10n/ja.json @@ -7,15 +7,11 @@ "The given web address is too long" : "Webアドレスが長すぎます", "The given slogan is too long" : "スローガンが長すぎます", "The given color is invalid" : "無効な色です", - "There is no error, the file uploaded with success" : "ファイルはエラーなくアップロードされました", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "アップロードファイルサイズが、php.ini の upload_max_filesize を超過しています", "No file was uploaded" : "ファイルはアップロードされませんでした", "Missing a temporary folder" : "一時領域フォルダーがありません", - "Failed to write file to disk." : "ファイルをディスクに書き込めませんでした", - "A PHP extension stopped the file upload." : "PHP拡張でファイルのアップロードが停止されています", "No file uploaded" : "ファイルがアップロードされていません", "Unsupported image type" : "サポートされていない画像形式です", - "You are already using a custom theme" : "あなたは既にカスタムテーマを利用しています", "Theming" : "テーマ", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "テーマではあなたのインスタンスとサポートされたクライアントのルック&フィールを簡単に変更できます。この変更は全てのユーザが対象となります。", "Name" : "名前", @@ -29,7 +25,10 @@ "Login image" : "ログイン画像", "Upload new login background" : "新しいログイン背景画像をアップロード", "Remove background image" : "背景画像を削除", + "You are already using a custom theme" : "あなたは既にカスタムテーマを利用しています", "reset to default" : "デフォルトに戻す", - "Log in image" : "ログイン画像" + "There is no error, the file uploaded with success" : "ファイルはエラーなくアップロードされました", + "Failed to write file to disk." : "ファイルをディスクに書き込めませんでした", + "A PHP extension stopped the file upload." : "PHP拡張でファイルのアップロードが停止されています" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/theming/l10n/ka_GE.js b/apps/theming/l10n/ka_GE.js index 6510ffb0a9df5..9ced9526a926c 100644 --- a/apps/theming/l10n/ka_GE.js +++ b/apps/theming/l10n/ka_GE.js @@ -5,21 +5,17 @@ OC.L10N.register( "Saved" : "შენახულია", "Admin" : "ადმინისტრაცია", "a safe home for all your data" : "უსაფრთხო სახლი მთელი თქვენი მონაცემებისათვის", + "Name cannot be empty" : "სახელი ვერ იქნება ცარიელი", "The given name is too long" : "მოცემული სახელი ძალიან გრძელია", "The given web address is too long" : "მოცემული ვებ-მისამართი ძალიან გრძელია", "The given slogan is too long" : "მოცემული ლოზუნგი ძალიან გრძელია", "The given color is invalid" : "მოცემული ფერი არასწორია", - "There is no error, the file uploaded with success" : "ეს არაა შეცდომა, ფაილი წარმატებით აიტვირთა", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "ატვირთული ფაილი აჭარბებს php.ini-ში დაყენებულ upload_max_filesize დირექტივას", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "ატვირთული ფაილი აჭარბებს HTML ფორამაში მითითებულ MAX_FILE_SIZE დირექტივას", - "The uploaded file was only partially uploaded" : "ფაილი აიტვირთა მხოლოდ ნაწილობრივ", "No file was uploaded" : "ფაილი არ აიტვირთა", "Missing a temporary folder" : "დროებითი დირექტორია არ არსებობს", - "Failed to write file to disk." : "ფაილი დისკზე ვერ ჩაიწერა.", - "A PHP extension stopped the file upload." : "PHP გაფართოებამ შეაჩერა ფაილის ატვირთვა.", "No file uploaded" : "ფაილი არ იქნა ატვირთული", "Unsupported image type" : "ამ სურათის სახეობა არაა მხარდაჭერილი", - "You are already using a custom theme" : "თქვენ პერზონალიზირებულ ვიზუალურ თემას უკვე იყენებთ", "Theming" : "ვიზუალური თემები", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "ვიზუალური თემები საშუალებას გაძლევთ თქვენს ინსტანციას და მხარდაჭერილ კლიენტებს მარტივად გაუწიოთ გამოსახულებას პერსონალიზაცია. ეს გამოჩნდება ყველა მომხმარებელთან.", "Name" : "სახელი", @@ -34,7 +30,11 @@ OC.L10N.register( "Upload new login background" : "ლოგინის ახალი ფონის ატვირთვა", "Remove background image" : "ფონური სურათის მოშორება", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "SVG სურთების მხარდაჭერის მქონე Imagemagick PHP გაფართოების დაყენება ფავიკონებს ატვირთული ლოგოსა და ფერის მიხევით დააგენერირებს ავტომატურად.", + "You are already using a custom theme" : "თქვენ პერზონალიზირებულ ვიზუალურ თემას უკვე იყენებთ", "reset to default" : "დაბრუნება საწყისზე", - "Log in image" : "ლოგინის სურათი" + "There is no error, the file uploaded with success" : "ეს არაა შეცდომა, ფაილი წარმატებით აიტვირთა", + "The uploaded file was only partially uploaded" : "ფაილი აიტვირთა მხოლოდ ნაწილობრივ", + "Failed to write file to disk." : "ფაილი დისკზე ვერ ჩაიწერა.", + "A PHP extension stopped the file upload." : "PHP გაფართოებამ შეაჩერა ფაილის ატვირთვა." }, "nplurals=1; plural=0;"); diff --git a/apps/theming/l10n/ka_GE.json b/apps/theming/l10n/ka_GE.json index 13f7c9dbce88e..4f9c81895ea89 100644 --- a/apps/theming/l10n/ka_GE.json +++ b/apps/theming/l10n/ka_GE.json @@ -3,21 +3,17 @@ "Saved" : "შენახულია", "Admin" : "ადმინისტრაცია", "a safe home for all your data" : "უსაფრთხო სახლი მთელი თქვენი მონაცემებისათვის", + "Name cannot be empty" : "სახელი ვერ იქნება ცარიელი", "The given name is too long" : "მოცემული სახელი ძალიან გრძელია", "The given web address is too long" : "მოცემული ვებ-მისამართი ძალიან გრძელია", "The given slogan is too long" : "მოცემული ლოზუნგი ძალიან გრძელია", "The given color is invalid" : "მოცემული ფერი არასწორია", - "There is no error, the file uploaded with success" : "ეს არაა შეცდომა, ფაილი წარმატებით აიტვირთა", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "ატვირთული ფაილი აჭარბებს php.ini-ში დაყენებულ upload_max_filesize დირექტივას", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "ატვირთული ფაილი აჭარბებს HTML ფორამაში მითითებულ MAX_FILE_SIZE დირექტივას", - "The uploaded file was only partially uploaded" : "ფაილი აიტვირთა მხოლოდ ნაწილობრივ", "No file was uploaded" : "ფაილი არ აიტვირთა", "Missing a temporary folder" : "დროებითი დირექტორია არ არსებობს", - "Failed to write file to disk." : "ფაილი დისკზე ვერ ჩაიწერა.", - "A PHP extension stopped the file upload." : "PHP გაფართოებამ შეაჩერა ფაილის ატვირთვა.", "No file uploaded" : "ფაილი არ იქნა ატვირთული", "Unsupported image type" : "ამ სურათის სახეობა არაა მხარდაჭერილი", - "You are already using a custom theme" : "თქვენ პერზონალიზირებულ ვიზუალურ თემას უკვე იყენებთ", "Theming" : "ვიზუალური თემები", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "ვიზუალური თემები საშუალებას გაძლევთ თქვენს ინსტანციას და მხარდაჭერილ კლიენტებს მარტივად გაუწიოთ გამოსახულებას პერსონალიზაცია. ეს გამოჩნდება ყველა მომხმარებელთან.", "Name" : "სახელი", @@ -32,7 +28,11 @@ "Upload new login background" : "ლოგინის ახალი ფონის ატვირთვა", "Remove background image" : "ფონური სურათის მოშორება", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "SVG სურთების მხარდაჭერის მქონე Imagemagick PHP გაფართოების დაყენება ფავიკონებს ატვირთული ლოგოსა და ფერის მიხევით დააგენერირებს ავტომატურად.", + "You are already using a custom theme" : "თქვენ პერზონალიზირებულ ვიზუალურ თემას უკვე იყენებთ", "reset to default" : "დაბრუნება საწყისზე", - "Log in image" : "ლოგინის სურათი" + "There is no error, the file uploaded with success" : "ეს არაა შეცდომა, ფაილი წარმატებით აიტვირთა", + "The uploaded file was only partially uploaded" : "ფაილი აიტვირთა მხოლოდ ნაწილობრივ", + "Failed to write file to disk." : "ფაილი დისკზე ვერ ჩაიწერა.", + "A PHP extension stopped the file upload." : "PHP გაფართოებამ შეაჩერა ფაილის ატვირთვა." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/theming/l10n/ko.js b/apps/theming/l10n/ko.js index 82813161d029f..872d1973464b7 100644 --- a/apps/theming/l10n/ko.js +++ b/apps/theming/l10n/ko.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "입력한 웹 주소가 너무 김", "The given slogan is too long" : "입력한 슬로건이 너무 김", "The given color is invalid" : "입력한 색상이 잘못됨", - "There is no error, the file uploaded with success" : "오류 없음, 파일 업로드 성공", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "업로드한 파일의 크기가 php.ini의 upload_max_filesize를 초과함", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "업로드한 파일의 크기가 HTML 폼에 지정한 MAX_FILE_SIZE를 초과함", - "The uploaded file was only partially uploaded" : "파일이 일부분만 업로드됨", "No file was uploaded" : "업로드한 파일 없음", "Missing a temporary folder" : "임시 폴더 없음", - "Failed to write file to disk." : "디스크에 파일을 기록할 수 없습니다.", - "A PHP extension stopped the file upload." : "PHP 확장 기능에서 파일 업로드를 차단했습니다.", "No file uploaded" : "업로드한 파일 없음", "Unsupported image type" : "지원하지 않는 사진 형식", - "You are already using a custom theme" : "이미 사용자 정의 테마 사용 중", "Theming" : "테마", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "테마를 사용하여 내 인스턴스와 지원하는 클라이언트의 모습을 변경할 수 있습니다. 테마는 모든 사용자에게 적용됩니다.", "Name" : "이름", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "새 로그인 배경 업로드", "Remove background image" : "배경 그림 삭제", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "업로드한 로고와 색으로부터 자동으로 파비콘을 생성하려면 PHP Imagemagick 확장 기능 및 SVG 형식 그림 지원을 설치하십시오.", + "You are already using a custom theme" : "이미 사용자 정의 테마 사용 중", "reset to default" : "기본값으로 초기화", - "Log in image" : "로그인 그림" + "There is no error, the file uploaded with success" : "오류 없음, 파일 업로드 성공", + "The uploaded file was only partially uploaded" : "파일이 일부분만 업로드됨", + "Failed to write file to disk." : "디스크에 파일을 기록할 수 없습니다.", + "A PHP extension stopped the file upload." : "PHP 확장 기능에서 파일 업로드를 차단했습니다." }, "nplurals=1; plural=0;"); diff --git a/apps/theming/l10n/ko.json b/apps/theming/l10n/ko.json index 1362d7dfb89fc..5f3e5deab3d0f 100644 --- a/apps/theming/l10n/ko.json +++ b/apps/theming/l10n/ko.json @@ -7,17 +7,12 @@ "The given web address is too long" : "입력한 웹 주소가 너무 김", "The given slogan is too long" : "입력한 슬로건이 너무 김", "The given color is invalid" : "입력한 색상이 잘못됨", - "There is no error, the file uploaded with success" : "오류 없음, 파일 업로드 성공", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "업로드한 파일의 크기가 php.ini의 upload_max_filesize를 초과함", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "업로드한 파일의 크기가 HTML 폼에 지정한 MAX_FILE_SIZE를 초과함", - "The uploaded file was only partially uploaded" : "파일이 일부분만 업로드됨", "No file was uploaded" : "업로드한 파일 없음", "Missing a temporary folder" : "임시 폴더 없음", - "Failed to write file to disk." : "디스크에 파일을 기록할 수 없습니다.", - "A PHP extension stopped the file upload." : "PHP 확장 기능에서 파일 업로드를 차단했습니다.", "No file uploaded" : "업로드한 파일 없음", "Unsupported image type" : "지원하지 않는 사진 형식", - "You are already using a custom theme" : "이미 사용자 정의 테마 사용 중", "Theming" : "테마", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "테마를 사용하여 내 인스턴스와 지원하는 클라이언트의 모습을 변경할 수 있습니다. 테마는 모든 사용자에게 적용됩니다.", "Name" : "이름", @@ -32,7 +27,11 @@ "Upload new login background" : "새 로그인 배경 업로드", "Remove background image" : "배경 그림 삭제", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "업로드한 로고와 색으로부터 자동으로 파비콘을 생성하려면 PHP Imagemagick 확장 기능 및 SVG 형식 그림 지원을 설치하십시오.", + "You are already using a custom theme" : "이미 사용자 정의 테마 사용 중", "reset to default" : "기본값으로 초기화", - "Log in image" : "로그인 그림" + "There is no error, the file uploaded with success" : "오류 없음, 파일 업로드 성공", + "The uploaded file was only partially uploaded" : "파일이 일부분만 업로드됨", + "Failed to write file to disk." : "디스크에 파일을 기록할 수 없습니다.", + "A PHP extension stopped the file upload." : "PHP 확장 기능에서 파일 업로드를 차단했습니다." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/theming/l10n/lt_LT.js b/apps/theming/l10n/lt_LT.js index d8581bc5e214c..4d5bacf2817b5 100644 --- a/apps/theming/l10n/lt_LT.js +++ b/apps/theming/l10n/lt_LT.js @@ -5,19 +5,28 @@ OC.L10N.register( "Saved" : "Įrašyta", "Admin" : "Administravimas", "a safe home for all your data" : "saugūs namai visiems jūsų duomenims", + "Name cannot be empty" : "Pavadinimas negali būti tuščias", "The given name is too long" : "Nurodytas pavadinimas yra per ilgas", "The given web address is too long" : "Nurodytas adresas yra per ilgas", "The given slogan is too long" : "Nurodytas šūkis yra per ilgas", "The given color is invalid" : "Nurodyta spalva yra neteisinga", + "The file was uploaded" : "Failas buvo įkeltas", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Įkeliamas failas viršija upload_max_filesize direktyvą, esančią faile php.ini", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Įkeliamas failas viršija MAX_FILE_SIZE direktyvą, kuri buvo nurodyta HTML formoje", + "The file was only partially uploaded" : "Failas buvo tik dalinai įkeltas", + "No file was uploaded" : "Nebuvo įkeltas joks failas", + "Missing a temporary folder" : "Trūksta laikinojo aplanko", + "Could not write file to disk" : "Nepavyko įrašyti failą į diską", + "A PHP extension stopped the file upload" : "PHP plėtinys sustabdė failo įkėlimą", "No file uploaded" : "Neįkeltas joks failas", "Unsupported image type" : "Nepalaikomas paveikslo tipas", - "You are already using a custom theme" : "Jūs jau naudojate tinkintą temą", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Jūs jau naudojate tinkintą temą. Temų programėlės nustatymai gali būti perrašyti tos temos.", "Theming" : "Tema", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Temos leidžia lengvai tinkinti jūsų egzemplioriaus ir palaikomų klientų išvaizdą ir turinį. Tai bus matoma visiems naudotojams. ", "Name" : "Pavadinimas", "Reset to default" : "Atstatyti į numatytąją", "Web address" : "Saityno adresas", - "Web address https://…" : "Saityno adresas https://…", + "Web address https://…" : "Saityno adresas https://…", "Slogan" : "Šūkis", "Color" : "Spalva", "Logo" : "Logotipas", @@ -25,7 +34,12 @@ OC.L10N.register( "Login image" : "Prisijungimo paveikslas", "Upload new login background" : "Įkelti naują prisijungimo foną", "Remove background image" : "Šalinti foninį paveikslą", + "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Norėdami automatiškai generuoti svetainės piktogramą remiantis įkeltu logotipu ir spalva, įdiekite Imagemagick PHP plėtinį su SVG paveikslų palaikymu.", + "You are already using a custom theme" : "Jūs jau naudojate tinkintą temą", "reset to default" : "atstatyta į numatytąją", - "Log in image" : "Prisijungimo vaizdas" + "There is no error, the file uploaded with success" : "Klaidų nėra, failas buvo sėkmingai įkeltas", + "The uploaded file was only partially uploaded" : "Įkeliamas failas buvo tik dalinai įkeltas", + "Failed to write file to disk." : "Nepavyko įrašyti failą į diską.", + "A PHP extension stopped the file upload." : "PHP plėtinys sustabdė failo įkėlimą." }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/theming/l10n/lt_LT.json b/apps/theming/l10n/lt_LT.json index 9846520b86ed2..2dd75243c9ee7 100644 --- a/apps/theming/l10n/lt_LT.json +++ b/apps/theming/l10n/lt_LT.json @@ -3,19 +3,28 @@ "Saved" : "Įrašyta", "Admin" : "Administravimas", "a safe home for all your data" : "saugūs namai visiems jūsų duomenims", + "Name cannot be empty" : "Pavadinimas negali būti tuščias", "The given name is too long" : "Nurodytas pavadinimas yra per ilgas", "The given web address is too long" : "Nurodytas adresas yra per ilgas", "The given slogan is too long" : "Nurodytas šūkis yra per ilgas", "The given color is invalid" : "Nurodyta spalva yra neteisinga", + "The file was uploaded" : "Failas buvo įkeltas", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Įkeliamas failas viršija upload_max_filesize direktyvą, esančią faile php.ini", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Įkeliamas failas viršija MAX_FILE_SIZE direktyvą, kuri buvo nurodyta HTML formoje", + "The file was only partially uploaded" : "Failas buvo tik dalinai įkeltas", + "No file was uploaded" : "Nebuvo įkeltas joks failas", + "Missing a temporary folder" : "Trūksta laikinojo aplanko", + "Could not write file to disk" : "Nepavyko įrašyti failą į diską", + "A PHP extension stopped the file upload" : "PHP plėtinys sustabdė failo įkėlimą", "No file uploaded" : "Neįkeltas joks failas", "Unsupported image type" : "Nepalaikomas paveikslo tipas", - "You are already using a custom theme" : "Jūs jau naudojate tinkintą temą", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Jūs jau naudojate tinkintą temą. Temų programėlės nustatymai gali būti perrašyti tos temos.", "Theming" : "Tema", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Temos leidžia lengvai tinkinti jūsų egzemplioriaus ir palaikomų klientų išvaizdą ir turinį. Tai bus matoma visiems naudotojams. ", "Name" : "Pavadinimas", "Reset to default" : "Atstatyti į numatytąją", "Web address" : "Saityno adresas", - "Web address https://…" : "Saityno adresas https://…", + "Web address https://…" : "Saityno adresas https://…", "Slogan" : "Šūkis", "Color" : "Spalva", "Logo" : "Logotipas", @@ -23,7 +32,12 @@ "Login image" : "Prisijungimo paveikslas", "Upload new login background" : "Įkelti naują prisijungimo foną", "Remove background image" : "Šalinti foninį paveikslą", + "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Norėdami automatiškai generuoti svetainės piktogramą remiantis įkeltu logotipu ir spalva, įdiekite Imagemagick PHP plėtinį su SVG paveikslų palaikymu.", + "You are already using a custom theme" : "Jūs jau naudojate tinkintą temą", "reset to default" : "atstatyta į numatytąją", - "Log in image" : "Prisijungimo vaizdas" + "There is no error, the file uploaded with success" : "Klaidų nėra, failas buvo sėkmingai įkeltas", + "The uploaded file was only partially uploaded" : "Įkeliamas failas buvo tik dalinai įkeltas", + "Failed to write file to disk." : "Nepavyko įrašyti failą į diską.", + "A PHP extension stopped the file upload." : "PHP plėtinys sustabdė failo įkėlimą." },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/apps/theming/l10n/lv.js b/apps/theming/l10n/lv.js index e579c6338f9de..6aaa386436871 100644 --- a/apps/theming/l10n/lv.js +++ b/apps/theming/l10n/lv.js @@ -9,9 +9,8 @@ OC.L10N.register( "The given web address is too long" : "Norādītā adrese ir pārāk gara", "The given slogan is too long" : "Norādītais teiciens ir pārāk garšs", "The given color is invalid" : "Norādītā krāsa ir nederīga", - "No file uploaded" : "Nav augšupielādēta faila", + "No file uploaded" : "Nav augšupielādēta datne", "Unsupported image type" : "Neatbalstīts attēla tips", - "You are already using a custom theme" : "Tu jau izmanto pielāgotu tēmu", "Theming" : "Dizains", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Tēmošana padara iespējamu viegli pielāgot savas instances un atbalstošo klientaplikāciju izskatu un sajūtu. Tas būs redzams visiem lietotājiem.", "Name" : "Nosaukums", @@ -25,7 +24,7 @@ OC.L10N.register( "Login image" : "Pieslēgšanās fona attēls", "Upload new login background" : "Augšupielādēt jaunu pieslēgšanās fona attēlu", "Remove background image" : "Noņemt fona attēlu", - "reset to default" : "Atiestatīt", - "Log in image" : "Pieslēgšanas fona attēls" + "You are already using a custom theme" : "Tu jau izmanto pielāgotu tēmu", + "reset to default" : "Atiestatīt" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/apps/theming/l10n/lv.json b/apps/theming/l10n/lv.json index 6c0bbaa90a8c6..bf67f89547c8f 100644 --- a/apps/theming/l10n/lv.json +++ b/apps/theming/l10n/lv.json @@ -7,9 +7,8 @@ "The given web address is too long" : "Norādītā adrese ir pārāk gara", "The given slogan is too long" : "Norādītais teiciens ir pārāk garšs", "The given color is invalid" : "Norādītā krāsa ir nederīga", - "No file uploaded" : "Nav augšupielādēta faila", + "No file uploaded" : "Nav augšupielādēta datne", "Unsupported image type" : "Neatbalstīts attēla tips", - "You are already using a custom theme" : "Tu jau izmanto pielāgotu tēmu", "Theming" : "Dizains", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Tēmošana padara iespējamu viegli pielāgot savas instances un atbalstošo klientaplikāciju izskatu un sajūtu. Tas būs redzams visiem lietotājiem.", "Name" : "Nosaukums", @@ -23,7 +22,7 @@ "Login image" : "Pieslēgšanās fona attēls", "Upload new login background" : "Augšupielādēt jaunu pieslēgšanās fona attēlu", "Remove background image" : "Noņemt fona attēlu", - "reset to default" : "Atiestatīt", - "Log in image" : "Pieslēgšanas fona attēls" + "You are already using a custom theme" : "Tu jau izmanto pielāgotu tēmu", + "reset to default" : "Atiestatīt" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" } \ No newline at end of file diff --git a/apps/theming/l10n/mn.js b/apps/theming/l10n/mn.js index 01cae027e6b98..942ea752eaba2 100644 --- a/apps/theming/l10n/mn.js +++ b/apps/theming/l10n/mn.js @@ -11,7 +11,6 @@ OC.L10N.register( "The given color is invalid" : "Өнгө буруу байна", "No file uploaded" : "Файл илгээгдсэнгүй", "Unsupported image type" : "Дэмжигдэхгүй зургийн төрөл байна", - "You are already using a custom theme" : "Та тусгай загварчлал ашиглаж байна", "Theming" : "Загварчлал", "Name" : "Нэр", "Reset to default" : "Анхны байдлаар сэргээх", @@ -24,7 +23,7 @@ OC.L10N.register( "Login image" : "Нэвтрэх зураг", "Upload new login background" : "Нэвтрэх ханын зураг байршуулах", "Remove background image" : "Ханын зургийг хасах", - "reset to default" : "анхныхаар сэргээх", - "Log in image" : "Нэвтрэх зураг" + "You are already using a custom theme" : "Та тусгай загварчлал ашиглаж байна", + "reset to default" : "анхныхаар сэргээх" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/mn.json b/apps/theming/l10n/mn.json index eb21a08a7c09c..bce38de201b96 100644 --- a/apps/theming/l10n/mn.json +++ b/apps/theming/l10n/mn.json @@ -9,7 +9,6 @@ "The given color is invalid" : "Өнгө буруу байна", "No file uploaded" : "Файл илгээгдсэнгүй", "Unsupported image type" : "Дэмжигдэхгүй зургийн төрөл байна", - "You are already using a custom theme" : "Та тусгай загварчлал ашиглаж байна", "Theming" : "Загварчлал", "Name" : "Нэр", "Reset to default" : "Анхны байдлаар сэргээх", @@ -22,7 +21,7 @@ "Login image" : "Нэвтрэх зураг", "Upload new login background" : "Нэвтрэх ханын зураг байршуулах", "Remove background image" : "Ханын зургийг хасах", - "reset to default" : "анхныхаар сэргээх", - "Log in image" : "Нэвтрэх зураг" + "You are already using a custom theme" : "Та тусгай загварчлал ашиглаж байна", + "reset to default" : "анхныхаар сэргээх" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/nb.js b/apps/theming/l10n/nb.js index 3216a33467a1a..cb2fa08f60415 100644 --- a/apps/theming/l10n/nb.js +++ b/apps/theming/l10n/nb.js @@ -5,21 +5,18 @@ OC.L10N.register( "Saved" : "Lagret", "Admin" : "Admin", "a safe home for all your data" : "et trygt hjem for alle dine data", + "Name cannot be empty" : "Navn kan ikke være tom", "The given name is too long" : "Navnet er for langt", "The given web address is too long" : "Nettadressen er for lang", "The given slogan is too long" : "Slagordet er for langt", "The given color is invalid" : "Fargen er ugyldig", - "There is no error, the file uploaded with success" : "Det er ingen feil, filen ble lastet opp", + "The file was uploaded" : "Filen ble lastet opp", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Filen er større enn grensen satt i upload_max_filesize i php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Filen du prøvde å laste opp er større enn grensen satt i MAX_FILE_SIZE i HTML-skjemaet", - "The uploaded file was only partially uploaded" : "Filen ble bare delvis lastet opp", "No file was uploaded" : "Ingen filer ble lastet opp", "Missing a temporary folder" : "Mangler midlertidig mappe", - "Failed to write file to disk." : "Klarte ikke å skrive til disk.", - "A PHP extension stopped the file upload." : "En PHP-utvidelse stoppet filopplastingen.", "No file uploaded" : "Ingen fil lastet opp", "Unsupported image type" : "Filtypen støttes ikke", - "You are already using a custom theme" : "Du bruker allerede en egendefinert drakt", "Theming" : "Draktvalg", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Draktvalg gjør det enkelt å tilpasse utseende og følelsen av din installasjon og støttede klienter. Dette vil bli synlig for alle brukere.", "Name" : "Navn", @@ -34,7 +31,11 @@ OC.L10N.register( "Upload new login background" : "Last opp ny innloggingsbakgrunn", "Remove background image" : "Fjern bakgrunnsbilde", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Installer PHP-utvidelsen Imagemagick med støtte for SVG-bilder for å opprette favikoner automatisk basert på opplastet logo og farge.", + "You are already using a custom theme" : "Du bruker allerede en egendefinert drakt", "reset to default" : "tilbakestill til forvalg", - "Log in image" : "Innloggingsbilde" + "There is no error, the file uploaded with success" : "Det er ingen feil, filen ble lastet opp", + "The uploaded file was only partially uploaded" : "Filen ble bare delvis lastet opp", + "Failed to write file to disk." : "Klarte ikke å skrive til disk.", + "A PHP extension stopped the file upload." : "En PHP-utvidelse stoppet filopplastingen." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/nb.json b/apps/theming/l10n/nb.json index 1f921c6ff4cfd..b23bbdcfe959b 100644 --- a/apps/theming/l10n/nb.json +++ b/apps/theming/l10n/nb.json @@ -3,21 +3,18 @@ "Saved" : "Lagret", "Admin" : "Admin", "a safe home for all your data" : "et trygt hjem for alle dine data", + "Name cannot be empty" : "Navn kan ikke være tom", "The given name is too long" : "Navnet er for langt", "The given web address is too long" : "Nettadressen er for lang", "The given slogan is too long" : "Slagordet er for langt", "The given color is invalid" : "Fargen er ugyldig", - "There is no error, the file uploaded with success" : "Det er ingen feil, filen ble lastet opp", + "The file was uploaded" : "Filen ble lastet opp", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Filen er større enn grensen satt i upload_max_filesize i php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Filen du prøvde å laste opp er større enn grensen satt i MAX_FILE_SIZE i HTML-skjemaet", - "The uploaded file was only partially uploaded" : "Filen ble bare delvis lastet opp", "No file was uploaded" : "Ingen filer ble lastet opp", "Missing a temporary folder" : "Mangler midlertidig mappe", - "Failed to write file to disk." : "Klarte ikke å skrive til disk.", - "A PHP extension stopped the file upload." : "En PHP-utvidelse stoppet filopplastingen.", "No file uploaded" : "Ingen fil lastet opp", "Unsupported image type" : "Filtypen støttes ikke", - "You are already using a custom theme" : "Du bruker allerede en egendefinert drakt", "Theming" : "Draktvalg", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Draktvalg gjør det enkelt å tilpasse utseende og følelsen av din installasjon og støttede klienter. Dette vil bli synlig for alle brukere.", "Name" : "Navn", @@ -32,7 +29,11 @@ "Upload new login background" : "Last opp ny innloggingsbakgrunn", "Remove background image" : "Fjern bakgrunnsbilde", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Installer PHP-utvidelsen Imagemagick med støtte for SVG-bilder for å opprette favikoner automatisk basert på opplastet logo og farge.", + "You are already using a custom theme" : "Du bruker allerede en egendefinert drakt", "reset to default" : "tilbakestill til forvalg", - "Log in image" : "Innloggingsbilde" + "There is no error, the file uploaded with success" : "Det er ingen feil, filen ble lastet opp", + "The uploaded file was only partially uploaded" : "Filen ble bare delvis lastet opp", + "Failed to write file to disk." : "Klarte ikke å skrive til disk.", + "A PHP extension stopped the file upload." : "En PHP-utvidelse stoppet filopplastingen." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/nl.js b/apps/theming/l10n/nl.js index 0ba026090dc4e..0c21293c80fd9 100644 --- a/apps/theming/l10n/nl.js +++ b/apps/theming/l10n/nl.js @@ -5,22 +5,19 @@ OC.L10N.register( "Saved" : "Opgeslagen", "Admin" : "Beheer", "a safe home for all your data" : "een veilige plek voor al je gegevens", + "Name cannot be empty" : "Naam mag niet leeg zijn", "The given name is too long" : "De opgegeven naam is te lang", "The given web address is too long" : "Het opgegeven internetadres is te lang", "The given slogan is too long" : "De opgegeven slagzin is te lang", "The given color is invalid" : "De opgegeven kleur is ongeldig", - "There is no error, the file uploaded with success" : "Er trad geen fout op, het bestand is succesvol geüpload", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Het geüploade bestand overschrijdt de upload_max_filesize richtlijn in php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Het bestand overschrijdt de MAX_FILE_SIZE richtlijn die is opgegeven in het HTML formulier", - "The uploaded file was only partially uploaded" : "Het bestand is slechts gedeeltelijk geüpload", + "The file was only partially uploaded" : "Het bestand is slechts gedeeltelijk geüpload", "No file was uploaded" : "Er is geen bestand geüpload", "Missing a temporary folder" : "Er ontbreekt een tijdelijke map", - "Failed to write file to disk." : "Schrijven van het bestand naar schijf mislukte.", - "A PHP extension stopped the file upload." : "Een PHP extensie heeft de upload gestopt.", "No file uploaded" : "Geen bestand geüpload", "Unsupported image type" : "Afbeeldingstype wordt niet ondersteund", - "You are already using a custom theme" : "Je gebruikt al een maatwerkthema", - "Theming" : "Thema's", + "Theming" : "Uiterlijk", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Thematiseren maakt het mogelijk om uiterlijk en gevoel van je systeem en ondersteunde clients aan te passen. Dit wordt zichtbaar voor alle gebruikers.", "Name" : "Naam", "Reset to default" : "Herstellen naar standaard", @@ -34,7 +31,11 @@ OC.L10N.register( "Upload new login background" : "Uploaden nieuwe inlog achtergrond", "Remove background image" : "Achtergrond beeld verwijderen", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Installeer de Imagemagick PHP extensie met ondersteuning voor SVG afbeeldingen om automatisch favicons te genereren op basis van het geuploade logo en kleur.", + "You are already using a custom theme" : "Je gebruikt al een maatwerkthema", "reset to default" : "herstellen naar standaard", - "Log in image" : "Inlog afbeelding" + "There is no error, the file uploaded with success" : "Er trad geen fout op, het bestand is succesvol geüpload", + "The uploaded file was only partially uploaded" : "Het bestand is slechts gedeeltelijk geüpload", + "Failed to write file to disk." : "Schrijven van het bestand naar schijf mislukte.", + "A PHP extension stopped the file upload." : "Een PHP extensie heeft de upload gestopt." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/nl.json b/apps/theming/l10n/nl.json index 80fe86d2c101b..5a75caf844652 100644 --- a/apps/theming/l10n/nl.json +++ b/apps/theming/l10n/nl.json @@ -3,22 +3,19 @@ "Saved" : "Opgeslagen", "Admin" : "Beheer", "a safe home for all your data" : "een veilige plek voor al je gegevens", + "Name cannot be empty" : "Naam mag niet leeg zijn", "The given name is too long" : "De opgegeven naam is te lang", "The given web address is too long" : "Het opgegeven internetadres is te lang", "The given slogan is too long" : "De opgegeven slagzin is te lang", "The given color is invalid" : "De opgegeven kleur is ongeldig", - "There is no error, the file uploaded with success" : "Er trad geen fout op, het bestand is succesvol geüpload", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Het geüploade bestand overschrijdt de upload_max_filesize richtlijn in php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Het bestand overschrijdt de MAX_FILE_SIZE richtlijn die is opgegeven in het HTML formulier", - "The uploaded file was only partially uploaded" : "Het bestand is slechts gedeeltelijk geüpload", + "The file was only partially uploaded" : "Het bestand is slechts gedeeltelijk geüpload", "No file was uploaded" : "Er is geen bestand geüpload", "Missing a temporary folder" : "Er ontbreekt een tijdelijke map", - "Failed to write file to disk." : "Schrijven van het bestand naar schijf mislukte.", - "A PHP extension stopped the file upload." : "Een PHP extensie heeft de upload gestopt.", "No file uploaded" : "Geen bestand geüpload", "Unsupported image type" : "Afbeeldingstype wordt niet ondersteund", - "You are already using a custom theme" : "Je gebruikt al een maatwerkthema", - "Theming" : "Thema's", + "Theming" : "Uiterlijk", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Thematiseren maakt het mogelijk om uiterlijk en gevoel van je systeem en ondersteunde clients aan te passen. Dit wordt zichtbaar voor alle gebruikers.", "Name" : "Naam", "Reset to default" : "Herstellen naar standaard", @@ -32,7 +29,11 @@ "Upload new login background" : "Uploaden nieuwe inlog achtergrond", "Remove background image" : "Achtergrond beeld verwijderen", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Installeer de Imagemagick PHP extensie met ondersteuning voor SVG afbeeldingen om automatisch favicons te genereren op basis van het geuploade logo en kleur.", + "You are already using a custom theme" : "Je gebruikt al een maatwerkthema", "reset to default" : "herstellen naar standaard", - "Log in image" : "Inlog afbeelding" + "There is no error, the file uploaded with success" : "Er trad geen fout op, het bestand is succesvol geüpload", + "The uploaded file was only partially uploaded" : "Het bestand is slechts gedeeltelijk geüpload", + "Failed to write file to disk." : "Schrijven van het bestand naar schijf mislukte.", + "A PHP extension stopped the file upload." : "Een PHP extensie heeft de upload gestopt." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/pl.js b/apps/theming/l10n/pl.js index bf5fe1df19841..0b9413bd2c795 100644 --- a/apps/theming/l10n/pl.js +++ b/apps/theming/l10n/pl.js @@ -9,17 +9,12 @@ OC.L10N.register( "The given web address is too long" : "Wpisany adres internetowy jest zbyt długi", "The given slogan is too long" : "Wpisany slogan jest zbyt długi", "The given color is invalid" : "Podany kolor jest nieprawidłowy", - "There is no error, the file uploaded with success" : "Brak błędów, plik wysłano poprawnie.", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Wysłany plik przekracza wielkość dyrektywy MAX_FILE_SIZE określonej w formularzu HTML", - "The uploaded file was only partially uploaded" : "Załadowany plik został wysłany tylko częściowo.", "No file was uploaded" : "Nie wysłano żadnego pliku", "Missing a temporary folder" : "Brak folderu tymczasowego", - "Failed to write file to disk." : "Błąd zapisu na dysk.", - "A PHP extension stopped the file upload." : "Rozszerzenie PHP zatrzymało wysyłanie pliku.", "No file uploaded" : "Nie wysłano pliku", "Unsupported image type" : "Nieobsługiwany typ zdjęcia", - "You are already using a custom theme" : "Używasz już motywu niestandarowego", "Theming" : "Motyw", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Motywy pozwalają na łatwą personalizację wyglądu Twojej instancji i wspieranych klientów. Efekty będą widoczne dla wszystkich użytkowników.", "Name" : "Nazwa", @@ -34,7 +29,11 @@ OC.L10N.register( "Upload new login background" : "Wyślij nowe tło ekranu logowania", "Remove background image" : "Usuń obraz tła", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Aby wygenerować favicon oparte o wysłane logo i kolor, zainstaluj rozszerzenie PHP Imagemagick z obsługą SVG.", + "You are already using a custom theme" : "Używasz już motywu niestandarowego", "reset to default" : "przywróć domyślne", - "Log in image" : "Zdjęcie logowania" + "There is no error, the file uploaded with success" : "Brak błędów, plik wysłano poprawnie.", + "The uploaded file was only partially uploaded" : "Załadowany plik został wysłany tylko częściowo.", + "Failed to write file to disk." : "Błąd zapisu na dysk.", + "A PHP extension stopped the file upload." : "Rozszerzenie PHP zatrzymało wysyłanie pliku." }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/theming/l10n/pl.json b/apps/theming/l10n/pl.json index 57a38f783c7a8..067681d03f6bc 100644 --- a/apps/theming/l10n/pl.json +++ b/apps/theming/l10n/pl.json @@ -7,17 +7,12 @@ "The given web address is too long" : "Wpisany adres internetowy jest zbyt długi", "The given slogan is too long" : "Wpisany slogan jest zbyt długi", "The given color is invalid" : "Podany kolor jest nieprawidłowy", - "There is no error, the file uploaded with success" : "Brak błędów, plik wysłano poprawnie.", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Wgrany plik przekracza wartość upload_max_filesize zdefiniowaną w php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Wysłany plik przekracza wielkość dyrektywy MAX_FILE_SIZE określonej w formularzu HTML", - "The uploaded file was only partially uploaded" : "Załadowany plik został wysłany tylko częściowo.", "No file was uploaded" : "Nie wysłano żadnego pliku", "Missing a temporary folder" : "Brak folderu tymczasowego", - "Failed to write file to disk." : "Błąd zapisu na dysk.", - "A PHP extension stopped the file upload." : "Rozszerzenie PHP zatrzymało wysyłanie pliku.", "No file uploaded" : "Nie wysłano pliku", "Unsupported image type" : "Nieobsługiwany typ zdjęcia", - "You are already using a custom theme" : "Używasz już motywu niestandarowego", "Theming" : "Motyw", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Motywy pozwalają na łatwą personalizację wyglądu Twojej instancji i wspieranych klientów. Efekty będą widoczne dla wszystkich użytkowników.", "Name" : "Nazwa", @@ -32,7 +27,11 @@ "Upload new login background" : "Wyślij nowe tło ekranu logowania", "Remove background image" : "Usuń obraz tła", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Aby wygenerować favicon oparte o wysłane logo i kolor, zainstaluj rozszerzenie PHP Imagemagick z obsługą SVG.", + "You are already using a custom theme" : "Używasz już motywu niestandarowego", "reset to default" : "przywróć domyślne", - "Log in image" : "Zdjęcie logowania" + "There is no error, the file uploaded with success" : "Brak błędów, plik wysłano poprawnie.", + "The uploaded file was only partially uploaded" : "Załadowany plik został wysłany tylko częściowo.", + "Failed to write file to disk." : "Błąd zapisu na dysk.", + "A PHP extension stopped the file upload." : "Rozszerzenie PHP zatrzymało wysyłanie pliku." },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" } \ No newline at end of file diff --git a/apps/theming/l10n/pt_BR.js b/apps/theming/l10n/pt_BR.js index 7566de0fddb2a..0cebf02c69bd8 100644 --- a/apps/theming/l10n/pt_BR.js +++ b/apps/theming/l10n/pt_BR.js @@ -5,21 +5,22 @@ OC.L10N.register( "Saved" : "Salva", "Admin" : "Administrador", "a safe home for all your data" : "um lugar seguro para seus dados", + "Name cannot be empty" : "O nome não pode ficar em branco", "The given name is too long" : "O nome é muito longo", "The given web address is too long" : "O endereço web fornecido é muito longo", "The given slogan is too long" : "O slogan dado é muito longo", "The given color is invalid" : "A cor fornecida é inválida", - "There is no error, the file uploaded with success" : "Sem erros. Arquivo enviado com sucesso", + "The file was uploaded" : "O arquivo foi enviado", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "O arquivo enviado excede a diretiva upload_max_filesize do php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "O arquivo enviado excede a diretiva MAX_FILE_SIZE especificada no formulário HTML", - "The uploaded file was only partially uploaded" : "O arquivo foi enviado parcialmente", + "The file was only partially uploaded" : "O aquivo foi parcialmente enviado", "No file was uploaded" : "Nenhum arquivo foi enviado", "Missing a temporary folder" : "Falta uma pasta temporária", - "Failed to write file to disk." : "Falha ao escrever no disco.", - "A PHP extension stopped the file upload." : "Uma extensão PHP parou o envio do arquivo.", + "Could not write file to disk" : "Não foi possível escrever no disco", + "A PHP extension stopped the file upload" : "Uma extensão PHP parou o envio do arquivo", "No file uploaded" : "Nenhum arquivo enviado", "Unsupported image type" : "Tipo de imagem não suportado", - "You are already using a custom theme" : "Você já está usando um tema personalizado", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Você já está usando um tema personalizado. As configurações do aplicativo Theming podem ser sobrescritas por isso.", "Theming" : "Personalização", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Criar e alterar temas torna possível personalizar facilmente o Nextcloud e clientes suportados. Isso será visível para todos os usuários.", "Name" : "Nome", @@ -34,7 +35,11 @@ OC.L10N.register( "Upload new login background" : "Enviar nova imagem de fundo para o login", "Remove background image" : "Excluir a imagem de fundo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instale a extensão PHP Imagemagick com suporte a imagens SVG para gerar favicons automaticamente, com base no logotipo e na cor enviados.", + "You are already using a custom theme" : "Você já está usando um tema personalizado", "reset to default" : "restaurar ao padrão", - "Log in image" : "Imagem do login" + "There is no error, the file uploaded with success" : "Sem erros. Arquivo enviado com sucesso", + "The uploaded file was only partially uploaded" : "O arquivo foi enviado parcialmente", + "Failed to write file to disk." : "Falha ao escrever no disco.", + "A PHP extension stopped the file upload." : "Uma extensão PHP parou o envio do arquivo." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/theming/l10n/pt_BR.json b/apps/theming/l10n/pt_BR.json index 9994069dc0d93..7fd9150fd09ee 100644 --- a/apps/theming/l10n/pt_BR.json +++ b/apps/theming/l10n/pt_BR.json @@ -3,21 +3,22 @@ "Saved" : "Salva", "Admin" : "Administrador", "a safe home for all your data" : "um lugar seguro para seus dados", + "Name cannot be empty" : "O nome não pode ficar em branco", "The given name is too long" : "O nome é muito longo", "The given web address is too long" : "O endereço web fornecido é muito longo", "The given slogan is too long" : "O slogan dado é muito longo", "The given color is invalid" : "A cor fornecida é inválida", - "There is no error, the file uploaded with success" : "Sem erros. Arquivo enviado com sucesso", + "The file was uploaded" : "O arquivo foi enviado", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "O arquivo enviado excede a diretiva upload_max_filesize do php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "O arquivo enviado excede a diretiva MAX_FILE_SIZE especificada no formulário HTML", - "The uploaded file was only partially uploaded" : "O arquivo foi enviado parcialmente", + "The file was only partially uploaded" : "O aquivo foi parcialmente enviado", "No file was uploaded" : "Nenhum arquivo foi enviado", "Missing a temporary folder" : "Falta uma pasta temporária", - "Failed to write file to disk." : "Falha ao escrever no disco.", - "A PHP extension stopped the file upload." : "Uma extensão PHP parou o envio do arquivo.", + "Could not write file to disk" : "Não foi possível escrever no disco", + "A PHP extension stopped the file upload" : "Uma extensão PHP parou o envio do arquivo", "No file uploaded" : "Nenhum arquivo enviado", "Unsupported image type" : "Tipo de imagem não suportado", - "You are already using a custom theme" : "Você já está usando um tema personalizado", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Você já está usando um tema personalizado. As configurações do aplicativo Theming podem ser sobrescritas por isso.", "Theming" : "Personalização", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Criar e alterar temas torna possível personalizar facilmente o Nextcloud e clientes suportados. Isso será visível para todos os usuários.", "Name" : "Nome", @@ -32,7 +33,11 @@ "Upload new login background" : "Enviar nova imagem de fundo para o login", "Remove background image" : "Excluir a imagem de fundo", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instale a extensão PHP Imagemagick com suporte a imagens SVG para gerar favicons automaticamente, com base no logotipo e na cor enviados.", + "You are already using a custom theme" : "Você já está usando um tema personalizado", "reset to default" : "restaurar ao padrão", - "Log in image" : "Imagem do login" + "There is no error, the file uploaded with success" : "Sem erros. Arquivo enviado com sucesso", + "The uploaded file was only partially uploaded" : "O arquivo foi enviado parcialmente", + "Failed to write file to disk." : "Falha ao escrever no disco.", + "A PHP extension stopped the file upload." : "Uma extensão PHP parou o envio do arquivo." },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/pt_PT.js b/apps/theming/l10n/pt_PT.js new file mode 100644 index 0000000000000..add385f5ce8f6 --- /dev/null +++ b/apps/theming/l10n/pt_PT.js @@ -0,0 +1,39 @@ +OC.L10N.register( + "theming", + { + "Loading preview…" : "A carregar pre-visualização...", + "Saved" : "Guardado", + "Admin" : "Administrador", + "a safe home for all your data" : "Um local seguro para todos os seus dados", + "The given name is too long" : "O nome atribuído é demasiado longo", + "The given web address is too long" : "O endereço web atribuído é demasiado longo", + "The given slogan is too long" : "O slogan atribuído é demasiado longo", + "The given color is invalid" : "A cor atribuída é inválida", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "O ficheiro carregado excede a directiva upload_max_filesize no php.ini ", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "O ficheiro carregado excedo a directiva MAX_FILE_SIZE especificada no formulário HTML", + "No file was uploaded" : "O ficheiro foi carregado", + "Missing a temporary folder" : "Falta uma pasta temporária", + "No file uploaded" : "Nenhum ficheiro carregado", + "Unsupported image type" : "Tipo de imagem não suportado", + "Theming" : "Temática", + "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "A tematização possibilita a fácil personalização da aparência da sua instância e clientes suportados. Isto será visível para todos os utilizadores", + "Name" : "Nome", + "Reset to default" : "Repor original", + "Web address" : "Endereço Web", + "Web address https://…" : "Endereço Web https::// ...", + "Slogan" : "Slogan", + "Color" : "Cor", + "Logo" : "Logótipo", + "Upload new logo" : "Carregar novo logótipo", + "Login image" : "Imagem de Login", + "Upload new login background" : "Carregar imagem de segundo plano de Login", + "Remove background image" : "Remover imagem de segundo plano", + "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instale a extensão PHP Imagemagick com suporte para imagens SVG para gerar automaticamente favicons com base na cor e no logotipo carregado.", + "You are already using a custom theme" : "Já está a usar um tema personalizado", + "reset to default" : "restaurar valor padrão", + "There is no error, the file uploaded with success" : "Não ocorreu nenhum erro, o ficheiro foi carregado com sucesso", + "The uploaded file was only partially uploaded" : "O ficheiro escolhido foi apenas parcialmente carregado", + "Failed to write file to disk." : "Falhou a escrever o ficheiro no disco.", + "A PHP extension stopped the file upload." : "Uma extensão PHP parou o carregamento do ficheiro." +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/pt_PT.json b/apps/theming/l10n/pt_PT.json new file mode 100644 index 0000000000000..0ce97a8df20a2 --- /dev/null +++ b/apps/theming/l10n/pt_PT.json @@ -0,0 +1,37 @@ +{ "translations": { + "Loading preview…" : "A carregar pre-visualização...", + "Saved" : "Guardado", + "Admin" : "Administrador", + "a safe home for all your data" : "Um local seguro para todos os seus dados", + "The given name is too long" : "O nome atribuído é demasiado longo", + "The given web address is too long" : "O endereço web atribuído é demasiado longo", + "The given slogan is too long" : "O slogan atribuído é demasiado longo", + "The given color is invalid" : "A cor atribuída é inválida", + "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "O ficheiro carregado excede a directiva upload_max_filesize no php.ini ", + "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "O ficheiro carregado excedo a directiva MAX_FILE_SIZE especificada no formulário HTML", + "No file was uploaded" : "O ficheiro foi carregado", + "Missing a temporary folder" : "Falta uma pasta temporária", + "No file uploaded" : "Nenhum ficheiro carregado", + "Unsupported image type" : "Tipo de imagem não suportado", + "Theming" : "Temática", + "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "A tematização possibilita a fácil personalização da aparência da sua instância e clientes suportados. Isto será visível para todos os utilizadores", + "Name" : "Nome", + "Reset to default" : "Repor original", + "Web address" : "Endereço Web", + "Web address https://…" : "Endereço Web https::// ...", + "Slogan" : "Slogan", + "Color" : "Cor", + "Logo" : "Logótipo", + "Upload new logo" : "Carregar novo logótipo", + "Login image" : "Imagem de Login", + "Upload new login background" : "Carregar imagem de segundo plano de Login", + "Remove background image" : "Remover imagem de segundo plano", + "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Instale a extensão PHP Imagemagick com suporte para imagens SVG para gerar automaticamente favicons com base na cor e no logotipo carregado.", + "You are already using a custom theme" : "Já está a usar um tema personalizado", + "reset to default" : "restaurar valor padrão", + "There is no error, the file uploaded with success" : "Não ocorreu nenhum erro, o ficheiro foi carregado com sucesso", + "The uploaded file was only partially uploaded" : "O ficheiro escolhido foi apenas parcialmente carregado", + "Failed to write file to disk." : "Falhou a escrever o ficheiro no disco.", + "A PHP extension stopped the file upload." : "Uma extensão PHP parou o carregamento do ficheiro." +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/apps/theming/l10n/ru.js b/apps/theming/l10n/ru.js index 18c907f6ceaf9..f1d50580aa5dc 100644 --- a/apps/theming/l10n/ru.js +++ b/apps/theming/l10n/ru.js @@ -5,21 +5,18 @@ OC.L10N.register( "Saved" : "Сохранено", "Admin" : "Администратор", "a safe home for all your data" : "надёжный дом для всех ваших данных", + "Name cannot be empty" : "Имя не может быть пустым", "The given name is too long" : "Указанное название слишком длинное", "The given web address is too long" : "Указанный веб адрес слишком длинный", "The given slogan is too long" : "Указанный слоган слишком длинный", "The given color is invalid" : "Задан неправильный цвет", - "There is no error, the file uploaded with success" : "Файл загружен успешно. Ошибок нет.", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Размер загруженного файла превышает установленный предел upload_max_filesize в php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Размер загруженного файла превышает установленный предел MAX_FILE_SIZE в HTML-форме", - "The uploaded file was only partially uploaded" : "Файл загружен лишь частично", + "The file was only partially uploaded" : "Файл был получен частично", "No file was uploaded" : "Не было загружено ни одного файла", "Missing a temporary folder" : "Отсутствует временный каталог", - "Failed to write file to disk." : "Ошибка записи на диск.", - "A PHP extension stopped the file upload." : "PHP прервало загрузку файла.", "No file uploaded" : "Нет загруженных файлов", "Unsupported image type" : "Неподдерживаемый тип изображения", - "You are already using a custom theme" : "Вы уже используете настраиваемую тему", "Theming" : "Темы оформления", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Темы оформление позволяют легко настроить внешний вид вашего сервера и поддерживаемых клиентов. Это будет доступно для всех пользователей.", "Name" : "Название", @@ -34,7 +31,11 @@ OC.L10N.register( "Upload new login background" : "Загрузить новый фон для экрана входа в систему", "Remove background image" : "Убрать фоновое изображение ", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Для автоматической генерации favicon на основе загруженного логотипа и цвета нужно установить PHP расширение Imagemagick с поддержкой изображений SVG ", + "You are already using a custom theme" : "Вы уже используете настраиваемую тему", "reset to default" : "сброс до настроек по-умолчанию", - "Log in image" : "Изображение экрана входа в систему" + "There is no error, the file uploaded with success" : "Файл загружен успешно. Ошибок нет.", + "The uploaded file was only partially uploaded" : "Файл загружен лишь частично", + "Failed to write file to disk." : "Ошибка записи на диск.", + "A PHP extension stopped the file upload." : "PHP прервало загрузку файла." }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/apps/theming/l10n/ru.json b/apps/theming/l10n/ru.json index 2d996c8f3e520..6eae1f40b33bb 100644 --- a/apps/theming/l10n/ru.json +++ b/apps/theming/l10n/ru.json @@ -3,21 +3,18 @@ "Saved" : "Сохранено", "Admin" : "Администратор", "a safe home for all your data" : "надёжный дом для всех ваших данных", + "Name cannot be empty" : "Имя не может быть пустым", "The given name is too long" : "Указанное название слишком длинное", "The given web address is too long" : "Указанный веб адрес слишком длинный", "The given slogan is too long" : "Указанный слоган слишком длинный", "The given color is invalid" : "Задан неправильный цвет", - "There is no error, the file uploaded with success" : "Файл загружен успешно. Ошибок нет.", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Размер загруженного файла превышает установленный предел upload_max_filesize в php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Размер загруженного файла превышает установленный предел MAX_FILE_SIZE в HTML-форме", - "The uploaded file was only partially uploaded" : "Файл загружен лишь частично", + "The file was only partially uploaded" : "Файл был получен частично", "No file was uploaded" : "Не было загружено ни одного файла", "Missing a temporary folder" : "Отсутствует временный каталог", - "Failed to write file to disk." : "Ошибка записи на диск.", - "A PHP extension stopped the file upload." : "PHP прервало загрузку файла.", "No file uploaded" : "Нет загруженных файлов", "Unsupported image type" : "Неподдерживаемый тип изображения", - "You are already using a custom theme" : "Вы уже используете настраиваемую тему", "Theming" : "Темы оформления", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Темы оформление позволяют легко настроить внешний вид вашего сервера и поддерживаемых клиентов. Это будет доступно для всех пользователей.", "Name" : "Название", @@ -32,7 +29,11 @@ "Upload new login background" : "Загрузить новый фон для экрана входа в систему", "Remove background image" : "Убрать фоновое изображение ", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Для автоматической генерации favicon на основе загруженного логотипа и цвета нужно установить PHP расширение Imagemagick с поддержкой изображений SVG ", + "You are already using a custom theme" : "Вы уже используете настраиваемую тему", "reset to default" : "сброс до настроек по-умолчанию", - "Log in image" : "Изображение экрана входа в систему" + "There is no error, the file uploaded with success" : "Файл загружен успешно. Ошибок нет.", + "The uploaded file was only partially uploaded" : "Файл загружен лишь частично", + "Failed to write file to disk." : "Ошибка записи на диск.", + "A PHP extension stopped the file upload." : "PHP прервало загрузку файла." },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } \ No newline at end of file diff --git a/apps/theming/l10n/sk.js b/apps/theming/l10n/sk.js index fe4a78ce2d8e9..c07c3bd6733da 100644 --- a/apps/theming/l10n/sk.js +++ b/apps/theming/l10n/sk.js @@ -5,21 +5,18 @@ OC.L10N.register( "Saved" : "Uložené", "Admin" : "Správca", "a safe home for all your data" : "bezpečný domov pre všetky vaše dáta", + "Name cannot be empty" : "Názov nemôže byť prázdny", "The given name is too long" : "Zadané meno je príliš dlhé", "The given web address is too long" : "Zadaná web adresa je príliš dlhá", "The given slogan is too long" : "Zadaný slogan je príliš dlhý", "The given color is invalid" : "Zadaná farba nie je platná", - "There is no error, the file uploaded with success" : "Nenastala žiadna chyba, súbor bol úspešne nahraný", + "The file was uploaded" : "Súbor bol nahraný", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Nahraný súbor prekročil limit nastavený v upload_max_filesize v súbore php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Ukladaný súbor prekračuje nastavenie MAX_FILE_SIZE z volieb HTML formulára.", - "The uploaded file was only partially uploaded" : "Ukladaný súbor sa nahral len čiastočne", "No file was uploaded" : "Nenahral sa žiadny súbor", "Missing a temporary folder" : "Chýba priečinok pre dočasné súbory", - "Failed to write file to disk." : "Nepodarilo sa zapísať súbor na disk.", - "A PHP extension stopped the file upload." : "rozšírenie PHP zastavilo nahrávanie súboru.", "No file uploaded" : "Žiadny súbor nebol nahraný", "Unsupported image type" : "Typ obrázka nie je podporovaný", - "You are already using a custom theme" : "Už používate upravený vzhľad", "Theming" : "Zmena vzhľadu", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Zmena vzhľadu umožňuje ľahko upraviť pocit z vašej inštalácie a podporovaných klientov. Toto bude viditeľné pre všetkých klientov.", "Name" : "Názov", @@ -34,7 +31,11 @@ OC.L10N.register( "Upload new login background" : "Nahrať nové prihlasovacie pozadie", "Remove background image" : "Odstrániť obrázok pozadia", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Ak chcete automaticky generovať favikony na základe nahraného loga a farby, nainštalujte rozšírenie Imagemagick PHP s podporou pre SVG obrázky.", + "You are already using a custom theme" : "Už používate upravený vzhľad", "reset to default" : "nastaviť predvolené", - "Log in image" : "Prihlasovací obrázok" + "There is no error, the file uploaded with success" : "Nenastala žiadna chyba, súbor bol úspešne nahraný", + "The uploaded file was only partially uploaded" : "Ukladaný súbor sa nahral len čiastočne", + "Failed to write file to disk." : "Nepodarilo sa zapísať súbor na disk.", + "A PHP extension stopped the file upload." : "rozšírenie PHP zastavilo nahrávanie súboru." }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/theming/l10n/sk.json b/apps/theming/l10n/sk.json index 5bbf58531a3ba..649c93010ea0c 100644 --- a/apps/theming/l10n/sk.json +++ b/apps/theming/l10n/sk.json @@ -3,21 +3,18 @@ "Saved" : "Uložené", "Admin" : "Správca", "a safe home for all your data" : "bezpečný domov pre všetky vaše dáta", + "Name cannot be empty" : "Názov nemôže byť prázdny", "The given name is too long" : "Zadané meno je príliš dlhé", "The given web address is too long" : "Zadaná web adresa je príliš dlhá", "The given slogan is too long" : "Zadaný slogan je príliš dlhý", "The given color is invalid" : "Zadaná farba nie je platná", - "There is no error, the file uploaded with success" : "Nenastala žiadna chyba, súbor bol úspešne nahraný", + "The file was uploaded" : "Súbor bol nahraný", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Nahraný súbor prekročil limit nastavený v upload_max_filesize v súbore php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Ukladaný súbor prekračuje nastavenie MAX_FILE_SIZE z volieb HTML formulára.", - "The uploaded file was only partially uploaded" : "Ukladaný súbor sa nahral len čiastočne", "No file was uploaded" : "Nenahral sa žiadny súbor", "Missing a temporary folder" : "Chýba priečinok pre dočasné súbory", - "Failed to write file to disk." : "Nepodarilo sa zapísať súbor na disk.", - "A PHP extension stopped the file upload." : "rozšírenie PHP zastavilo nahrávanie súboru.", "No file uploaded" : "Žiadny súbor nebol nahraný", "Unsupported image type" : "Typ obrázka nie je podporovaný", - "You are already using a custom theme" : "Už používate upravený vzhľad", "Theming" : "Zmena vzhľadu", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Zmena vzhľadu umožňuje ľahko upraviť pocit z vašej inštalácie a podporovaných klientov. Toto bude viditeľné pre všetkých klientov.", "Name" : "Názov", @@ -32,7 +29,11 @@ "Upload new login background" : "Nahrať nové prihlasovacie pozadie", "Remove background image" : "Odstrániť obrázok pozadia", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Ak chcete automaticky generovať favikony na základe nahraného loga a farby, nainštalujte rozšírenie Imagemagick PHP s podporou pre SVG obrázky.", + "You are already using a custom theme" : "Už používate upravený vzhľad", "reset to default" : "nastaviť predvolené", - "Log in image" : "Prihlasovací obrázok" + "There is no error, the file uploaded with success" : "Nenastala žiadna chyba, súbor bol úspešne nahraný", + "The uploaded file was only partially uploaded" : "Ukladaný súbor sa nahral len čiastočne", + "Failed to write file to disk." : "Nepodarilo sa zapísať súbor na disk.", + "A PHP extension stopped the file upload." : "rozšírenie PHP zastavilo nahrávanie súboru." },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/theming/l10n/sl.js b/apps/theming/l10n/sl.js index bd82b2beab28f..5475cc8241b5d 100644 --- a/apps/theming/l10n/sl.js +++ b/apps/theming/l10n/sl.js @@ -11,7 +11,6 @@ OC.L10N.register( "The given color is invalid" : "Izbrana barva je neveljavna", "No file uploaded" : "Ni naložene datoteke", "Unsupported image type" : "Nepodprt tip datoteke", - "You are already using a custom theme" : "Ti že uporabljaš lastno temo", "Theming" : "Teme", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Teme omogočajo, da enostavno prilagodiš izgled in občutek svojega strežnika in podprtih strank. To bodo videli vsi uporabniki.", "Name" : "Ime", @@ -25,7 +24,7 @@ OC.L10N.register( "Login image" : "Slika ob prijavi", "Upload new login background" : "Naloži novo ozadje za prijavo", "Remove background image" : "Odstrani sliko ozadja", - "reset to default" : "ponastavi na privzeto", - "Log in image" : "Slika ob prijavi" + "You are already using a custom theme" : "Ti že uporabljaš lastno temo", + "reset to default" : "ponastavi na privzeto" }, "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); diff --git a/apps/theming/l10n/sl.json b/apps/theming/l10n/sl.json index 82dd83eb5fde2..3a37919e76e60 100644 --- a/apps/theming/l10n/sl.json +++ b/apps/theming/l10n/sl.json @@ -9,7 +9,6 @@ "The given color is invalid" : "Izbrana barva je neveljavna", "No file uploaded" : "Ni naložene datoteke", "Unsupported image type" : "Nepodprt tip datoteke", - "You are already using a custom theme" : "Ti že uporabljaš lastno temo", "Theming" : "Teme", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Teme omogočajo, da enostavno prilagodiš izgled in občutek svojega strežnika in podprtih strank. To bodo videli vsi uporabniki.", "Name" : "Ime", @@ -23,7 +22,7 @@ "Login image" : "Slika ob prijavi", "Upload new login background" : "Naloži novo ozadje za prijavo", "Remove background image" : "Odstrani sliko ozadja", - "reset to default" : "ponastavi na privzeto", - "Log in image" : "Slika ob prijavi" + "You are already using a custom theme" : "Ti že uporabljaš lastno temo", + "reset to default" : "ponastavi na privzeto" },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" } \ No newline at end of file diff --git a/apps/theming/l10n/sq.js b/apps/theming/l10n/sq.js index a8bb7640d2fd5..55f0eac5e5492 100644 --- a/apps/theming/l10n/sq.js +++ b/apps/theming/l10n/sq.js @@ -11,7 +11,6 @@ OC.L10N.register( "The given color is invalid" : "Ngjyra e dhënë është invalide ", "No file uploaded" : "Asnjë skedar i ngarkuar", "Unsupported image type" : "Lloj imazhi i pa suportuar", - "You are already using a custom theme" : "Ju jeni duke përdorur një temë të zakonshme tashmë", "Theming" : "Duke vendosur theme-n", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Theming bën të mundur për të përshtatur lehtësisht pamjen dhe ndjenjën e instancës suaj dhe klientëve të mbështetur. Kjo do të jetë e dukshme për të gjithë përdoruesit.", "Name" : "Emri", @@ -25,7 +24,7 @@ OC.L10N.register( "Login image" : "Imazhi i hyrjes", "Upload new login background" : "Ngarko background të ri hyrjeje", "Remove background image" : "Hiqni imazhin në sfond", - "reset to default" : "rivendos tek të paracaktuarat", - "Log in image" : "Imazhi i identifikimit" + "You are already using a custom theme" : "Ju jeni duke përdorur një temë të zakonshme tashmë", + "reset to default" : "rivendos tek të paracaktuarat" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/sq.json b/apps/theming/l10n/sq.json index be6b236c56fa3..281fe7f801334 100644 --- a/apps/theming/l10n/sq.json +++ b/apps/theming/l10n/sq.json @@ -9,7 +9,6 @@ "The given color is invalid" : "Ngjyra e dhënë është invalide ", "No file uploaded" : "Asnjë skedar i ngarkuar", "Unsupported image type" : "Lloj imazhi i pa suportuar", - "You are already using a custom theme" : "Ju jeni duke përdorur një temë të zakonshme tashmë", "Theming" : "Duke vendosur theme-n", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Theming bën të mundur për të përshtatur lehtësisht pamjen dhe ndjenjën e instancës suaj dhe klientëve të mbështetur. Kjo do të jetë e dukshme për të gjithë përdoruesit.", "Name" : "Emri", @@ -23,7 +22,7 @@ "Login image" : "Imazhi i hyrjes", "Upload new login background" : "Ngarko background të ri hyrjeje", "Remove background image" : "Hiqni imazhin në sfond", - "reset to default" : "rivendos tek të paracaktuarat", - "Log in image" : "Imazhi i identifikimit" + "You are already using a custom theme" : "Ju jeni duke përdorur një temë të zakonshme tashmë", + "reset to default" : "rivendos tek të paracaktuarat" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/sr.js b/apps/theming/l10n/sr.js index 3d9ae24651a4f..9ba3df16b53ab 100644 --- a/apps/theming/l10n/sr.js +++ b/apps/theming/l10n/sr.js @@ -5,21 +5,22 @@ OC.L10N.register( "Saved" : "Сачувано", "Admin" : "Администрација", "a safe home for all your data" : "сигурно место за све Ваше податке", + "Name cannot be empty" : "Име не може бити празно", "The given name is too long" : "Име је предугачко", "The given web address is too long" : "Адреса је предугачка", "The given slogan is too long" : "Слоган је предугачак", "The given color is invalid" : "Задата боја није исправна", - "There is no error, the file uploaded with success" : "Нема грешке, фајл је отпремљен успешно", + "The file was uploaded" : "Фајл је отпремљен", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Отпремани фајл превазилази смерницу upload_max_filesize у фајлу php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Отпремани фајл превазилази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу", - "The uploaded file was only partially uploaded" : "Отпремани фајл је само делимично отпремљен", + "The file was only partially uploaded" : "Фајл је само делимично отпремљен", "No file was uploaded" : "Ниједан фајл није отпремљен", "Missing a temporary folder" : "Недостаје привремена фасцикла", - "Failed to write file to disk." : "Не могу да пишем фајл на диск", - "A PHP extension stopped the file upload." : "PHP екстензија је зауставила отпремање фајла.", + "Could not write file to disk" : "Не могу да пишем фајл на диск", + "A PHP extension stopped the file upload" : "PHP екстензија је зауставила отпремање фајла", "No file uploaded" : "Ниједан фајл није отпремљен", "Unsupported image type" : "Неподржани тип слике", - "You are already using a custom theme" : "Већ користите прилагођену тему", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Већ користите прилагођену тему. Подешавања ове апликације ће можда бити пребрисана тиме.", "Theming" : "Теме", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Теме Вам омогућавају да лако измените изглед Ваше инстанце и подржаних клијената. Ово ће бити видљиво свим корисницима.", "Name" : "Име", @@ -34,7 +35,11 @@ OC.L10N.register( "Upload new login background" : "Отпремите нову позадину на пријави", "Remove background image" : "Уклони позадину", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Инсталирајте Imagemagick PHP екстензију која подржава SVG слике, да аутоматски направи иконе од отпремљеног логоа и боје.", + "You are already using a custom theme" : "Већ користите прилагођену тему", "reset to default" : "ресетуј на подразумевано", - "Log in image" : "Слика на пријави" + "There is no error, the file uploaded with success" : "Нема грешке, фајл је отпремљен успешно", + "The uploaded file was only partially uploaded" : "Отпремани фајл је само делимично отпремљен", + "Failed to write file to disk." : "Не могу да пишем фајл на диск", + "A PHP extension stopped the file upload." : "PHP екстензија је зауставила отпремање фајла." }, "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/apps/theming/l10n/sr.json b/apps/theming/l10n/sr.json index 4b99d1a2167b1..735302d718c39 100644 --- a/apps/theming/l10n/sr.json +++ b/apps/theming/l10n/sr.json @@ -3,21 +3,22 @@ "Saved" : "Сачувано", "Admin" : "Администрација", "a safe home for all your data" : "сигурно место за све Ваше податке", + "Name cannot be empty" : "Име не може бити празно", "The given name is too long" : "Име је предугачко", "The given web address is too long" : "Адреса је предугачка", "The given slogan is too long" : "Слоган је предугачак", "The given color is invalid" : "Задата боја није исправна", - "There is no error, the file uploaded with success" : "Нема грешке, фајл је отпремљен успешно", + "The file was uploaded" : "Фајл је отпремљен", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Отпремани фајл превазилази смерницу upload_max_filesize у фајлу php.ini", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Отпремани фајл превазилази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу", - "The uploaded file was only partially uploaded" : "Отпремани фајл је само делимично отпремљен", + "The file was only partially uploaded" : "Фајл је само делимично отпремљен", "No file was uploaded" : "Ниједан фајл није отпремљен", "Missing a temporary folder" : "Недостаје привремена фасцикла", - "Failed to write file to disk." : "Не могу да пишем фајл на диск", - "A PHP extension stopped the file upload." : "PHP екстензија је зауставила отпремање фајла.", + "Could not write file to disk" : "Не могу да пишем фајл на диск", + "A PHP extension stopped the file upload" : "PHP екстензија је зауставила отпремање фајла", "No file uploaded" : "Ниједан фајл није отпремљен", "Unsupported image type" : "Неподржани тип слике", - "You are already using a custom theme" : "Већ користите прилагођену тему", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Већ користите прилагођену тему. Подешавања ове апликације ће можда бити пребрисана тиме.", "Theming" : "Теме", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Теме Вам омогућавају да лако измените изглед Ваше инстанце и подржаних клијената. Ово ће бити видљиво свим корисницима.", "Name" : "Име", @@ -32,7 +33,11 @@ "Upload new login background" : "Отпремите нову позадину на пријави", "Remove background image" : "Уклони позадину", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Инсталирајте Imagemagick PHP екстензију која подржава SVG слике, да аутоматски направи иконе од отпремљеног логоа и боје.", + "You are already using a custom theme" : "Већ користите прилагођену тему", "reset to default" : "ресетуј на подразумевано", - "Log in image" : "Слика на пријави" + "There is no error, the file uploaded with success" : "Нема грешке, фајл је отпремљен успешно", + "The uploaded file was only partially uploaded" : "Отпремани фајл је само делимично отпремљен", + "Failed to write file to disk." : "Не могу да пишем фајл на диск", + "A PHP extension stopped the file upload." : "PHP екстензија је зауставила отпремање фајла." },"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);" } \ No newline at end of file diff --git a/apps/theming/l10n/sv.js b/apps/theming/l10n/sv.js index 5d5c7a9ca10a9..d56503dcf1b76 100644 --- a/apps/theming/l10n/sv.js +++ b/apps/theming/l10n/sv.js @@ -5,21 +5,17 @@ OC.L10N.register( "Saved" : "Sparat", "Admin" : "Admin", "a safe home for all your data" : "En säker lagringsplats för all din data", + "Name cannot be empty" : "Namn kan inte vara tom", "The given name is too long" : "Det angivna namnet är för långt", "The given web address is too long" : "Den angivna adressen är för lång", "The given slogan is too long" : "Den angivna slogan är för lång", "The given color is invalid" : "Den angivna färgen är inte tillgänglig", - "There is no error, the file uploaded with success" : "Det finns inga fel, uppladdning av filen lyckades ", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Uppladdningsfilen är för stor (upload_max_filesize i php.ini)", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Den uppladdade filen överstiger MAX_FILE_SIZE-instruktionen specificerad i HTML-form", - "The uploaded file was only partially uploaded" : "Den uppladdade filen laddades bara upp delvis", "No file was uploaded" : "Ingen fil laddades up", "Missing a temporary folder" : "Saknar en temporär mapp", - "Failed to write file to disk." : "Misslyckades att skriva till disk", - "A PHP extension stopped the file upload." : "Ett PHP-tillägg stoppade uppladdningen av filen.", "No file uploaded" : "Ingen fil uppladdad", "Unsupported image type" : "Filtypen är ej giltig", - "You are already using a custom theme" : "Du använder redan ett annat tema", "Theming" : "Teman", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Teman gör det möjligt att enkelt skräddarsy utseendet på ditt moln. Detta kommer att synas för alla användare.", "Name" : "Namn", @@ -33,7 +29,11 @@ OC.L10N.register( "Login image" : "Inloggningsbild", "Upload new login background" : "Ladda upp ny bakgrundsbild", "Remove background image" : "Ta bort bakgrundsbild", + "You are already using a custom theme" : "Du använder redan ett annat tema", "reset to default" : "Återställ till standard", - "Log in image" : "Inloggningsbild" + "There is no error, the file uploaded with success" : "Det finns inga fel, uppladdning av filen lyckades ", + "The uploaded file was only partially uploaded" : "Den uppladdade filen laddades bara upp delvis", + "Failed to write file to disk." : "Misslyckades att skriva till disk", + "A PHP extension stopped the file upload." : "Ett PHP-tillägg stoppade uppladdningen av filen." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/theming/l10n/sv.json b/apps/theming/l10n/sv.json index faf0054a45dc1..8a37792fed83b 100644 --- a/apps/theming/l10n/sv.json +++ b/apps/theming/l10n/sv.json @@ -3,21 +3,17 @@ "Saved" : "Sparat", "Admin" : "Admin", "a safe home for all your data" : "En säker lagringsplats för all din data", + "Name cannot be empty" : "Namn kan inte vara tom", "The given name is too long" : "Det angivna namnet är för långt", "The given web address is too long" : "Den angivna adressen är för lång", "The given slogan is too long" : "Den angivna slogan är för lång", "The given color is invalid" : "Den angivna färgen är inte tillgänglig", - "There is no error, the file uploaded with success" : "Det finns inga fel, uppladdning av filen lyckades ", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Uppladdningsfilen är för stor (upload_max_filesize i php.ini)", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Den uppladdade filen överstiger MAX_FILE_SIZE-instruktionen specificerad i HTML-form", - "The uploaded file was only partially uploaded" : "Den uppladdade filen laddades bara upp delvis", "No file was uploaded" : "Ingen fil laddades up", "Missing a temporary folder" : "Saknar en temporär mapp", - "Failed to write file to disk." : "Misslyckades att skriva till disk", - "A PHP extension stopped the file upload." : "Ett PHP-tillägg stoppade uppladdningen av filen.", "No file uploaded" : "Ingen fil uppladdad", "Unsupported image type" : "Filtypen är ej giltig", - "You are already using a custom theme" : "Du använder redan ett annat tema", "Theming" : "Teman", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Teman gör det möjligt att enkelt skräddarsy utseendet på ditt moln. Detta kommer att synas för alla användare.", "Name" : "Namn", @@ -31,7 +27,11 @@ "Login image" : "Inloggningsbild", "Upload new login background" : "Ladda upp ny bakgrundsbild", "Remove background image" : "Ta bort bakgrundsbild", + "You are already using a custom theme" : "Du använder redan ett annat tema", "reset to default" : "Återställ till standard", - "Log in image" : "Inloggningsbild" + "There is no error, the file uploaded with success" : "Det finns inga fel, uppladdning av filen lyckades ", + "The uploaded file was only partially uploaded" : "Den uppladdade filen laddades bara upp delvis", + "Failed to write file to disk." : "Misslyckades att skriva till disk", + "A PHP extension stopped the file upload." : "Ett PHP-tillägg stoppade uppladdningen av filen." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/tr.js b/apps/theming/l10n/tr.js index aec0aa53d8605..287678c376537 100644 --- a/apps/theming/l10n/tr.js +++ b/apps/theming/l10n/tr.js @@ -5,21 +5,22 @@ OC.L10N.register( "Saved" : "Kaydedildi", "Admin" : "Yönetici", "a safe home for all your data" : "verileriniz için güvenli bir barınak", + "Name cannot be empty" : "Ad boş olamaz", "The given name is too long" : "Belirtilen ad çok uzun", "The given web address is too long" : "Belirtilen web adresi çok uzun", "The given slogan is too long" : "Belirtilen slogan çok uzun", "The given color is invalid" : "Belirtilen renk geçersiz", - "There is no error, the file uploaded with success" : "Herhangi bir sorun yok, dosya yüklendi", + "The file was uploaded" : "Dosya yüklendi", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Yüklenen dosya php.ini dosyasındaki yüklenebilecek dosya boyutunu belirten upload_max_filesize değişkeninin değerini aşıyor", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Yüklenen dosya HTML formundaki yüklenebilecek dosya boyutunu belirten MAX_FILE_SIZE değişkeninin değerini aşıyor", - "The uploaded file was only partially uploaded" : "Dosyanın yalnızca bir bölümü yüklenebildi", + "The file was only partially uploaded" : "Dosyanın yalnız bir bölümü yüklendi", "No file was uploaded" : "Herhangi bir dosya yüklenmedi", "Missing a temporary folder" : "Geçici klasör bulunamadı", - "Failed to write file to disk." : "Dosya diske yazılamadı.", - "A PHP extension stopped the file upload." : "Bir PHP eklentisi dosyanın yüklenmesini engelledi.", + "Could not write file to disk" : "Dosya diske yazılamadı", + "A PHP extension stopped the file upload" : "Bir PHP eklentisi dosyanın yüklenmesini engelledi", "No file uploaded" : "Herhangi bir dosya yüklenmemiş", "Unsupported image type" : "Görsel türü desteklenmiyor", - "You are already using a custom theme" : "Zaten özel bir tema kullanıyorsunuz", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Zaten özel bir tema kullanıyorsunuz. Tema uygulaması ayarları bu değer ile değiştirilebilir.", "Theming" : "Tema", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Temalar kullandığınız kopyanın ve desteklenen istemcilerin genel görünümün kolayca değiştirilmesini sağlar. Tüm kullanıcılara görüntülenir.", "Name" : "Ad", @@ -34,7 +35,11 @@ OC.L10N.register( "Upload new login background" : "Yeni oturum açma art alanı yükle", "Remove background image" : "Art alan görselini kaldır", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Yüklenen logo ve renge göre otomatik olarak favicon üretilmesi için Imagemagick PHP eklentisini SVG desteği ile kurun.", + "You are already using a custom theme" : "Zaten özel bir tema kullanıyorsunuz", "reset to default" : "varsayılana dön", - "Log in image" : "Oturum açma görseli" + "There is no error, the file uploaded with success" : "Herhangi bir sorun yok, dosya yüklendi", + "The uploaded file was only partially uploaded" : "Dosyanın yalnızca bir bölümü yüklenebildi", + "Failed to write file to disk." : "Dosya diske yazılamadı.", + "A PHP extension stopped the file upload." : "Bir PHP eklentisi dosyanın yüklenmesini engelledi." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/theming/l10n/tr.json b/apps/theming/l10n/tr.json index 8c05908232765..d4c587eb1817e 100644 --- a/apps/theming/l10n/tr.json +++ b/apps/theming/l10n/tr.json @@ -3,21 +3,22 @@ "Saved" : "Kaydedildi", "Admin" : "Yönetici", "a safe home for all your data" : "verileriniz için güvenli bir barınak", + "Name cannot be empty" : "Ad boş olamaz", "The given name is too long" : "Belirtilen ad çok uzun", "The given web address is too long" : "Belirtilen web adresi çok uzun", "The given slogan is too long" : "Belirtilen slogan çok uzun", "The given color is invalid" : "Belirtilen renk geçersiz", - "There is no error, the file uploaded with success" : "Herhangi bir sorun yok, dosya yüklendi", + "The file was uploaded" : "Dosya yüklendi", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Yüklenen dosya php.ini dosyasındaki yüklenebilecek dosya boyutunu belirten upload_max_filesize değişkeninin değerini aşıyor", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Yüklenen dosya HTML formundaki yüklenebilecek dosya boyutunu belirten MAX_FILE_SIZE değişkeninin değerini aşıyor", - "The uploaded file was only partially uploaded" : "Dosyanın yalnızca bir bölümü yüklenebildi", + "The file was only partially uploaded" : "Dosyanın yalnız bir bölümü yüklendi", "No file was uploaded" : "Herhangi bir dosya yüklenmedi", "Missing a temporary folder" : "Geçici klasör bulunamadı", - "Failed to write file to disk." : "Dosya diske yazılamadı.", - "A PHP extension stopped the file upload." : "Bir PHP eklentisi dosyanın yüklenmesini engelledi.", + "Could not write file to disk" : "Dosya diske yazılamadı", + "A PHP extension stopped the file upload" : "Bir PHP eklentisi dosyanın yüklenmesini engelledi", "No file uploaded" : "Herhangi bir dosya yüklenmemiş", "Unsupported image type" : "Görsel türü desteklenmiyor", - "You are already using a custom theme" : "Zaten özel bir tema kullanıyorsunuz", + "You are already using a custom theme. Theming app settings might be overwritten by that." : "Zaten özel bir tema kullanıyorsunuz. Tema uygulaması ayarları bu değer ile değiştirilebilir.", "Theming" : "Tema", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Temalar kullandığınız kopyanın ve desteklenen istemcilerin genel görünümün kolayca değiştirilmesini sağlar. Tüm kullanıcılara görüntülenir.", "Name" : "Ad", @@ -32,7 +33,11 @@ "Upload new login background" : "Yeni oturum açma art alanı yükle", "Remove background image" : "Art alan görselini kaldır", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "Yüklenen logo ve renge göre otomatik olarak favicon üretilmesi için Imagemagick PHP eklentisini SVG desteği ile kurun.", + "You are already using a custom theme" : "Zaten özel bir tema kullanıyorsunuz", "reset to default" : "varsayılana dön", - "Log in image" : "Oturum açma görseli" + "There is no error, the file uploaded with success" : "Herhangi bir sorun yok, dosya yüklendi", + "The uploaded file was only partially uploaded" : "Dosyanın yalnızca bir bölümü yüklenebildi", + "Failed to write file to disk." : "Dosya diske yazılamadı.", + "A PHP extension stopped the file upload." : "Bir PHP eklentisi dosyanın yüklenmesini engelledi." },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/theming/l10n/vi.js b/apps/theming/l10n/vi.js index de28f75ab6d1f..0d075921df0d6 100644 --- a/apps/theming/l10n/vi.js +++ b/apps/theming/l10n/vi.js @@ -11,7 +11,6 @@ OC.L10N.register( "The given color is invalid" : "Màu đã chọn không hợp lệ", "No file uploaded" : "Không có tệp nào được tải lên", "Unsupported image type" : "Loại hình ảnh không được hỗ trợ", - "You are already using a custom theme" : "Bạn đã sử dụng một chủ đề tuỳ chỉnh", "Theming" : "Điều chỉnh giao diện", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Điều chỉnh giao diện cho phép bạn có thể dễ dàng tùy biến bố cục trình bày của hệ thống. Khi thực hiện nó sẽ hiện hữu đối với tất cả người dùng", "Name" : "Tên", @@ -25,7 +24,7 @@ OC.L10N.register( "Login image" : "Hình ảnh trang đăng nhập", "Upload new login background" : "Tải lên ảnh nền trang đăng nhập mới", "Remove background image" : "Xóa bỏ ảnh nền", - "reset to default" : "đặt lại về mặc định", - "Log in image" : "Ảnh đăng nhập" + "You are already using a custom theme" : "Bạn đã sử dụng một chủ đề tuỳ chỉnh", + "reset to default" : "đặt lại về mặc định" }, "nplurals=1; plural=0;"); diff --git a/apps/theming/l10n/vi.json b/apps/theming/l10n/vi.json index 10e069b0a611d..d38c77971be82 100644 --- a/apps/theming/l10n/vi.json +++ b/apps/theming/l10n/vi.json @@ -9,7 +9,6 @@ "The given color is invalid" : "Màu đã chọn không hợp lệ", "No file uploaded" : "Không có tệp nào được tải lên", "Unsupported image type" : "Loại hình ảnh không được hỗ trợ", - "You are already using a custom theme" : "Bạn đã sử dụng một chủ đề tuỳ chỉnh", "Theming" : "Điều chỉnh giao diện", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "Điều chỉnh giao diện cho phép bạn có thể dễ dàng tùy biến bố cục trình bày của hệ thống. Khi thực hiện nó sẽ hiện hữu đối với tất cả người dùng", "Name" : "Tên", @@ -23,7 +22,7 @@ "Login image" : "Hình ảnh trang đăng nhập", "Upload new login background" : "Tải lên ảnh nền trang đăng nhập mới", "Remove background image" : "Xóa bỏ ảnh nền", - "reset to default" : "đặt lại về mặc định", - "Log in image" : "Ảnh đăng nhập" + "You are already using a custom theme" : "Bạn đã sử dụng một chủ đề tuỳ chỉnh", + "reset to default" : "đặt lại về mặc định" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/theming/l10n/zh_CN.js b/apps/theming/l10n/zh_CN.js index 786a83d4b7166..3fa45380d6117 100644 --- a/apps/theming/l10n/zh_CN.js +++ b/apps/theming/l10n/zh_CN.js @@ -5,21 +5,17 @@ OC.L10N.register( "Saved" : "已保存", "Admin" : "管理", "a safe home for all your data" : "给您所有的数据一个安全的家", + "Name cannot be empty" : "名称不能为空", "The given name is too long" : "输入的名称过长", "The given web address is too long" : "输入的地址过长", "The given slogan is too long" : "输入的标语过长", "The given color is invalid" : "提供的颜色无效", - "There is no error, the file uploaded with success" : "没有错误,文件已上传成功", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "上传的文件超过了php.ini中指定的upload_max_filesize指令配置", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "上传的文件超过了HTML表单中指定的MAX_FILE_SIZE指令", - "The uploaded file was only partially uploaded" : "上传的文件只有部分已上传", "No file was uploaded" : "没有上传文件", "Missing a temporary folder" : "缺少临时文件夹", - "Failed to write file to disk." : "文件写入磁盘失败。", - "A PHP extension stopped the file upload." : "PHP扩展停止了文件上传。", "No file uploaded" : "文件没有上传", "Unsupported image type" : "不支持图片格式", - "You are already using a custom theme" : "你已经在使用自定义主题", "Theming" : "主题", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "主题使得方便地定制你的实例的外观和体验成为可能。所有用户都可以使用。", "Name" : "名字", @@ -34,7 +30,11 @@ OC.L10N.register( "Upload new login background" : "上传新登录背景", "Remove background image" : "删除背景图片", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "安装支持SVG图像的PHP扩展Imagemagick,根据上传的logo和颜色自动生成收藏图标。", + "You are already using a custom theme" : "你已经在使用自定义主题", "reset to default" : "重置默认", - "Log in image" : "登录图片" + "There is no error, the file uploaded with success" : "没有错误,文件已上传成功", + "The uploaded file was only partially uploaded" : "上传的文件只有部分已上传", + "Failed to write file to disk." : "文件写入磁盘失败。", + "A PHP extension stopped the file upload." : "PHP扩展停止了文件上传。" }, "nplurals=1; plural=0;"); diff --git a/apps/theming/l10n/zh_CN.json b/apps/theming/l10n/zh_CN.json index cebfb18494a65..332671cbec1c8 100644 --- a/apps/theming/l10n/zh_CN.json +++ b/apps/theming/l10n/zh_CN.json @@ -3,21 +3,17 @@ "Saved" : "已保存", "Admin" : "管理", "a safe home for all your data" : "给您所有的数据一个安全的家", + "Name cannot be empty" : "名称不能为空", "The given name is too long" : "输入的名称过长", "The given web address is too long" : "输入的地址过长", "The given slogan is too long" : "输入的标语过长", "The given color is invalid" : "提供的颜色无效", - "There is no error, the file uploaded with success" : "没有错误,文件已上传成功", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "上传的文件超过了php.ini中指定的upload_max_filesize指令配置", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "上传的文件超过了HTML表单中指定的MAX_FILE_SIZE指令", - "The uploaded file was only partially uploaded" : "上传的文件只有部分已上传", "No file was uploaded" : "没有上传文件", "Missing a temporary folder" : "缺少临时文件夹", - "Failed to write file to disk." : "文件写入磁盘失败。", - "A PHP extension stopped the file upload." : "PHP扩展停止了文件上传。", "No file uploaded" : "文件没有上传", "Unsupported image type" : "不支持图片格式", - "You are already using a custom theme" : "你已经在使用自定义主题", "Theming" : "主题", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "主题使得方便地定制你的实例的外观和体验成为可能。所有用户都可以使用。", "Name" : "名字", @@ -32,7 +28,11 @@ "Upload new login background" : "上传新登录背景", "Remove background image" : "删除背景图片", "Install the Imagemagick PHP extension with support for SVG images to automatically generate favicons based on the uploaded logo and color." : "安装支持SVG图像的PHP扩展Imagemagick,根据上传的logo和颜色自动生成收藏图标。", + "You are already using a custom theme" : "你已经在使用自定义主题", "reset to default" : "重置默认", - "Log in image" : "登录图片" + "There is no error, the file uploaded with success" : "没有错误,文件已上传成功", + "The uploaded file was only partially uploaded" : "上传的文件只有部分已上传", + "Failed to write file to disk." : "文件写入磁盘失败。", + "A PHP extension stopped the file upload." : "PHP扩展停止了文件上传。" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/theming/l10n/zh_TW.js b/apps/theming/l10n/zh_TW.js index 3a123b98a6188..30e4fa38dc901 100644 --- a/apps/theming/l10n/zh_TW.js +++ b/apps/theming/l10n/zh_TW.js @@ -5,13 +5,13 @@ OC.L10N.register( "Saved" : "已儲存", "Admin" : "管理員", "a safe home for all your data" : "您資料的安全屋", + "Name cannot be empty" : "名稱不能空白", "The given name is too long" : "指定的名稱太長", "The given web address is too long" : "提供的網址太長", "The given slogan is too long" : "指定的標語太長", "The given color is invalid" : "指定的顏色無效", "No file uploaded" : "未上傳檔案", "Unsupported image type" : "不支援的圖片類型", - "You are already using a custom theme" : "您正在使用自訂主題", "Theming" : "佈景主題", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "使用佈景主題來客製化網頁界面和客戶端程式的外觀(並非所有客戶端程式都支援佈景主題),外觀將會套用至所有使用者。", "Name" : "名稱", @@ -25,7 +25,7 @@ OC.L10N.register( "Login image" : "登入圖片", "Upload new login background" : "上傳新的登入頁背景", "Remove background image" : "移除背景圖片", - "reset to default" : "恢復預設值", - "Log in image" : "登入頁圖片" + "You are already using a custom theme" : "您正在使用自訂主題", + "reset to default" : "恢復預設值" }, "nplurals=1; plural=0;"); diff --git a/apps/theming/l10n/zh_TW.json b/apps/theming/l10n/zh_TW.json index 8a957e42ace82..1d8bcfe8eebcd 100644 --- a/apps/theming/l10n/zh_TW.json +++ b/apps/theming/l10n/zh_TW.json @@ -3,13 +3,13 @@ "Saved" : "已儲存", "Admin" : "管理員", "a safe home for all your data" : "您資料的安全屋", + "Name cannot be empty" : "名稱不能空白", "The given name is too long" : "指定的名稱太長", "The given web address is too long" : "提供的網址太長", "The given slogan is too long" : "指定的標語太長", "The given color is invalid" : "指定的顏色無效", "No file uploaded" : "未上傳檔案", "Unsupported image type" : "不支援的圖片類型", - "You are already using a custom theme" : "您正在使用自訂主題", "Theming" : "佈景主題", "Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users." : "使用佈景主題來客製化網頁界面和客戶端程式的外觀(並非所有客戶端程式都支援佈景主題),外觀將會套用至所有使用者。", "Name" : "名稱", @@ -23,7 +23,7 @@ "Login image" : "登入圖片", "Upload new login background" : "上傳新的登入頁背景", "Remove background image" : "移除背景圖片", - "reset to default" : "恢復預設值", - "Log in image" : "登入頁圖片" + "You are already using a custom theme" : "您正在使用自訂主題", + "reset to default" : "恢復預設值" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/theming/lib/Controller/ThemingController.php b/apps/theming/lib/Controller/ThemingController.php index 6592eb7f7ab91..3ac8b7fe587be 100644 --- a/apps/theming/lib/Controller/ThemingController.php +++ b/apps/theming/lib/Controller/ThemingController.php @@ -53,6 +53,7 @@ use OCA\Theming\Util; use OCP\ITempManager; use OCP\IURLGenerator; +use OCP\App\IAppManager; /** * Class ThemingController @@ -80,6 +81,8 @@ class ThemingController extends Controller { private $scssCacher; /** @var IURLGenerator */ private $urlGenerator; + /** @var IAppManager */ + private $appManager; /** * ThemingController constructor. @@ -95,6 +98,7 @@ class ThemingController extends Controller { * @param IAppData $appData * @param SCSSCacher $scssCacher * @param IURLGenerator $urlGenerator + * @param IAppManager $appManager */ public function __construct( $appName, @@ -107,7 +111,8 @@ public function __construct( ITempManager $tempManager, IAppData $appData, SCSSCacher $scssCacher, - IURLGenerator $urlGenerator + IURLGenerator $urlGenerator, + IAppManager $appManager ) { parent::__construct($appName, $request); @@ -120,6 +125,7 @@ public function __construct( $this->appData = $appData; $this->scssCacher = $scssCacher; $this->urlGenerator = $urlGenerator; + $this->appManager = $appManager; } /** @@ -413,12 +419,13 @@ public function getLoginBackground() { * @return FileDisplayResponse|NotFoundResponse */ public function getStylesheet() { - $appPath = substr(\OC::$server->getAppManager()->getAppPath('theming'), strlen(\OC::$SERVERROOT) + 1); + $appPath = $this->appManager->getAppPath('theming'); + /* SCSSCacher is required here * We cannot rely on automatic caching done by \OC_Util::addStyle, * since we need to add the cacheBuster value to the url */ - $cssCached = $this->scssCacher->process(\OC::$SERVERROOT, $appPath . '/css/theming.scss', 'theming'); + $cssCached = $this->scssCacher->process($appPath, 'css/theming.scss', 'theming'); if(!$cssCached) { return new NotFoundResponse(); } diff --git a/apps/theming/lib/ThemingDefaults.php b/apps/theming/lib/ThemingDefaults.php index 9dcc981817e42..ce4ab0abb5540 100644 --- a/apps/theming/lib/ThemingDefaults.php +++ b/apps/theming/lib/ThemingDefaults.php @@ -231,7 +231,7 @@ public function getAndroidClientUrl() { * @return array scss variables to overwrite */ public function getScssVariables() { - $cache = $this->cacheFactory->createDistributed('theming'); + $cache = $this->cacheFactory->createDistributed('theming-' . $this->urlGenerator->getBaseUrl()); if ($value = $cache->get('getScssVariables')) { return $value; } @@ -242,8 +242,8 @@ public function getScssVariables() { 'theming-background-mime' => "'" . $this->config->getAppValue('theming', 'backgroundMime', '') . "'" ]; - $variables['image-logo'] = "'".$this->urlGenerator->getAbsoluteURL($this->getLogo())."'"; - $variables['image-login-background'] = "'".$this->urlGenerator->getAbsoluteURL($this->getBackground())."'"; + $variables['image-logo'] = "'".$this->getLogo()."'"; + $variables['image-login-background'] = "'".$this->getBackground()."'"; $variables['image-login-plain'] = 'false'; if ($this->config->getAppValue('theming', 'color', null) !== null) { @@ -298,7 +298,7 @@ public function replaceImagePath($app, $image) { * @return bool */ public function shouldReplaceIcons() { - $cache = $this->cacheFactory->createDistributed('theming'); + $cache = $this->cacheFactory->createDistributed('theming-' . $this->urlGenerator->getBaseUrl()); if($value = $cache->get('shouldReplaceIcons')) { return (bool)$value; } @@ -320,7 +320,7 @@ public function shouldReplaceIcons() { private function increaseCacheBuster() { $cacheBusterKey = $this->config->getAppValue('theming', 'cachebuster', '0'); $this->config->setAppValue('theming', 'cachebuster', (int)$cacheBusterKey+1); - $this->cacheFactory->createDistributed('theming')->clear('getScssVariables'); + $this->cacheFactory->createDistributed('theming-')->clear(); } /** diff --git a/apps/theming/tests/Controller/ThemingControllerTest.php b/apps/theming/tests/Controller/ThemingControllerTest.php index 54b842bc4e88c..debc1b71e4740 100644 --- a/apps/theming/tests/Controller/ThemingControllerTest.php +++ b/apps/theming/tests/Controller/ThemingControllerTest.php @@ -106,7 +106,8 @@ public function setUp() { $this->tempManager, $this->appData, $this->scssCacher, - $this->urlGenerator + $this->urlGenerator, + $this->appManager ); return parent::setUp(); @@ -798,7 +799,7 @@ public function testGetLoginBackground() { public function testGetStylesheet() { - + $this->appManager->expects($this->once())->method('getAppPath')->with('theming')->willReturn(\OC::$SERVERROOT . '/theming'); $file = $this->createMock(ISimpleFile::class); $file->expects($this->any())->method('getName')->willReturn('theming.css'); $file->expects($this->any())->method('getContent')->willReturn('compiled'); @@ -818,6 +819,7 @@ public function testGetStylesheet() { } public function testGetStylesheetFails() { + $this->appManager->expects($this->once())->method('getAppPath')->with('theming')->willReturn(\OC::$SERVERROOT . '/theming'); $file = $this->createMock(ISimpleFile::class); $file->expects($this->any())->method('getName')->willReturn('theming.css'); $file->expects($this->any())->method('getContent')->willReturn('compiled'); @@ -829,6 +831,26 @@ public function testGetStylesheetFails() { $this->assertEquals($response, $actual); } + public function testGetStylesheetOutsideServerroot() { + $this->appManager->expects($this->once())->method('getAppPath')->with('theming')->willReturn('/outside/serverroot/theming'); + $file = $this->createMock(ISimpleFile::class); + $file->expects($this->any())->method('getName')->willReturn('theming.css'); + $file->expects($this->any())->method('getContent')->willReturn('compiled'); + $this->scssCacher->expects($this->once())->method('process')->with('/outside/serverroot/theming', 'css/theming.scss', 'theming')->willReturn(true); + $this->scssCacher->expects($this->once())->method('getCachedCSS')->willReturn($file); + + $response = new Http\FileDisplayResponse($file, Http::STATUS_OK, ['Content-Type' => 'text/css']); + $response->cacheFor(86400); + $expires = new \DateTime(); + $expires->setTimestamp($this->timeFactory->getTime()); + $expires->add(new \DateInterval('PT24H')); + $response->addHeader('Expires', $expires->format(\DateTime::RFC1123)); + $response->addHeader('Pragma', 'cache'); + + $actual = $this->themingController->getStylesheet(); + $this->assertEquals($response, $actual); + } + public function testGetJavascript() { $this->themingDefaults ->expects($this->at(0)) diff --git a/apps/theming/tests/ThemingDefaultsTest.php b/apps/theming/tests/ThemingDefaultsTest.php index d0dc6587f7418..637591b18d42e 100644 --- a/apps/theming/tests/ThemingDefaultsTest.php +++ b/apps/theming/tests/ThemingDefaultsTest.php @@ -79,7 +79,7 @@ public function setUp() { $this->cacheFactory ->expects($this->any()) ->method('createDistributed') - ->with('theming') + ->with('theming-') ->willReturn($this->cache); $this->template = new ThemingDefaults( $this->config, @@ -276,7 +276,7 @@ public function testSet() { $this->cache ->expects($this->once()) ->method('clear') - ->with('getScssVariables'); + ->with(''); $this->template->set('MySetting', 'MyValue'); } @@ -517,18 +517,12 @@ public function testGetScssVariables() { ['theming.Theming.getLoginBackground', [], 'custom-background'], ]); - $this->urlGenerator->expects($this->exactly(2)) - ->method('getAbsoluteURL') - ->willReturnCallback(function ($path) { - return 'absolute-' . $path; - }); - $expected = [ 'theming-cachebuster' => '\'0\'', 'theming-logo-mime' => '\'jpeg\'', 'theming-background-mime' => '\'jpeg\'', - 'image-logo' => "'absolute-custom-logo?v=0'", - 'image-login-background' => "'absolute-custom-background?v=0'", + 'image-logo' => "'custom-logo?v=0'", + 'image-login-background' => "'custom-background?v=0'", 'color-primary' => $this->defaults->getColorPrimary(), 'color-primary-text' => '#ffffff', 'image-login-plain' => 'false', diff --git a/apps/twofactor_backupcodes/l10n/af.js b/apps/twofactor_backupcodes/l10n/af.js index 0d287379f87af..4879b05cf4544 100644 --- a/apps/twofactor_backupcodes/l10n/af.js +++ b/apps/twofactor_backupcodes/l10n/af.js @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "U het tweefaktorrugsteunkodes vir u rekening geskep", "Backup code" : "Rugsteunkode", "Use backup code" : "Gebruik rugsteunkode", + "Two factor backup codes" : "Tweefaktorrugsteunkodes", "Second-factor backup codes" : "Tweedefaktorrugsteunkodes" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/af.json b/apps/twofactor_backupcodes/l10n/af.json index 398bcfa64b1b9..e8d0502716263 100644 --- a/apps/twofactor_backupcodes/l10n/af.json +++ b/apps/twofactor_backupcodes/l10n/af.json @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "U het tweefaktorrugsteunkodes vir u rekening geskep", "Backup code" : "Rugsteunkode", "Use backup code" : "Gebruik rugsteunkode", + "Two factor backup codes" : "Tweefaktorrugsteunkodes", "Second-factor backup codes" : "Tweedefaktorrugsteunkodes" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/ast.js b/apps/twofactor_backupcodes/l10n/ast.js new file mode 100644 index 0000000000000..9c594ff6ad160 --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/ast.js @@ -0,0 +1,14 @@ +OC.L10N.register( + "twofactor_backupcodes", + { + "Generate backup codes" : "Xenerar códigos de respaldu", + "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Xeneráronse los códigos de respaldu. Usáronse {{used}} de {{total}} códigos.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son los códigos de respaldu. Guárdalos y/o impréntalos darréu que nun sedrás a lleelos de nueves más sero", + "Save backup codes" : "Guardar códigos de respaldu", + "Regenerate backup codes" : "Rexenerar códigos de respaldu", + "An error occurred while generating your backup codes" : "Asocedió un fallu entrín se xeneraben los tos códigos de respaldu", + "Nextcloud backup codes" : "Códigos de respaldu de Nextcloud", + "You created two-factor backup codes for your account" : "Creesti códigos de respaldu pa l'autenticación en dos pasos de la to cuenta", + "Use backup code" : "Usar códigu de respaldu" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/ast.json b/apps/twofactor_backupcodes/l10n/ast.json new file mode 100644 index 0000000000000..89c231dfe008e --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/ast.json @@ -0,0 +1,12 @@ +{ "translations": { + "Generate backup codes" : "Xenerar códigos de respaldu", + "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Xeneráronse los códigos de respaldu. Usáronse {{used}} de {{total}} códigos.", + "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son los códigos de respaldu. Guárdalos y/o impréntalos darréu que nun sedrás a lleelos de nueves más sero", + "Save backup codes" : "Guardar códigos de respaldu", + "Regenerate backup codes" : "Rexenerar códigos de respaldu", + "An error occurred while generating your backup codes" : "Asocedió un fallu entrín se xeneraben los tos códigos de respaldu", + "Nextcloud backup codes" : "Códigos de respaldu de Nextcloud", + "You created two-factor backup codes for your account" : "Creesti códigos de respaldu pa l'autenticación en dos pasos de la to cuenta", + "Use backup code" : "Usar códigu de respaldu" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/ca.js b/apps/twofactor_backupcodes/l10n/ca.js index 6af7f7a83558f..09ad38051b3ab 100644 --- a/apps/twofactor_backupcodes/l10n/ca.js +++ b/apps/twofactor_backupcodes/l10n/ca.js @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "Heu creat codis de còpia de seguretat de dos factors per al vostre compte", "Backup code" : "Codi de copia de seguretat", "Use backup code" : "Utilitza un codi de copia de seguretat", + "Two factor backup codes" : "Codis de seguretat de l'autenticació en dos factors", "Second-factor backup codes" : "Codis secundaris de còpia de seguretat" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/ca.json b/apps/twofactor_backupcodes/l10n/ca.json index d1a5645a2ec9e..9f6b1eac2261c 100644 --- a/apps/twofactor_backupcodes/l10n/ca.json +++ b/apps/twofactor_backupcodes/l10n/ca.json @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "Heu creat codis de còpia de seguretat de dos factors per al vostre compte", "Backup code" : "Codi de copia de seguretat", "Use backup code" : "Utilitza un codi de copia de seguretat", + "Two factor backup codes" : "Codis de seguretat de l'autenticació en dos factors", "Second-factor backup codes" : "Codis secundaris de còpia de seguretat" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/de.js b/apps/twofactor_backupcodes/l10n/de.js index 70d905c8407ac..7e6b06b449478 100644 --- a/apps/twofactor_backupcodes/l10n/de.js +++ b/apps/twofactor_backupcodes/l10n/de.js @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "Du hast Zwei-Faktor Sicherungs-Codes für Dein Konto erstellt", "Backup code" : "Backup-Code", "Use backup code" : "Backup-Code verwenden", + "Two factor backup codes" : "Zweifaktor-Backup-Codes", "Second-factor backup codes" : "Zweitfaktor-Backup-Codes" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/de.json b/apps/twofactor_backupcodes/l10n/de.json index ffc603a5d62a8..444534faf30de 100644 --- a/apps/twofactor_backupcodes/l10n/de.json +++ b/apps/twofactor_backupcodes/l10n/de.json @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "Du hast Zwei-Faktor Sicherungs-Codes für Dein Konto erstellt", "Backup code" : "Backup-Code", "Use backup code" : "Backup-Code verwenden", + "Two factor backup codes" : "Zweifaktor-Backup-Codes", "Second-factor backup codes" : "Zweitfaktor-Backup-Codes" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/de_DE.js b/apps/twofactor_backupcodes/l10n/de_DE.js index f3d804a21abb4..3e76a8d03f198 100644 --- a/apps/twofactor_backupcodes/l10n/de_DE.js +++ b/apps/twofactor_backupcodes/l10n/de_DE.js @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "Sie haben Zwei-Faktor Sicherungs-Codes für Ihr Konto erstellt", "Backup code" : "Backup-Code", "Use backup code" : "Verwende Backup-Code", + "Two factor backup codes" : "Zweifaktor-Backup-Codes", "Second-factor backup codes" : "Zweitfaktor Backup-Codes" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/de_DE.json b/apps/twofactor_backupcodes/l10n/de_DE.json index 33238155ebb9c..4ad7e01cf1a3d 100644 --- a/apps/twofactor_backupcodes/l10n/de_DE.json +++ b/apps/twofactor_backupcodes/l10n/de_DE.json @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "Sie haben Zwei-Faktor Sicherungs-Codes für Ihr Konto erstellt", "Backup code" : "Backup-Code", "Use backup code" : "Verwende Backup-Code", + "Two factor backup codes" : "Zweifaktor-Backup-Codes", "Second-factor backup codes" : "Zweitfaktor Backup-Codes" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/en_GB.js b/apps/twofactor_backupcodes/l10n/en_GB.js index 333735a48cbe6..fc9ec0438078e 100644 --- a/apps/twofactor_backupcodes/l10n/en_GB.js +++ b/apps/twofactor_backupcodes/l10n/en_GB.js @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "You created two-factor backup codes for your account", "Backup code" : "Backup code", "Use backup code" : "Use backup code", + "Two factor backup codes" : "Two factor backup codes", "Second-factor backup codes" : "Second-factor backup codes" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/en_GB.json b/apps/twofactor_backupcodes/l10n/en_GB.json index b17a168423ec0..21e2d234baa2e 100644 --- a/apps/twofactor_backupcodes/l10n/en_GB.json +++ b/apps/twofactor_backupcodes/l10n/en_GB.json @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "You created two-factor backup codes for your account", "Backup code" : "Backup code", "Use backup code" : "Use backup code", + "Two factor backup codes" : "Two factor backup codes", "Second-factor backup codes" : "Second-factor backup codes" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es.js b/apps/twofactor_backupcodes/l10n/es.js index 77f1609fc55bb..c33adf52aa01a 100644 --- a/apps/twofactor_backupcodes/l10n/es.js +++ b/apps/twofactor_backupcodes/l10n/es.js @@ -2,17 +2,18 @@ OC.L10N.register( "twofactor_backupcodes", { "Generate backup codes" : "Generar códigos de respaldo", - "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Los códigos de respaldo han sido generados. Ha usado {{used}} de {{total}}.", + "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Se han generado los códigos de respaldo. Estás usando {{used}} de {{total}}.", "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son sus códigos de respaldo. Por favor guardelos y/o imprimalos ya que no podrá optenerlos nuevamente después.", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", - "If you regenerate backup codes, you automatically invalidate old codes." : "Si regenera los códigos de respaldo automaticamente invalidara los antiguos.", + "If you regenerate backup codes, you automatically invalidate old codes." : "Si regenera los códigos de respaldo, automáticamente invalidará los antiguos.", "An error occurred while generating your backup codes" : "Ha ocurrido un error mientras se generaban los códigos de respaldo.", "Nextcloud backup codes" : "Códigos de respaldo de Nextcloud", "You created two-factor backup codes for your account" : "Has creado códigos de respaldo de dos pasos para tu cuenta", "Backup code" : "Código de respaldo", "Use backup code" : "Usar código de respaldo", - "Second-factor backup codes" : "Códigos de respaldo de dos-factores" + "Two factor backup codes" : "Códigos de copia de seguridad de dos factores", + "Second-factor backup codes" : "Códigos de respaldo de dos factores" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/es.json b/apps/twofactor_backupcodes/l10n/es.json index e56d3efa07484..50cbca916a6d2 100644 --- a/apps/twofactor_backupcodes/l10n/es.json +++ b/apps/twofactor_backupcodes/l10n/es.json @@ -1,16 +1,17 @@ { "translations": { "Generate backup codes" : "Generar códigos de respaldo", - "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Los códigos de respaldo han sido generados. Ha usado {{used}} de {{total}}.", + "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Se han generado los códigos de respaldo. Estás usando {{used}} de {{total}}.", "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estos son sus códigos de respaldo. Por favor guardelos y/o imprimalos ya que no podrá optenerlos nuevamente después.", "Save backup codes" : "Guardar códigos de respaldo", "Print backup codes" : "Imprimir códigos de respaldo", "Regenerate backup codes" : "Regenerar códigos de respaldo", - "If you regenerate backup codes, you automatically invalidate old codes." : "Si regenera los códigos de respaldo automaticamente invalidara los antiguos.", + "If you regenerate backup codes, you automatically invalidate old codes." : "Si regenera los códigos de respaldo, automáticamente invalidará los antiguos.", "An error occurred while generating your backup codes" : "Ha ocurrido un error mientras se generaban los códigos de respaldo.", "Nextcloud backup codes" : "Códigos de respaldo de Nextcloud", "You created two-factor backup codes for your account" : "Has creado códigos de respaldo de dos pasos para tu cuenta", "Backup code" : "Código de respaldo", "Use backup code" : "Usar código de respaldo", - "Second-factor backup codes" : "Códigos de respaldo de dos-factores" + "Two factor backup codes" : "Códigos de copia de seguridad de dos factores", + "Second-factor backup codes" : "Códigos de respaldo de dos factores" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/es_MX.js b/apps/twofactor_backupcodes/l10n/es_MX.js index 925894cb77d4c..cfafd50e3a34e 100644 --- a/apps/twofactor_backupcodes/l10n/es_MX.js +++ b/apps/twofactor_backupcodes/l10n/es_MX.js @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "Creaste códigos de respaldo de dos factores para tu cuenta", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", + "Two factor backup codes" : "Códigos de respaldo de dos factores", "Second-factor backup codes" : "Códigos de respaldo del segundo factor" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/es_MX.json b/apps/twofactor_backupcodes/l10n/es_MX.json index 3cfd05bcd3724..a4ceb78353a5a 100644 --- a/apps/twofactor_backupcodes/l10n/es_MX.json +++ b/apps/twofactor_backupcodes/l10n/es_MX.json @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "Creaste códigos de respaldo de dos factores para tu cuenta", "Backup code" : "Código de respaldo", "Use backup code" : "Usa el código de respaldo", + "Two factor backup codes" : "Códigos de respaldo de dos factores", "Second-factor backup codes" : "Códigos de respaldo del segundo factor" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/fi.js b/apps/twofactor_backupcodes/l10n/fi.js index 01203d93c9b0d..37a09375e1490 100644 --- a/apps/twofactor_backupcodes/l10n/fi.js +++ b/apps/twofactor_backupcodes/l10n/fi.js @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "Loit kaksivaiheisen tunnistautumisen varakoodit tilillesi", "Backup code" : "Varakoodi", "Use backup code" : "Käytä varakoodia", + "Two factor backup codes" : "Kaksivaiheiden tunnistautumisen varakoodit", "Second-factor backup codes" : "Kaksivaiheisen tunnistautumisen varakoodit" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/fi.json b/apps/twofactor_backupcodes/l10n/fi.json index 516e00216ffd1..06c822c3e9239 100644 --- a/apps/twofactor_backupcodes/l10n/fi.json +++ b/apps/twofactor_backupcodes/l10n/fi.json @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "Loit kaksivaiheisen tunnistautumisen varakoodit tilillesi", "Backup code" : "Varakoodi", "Use backup code" : "Käytä varakoodia", + "Two factor backup codes" : "Kaksivaiheiden tunnistautumisen varakoodit", "Second-factor backup codes" : "Kaksivaiheisen tunnistautumisen varakoodit" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/fr.js b/apps/twofactor_backupcodes/l10n/fr.js index 92aa21797c2cc..275bd61c0da59 100644 --- a/apps/twofactor_backupcodes/l10n/fr.js +++ b/apps/twofactor_backupcodes/l10n/fr.js @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "Vous avez créé des codes de secours à deux facteurs pour votre compte", "Backup code" : "Code de récupération", "Use backup code" : "Utiliser un code de récupération", + "Two factor backup codes" : "Code de secours pour l'authentification double facteur.", "Second-factor backup codes" : "Codes de récupération pour l'authentification en deux étapes" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/twofactor_backupcodes/l10n/fr.json b/apps/twofactor_backupcodes/l10n/fr.json index a6ab3dccc77d2..eed66675b5a60 100644 --- a/apps/twofactor_backupcodes/l10n/fr.json +++ b/apps/twofactor_backupcodes/l10n/fr.json @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "Vous avez créé des codes de secours à deux facteurs pour votre compte", "Backup code" : "Code de récupération", "Use backup code" : "Utiliser un code de récupération", + "Two factor backup codes" : "Code de secours pour l'authentification double facteur.", "Second-factor backup codes" : "Codes de récupération pour l'authentification en deux étapes" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/hu.js b/apps/twofactor_backupcodes/l10n/hu.js index 0d168f9f62b87..c363ce8232634 100644 --- a/apps/twofactor_backupcodes/l10n/hu.js +++ b/apps/twofactor_backupcodes/l10n/hu.js @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "Kétfaktoros helyreállítási kódot hoztál létre a fiókodhoz", "Backup code" : "Biztonsági kód", "Use backup code" : "Biztonsági kód használata", + "Two factor backup codes" : "Kétfaktoros biztonsági mentési kódok", "Second-factor backup codes" : "Második lépcsős biztonsági kódok" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/hu.json b/apps/twofactor_backupcodes/l10n/hu.json index 4e981a9acc6aa..fba5f6f594efb 100644 --- a/apps/twofactor_backupcodes/l10n/hu.json +++ b/apps/twofactor_backupcodes/l10n/hu.json @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "Kétfaktoros helyreállítási kódot hoztál létre a fiókodhoz", "Backup code" : "Biztonsági kód", "Use backup code" : "Biztonsági kód használata", + "Two factor backup codes" : "Kétfaktoros biztonsági mentési kódok", "Second-factor backup codes" : "Második lépcsős biztonsági kódok" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/is.js b/apps/twofactor_backupcodes/l10n/is.js index 744f37770b762..2e1dfd92f5db6 100644 --- a/apps/twofactor_backupcodes/l10n/is.js +++ b/apps/twofactor_backupcodes/l10n/is.js @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "Þú útbjóst tveggja-þrepa öryggisafritunarkóða fyrir aðganginn þinn", "Backup code" : "Öryggisafritunarkóði", "Use backup code" : "Nota öryggisafritunarkóða", + "Two factor backup codes" : "Tveggja-þrepa öryggisafritunarkóðar", "Second-factor backup codes" : "Tveggja-þrepa öryggisafritunarkóðar" }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/twofactor_backupcodes/l10n/is.json b/apps/twofactor_backupcodes/l10n/is.json index 54934d812378e..77132057dd398 100644 --- a/apps/twofactor_backupcodes/l10n/is.json +++ b/apps/twofactor_backupcodes/l10n/is.json @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "Þú útbjóst tveggja-þrepa öryggisafritunarkóða fyrir aðganginn þinn", "Backup code" : "Öryggisafritunarkóði", "Use backup code" : "Nota öryggisafritunarkóða", + "Two factor backup codes" : "Tveggja-þrepa öryggisafritunarkóðar", "Second-factor backup codes" : "Tveggja-þrepa öryggisafritunarkóðar" },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/it.js b/apps/twofactor_backupcodes/l10n/it.js index cd75346fcacdd..7bcd756dea67b 100644 --- a/apps/twofactor_backupcodes/l10n/it.js +++ b/apps/twofactor_backupcodes/l10n/it.js @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "Hai creato codici di backup a due fattori per il tuo account", "Backup code" : "Codice di backup", "Use backup code" : "Usa il codice di backup", + "Two factor backup codes" : "Codici di backup a due fattori", "Second-factor backup codes" : "Codici di backup con secondo fattore" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/it.json b/apps/twofactor_backupcodes/l10n/it.json index 966bd7e8d8223..d05790102e47b 100644 --- a/apps/twofactor_backupcodes/l10n/it.json +++ b/apps/twofactor_backupcodes/l10n/it.json @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "Hai creato codici di backup a due fattori per il tuo account", "Backup code" : "Codice di backup", "Use backup code" : "Usa il codice di backup", + "Two factor backup codes" : "Codici di backup a due fattori", "Second-factor backup codes" : "Codici di backup con secondo fattore" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/ka_GE.js b/apps/twofactor_backupcodes/l10n/ka_GE.js index e0117afb763f9..93de0eaee8f53 100644 --- a/apps/twofactor_backupcodes/l10n/ka_GE.js +++ b/apps/twofactor_backupcodes/l10n/ka_GE.js @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "შექმენით ორ-ფაქტორიანი ბექაფის კოდები თქვენი ანგარიშისთვის", "Backup code" : "ბექაფის კოდები", "Use backup code" : "ბექაფის კოდების გამოყენება", - "Second-factor backup codes" : "მეორე-ფაქტორის ბექფის კოდები" + "Two factor backup codes" : "მეორე-ფაქტორის ბექაფის კოდები", + "Second-factor backup codes" : "მეორე-ფაქტორის ბექაფის კოდები" }, "nplurals=1; plural=0;"); diff --git a/apps/twofactor_backupcodes/l10n/ka_GE.json b/apps/twofactor_backupcodes/l10n/ka_GE.json index 7fc39917f71b0..f6c95d674b818 100644 --- a/apps/twofactor_backupcodes/l10n/ka_GE.json +++ b/apps/twofactor_backupcodes/l10n/ka_GE.json @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "შექმენით ორ-ფაქტორიანი ბექაფის კოდები თქვენი ანგარიშისთვის", "Backup code" : "ბექაფის კოდები", "Use backup code" : "ბექაფის კოდების გამოყენება", - "Second-factor backup codes" : "მეორე-ფაქტორის ბექფის კოდები" + "Two factor backup codes" : "მეორე-ფაქტორის ბექაფის კოდები", + "Second-factor backup codes" : "მეორე-ფაქტორის ბექაფის კოდები" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/nb.js b/apps/twofactor_backupcodes/l10n/nb.js index 82ce6520eb0fd..42fc503194859 100644 --- a/apps/twofactor_backupcodes/l10n/nb.js +++ b/apps/twofactor_backupcodes/l10n/nb.js @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "Du opprettet to-trinns bekreftelse sikkerhetskopi-koder", "Backup code" : "Sikkerhetskopi-kode", "Use backup code" : "Bruker sikkerhetskopi-kode", + "Two factor backup codes" : "Sikkerhetskopikoder for tofaktor", "Second-factor backup codes" : "To-trinns bekreftelse sikkerhetskopi-koder" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/nb.json b/apps/twofactor_backupcodes/l10n/nb.json index a5d95f4be41c6..25927e0f6e85d 100644 --- a/apps/twofactor_backupcodes/l10n/nb.json +++ b/apps/twofactor_backupcodes/l10n/nb.json @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "Du opprettet to-trinns bekreftelse sikkerhetskopi-koder", "Backup code" : "Sikkerhetskopi-kode", "Use backup code" : "Bruker sikkerhetskopi-kode", + "Two factor backup codes" : "Sikkerhetskopikoder for tofaktor", "Second-factor backup codes" : "To-trinns bekreftelse sikkerhetskopi-koder" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/nl.js b/apps/twofactor_backupcodes/l10n/nl.js index 968e9cdb1a633..3bad60ac7cc3a 100644 --- a/apps/twofactor_backupcodes/l10n/nl.js +++ b/apps/twofactor_backupcodes/l10n/nl.js @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "Je creëerde tweefactor back-up codes voor je account", "Backup code" : "Backup code", "Use backup code" : "Gebruik backup code", + "Two factor backup codes" : "Twee-factor backupcode", "Second-factor backup codes" : "Twee-factor backup code" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/twofactor_backupcodes/l10n/nl.json b/apps/twofactor_backupcodes/l10n/nl.json index e3db86e4d93f2..02881d944b22d 100644 --- a/apps/twofactor_backupcodes/l10n/nl.json +++ b/apps/twofactor_backupcodes/l10n/nl.json @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "Je creëerde tweefactor back-up codes voor je account", "Backup code" : "Backup code", "Use backup code" : "Gebruik backup code", + "Two factor backup codes" : "Twee-factor backupcode", "Second-factor backup codes" : "Twee-factor backup code" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/pt_BR.js b/apps/twofactor_backupcodes/l10n/pt_BR.js index cfab5318857c4..0018f92681cac 100644 --- a/apps/twofactor_backupcodes/l10n/pt_BR.js +++ b/apps/twofactor_backupcodes/l10n/pt_BR.js @@ -2,7 +2,7 @@ OC.L10N.register( "twofactor_backupcodes", { "Generate backup codes" : "Gerar códigos de backup", - "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Códigos de backup foram gerados. {{Used}} de {{total}} códigos foram usados.", + "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Códigos de backup foram gerados. {{used}} de {{total}} códigos foram usados.", "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estes são os seus códigos de backup. Salve e/ou imprima-os, pois não será possível ler os códigos novamente mais tarde", "Save backup codes" : "Salvar códigos de backup", "Print backup codes" : "Imprimir códigos de backup", @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "Você criou os códigos de backup de dois fatores para sua conta.", "Backup code" : "Código de backup", "Use backup code" : "Usar o código de backup", + "Two factor backup codes" : "Códigos de backup de dois fatores", "Second-factor backup codes" : "Códigos de backup segundo-fator" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/twofactor_backupcodes/l10n/pt_BR.json b/apps/twofactor_backupcodes/l10n/pt_BR.json index daf6d1437979e..f4c8c60ef1f44 100644 --- a/apps/twofactor_backupcodes/l10n/pt_BR.json +++ b/apps/twofactor_backupcodes/l10n/pt_BR.json @@ -1,6 +1,6 @@ { "translations": { "Generate backup codes" : "Gerar códigos de backup", - "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Códigos de backup foram gerados. {{Used}} de {{total}} códigos foram usados.", + "Backup codes have been generated. {{used}} of {{total}} codes have been used." : "Códigos de backup foram gerados. {{used}} de {{total}} códigos foram usados.", "These are your backup codes. Please save and/or print them as you will not be able to read the codes again later" : "Estes são os seus códigos de backup. Salve e/ou imprima-os, pois não será possível ler os códigos novamente mais tarde", "Save backup codes" : "Salvar códigos de backup", "Print backup codes" : "Imprimir códigos de backup", @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "Você criou os códigos de backup de dois fatores para sua conta.", "Backup code" : "Código de backup", "Use backup code" : "Usar o código de backup", + "Two factor backup codes" : "Códigos de backup de dois fatores", "Second-factor backup codes" : "Códigos de backup segundo-fator" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/ru.js b/apps/twofactor_backupcodes/l10n/ru.js index 31ab7b2c2dc71..9ccb89210af95 100644 --- a/apps/twofactor_backupcodes/l10n/ru.js +++ b/apps/twofactor_backupcodes/l10n/ru.js @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "Вы создали двухфакторные резервные коды для своего аккаунта", "Backup code" : "Резервный код", "Use backup code" : "Использовать резервный код", + "Two factor backup codes" : "Второй фактор — резервные коды", "Second-factor backup codes" : "Резервные коды двухфакторной аутентификации" }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/apps/twofactor_backupcodes/l10n/ru.json b/apps/twofactor_backupcodes/l10n/ru.json index 0e36d5d5632cf..eaba8350e12d5 100644 --- a/apps/twofactor_backupcodes/l10n/ru.json +++ b/apps/twofactor_backupcodes/l10n/ru.json @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "Вы создали двухфакторные резервные коды для своего аккаунта", "Backup code" : "Резервный код", "Use backup code" : "Использовать резервный код", + "Two factor backup codes" : "Второй фактор — резервные коды", "Second-factor backup codes" : "Резервные коды двухфакторной аутентификации" },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/sl.js b/apps/twofactor_backupcodes/l10n/sl.js new file mode 100644 index 0000000000000..26c64aa9561ad --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/sl.js @@ -0,0 +1,13 @@ +OC.L10N.register( + "twofactor_backupcodes", + { + "Generate backup codes" : "Ustvari rezervne šifre", + "Save backup codes" : "Shrani rezervne šifre", + "Print backup codes" : "Natisni rezervne šifre", + "Regenerate backup codes" : "Osveži rezervne šifre", + "An error occurred while generating your backup codes" : "Zgodila se je napaka med izdelavo revervnih šifer", + "Nextcloud backup codes" : "Nextcloud rezervne šifre", + "Backup code" : "Rezervna šifra", + "Use backup code" : "Uporabi rezervno šifro" +}, +"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); diff --git a/apps/twofactor_backupcodes/l10n/sl.json b/apps/twofactor_backupcodes/l10n/sl.json new file mode 100644 index 0000000000000..fb4b6f656bbc3 --- /dev/null +++ b/apps/twofactor_backupcodes/l10n/sl.json @@ -0,0 +1,11 @@ +{ "translations": { + "Generate backup codes" : "Ustvari rezervne šifre", + "Save backup codes" : "Shrani rezervne šifre", + "Print backup codes" : "Natisni rezervne šifre", + "Regenerate backup codes" : "Osveži rezervne šifre", + "An error occurred while generating your backup codes" : "Zgodila se je napaka med izdelavo revervnih šifer", + "Nextcloud backup codes" : "Nextcloud rezervne šifre", + "Backup code" : "Rezervna šifra", + "Use backup code" : "Uporabi rezervno šifro" +},"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" +} \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/sr.js b/apps/twofactor_backupcodes/l10n/sr.js index 41a9ff302c65e..171f20850b846 100644 --- a/apps/twofactor_backupcodes/l10n/sr.js +++ b/apps/twofactor_backupcodes/l10n/sr.js @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "Направили сте двофакторске резервне кодове за Ваш налог", "Backup code" : "Резервни код", "Use backup code" : "Искористи резервни код", + "Two factor backup codes" : "Двофакторски резервни кодови", "Second-factor backup codes" : "Двофакторски резервни кодови" }, "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/apps/twofactor_backupcodes/l10n/sr.json b/apps/twofactor_backupcodes/l10n/sr.json index 8b39a42c23750..dedd7d1b1ae2a 100644 --- a/apps/twofactor_backupcodes/l10n/sr.json +++ b/apps/twofactor_backupcodes/l10n/sr.json @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "Направили сте двофакторске резервне кодове за Ваш налог", "Backup code" : "Резервни код", "Use backup code" : "Искористи резервни код", + "Two factor backup codes" : "Двофакторски резервни кодови", "Second-factor backup codes" : "Двофакторски резервни кодови" },"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);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/l10n/tr.js b/apps/twofactor_backupcodes/l10n/tr.js index 639fae511e352..af0a3be29569c 100644 --- a/apps/twofactor_backupcodes/l10n/tr.js +++ b/apps/twofactor_backupcodes/l10n/tr.js @@ -13,6 +13,7 @@ OC.L10N.register( "You created two-factor backup codes for your account" : "İki aşamalı kimlik doğrulama için yedek kodlarınızı oluşturdunuz", "Backup code" : "Yedek kod", "Use backup code" : "Yedek kodu kullan", + "Two factor backup codes" : "İki aşamalı kimlik doğrulama yedek kodları", "Second-factor backup codes" : "İki aşamalı kimlik doğrulama yedek kodları" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/twofactor_backupcodes/l10n/tr.json b/apps/twofactor_backupcodes/l10n/tr.json index 7a78ef1c3a1d5..83017b64cf253 100644 --- a/apps/twofactor_backupcodes/l10n/tr.json +++ b/apps/twofactor_backupcodes/l10n/tr.json @@ -11,6 +11,7 @@ "You created two-factor backup codes for your account" : "İki aşamalı kimlik doğrulama için yedek kodlarınızı oluşturdunuz", "Backup code" : "Yedek kod", "Use backup code" : "Yedek kodu kullan", + "Two factor backup codes" : "İki aşamalı kimlik doğrulama yedek kodları", "Second-factor backup codes" : "İki aşamalı kimlik doğrulama yedek kodları" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607104347.php b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607104347.php index a7823c5b7a8d6..9d369ae3a8d77 100644 --- a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607104347.php +++ b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607104347.php @@ -23,7 +23,7 @@ namespace OCA\TwoFactorBackupCodes\Migration; -use Doctrine\DBAL\Schema\Schema; +use OCP\DB\ISchemaWrapper; use Doctrine\DBAL\Types\Type; use OCP\Migration\SimpleMigrationStep; use OCP\Migration\IOutput; @@ -31,13 +31,13 @@ class Version1002Date20170607104347 extends SimpleMigrationStep { /** * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - * @return null|Schema + * @return null|ISchemaWrapper * @since 13.0.0 */ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { - /** @var Schema $schema */ + /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); if (!$schema->hasTable('twofactor_backupcodes')) { diff --git a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607113030.php b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607113030.php index dae9e011787c4..6895aa44a5154 100644 --- a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607113030.php +++ b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170607113030.php @@ -23,7 +23,7 @@ namespace OCA\TwoFactorBackupCodes\Migration; -use Doctrine\DBAL\Schema\Schema; +use OCP\DB\ISchemaWrapper; use OCP\DB\QueryBuilder\IQueryBuilder; use OCP\IDBConnection; use OCP\Migration\SimpleMigrationStep; @@ -43,12 +43,12 @@ public function __construct(IDBConnection $connection) { /** * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options * @since 13.0.0 */ public function preSchemaChange(IOutput $output, \Closure $schemaClosure, array $options) { - /** @var Schema $schema */ + /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); if (!$schema->hasTable('twofactor_backup_codes')) { @@ -87,13 +87,13 @@ public function preSchemaChange(IOutput $output, \Closure $schemaClosure, array /** * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - * @return null|Schema + * @return null|ISchemaWrapper * @since 13.0.0 */ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { - /** @var Schema $schema */ + /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); if ($schema->hasTable('twofactor_backup_codes')) { diff --git a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170919123342.php b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170919123342.php index bb35a900a1e5d..5cbbcb2eccaa9 100644 --- a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170919123342.php +++ b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170919123342.php @@ -23,8 +23,8 @@ namespace OCA\TwoFactorBackupCodes\Migration; -use Doctrine\DBAL\Schema\Schema; use Doctrine\DBAL\Types\Type; +use OCP\DB\ISchemaWrapper; use OCP\Migration\SimpleMigrationStep; use OCP\Migration\IOutput; @@ -32,13 +32,13 @@ class Version1002Date20170919123342 extends SimpleMigrationStep { /** * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - * @return null|Schema + * @return null|ISchemaWrapper * @since 13.0.0 */ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { - /** @var Schema $schema */ + /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); $table = $schema->getTable('twofactor_backupcodes'); diff --git a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170926101419.php b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170926101419.php index 8072ebd68108e..0e19fe2a35ec3 100644 --- a/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170926101419.php +++ b/apps/twofactor_backupcodes/lib/Migration/Version1002Date20170926101419.php @@ -1,10 +1,7 @@ {newVersionString}
" : "K dispozici je nová verze: {newVersionString}", + "Checked on {lastCheckedDate}" : "Zkontrolováno {lastCheckedDate}", + "Could not start updater, please try the manual update" : "Nepodařilo se spustit aktualizátor, zkuste ruční aktualizaci", + "Update notifications" : "Aktualizovat upozornění", "Channel updated" : "Kanál aktualizován", "The update server could not be reached since %d days to check for new updates." : "Aktualizační server nebyl dosažen %d dní pro kontrolu aktualizací.", "Please check the Nextcloud and server log files for errors." : "Po chybách se podívejte v protokolech Nextcloudu a webového serveru.", "Update to %1$s is available." : "Je dostupná aktualizace na %1$s.", "Update for %1$s to version %2$s is available." : "Je dostupná aktualizace pro %1$s na verzi %2$s.", "Update for {app} to version %s is available." : "Pro {app} je dostupná aktualizace na verzi %s.", + "Update notification" : "Upozornění na aktualizaci", "A new version is available: %s" : "Je dostupná nová verze: %s", - "Open updater" : "Otevřít aktualizátor", "Download now" : "Stáhnout nyní", - "The update check is not yet finished. Please refresh the page." : "Kontrola aktualizací ještě neskončila. Obnovte stránku.", - "Your version is up to date." : "Používáte nejnovější verzi.", "Checked on %s" : "Zkontrolováno %s", - "A non-default update server is in use to be checked for updates:" : "Pro kontrolu aktualizací se používá jiný než výchozí server:", - "Update channel:" : "Aktualizovat kanál:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Vždy můžete aktualizovat na novější verzi / experimentální kanál. Poté ale nelze nikdy provést downgrade zpět na nižší stabilní kanál.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Všimněte si, že po vydání nové verze může chvíli trvat, než se zde objeví. Distribuujeme nové verze průběžně rozložené v čase mezi naše uživatele a pokud jsou nalezeny problémy někdy danou verzi přeskočíme.", - "Notify members of the following groups about available updates:" : "Upozorňovat členy následujících skupin na dostupné aktualizace:", - "Only notification for app updates are available." : "Je možné pouze upozornění na dostupné aktualizace aplikací.", "The selected update channel makes dedicated notifications for the server obsolete." : "Zvolený kanál aktualizací označuje dedikovaná upozornění pro server za zastaralá.", - "The selected update channel does not support updates of the server." : "Vybraný kanál aktualizací nepodporuje aktualizace serveru." + "The update check is not yet finished. Please refresh the page." : "Kontrola aktualizací ještě neskončila. Obnovte stránku." }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/updatenotification/l10n/cs.json b/apps/updatenotification/l10n/cs.json index eb1fc5f143f61..9226c60df94d0 100644 --- a/apps/updatenotification/l10n/cs.json +++ b/apps/updatenotification/l10n/cs.json @@ -1,26 +1,30 @@ { "translations": { - "Update notifications" : "Aktualizovat upozornění", - "Could not start updater, please try the manual update" : "Nepodařilo se spustit aktualizátor, zkuste ruční aktualizaci", "{version} is available. Get more information on how to update." : "Je dostupná {version}. Přečtěte si více informací jak aktualizovat.", + "Apps with available updates" : "Aplikace s dostupnými aktualizacemi", + "Open updater" : "Otevřít aktualizátor", + "Your version is up to date." : "Používáte nejnovější verzi.", + "A non-default update server is in use to be checked for updates:" : "Pro kontrolu aktualizací se používá jiný než výchozí server:", + "Update channel:" : "Aktualizovat kanál:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Vždy můžete aktualizovat na novější verzi / experimentální kanál. Poté ale nelze nikdy provést downgrade zpět na nižší stabilní kanál.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Všimněte si, že po vydání nové verze může chvíli trvat, než se zde objeví. Distribuujeme nové verze průběžně rozložené v čase mezi naše uživatele a pokud jsou nalezeny problémy někdy danou verzi přeskočíme.", + "Notify members of the following groups about available updates:" : "Upozorňovat členy následujících skupin na dostupné aktualizace:", + "Only notification for app updates are available." : "Je možné pouze upozornění na dostupné aktualizace aplikací.", + "The selected update channel does not support updates of the server." : "Vybraný kanál aktualizací nepodporuje aktualizace serveru.", + "A new version is available: {newVersionString}" : "K dispozici je nová verze: {newVersionString}", + "Checked on {lastCheckedDate}" : "Zkontrolováno {lastCheckedDate}", + "Could not start updater, please try the manual update" : "Nepodařilo se spustit aktualizátor, zkuste ruční aktualizaci", + "Update notifications" : "Aktualizovat upozornění", "Channel updated" : "Kanál aktualizován", "The update server could not be reached since %d days to check for new updates." : "Aktualizační server nebyl dosažen %d dní pro kontrolu aktualizací.", "Please check the Nextcloud and server log files for errors." : "Po chybách se podívejte v protokolech Nextcloudu a webového serveru.", "Update to %1$s is available." : "Je dostupná aktualizace na %1$s.", "Update for %1$s to version %2$s is available." : "Je dostupná aktualizace pro %1$s na verzi %2$s.", "Update for {app} to version %s is available." : "Pro {app} je dostupná aktualizace na verzi %s.", + "Update notification" : "Upozornění na aktualizaci", "A new version is available: %s" : "Je dostupná nová verze: %s", - "Open updater" : "Otevřít aktualizátor", "Download now" : "Stáhnout nyní", - "The update check is not yet finished. Please refresh the page." : "Kontrola aktualizací ještě neskončila. Obnovte stránku.", - "Your version is up to date." : "Používáte nejnovější verzi.", "Checked on %s" : "Zkontrolováno %s", - "A non-default update server is in use to be checked for updates:" : "Pro kontrolu aktualizací se používá jiný než výchozí server:", - "Update channel:" : "Aktualizovat kanál:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Vždy můžete aktualizovat na novější verzi / experimentální kanál. Poté ale nelze nikdy provést downgrade zpět na nižší stabilní kanál.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Všimněte si, že po vydání nové verze může chvíli trvat, než se zde objeví. Distribuujeme nové verze průběžně rozložené v čase mezi naše uživatele a pokud jsou nalezeny problémy někdy danou verzi přeskočíme.", - "Notify members of the following groups about available updates:" : "Upozorňovat členy následujících skupin na dostupné aktualizace:", - "Only notification for app updates are available." : "Je možné pouze upozornění na dostupné aktualizace aplikací.", "The selected update channel makes dedicated notifications for the server obsolete." : "Zvolený kanál aktualizací označuje dedikovaná upozornění pro server za zastaralá.", - "The selected update channel does not support updates of the server." : "Vybraný kanál aktualizací nepodporuje aktualizace serveru." + "The update check is not yet finished. Please refresh the page." : "Kontrola aktualizací ještě neskončila. Obnovte stránku." },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/da.js b/apps/updatenotification/l10n/da.js index 39b810010905c..dd02bca52959c 100644 --- a/apps/updatenotification/l10n/da.js +++ b/apps/updatenotification/l10n/da.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Opdaterings notifikationer", - "Could not start updater, please try the manual update" : "Kunne ikke starte opdateringen, prøv venligst med en manual opdatering", "{version} is available. Get more information on how to update." : "{version} er tilgængelig. Få mere information om hvordan du opdaterer.", + "Open updater" : "Åbn for opdatering", + "Your version is up to date." : "Du har seneste version.", + "A non-default update server is in use to be checked for updates:" : "En ikke standard opdateringsserver bliver brugt for at tjekke efter opdateringer:", + "Update channel:" : "Opdatér kanal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan altid opdatere til en nyere version / eksperimentel kanal. Men du kan aldrig nedgradere til en mere stabil kanal", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Bemærk at efter en ny udgivelse kan det tage noget tid før den bliver vist her. Vi udruller nye opdateringer spredt ud og nogle gange springer man versioner over hvis der bliver fundet fejl i dem.", + "Notify members of the following groups about available updates:" : "Meddel brugere fra følgende gruppe om tilgængelige opdateringer: ", + "Only notification for app updates are available." : "Kun notifikation for app opdateringer tilgængelige.", + "The selected update channel does not support updates of the server." : "Den valgte opdateringskanal understøtter ikke opdatering af serveren.", + "Could not start updater, please try the manual update" : "Kunne ikke starte opdateringen, prøv venligst med en manual opdatering", + "Update notifications" : "Opdaterings notifikationer", "Channel updated" : "Kanal opdateret", "The update server could not be reached since %d days to check for new updates." : "Har ikke været forbundet til opdateringsserveren i %d dage for at tjekke efter nye opdateringer.", "Please check the Nextcloud and server log files for errors." : "Tjek venligst Nextcloud server log for fejl.", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "Opdatering af %1$s til version %2$s er tilgængelig.", "Update for {app} to version %s is available." : "Opdatering af {app} til version %s er tilgængelig.", "A new version is available: %s" : "Der er en ny version tligængelig: %s", - "Open updater" : "Åbn for opdatering", "Download now" : "Hent nu", - "The update check is not yet finished. Please refresh the page." : "Opdateringstjek er ikke færdigt. Genindlæs venligst siden.", - "Your version is up to date." : "Du har seneste version.", "Checked on %s" : "Tjekket per %s", - "A non-default update server is in use to be checked for updates:" : "En ikke standard opdateringsserver bliver brugt for at tjekke efter opdateringer:", - "Update channel:" : "Opdatér kanal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan altid opdatere til en nyere version / eksperimentel kanal. Men du kan aldrig nedgradere til en mere stabil kanal", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Bemærk at efter en ny udgivelse kan det tage noget tid før den bliver vist her. Vi udruller nye opdateringer spredt ud og nogle gange springer man versioner over hvis der bliver fundet fejl i dem.", - "Notify members of the following groups about available updates:" : "Meddel brugere fra følgende gruppe om tilgængelige opdateringer: ", - "Only notification for app updates are available." : "Kun notifikation for app opdateringer tilgængelige.", "The selected update channel makes dedicated notifications for the server obsolete." : "Den valgte kanal lave dedikerede notifikationer for serveren ligegyldige.", - "The selected update channel does not support updates of the server." : "Den valgte opdateringskanal understøtter ikke opdatering af serveren." + "The update check is not yet finished. Please refresh the page." : "Opdateringstjek er ikke færdigt. Genindlæs venligst siden." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/da.json b/apps/updatenotification/l10n/da.json index 921499d17640f..f127f7a6bb5ae 100644 --- a/apps/updatenotification/l10n/da.json +++ b/apps/updatenotification/l10n/da.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Opdaterings notifikationer", - "Could not start updater, please try the manual update" : "Kunne ikke starte opdateringen, prøv venligst med en manual opdatering", "{version} is available. Get more information on how to update." : "{version} er tilgængelig. Få mere information om hvordan du opdaterer.", + "Open updater" : "Åbn for opdatering", + "Your version is up to date." : "Du har seneste version.", + "A non-default update server is in use to be checked for updates:" : "En ikke standard opdateringsserver bliver brugt for at tjekke efter opdateringer:", + "Update channel:" : "Opdatér kanal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan altid opdatere til en nyere version / eksperimentel kanal. Men du kan aldrig nedgradere til en mere stabil kanal", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Bemærk at efter en ny udgivelse kan det tage noget tid før den bliver vist her. Vi udruller nye opdateringer spredt ud og nogle gange springer man versioner over hvis der bliver fundet fejl i dem.", + "Notify members of the following groups about available updates:" : "Meddel brugere fra følgende gruppe om tilgængelige opdateringer: ", + "Only notification for app updates are available." : "Kun notifikation for app opdateringer tilgængelige.", + "The selected update channel does not support updates of the server." : "Den valgte opdateringskanal understøtter ikke opdatering af serveren.", + "Could not start updater, please try the manual update" : "Kunne ikke starte opdateringen, prøv venligst med en manual opdatering", + "Update notifications" : "Opdaterings notifikationer", "Channel updated" : "Kanal opdateret", "The update server could not be reached since %d days to check for new updates." : "Har ikke været forbundet til opdateringsserveren i %d dage for at tjekke efter nye opdateringer.", "Please check the Nextcloud and server log files for errors." : "Tjek venligst Nextcloud server log for fejl.", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "Opdatering af %1$s til version %2$s er tilgængelig.", "Update for {app} to version %s is available." : "Opdatering af {app} til version %s er tilgængelig.", "A new version is available: %s" : "Der er en ny version tligængelig: %s", - "Open updater" : "Åbn for opdatering", "Download now" : "Hent nu", - "The update check is not yet finished. Please refresh the page." : "Opdateringstjek er ikke færdigt. Genindlæs venligst siden.", - "Your version is up to date." : "Du har seneste version.", "Checked on %s" : "Tjekket per %s", - "A non-default update server is in use to be checked for updates:" : "En ikke standard opdateringsserver bliver brugt for at tjekke efter opdateringer:", - "Update channel:" : "Opdatér kanal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan altid opdatere til en nyere version / eksperimentel kanal. Men du kan aldrig nedgradere til en mere stabil kanal", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Bemærk at efter en ny udgivelse kan det tage noget tid før den bliver vist her. Vi udruller nye opdateringer spredt ud og nogle gange springer man versioner over hvis der bliver fundet fejl i dem.", - "Notify members of the following groups about available updates:" : "Meddel brugere fra følgende gruppe om tilgængelige opdateringer: ", - "Only notification for app updates are available." : "Kun notifikation for app opdateringer tilgængelige.", "The selected update channel makes dedicated notifications for the server obsolete." : "Den valgte kanal lave dedikerede notifikationer for serveren ligegyldige.", - "The selected update channel does not support updates of the server." : "Den valgte opdateringskanal understøtter ikke opdatering af serveren." + "The update check is not yet finished. Please refresh the page." : "Opdateringstjek er ikke færdigt. Genindlæs venligst siden." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/de.js b/apps/updatenotification/l10n/de.js index 14fcd2995dbb6..8cb942ccf4a1a 100644 --- a/apps/updatenotification/l10n/de.js +++ b/apps/updatenotification/l10n/de.js @@ -1,28 +1,40 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Update-Benachrichtigungen", - "Could not start updater, please try the manual update" : "Der Updater konnte nicht gestartet werden, bitte versuche ein manuelles Update", "{version} is available. Get more information on how to update." : "{version} ist verfügbar. Weitere Informationen zur Aktualisierung.", + "Apps with available updates" : "Für diese Apps gibt es Aktualisierungen", + "Open updater" : "Updater öffnen", + "Your version is up to date." : "Deine Version ist aktuell.", + "A non-default update server is in use to be checked for updates:" : "Es wird ein Nicht-Standard-Aktualisierungsserver zum Prüfen auf Aktualisierungen verwendet:", + "Update channel:" : "Update-Kanal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Es kann immer auf eine neuere Version / experimentellen Kanal aktualisiert werden. Allerdings kann kein Downgrade auf einen stabileren Kanal durchgeführt werden.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nach Veröffentlichung einer neuen Version kann es einige Zeit dauern bis diese hier erscheint. Die neuen Versionen verteilen sich beim Ausrollen im Laufe der Zeit auf die Benutzer. Manchmal werden Versionen übersprungen, wenn Probleme gefunden wurden.", + "Notify members of the following groups about available updates:" : "Informiere die Mitglieder der folgenden Gruppen über verfügbare Updates:", + "Only notification for app updates are available." : "Benachrichtigungen sind nur für Aktualisierungen von Apps verfügbar.", + "The selected update channel does not support updates of the server." : "Der gewählte Aktualisierungskanal unterstützt keine Aktualisierungen für Server.", + "A new version is available: {newVersionString}" : "Eine neue Version ist verfügbar: {newVersionString}", + "Checked on {lastCheckedDate}" : "Geprüft am {lastCheckedDate}", + "Checking apps for compatible updates" : "Es werden alle Apps auf kompatible Aktualisierungen geprüft", + "Please make sure your config.php does not set appstoreenabled to false." : "Bitte stelle sicher, dass in der \"config.php\"-Datei die Variable appstoreenabled nicht auf \"false\" steht.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Die Verbindung zum Appstore konnte nicht aufgebaut werden oder der Appstore hat keine Apps zurück geliefert. Suche selbst nach den Updates oder stelle sicher, dass dein Server Zugriff auf das Internet hat und eine Verbindung zum Appstore aufbauen kann. ", + "All apps have an update for this version available" : "Für alle Apps steht eine Aktualisierung zur Verfügung", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["Für %n App steht keine Aktualisierung für diese Version zur Verfügung","Für %n Apps stehen keine Aktualisierungen für diese Version zur Verfügung"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "Produktion bietet immer die neuesten Patch-Stände an, jedoch nicht sofort die nächste Hauptversion. Diese Aktualisierung erfolgt normalerweise nach der zweiten kleineren Aktualisierung (x.0.2).", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "Stabil bietet die aktuellste stabile Version. Dies ist passend für Verwendung in Produktion und bietet immer die Aktualisierung auf die neueste Hauptversion an.", + "beta is a pre-release version only for testing new features, not for production environments." : "Beta bietet eine Vorabversion an und dient zum Testen von neuen Funktionen. Nicht für den Einsatz in Produktivumgebungen geeignet.", + "Could not start updater, please try the manual update" : "Der Updater konnte nicht gestartet werden, bitte versuche ein manuelles Update", + "Update notifications" : "Update-Benachrichtigungen", "Channel updated" : "Kanal aktualisiert", "The update server could not be reached since %d days to check for new updates." : "Der Aktualisierungsserver konnte seit %d Tagen nicht erreicht werden um auf verfügbare Aktualisierungen zu prüfen.", "Please check the Nextcloud and server log files for errors." : "Bitte überprüfe die Server- und Nextcloud-Logdateien auf Fehler.", "Update to %1$s is available." : "Aktualisierung auf %1$s ist verfügbar.", "Update for %1$s to version %2$s is available." : "Eine Aktualisierung von %1$s auf Version %2$s ist verfügbar.", "Update for {app} to version %s is available." : "Eine Aktualisierung für {app} auf Version %s ist verfügbar.", + "Update notification" : "Aktualisierungs-Benachrichtigung", "A new version is available: %s" : "Eine neue Version ist verfügbar: %s", - "Open updater" : "Updater öffnen", "Download now" : "Jetzt herunterladen", - "The update check is not yet finished. Please refresh the page." : "Die Aktualisierungsprüfung ist noch nicht abgeschlossen. Bitte die Seite neu laden.", - "Your version is up to date." : "Deine Version ist aktuell.", "Checked on %s" : "Geprüft am %s", - "A non-default update server is in use to be checked for updates:" : "Es wird ein Nicht-Standard-Aktualisierungsserver zum Prüfen auf Aktualisierungen verwendet:", - "Update channel:" : "Update-Kanal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Es kann immer auf eine neuere Version / experimentellen Kanal aktualisiert werden. Allerdings kann kein Downgrade auf einen stabileren Kanal durchgeführt werden.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nach Veröffentlichung einer neuen Version kann es einige Zeit dauern bis diese hier erscheint. Die neuen Versionen verteilen sich beim Ausrollen im Laufe der Zeit auf die Benutzer. Manchmal werden Versionen übersprungen, wenn Probleme gefunden wurden.", - "Notify members of the following groups about available updates:" : "Informiere die Mitglieder der folgenden Gruppen über verfügbare Updates:", - "Only notification for app updates are available." : "Benachrichtigungen sind nur für Aktualisierungen von Apps verfügbar.", "The selected update channel makes dedicated notifications for the server obsolete." : "Der gewählte Aktualisierungskanal macht dedizierte Benachrichtigungen für Server Aktualisierungen obsolet.", - "The selected update channel does not support updates of the server." : "Der gewählte Aktualisierungskanal unterstützt keine Aktualisierungen für Server." + "The update check is not yet finished. Please refresh the page." : "Die Aktualisierungsprüfung ist noch nicht abgeschlossen. Bitte die Seite neu laden." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/de.json b/apps/updatenotification/l10n/de.json index d5104abd5c28c..556342b0a786d 100644 --- a/apps/updatenotification/l10n/de.json +++ b/apps/updatenotification/l10n/de.json @@ -1,26 +1,38 @@ { "translations": { - "Update notifications" : "Update-Benachrichtigungen", - "Could not start updater, please try the manual update" : "Der Updater konnte nicht gestartet werden, bitte versuche ein manuelles Update", "{version} is available. Get more information on how to update." : "{version} ist verfügbar. Weitere Informationen zur Aktualisierung.", + "Apps with available updates" : "Für diese Apps gibt es Aktualisierungen", + "Open updater" : "Updater öffnen", + "Your version is up to date." : "Deine Version ist aktuell.", + "A non-default update server is in use to be checked for updates:" : "Es wird ein Nicht-Standard-Aktualisierungsserver zum Prüfen auf Aktualisierungen verwendet:", + "Update channel:" : "Update-Kanal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Es kann immer auf eine neuere Version / experimentellen Kanal aktualisiert werden. Allerdings kann kein Downgrade auf einen stabileren Kanal durchgeführt werden.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nach Veröffentlichung einer neuen Version kann es einige Zeit dauern bis diese hier erscheint. Die neuen Versionen verteilen sich beim Ausrollen im Laufe der Zeit auf die Benutzer. Manchmal werden Versionen übersprungen, wenn Probleme gefunden wurden.", + "Notify members of the following groups about available updates:" : "Informiere die Mitglieder der folgenden Gruppen über verfügbare Updates:", + "Only notification for app updates are available." : "Benachrichtigungen sind nur für Aktualisierungen von Apps verfügbar.", + "The selected update channel does not support updates of the server." : "Der gewählte Aktualisierungskanal unterstützt keine Aktualisierungen für Server.", + "A new version is available: {newVersionString}" : "Eine neue Version ist verfügbar: {newVersionString}", + "Checked on {lastCheckedDate}" : "Geprüft am {lastCheckedDate}", + "Checking apps for compatible updates" : "Es werden alle Apps auf kompatible Aktualisierungen geprüft", + "Please make sure your config.php does not set appstoreenabled to false." : "Bitte stelle sicher, dass in der \"config.php\"-Datei die Variable appstoreenabled nicht auf \"false\" steht.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Die Verbindung zum Appstore konnte nicht aufgebaut werden oder der Appstore hat keine Apps zurück geliefert. Suche selbst nach den Updates oder stelle sicher, dass dein Server Zugriff auf das Internet hat und eine Verbindung zum Appstore aufbauen kann. ", + "All apps have an update for this version available" : "Für alle Apps steht eine Aktualisierung zur Verfügung", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["Für %n App steht keine Aktualisierung für diese Version zur Verfügung","Für %n Apps stehen keine Aktualisierungen für diese Version zur Verfügung"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "Produktion bietet immer die neuesten Patch-Stände an, jedoch nicht sofort die nächste Hauptversion. Diese Aktualisierung erfolgt normalerweise nach der zweiten kleineren Aktualisierung (x.0.2).", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "Stabil bietet die aktuellste stabile Version. Dies ist passend für Verwendung in Produktion und bietet immer die Aktualisierung auf die neueste Hauptversion an.", + "beta is a pre-release version only for testing new features, not for production environments." : "Beta bietet eine Vorabversion an und dient zum Testen von neuen Funktionen. Nicht für den Einsatz in Produktivumgebungen geeignet.", + "Could not start updater, please try the manual update" : "Der Updater konnte nicht gestartet werden, bitte versuche ein manuelles Update", + "Update notifications" : "Update-Benachrichtigungen", "Channel updated" : "Kanal aktualisiert", "The update server could not be reached since %d days to check for new updates." : "Der Aktualisierungsserver konnte seit %d Tagen nicht erreicht werden um auf verfügbare Aktualisierungen zu prüfen.", "Please check the Nextcloud and server log files for errors." : "Bitte überprüfe die Server- und Nextcloud-Logdateien auf Fehler.", "Update to %1$s is available." : "Aktualisierung auf %1$s ist verfügbar.", "Update for %1$s to version %2$s is available." : "Eine Aktualisierung von %1$s auf Version %2$s ist verfügbar.", "Update for {app} to version %s is available." : "Eine Aktualisierung für {app} auf Version %s ist verfügbar.", + "Update notification" : "Aktualisierungs-Benachrichtigung", "A new version is available: %s" : "Eine neue Version ist verfügbar: %s", - "Open updater" : "Updater öffnen", "Download now" : "Jetzt herunterladen", - "The update check is not yet finished. Please refresh the page." : "Die Aktualisierungsprüfung ist noch nicht abgeschlossen. Bitte die Seite neu laden.", - "Your version is up to date." : "Deine Version ist aktuell.", "Checked on %s" : "Geprüft am %s", - "A non-default update server is in use to be checked for updates:" : "Es wird ein Nicht-Standard-Aktualisierungsserver zum Prüfen auf Aktualisierungen verwendet:", - "Update channel:" : "Update-Kanal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Es kann immer auf eine neuere Version / experimentellen Kanal aktualisiert werden. Allerdings kann kein Downgrade auf einen stabileren Kanal durchgeführt werden.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nach Veröffentlichung einer neuen Version kann es einige Zeit dauern bis diese hier erscheint. Die neuen Versionen verteilen sich beim Ausrollen im Laufe der Zeit auf die Benutzer. Manchmal werden Versionen übersprungen, wenn Probleme gefunden wurden.", - "Notify members of the following groups about available updates:" : "Informiere die Mitglieder der folgenden Gruppen über verfügbare Updates:", - "Only notification for app updates are available." : "Benachrichtigungen sind nur für Aktualisierungen von Apps verfügbar.", "The selected update channel makes dedicated notifications for the server obsolete." : "Der gewählte Aktualisierungskanal macht dedizierte Benachrichtigungen für Server Aktualisierungen obsolet.", - "The selected update channel does not support updates of the server." : "Der gewählte Aktualisierungskanal unterstützt keine Aktualisierungen für Server." + "The update check is not yet finished. Please refresh the page." : "Die Aktualisierungsprüfung ist noch nicht abgeschlossen. Bitte die Seite neu laden." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/de_DE.js b/apps/updatenotification/l10n/de_DE.js index 01b98f1b5e467..9b4e8c1ab9e64 100644 --- a/apps/updatenotification/l10n/de_DE.js +++ b/apps/updatenotification/l10n/de_DE.js @@ -1,28 +1,40 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Update-Benachrichtigungen", - "Could not start updater, please try the manual update" : "Der Updater konnte nicht gestartet werden, bitte versuchen Sie ein manuelles Update", "{version} is available. Get more information on how to update." : "{version} ist verfügbar. Weitere Informationen zur Aktualisierung.", + "Apps with available updates" : "Für diese Apps gibt es Aktualisierungen", + "Open updater" : "Updater öffnen", + "Your version is up to date." : "Ihre Version ist aktuell.", + "A non-default update server is in use to be checked for updates:" : "Es wird ein Nicht-Standard-Aktualisierungsserver zum Prüfen auf Aktualisierungen verwendet:", + "Update channel:" : "Update-Kanal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Sie können immer auf eine neuere Version / experimentellen Kanal updaten, aber kein Downgrade auf einen stabileren Kanal durchführen.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nach Veröffentlichung einer neuen Version kann es einige Zeit dauern bis diese hier erscheint. Die neuen Versionen verteilen sich beim Ausrollen im Laufe der Zeit auf die Benutzer. Manchmal werden Versionen übersprungen, wenn Probleme gefunden wurden.", + "Notify members of the following groups about available updates:" : "Informieren Sie die Mitglieder der folgenden Gruppen über verfügbare Updates:", + "Only notification for app updates are available." : "Benachrichtigungen sind nur für Aktualisierungen von Apps verfügbar.", + "The selected update channel does not support updates of the server." : "Der gewählte Aktualisierungskanal unterstützt keine Aktualisierungen für Server.", + "A new version is available: {newVersionString}" : "Eine neue Version ist verfügbar: {newVersionString}", + "Checked on {lastCheckedDate}" : "Geprüft am {lastCheckedDate}", + "Checking apps for compatible updates" : "Es werden alle Apps auf kompatible Aktualisierungen geprüft", + "Please make sure your config.php does not set appstoreenabled to false." : "Bitte stellen Sie sicher, dass in der \"config.php\"-Datei die Variable appstoreenablednicht auf \"false\" steht.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Die Verbindung zum Appstore konnte nicht aufgebaut werden oder der Appstore hat keine Apps zurück geliefert. Suchen Sie selbst nach den Updates oder stellen Sie sicher, dass ihr Server Zugriff auf das Internet hat und eine Verbindung zum Appstore aufbauen kann. ", + "All apps have an update for this version available" : "Für alle Apps steht eine Aktualisierung zur Verfügung", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["Für %n App steht keine Aktualisierung für diese Version zur Verfügung","Für %n Apps stehen keine Aktualisierungen für diese Version zur Verfügung"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "Produktion bietet immer die neuesten Patch-Stände an, jedoch nicht sofort die nächste Hauptversion. Diese Aktualisierung erfolgt normalerweise nach der zweiten kleineren Aktualisierung (x.0.2).", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "Stabil bietet die aktuellste stabile Version. Dies ist passend für Verwendung in Produktion und bietet immer die Aktualisierung auf die neueste Hauptversion an.", + "beta is a pre-release version only for testing new features, not for production environments." : "Beta bietet eine Vorabversion an und dient zum Testen von neuen Funktionen. Nicht für den Einsatz in Produktivumgebungen geeignet.", + "Could not start updater, please try the manual update" : "Der Updater konnte nicht gestartet werden, bitte versuchen Sie ein manuelles Update", + "Update notifications" : "Update-Benachrichtigungen", "Channel updated" : "Kanal aktualisiert", "The update server could not be reached since %d days to check for new updates." : "Der Aktualisierungsserver konnte seit %d Tagen nicht erreicht werden um auf verfügbare Aktualisierungen zu prüfen.", "Please check the Nextcloud and server log files for errors." : "Bitte überprüfe die Server- und Nextcloud-Logdateien auf Fehler.", "Update to %1$s is available." : "Aktualisierung auf %1$s ist verfügbar.", "Update for %1$s to version %2$s is available." : "Eine Aktualisierung von %1$s auf Version %2$s ist verfügbar.", "Update for {app} to version %s is available." : "Eine Aktualisierung für {app} auf Version %s ist verfügbar.", + "Update notification" : "Aktualisierungs-Benachrichtigung", "A new version is available: %s" : "Eine neue Version ist verfügbar: %s", - "Open updater" : "Updater öffnen", "Download now" : "Jetzt herunterladen", - "The update check is not yet finished. Please refresh the page." : "Die Aktualisierungsprüfung ist noch nicht abgeschlossen. Bitte die Seite neu laden.", - "Your version is up to date." : "Ihre Version ist aktuell.", "Checked on %s" : "Überprüft am %s", - "A non-default update server is in use to be checked for updates:" : "Es wird ein Nicht-Standard-Aktualisierungsserver zum Prüfen auf Aktualisierungen verwendet:", - "Update channel:" : "Update-Kanal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Sie können immer auf eine neuere Version / experimentellen Kanal updaten, aber kein Downgrade auf einen stabileren Kanal durchführen.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nach Veröffentlichung einer neuen Version kann es einige Zeit dauern bis diese hier erscheint. Die neuen Versionen verteilen sich beim Ausrollen im Laufe der Zeit auf die Benutzer. Manchmal werden Versionen übersprungen, wenn Probleme gefunden wurden.", - "Notify members of the following groups about available updates:" : "Informieren Sie die Mitglieder der folgenden Gruppen über verfügbare Updates:", - "Only notification for app updates are available." : "Benachrichtigungen sind nur für Aktualisierungen von Apps verfügbar.", "The selected update channel makes dedicated notifications for the server obsolete." : "Der gewählte Aktualisierungskanal macht dedizierte Benachrichtigungen für Server Aktualisierungen obsolet.", - "The selected update channel does not support updates of the server." : "Der gewählte Aktualisierungskanal unterstützt keine Aktualisierungen für Server." + "The update check is not yet finished. Please refresh the page." : "Die Aktualisierungsprüfung ist noch nicht abgeschlossen. Bitte die Seite neu laden." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/de_DE.json b/apps/updatenotification/l10n/de_DE.json index b748bfcf72e93..7f1bfd5eb4a4f 100644 --- a/apps/updatenotification/l10n/de_DE.json +++ b/apps/updatenotification/l10n/de_DE.json @@ -1,26 +1,38 @@ { "translations": { - "Update notifications" : "Update-Benachrichtigungen", - "Could not start updater, please try the manual update" : "Der Updater konnte nicht gestartet werden, bitte versuchen Sie ein manuelles Update", "{version} is available. Get more information on how to update." : "{version} ist verfügbar. Weitere Informationen zur Aktualisierung.", + "Apps with available updates" : "Für diese Apps gibt es Aktualisierungen", + "Open updater" : "Updater öffnen", + "Your version is up to date." : "Ihre Version ist aktuell.", + "A non-default update server is in use to be checked for updates:" : "Es wird ein Nicht-Standard-Aktualisierungsserver zum Prüfen auf Aktualisierungen verwendet:", + "Update channel:" : "Update-Kanal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Sie können immer auf eine neuere Version / experimentellen Kanal updaten, aber kein Downgrade auf einen stabileren Kanal durchführen.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nach Veröffentlichung einer neuen Version kann es einige Zeit dauern bis diese hier erscheint. Die neuen Versionen verteilen sich beim Ausrollen im Laufe der Zeit auf die Benutzer. Manchmal werden Versionen übersprungen, wenn Probleme gefunden wurden.", + "Notify members of the following groups about available updates:" : "Informieren Sie die Mitglieder der folgenden Gruppen über verfügbare Updates:", + "Only notification for app updates are available." : "Benachrichtigungen sind nur für Aktualisierungen von Apps verfügbar.", + "The selected update channel does not support updates of the server." : "Der gewählte Aktualisierungskanal unterstützt keine Aktualisierungen für Server.", + "A new version is available: {newVersionString}" : "Eine neue Version ist verfügbar: {newVersionString}", + "Checked on {lastCheckedDate}" : "Geprüft am {lastCheckedDate}", + "Checking apps for compatible updates" : "Es werden alle Apps auf kompatible Aktualisierungen geprüft", + "Please make sure your config.php does not set appstoreenabled to false." : "Bitte stellen Sie sicher, dass in der \"config.php\"-Datei die Variable appstoreenablednicht auf \"false\" steht.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Die Verbindung zum Appstore konnte nicht aufgebaut werden oder der Appstore hat keine Apps zurück geliefert. Suchen Sie selbst nach den Updates oder stellen Sie sicher, dass ihr Server Zugriff auf das Internet hat und eine Verbindung zum Appstore aufbauen kann. ", + "All apps have an update for this version available" : "Für alle Apps steht eine Aktualisierung zur Verfügung", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["Für %n App steht keine Aktualisierung für diese Version zur Verfügung","Für %n Apps stehen keine Aktualisierungen für diese Version zur Verfügung"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "Produktion bietet immer die neuesten Patch-Stände an, jedoch nicht sofort die nächste Hauptversion. Diese Aktualisierung erfolgt normalerweise nach der zweiten kleineren Aktualisierung (x.0.2).", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "Stabil bietet die aktuellste stabile Version. Dies ist passend für Verwendung in Produktion und bietet immer die Aktualisierung auf die neueste Hauptversion an.", + "beta is a pre-release version only for testing new features, not for production environments." : "Beta bietet eine Vorabversion an und dient zum Testen von neuen Funktionen. Nicht für den Einsatz in Produktivumgebungen geeignet.", + "Could not start updater, please try the manual update" : "Der Updater konnte nicht gestartet werden, bitte versuchen Sie ein manuelles Update", + "Update notifications" : "Update-Benachrichtigungen", "Channel updated" : "Kanal aktualisiert", "The update server could not be reached since %d days to check for new updates." : "Der Aktualisierungsserver konnte seit %d Tagen nicht erreicht werden um auf verfügbare Aktualisierungen zu prüfen.", "Please check the Nextcloud and server log files for errors." : "Bitte überprüfe die Server- und Nextcloud-Logdateien auf Fehler.", "Update to %1$s is available." : "Aktualisierung auf %1$s ist verfügbar.", "Update for %1$s to version %2$s is available." : "Eine Aktualisierung von %1$s auf Version %2$s ist verfügbar.", "Update for {app} to version %s is available." : "Eine Aktualisierung für {app} auf Version %s ist verfügbar.", + "Update notification" : "Aktualisierungs-Benachrichtigung", "A new version is available: %s" : "Eine neue Version ist verfügbar: %s", - "Open updater" : "Updater öffnen", "Download now" : "Jetzt herunterladen", - "The update check is not yet finished. Please refresh the page." : "Die Aktualisierungsprüfung ist noch nicht abgeschlossen. Bitte die Seite neu laden.", - "Your version is up to date." : "Ihre Version ist aktuell.", "Checked on %s" : "Überprüft am %s", - "A non-default update server is in use to be checked for updates:" : "Es wird ein Nicht-Standard-Aktualisierungsserver zum Prüfen auf Aktualisierungen verwendet:", - "Update channel:" : "Update-Kanal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Sie können immer auf eine neuere Version / experimentellen Kanal updaten, aber kein Downgrade auf einen stabileren Kanal durchführen.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nach Veröffentlichung einer neuen Version kann es einige Zeit dauern bis diese hier erscheint. Die neuen Versionen verteilen sich beim Ausrollen im Laufe der Zeit auf die Benutzer. Manchmal werden Versionen übersprungen, wenn Probleme gefunden wurden.", - "Notify members of the following groups about available updates:" : "Informieren Sie die Mitglieder der folgenden Gruppen über verfügbare Updates:", - "Only notification for app updates are available." : "Benachrichtigungen sind nur für Aktualisierungen von Apps verfügbar.", "The selected update channel makes dedicated notifications for the server obsolete." : "Der gewählte Aktualisierungskanal macht dedizierte Benachrichtigungen für Server Aktualisierungen obsolet.", - "The selected update channel does not support updates of the server." : "Der gewählte Aktualisierungskanal unterstützt keine Aktualisierungen für Server." + "The update check is not yet finished. Please refresh the page." : "Die Aktualisierungsprüfung ist noch nicht abgeschlossen. Bitte die Seite neu laden." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/el.js b/apps/updatenotification/l10n/el.js index 0b73d991e1619..0daa702ad34bc 100644 --- a/apps/updatenotification/l10n/el.js +++ b/apps/updatenotification/l10n/el.js @@ -1,9 +1,19 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Ειδοποιήσεις ενημέρωσης", - "Could not start updater, please try the manual update" : "Δεν μπορεί να εκκινήσει η εφαρμογή ενημέρωσης, παρακαλώ δοκιμάστε την χειροκίνητη ενημέρωση", "{version} is available. Get more information on how to update." : "Η έκδοση {version} είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες για το πως να κάνετε την ενημέρωση.", + "Apps with available updates" : "Εφαρμογές με διαθέσιμες ενημερώσεις", + "Open updater" : "Άνοιγμα εφαρμογής ενημέρωσης", + "Your version is up to date." : "Έχετε την τελευταία έκδοση.", + "Update channel:" : "Ενημέρωση καναλιού:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Μπορείτε πάντα να περάσετε σε νεότερη / πειραματική έκδοση. Αλλά ποτέ δεν μπορείτε να γυρίσετε πίσω σε πιο σταθερό κανάλι.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Σημειώστε ότι μετά από μια νέα διανομή μπορεί να περάσει λίγος καιρός πριν εμφανιστεί εδώ. Κυκλοφορούμε κατά διαστήματα νέες εκδόσεις στους χρήστες μας και κάποιες φορές παραλείπουμε κάποια έκδοση αν βρεθούν προβλήματα.", + "Notify members of the following groups about available updates:" : "Να ενημερωθούν τα μέλη των παρακάτω ομάδων σχετικά με τις διαθέσιμες ενημερώσεις:", + "Only notification for app updates are available." : "Είναι μόνο διαθέσιμες οι ενημερώσεις για την εφαρμογή", + "The selected update channel does not support updates of the server." : "Το συγκεκριμένο κανάλι ενημέρωσης δεν υποστηρίζει ενημερώσεις διακομιστή.", + "Checking apps for compatible updates" : "Έλεγχος εφαρμογών για συμβατές ενημερώσεις", + "Could not start updater, please try the manual update" : "Δεν μπορεί να εκκινήσει η εφαρμογή ενημέρωσης, παρακαλώ δοκιμάστε την χειροκίνητη ενημέρωση", + "Update notifications" : "Ειδοποιήσεις ενημέρωσης", "Channel updated" : "Ενημερωμένο κανάλι", "The update server could not be reached since %d days to check for new updates." : "Ο διακομιστής ενημέρωσης δεν ήταν προσβάσιμος από %dημέρες για να ελέγξει για νέες ενημερώσεις. ", "Please check the Nextcloud and server log files for errors." : "Παρακαλούμε ελέγξτε για σφάλματα στα αρχεία ιστορικού του Nextcloud και του διακομιστή σας.", @@ -11,16 +21,8 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "Είναι διαθέσιμη η ενημέρωση από την έκδοση %1$s στην %2$s.", "Update for {app} to version %s is available." : "Είναι διαθέσιμη η ενημέρωση της εφαρμογής {app} στην έκδοση %s", "A new version is available: %s" : "Μία νέα έκδοση είναι διαθέσιμη: %s", - "Open updater" : "Άνοιγμα εφαρμογής ενημέρωσης", "Download now" : "Λήψη τώρα", - "Your version is up to date." : "Έχετε την τελευταία έκδοση.", "Checked on %s" : "Ελέγχθηκε στις %s", - "Update channel:" : "Ενημέρωση καναλιού:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Μπορείτε πάντα να περάσετε σε νεότερη / πειραματική έκδοση. Αλλά ποτέ δεν μπορείτε να γυρίσετε πίσω σε πιο σταθερό κανάλι.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Σημειώστε ότι μετά από μια νέα διανομή μπορεί να περάσει λίγος καιρός πριν εμφανιστεί εδώ. Κυκλοφορούμε κατά διαστήματα νέες εκδόσεις στους χρήστες μας και κάποιες φορές παραλείπουμε κάποια έκδοση αν βρεθούν προβλήματα.", - "Notify members of the following groups about available updates:" : "Να ενημερωθούν τα μέλη των παρακάτω ομάδων σχετικά με τις διαθέσιμες ενημερώσεις:", - "Only notification for app updates are available." : "Είναι μόνο διαθέσιμες οι ενημερώσεις για την εφαρμογή", - "The selected update channel makes dedicated notifications for the server obsolete." : "Το συγκεκριμένο κανάλι ενημέρωσης καθιστά παρωχημένες τις ειδοποιήσεις που προορίζονται για τον διακομιστή.", - "The selected update channel does not support updates of the server." : "Το συγκεκριμένο κανάλι ενημέρωσης δεν υποστηρίζει ενημερώσεις διακομιστή." + "The selected update channel makes dedicated notifications for the server obsolete." : "Το συγκεκριμένο κανάλι ενημέρωσης καθιστά παρωχημένες τις ειδοποιήσεις που προορίζονται για τον διακομιστή." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/el.json b/apps/updatenotification/l10n/el.json index 663ae62def0e1..9c527494e8845 100644 --- a/apps/updatenotification/l10n/el.json +++ b/apps/updatenotification/l10n/el.json @@ -1,7 +1,17 @@ { "translations": { - "Update notifications" : "Ειδοποιήσεις ενημέρωσης", - "Could not start updater, please try the manual update" : "Δεν μπορεί να εκκινήσει η εφαρμογή ενημέρωσης, παρακαλώ δοκιμάστε την χειροκίνητη ενημέρωση", "{version} is available. Get more information on how to update." : "Η έκδοση {version} είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες για το πως να κάνετε την ενημέρωση.", + "Apps with available updates" : "Εφαρμογές με διαθέσιμες ενημερώσεις", + "Open updater" : "Άνοιγμα εφαρμογής ενημέρωσης", + "Your version is up to date." : "Έχετε την τελευταία έκδοση.", + "Update channel:" : "Ενημέρωση καναλιού:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Μπορείτε πάντα να περάσετε σε νεότερη / πειραματική έκδοση. Αλλά ποτέ δεν μπορείτε να γυρίσετε πίσω σε πιο σταθερό κανάλι.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Σημειώστε ότι μετά από μια νέα διανομή μπορεί να περάσει λίγος καιρός πριν εμφανιστεί εδώ. Κυκλοφορούμε κατά διαστήματα νέες εκδόσεις στους χρήστες μας και κάποιες φορές παραλείπουμε κάποια έκδοση αν βρεθούν προβλήματα.", + "Notify members of the following groups about available updates:" : "Να ενημερωθούν τα μέλη των παρακάτω ομάδων σχετικά με τις διαθέσιμες ενημερώσεις:", + "Only notification for app updates are available." : "Είναι μόνο διαθέσιμες οι ενημερώσεις για την εφαρμογή", + "The selected update channel does not support updates of the server." : "Το συγκεκριμένο κανάλι ενημέρωσης δεν υποστηρίζει ενημερώσεις διακομιστή.", + "Checking apps for compatible updates" : "Έλεγχος εφαρμογών για συμβατές ενημερώσεις", + "Could not start updater, please try the manual update" : "Δεν μπορεί να εκκινήσει η εφαρμογή ενημέρωσης, παρακαλώ δοκιμάστε την χειροκίνητη ενημέρωση", + "Update notifications" : "Ειδοποιήσεις ενημέρωσης", "Channel updated" : "Ενημερωμένο κανάλι", "The update server could not be reached since %d days to check for new updates." : "Ο διακομιστής ενημέρωσης δεν ήταν προσβάσιμος από %dημέρες για να ελέγξει για νέες ενημερώσεις. ", "Please check the Nextcloud and server log files for errors." : "Παρακαλούμε ελέγξτε για σφάλματα στα αρχεία ιστορικού του Nextcloud και του διακομιστή σας.", @@ -9,16 +19,8 @@ "Update for %1$s to version %2$s is available." : "Είναι διαθέσιμη η ενημέρωση από την έκδοση %1$s στην %2$s.", "Update for {app} to version %s is available." : "Είναι διαθέσιμη η ενημέρωση της εφαρμογής {app} στην έκδοση %s", "A new version is available: %s" : "Μία νέα έκδοση είναι διαθέσιμη: %s", - "Open updater" : "Άνοιγμα εφαρμογής ενημέρωσης", "Download now" : "Λήψη τώρα", - "Your version is up to date." : "Έχετε την τελευταία έκδοση.", "Checked on %s" : "Ελέγχθηκε στις %s", - "Update channel:" : "Ενημέρωση καναλιού:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Μπορείτε πάντα να περάσετε σε νεότερη / πειραματική έκδοση. Αλλά ποτέ δεν μπορείτε να γυρίσετε πίσω σε πιο σταθερό κανάλι.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Σημειώστε ότι μετά από μια νέα διανομή μπορεί να περάσει λίγος καιρός πριν εμφανιστεί εδώ. Κυκλοφορούμε κατά διαστήματα νέες εκδόσεις στους χρήστες μας και κάποιες φορές παραλείπουμε κάποια έκδοση αν βρεθούν προβλήματα.", - "Notify members of the following groups about available updates:" : "Να ενημερωθούν τα μέλη των παρακάτω ομάδων σχετικά με τις διαθέσιμες ενημερώσεις:", - "Only notification for app updates are available." : "Είναι μόνο διαθέσιμες οι ενημερώσεις για την εφαρμογή", - "The selected update channel makes dedicated notifications for the server obsolete." : "Το συγκεκριμένο κανάλι ενημέρωσης καθιστά παρωχημένες τις ειδοποιήσεις που προορίζονται για τον διακομιστή.", - "The selected update channel does not support updates of the server." : "Το συγκεκριμένο κανάλι ενημέρωσης δεν υποστηρίζει ενημερώσεις διακομιστή." + "The selected update channel makes dedicated notifications for the server obsolete." : "Το συγκεκριμένο κανάλι ενημέρωσης καθιστά παρωχημένες τις ειδοποιήσεις που προορίζονται για τον διακομιστή." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/en_GB.js b/apps/updatenotification/l10n/en_GB.js index dd5e55722bb84..235a65a85e355 100644 --- a/apps/updatenotification/l10n/en_GB.js +++ b/apps/updatenotification/l10n/en_GB.js @@ -1,28 +1,40 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Update notifications", - "Could not start updater, please try the manual update" : "Could not start updater, please try the manual update", "{version} is available. Get more information on how to update." : "{version} is available. Get more information on how to update.", + "Apps with available updates" : "Apps with available updates", + "Open updater" : "Open updater", + "Your version is up to date." : "Your version is up to date.", + "A non-default update server is in use to be checked for updates:" : "A non-default update server is in use to be checked for updates:", + "Update channel:" : "Update channel:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found.", + "Notify members of the following groups about available updates:" : "Notify members of the following groups about available updates:", + "Only notification for app updates are available." : "Only notification for app updates are available.", + "The selected update channel does not support updates of the server." : "The selected update channel does not support updates of the server.", + "A new version is available: {newVersionString}" : "A new version is available: {newVersionString}", + "Checked on {lastCheckedDate}" : "Checked on {lastCheckedDate}", + "Checking apps for compatible updates" : "Checking apps for compatible updates", + "Please make sure your config.php does not set appstoreenabled to false." : "Please make sure your config.php does not set appstoreenabled to false.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore.", + "All apps have an update for this version available" : "All apps have an update for this version available", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n app has no update for this version available","%n apps have no update for this version available"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2).", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "stable is the most recent stable version. It is suited for production use and will always update to the latest major version.", + "beta is a pre-release version only for testing new features, not for production environments." : "beta is a pre-release version only for testing new features, not for production environments.", + "Could not start updater, please try the manual update" : "Could not start updater, please try the manual update", + "Update notifications" : "Update notifications", "Channel updated" : "Channel updated", "The update server could not be reached since %d days to check for new updates." : "The update server could not be reached since %d days to check for new updates.", "Please check the Nextcloud and server log files for errors." : "Please check the Nextcloud and server log files for errors.", "Update to %1$s is available." : "Update to %1$s is available.", "Update for %1$s to version %2$s is available." : "Update for %1$s to version %2$s is available.", "Update for {app} to version %s is available." : "Update for {app} to version %s is available.", + "Update notification" : "Update notification", "A new version is available: %s" : "A new version is available: %s", - "Open updater" : "Open updater", "Download now" : "Download now", - "The update check is not yet finished. Please refresh the page." : "The update check is not yet finished. Please refresh the page.", - "Your version is up to date." : "Your version is up to date.", "Checked on %s" : "Checked on %s", - "A non-default update server is in use to be checked for updates:" : "A non-default update server is in use to be checked for updates:", - "Update channel:" : "Update channel:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found.", - "Notify members of the following groups about available updates:" : "Notify members of the following groups about available updates:", - "Only notification for app updates are available." : "Only notification for app updates are available.", "The selected update channel makes dedicated notifications for the server obsolete." : "The selected update channel makes dedicated notifications for the server obsolete.", - "The selected update channel does not support updates of the server." : "The selected update channel does not support updates of the server." + "The update check is not yet finished. Please refresh the page." : "The update check is not yet finished. Please refresh the page." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/en_GB.json b/apps/updatenotification/l10n/en_GB.json index cb2d296238fc2..1f489d73367c6 100644 --- a/apps/updatenotification/l10n/en_GB.json +++ b/apps/updatenotification/l10n/en_GB.json @@ -1,26 +1,38 @@ { "translations": { - "Update notifications" : "Update notifications", - "Could not start updater, please try the manual update" : "Could not start updater, please try the manual update", "{version} is available. Get more information on how to update." : "{version} is available. Get more information on how to update.", + "Apps with available updates" : "Apps with available updates", + "Open updater" : "Open updater", + "Your version is up to date." : "Your version is up to date.", + "A non-default update server is in use to be checked for updates:" : "A non-default update server is in use to be checked for updates:", + "Update channel:" : "Update channel:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found.", + "Notify members of the following groups about available updates:" : "Notify members of the following groups about available updates:", + "Only notification for app updates are available." : "Only notification for app updates are available.", + "The selected update channel does not support updates of the server." : "The selected update channel does not support updates of the server.", + "A new version is available: {newVersionString}" : "A new version is available: {newVersionString}", + "Checked on {lastCheckedDate}" : "Checked on {lastCheckedDate}", + "Checking apps for compatible updates" : "Checking apps for compatible updates", + "Please make sure your config.php does not set appstoreenabled to false." : "Please make sure your config.php does not set appstoreenabled to false.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore.", + "All apps have an update for this version available" : "All apps have an update for this version available", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n app has no update for this version available","%n apps have no update for this version available"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2).", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "stable is the most recent stable version. It is suited for production use and will always update to the latest major version.", + "beta is a pre-release version only for testing new features, not for production environments." : "beta is a pre-release version only for testing new features, not for production environments.", + "Could not start updater, please try the manual update" : "Could not start updater, please try the manual update", + "Update notifications" : "Update notifications", "Channel updated" : "Channel updated", "The update server could not be reached since %d days to check for new updates." : "The update server could not be reached since %d days to check for new updates.", "Please check the Nextcloud and server log files for errors." : "Please check the Nextcloud and server log files for errors.", "Update to %1$s is available." : "Update to %1$s is available.", "Update for %1$s to version %2$s is available." : "Update for %1$s to version %2$s is available.", "Update for {app} to version %s is available." : "Update for {app} to version %s is available.", + "Update notification" : "Update notification", "A new version is available: %s" : "A new version is available: %s", - "Open updater" : "Open updater", "Download now" : "Download now", - "The update check is not yet finished. Please refresh the page." : "The update check is not yet finished. Please refresh the page.", - "Your version is up to date." : "Your version is up to date.", "Checked on %s" : "Checked on %s", - "A non-default update server is in use to be checked for updates:" : "A non-default update server is in use to be checked for updates:", - "Update channel:" : "Update channel:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found.", - "Notify members of the following groups about available updates:" : "Notify members of the following groups about available updates:", - "Only notification for app updates are available." : "Only notification for app updates are available.", "The selected update channel makes dedicated notifications for the server obsolete." : "The selected update channel makes dedicated notifications for the server obsolete.", - "The selected update channel does not support updates of the server." : "The selected update channel does not support updates of the server." + "The update check is not yet finished. Please refresh the page." : "The update check is not yet finished. Please refresh the page." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es.js b/apps/updatenotification/l10n/es.js index 088da46cd3276..d4814b301ebbe 100644 --- a/apps/updatenotification/l10n/es.js +++ b/apps/updatenotification/l10n/es.js @@ -1,28 +1,40 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No se pudo iniciar el actualizador, por favor inténtalo de forma manual la actualización", "{version} is available. Get more information on how to update." : "{version} está disponible. Obtenga más información sobre cómo actualizar.", - "Channel updated" : "Canal actualizado", - "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no se ha podido alcanzar desde hace %d días para comprobar nuevas actualizaciones.", - "Please check the Nextcloud and server log files for errors." : "Por favor revise los archivos de registros para Nextcloud y el servidor en búsca de errores.", - "Update to %1$s is available." : "Actualización a %1$s esta disponible.", - "Update for %1$s to version %2$s is available." : "La actualización de %1$s a la versión %2$s está disponible.", - "Update for {app} to version %s is available." : "Actualización de {app} a la versión %s disponible.", - "A new version is available: %s" : "Hay una nueva versión disponible: %s", + "Apps with available updates" : "Apps con actualizaciones disponibles", "Open updater" : "Abrir el actualizador", - "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La comprobación de actuliazaciones no ha finalizado aún. Por favor, recarga la página.", "Your version is up to date." : "Su versión está actualizada.", - "Checked on %s" : "Revisado el %s", "A non-default update server is in use to be checked for updates:" : "Se está usando un servidor de actualización no estándar para comprobar actualizaciones:", "Update channel:" : "Canal de actualización: ", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre podrás actualizar a la versión más reciente o al canal experimental, pero nunca podrás volver a un canal más estable.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota: tras un nuevo lanzamiento, puede pasar algo de tiempo antes de que aparezca aquí. Escalonamos la difusión de nuevas versiones a nuestros usuarios y a veces saltamos una versión cuando aparecen problemas.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos sobre actualizaciones disponibles:", "Only notification for app updates are available." : "Solo están disponibles las notificaciones para actualizaciones de apps", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor", + "A new version is available: {newVersionString}" : "Una nueva versión está disponible: {newVersionString}", + "Checked on {lastCheckedDate}" : "Comprobado el {lastCheckeDate}", + "Checking apps for compatible updates" : "Comprobando las actualizaciones compatibles de las apps", + "Please make sure your config.php does not set appstoreenabled to false." : "Por favor, asegúrate de que tu config.php no tiene configurado appstoreenabled como false.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No se ha podido conectar a la appstore o la appstore no ha devuelto ninguna actualización. Busca actualizaciones manualmente o asegúrate de que tu servidor tiene acceso a internet y puede conectarse a la appstore.", + "All apps have an update for this version available" : "Todas las apps tienen disponible una actualización para esta versión", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n app no tiene actualización disponible para esta versión.","%n apps no tienen actualización disponible para esta versión."], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "production siempre proporcionará el último nivel de parches, pero no se actualizará a la próxima versión principal de inmediato. Esa actualización generalmente ocurre con la segunda versión menor (x.0.2).", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "stable es la versión estable más reciente. Es adecuado para uso en producción y siempre se actualizará a la última versión principal.", + "beta is a pre-release version only for testing new features, not for production environments." : "beta es una versión preliminar solo para probar nuevas características, no para entornos de producción.", + "Could not start updater, please try the manual update" : "No se ha podido iniciar el actualizador. Por favor, prueba a realizar la actualización de forma manual", + "Update notifications" : "Actualizar notificaciones", + "Channel updated" : "Canal actualizado", + "The update server could not be reached since %d days to check for new updates." : "No se ha podido contactar con el servidor de actualizaciones desde hace %d días para comprobar nuevas actualizaciones.", + "Please check the Nextcloud and server log files for errors." : "Por favor, revisa que no haya errores en Nextcloud y en los archivos de registro.", + "Update to %1$s is available." : "La actualización a %1$s está disponible.", + "Update for %1$s to version %2$s is available." : "La actualización de %1$s a la versión %2$s está disponible.", + "Update for {app} to version %s is available." : "Actualización de {app} a la versión %s disponible.", + "Update notification" : "Notificación de actualización", + "A new version is available: %s" : "Hay una nueva versión disponible: %s", + "Download now" : "Descargar ahora", + "Checked on %s" : "Comprobado el %s", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace obsoletas las notificaciones dedicadas para el servidor.", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor" + "The update check is not yet finished. Please refresh the page." : "La comprobación de actuliazaciones no ha finalizado aún. Por favor, recarga la página." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es.json b/apps/updatenotification/l10n/es.json index 777bd24ae9ec6..5451ff39f2b85 100644 --- a/apps/updatenotification/l10n/es.json +++ b/apps/updatenotification/l10n/es.json @@ -1,26 +1,38 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No se pudo iniciar el actualizador, por favor inténtalo de forma manual la actualización", "{version} is available. Get more information on how to update." : "{version} está disponible. Obtenga más información sobre cómo actualizar.", - "Channel updated" : "Canal actualizado", - "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no se ha podido alcanzar desde hace %d días para comprobar nuevas actualizaciones.", - "Please check the Nextcloud and server log files for errors." : "Por favor revise los archivos de registros para Nextcloud y el servidor en búsca de errores.", - "Update to %1$s is available." : "Actualización a %1$s esta disponible.", - "Update for %1$s to version %2$s is available." : "La actualización de %1$s a la versión %2$s está disponible.", - "Update for {app} to version %s is available." : "Actualización de {app} a la versión %s disponible.", - "A new version is available: %s" : "Hay una nueva versión disponible: %s", + "Apps with available updates" : "Apps con actualizaciones disponibles", "Open updater" : "Abrir el actualizador", - "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La comprobación de actuliazaciones no ha finalizado aún. Por favor, recarga la página.", "Your version is up to date." : "Su versión está actualizada.", - "Checked on %s" : "Revisado el %s", "A non-default update server is in use to be checked for updates:" : "Se está usando un servidor de actualización no estándar para comprobar actualizaciones:", "Update channel:" : "Canal de actualización: ", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre podrás actualizar a la versión más reciente o al canal experimental, pero nunca podrás volver a un canal más estable.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota: tras un nuevo lanzamiento, puede pasar algo de tiempo antes de que aparezca aquí. Escalonamos la difusión de nuevas versiones a nuestros usuarios y a veces saltamos una versión cuando aparecen problemas.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos sobre actualizaciones disponibles:", "Only notification for app updates are available." : "Solo están disponibles las notificaciones para actualizaciones de apps", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor", + "A new version is available: {newVersionString}" : "Una nueva versión está disponible: {newVersionString}", + "Checked on {lastCheckedDate}" : "Comprobado el {lastCheckeDate}", + "Checking apps for compatible updates" : "Comprobando las actualizaciones compatibles de las apps", + "Please make sure your config.php does not set appstoreenabled to false." : "Por favor, asegúrate de que tu config.php no tiene configurado appstoreenabled como false.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No se ha podido conectar a la appstore o la appstore no ha devuelto ninguna actualización. Busca actualizaciones manualmente o asegúrate de que tu servidor tiene acceso a internet y puede conectarse a la appstore.", + "All apps have an update for this version available" : "Todas las apps tienen disponible una actualización para esta versión", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n app no tiene actualización disponible para esta versión.","%n apps no tienen actualización disponible para esta versión."], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "production siempre proporcionará el último nivel de parches, pero no se actualizará a la próxima versión principal de inmediato. Esa actualización generalmente ocurre con la segunda versión menor (x.0.2).", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "stable es la versión estable más reciente. Es adecuado para uso en producción y siempre se actualizará a la última versión principal.", + "beta is a pre-release version only for testing new features, not for production environments." : "beta es una versión preliminar solo para probar nuevas características, no para entornos de producción.", + "Could not start updater, please try the manual update" : "No se ha podido iniciar el actualizador. Por favor, prueba a realizar la actualización de forma manual", + "Update notifications" : "Actualizar notificaciones", + "Channel updated" : "Canal actualizado", + "The update server could not be reached since %d days to check for new updates." : "No se ha podido contactar con el servidor de actualizaciones desde hace %d días para comprobar nuevas actualizaciones.", + "Please check the Nextcloud and server log files for errors." : "Por favor, revisa que no haya errores en Nextcloud y en los archivos de registro.", + "Update to %1$s is available." : "La actualización a %1$s está disponible.", + "Update for %1$s to version %2$s is available." : "La actualización de %1$s a la versión %2$s está disponible.", + "Update for {app} to version %s is available." : "Actualización de {app} a la versión %s disponible.", + "Update notification" : "Notificación de actualización", + "A new version is available: %s" : "Hay una nueva versión disponible: %s", + "Download now" : "Descargar ahora", + "Checked on %s" : "Comprobado el %s", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace obsoletas las notificaciones dedicadas para el servidor.", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor" + "The update check is not yet finished. Please refresh the page." : "La comprobación de actuliazaciones no ha finalizado aún. Por favor, recarga la página." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es_419.js b/apps/updatenotification/l10n/es_419.js index 7753f5b5a0482..c5f27640c951c 100644 --- a/apps/updatenotification/l10n/es_419.js +++ b/apps/updatenotification/l10n/es_419.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_419.json b/apps/updatenotification/l10n/es_419.json index 5dea8ca3eec3a..35a0f910f75d4 100644 --- a/apps/updatenotification/l10n/es_419.json +++ b/apps/updatenotification/l10n/es_419.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es_AR.js b/apps/updatenotification/l10n/es_AR.js index a8c015e77f1bd..df35135b4d396 100644 --- a/apps/updatenotification/l10n/es_AR.js +++ b/apps/updatenotification/l10n/es_AR.js @@ -1,9 +1,16 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, favor de intentar la actualización manual", "{version} is available. Get more information on how to update." : "{version} no está disponible. Obtenga más información acerca de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Su verisón está actualizada.", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puede actualizar a una versión más reciente / canal experimental. Sinembargo nunca podrá desactualizar la versión a un canal más estable. ", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, favor de intentar la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Favor de verificar los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -11,15 +18,8 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "Your version is up to date." : "Su verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puede actualizar a una versión más reciente / canal experimental. Sinembargo nunca podrá desactualizar la versión a un canal más estable. ", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. " }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_AR.json b/apps/updatenotification/l10n/es_AR.json index 4a35a71648e14..7c707f5ddae80 100644 --- a/apps/updatenotification/l10n/es_AR.json +++ b/apps/updatenotification/l10n/es_AR.json @@ -1,7 +1,14 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, favor de intentar la actualización manual", "{version} is available. Get more information on how to update." : "{version} no está disponible. Obtenga más información acerca de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Su verisón está actualizada.", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puede actualizar a una versión más reciente / canal experimental. Sinembargo nunca podrá desactualizar la versión a un canal más estable. ", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, favor de intentar la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Favor de verificar los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -9,15 +16,8 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "Your version is up to date." : "Su verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puede actualizar a una versión más reciente / canal experimental. Sinembargo nunca podrá desactualizar la versión a un canal más estable. ", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. " },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es_CL.js b/apps/updatenotification/l10n/es_CL.js index 7753f5b5a0482..c5f27640c951c 100644 --- a/apps/updatenotification/l10n/es_CL.js +++ b/apps/updatenotification/l10n/es_CL.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_CL.json b/apps/updatenotification/l10n/es_CL.json index 5dea8ca3eec3a..35a0f910f75d4 100644 --- a/apps/updatenotification/l10n/es_CL.json +++ b/apps/updatenotification/l10n/es_CL.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es_CO.js b/apps/updatenotification/l10n/es_CO.js index 7753f5b5a0482..c5f27640c951c 100644 --- a/apps/updatenotification/l10n/es_CO.js +++ b/apps/updatenotification/l10n/es_CO.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_CO.json b/apps/updatenotification/l10n/es_CO.json index 5dea8ca3eec3a..35a0f910f75d4 100644 --- a/apps/updatenotification/l10n/es_CO.json +++ b/apps/updatenotification/l10n/es_CO.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es_CR.js b/apps/updatenotification/l10n/es_CR.js index 7753f5b5a0482..c5f27640c951c 100644 --- a/apps/updatenotification/l10n/es_CR.js +++ b/apps/updatenotification/l10n/es_CR.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_CR.json b/apps/updatenotification/l10n/es_CR.json index 5dea8ca3eec3a..35a0f910f75d4 100644 --- a/apps/updatenotification/l10n/es_CR.json +++ b/apps/updatenotification/l10n/es_CR.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es_DO.js b/apps/updatenotification/l10n/es_DO.js index 7753f5b5a0482..c5f27640c951c 100644 --- a/apps/updatenotification/l10n/es_DO.js +++ b/apps/updatenotification/l10n/es_DO.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_DO.json b/apps/updatenotification/l10n/es_DO.json index 5dea8ca3eec3a..35a0f910f75d4 100644 --- a/apps/updatenotification/l10n/es_DO.json +++ b/apps/updatenotification/l10n/es_DO.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es_EC.js b/apps/updatenotification/l10n/es_EC.js index 7753f5b5a0482..c5f27640c951c 100644 --- a/apps/updatenotification/l10n/es_EC.js +++ b/apps/updatenotification/l10n/es_EC.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_EC.json b/apps/updatenotification/l10n/es_EC.json index 5dea8ca3eec3a..35a0f910f75d4 100644 --- a/apps/updatenotification/l10n/es_EC.json +++ b/apps/updatenotification/l10n/es_EC.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es_GT.js b/apps/updatenotification/l10n/es_GT.js index 7753f5b5a0482..c5f27640c951c 100644 --- a/apps/updatenotification/l10n/es_GT.js +++ b/apps/updatenotification/l10n/es_GT.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_GT.json b/apps/updatenotification/l10n/es_GT.json index 5dea8ca3eec3a..35a0f910f75d4 100644 --- a/apps/updatenotification/l10n/es_GT.json +++ b/apps/updatenotification/l10n/es_GT.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es_HN.js b/apps/updatenotification/l10n/es_HN.js index 7753f5b5a0482..c5f27640c951c 100644 --- a/apps/updatenotification/l10n/es_HN.js +++ b/apps/updatenotification/l10n/es_HN.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_HN.json b/apps/updatenotification/l10n/es_HN.json index 5dea8ca3eec3a..35a0f910f75d4 100644 --- a/apps/updatenotification/l10n/es_HN.json +++ b/apps/updatenotification/l10n/es_HN.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es_MX.js b/apps/updatenotification/l10n/es_MX.js index 7753f5b5a0482..5bb1fb5d272c0 100644 --- a/apps/updatenotification/l10n/es_MX.js +++ b/apps/updatenotification/l10n/es_MX.js @@ -1,28 +1,40 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "A new version is available: {newVersionString}" : "Una versión más reciente está disponible: {newVersionString}", + "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", + "Checking apps for compatible updates" : "Verificando si las aplicaciones tienen actualizaciones compatibles", + "Please make sure your config.php does not set appstoreenabled to false." : "Por favor asegurate que en tu config.php no se establezca appstoreenabled como falso.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", + "All apps have an update for this version available" : "Todas las aplicaciones tienen una actualización disponible para esta versión", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n aplicación no cuenta con una actualización para esta versión","%n aplicaciones no cuentan con una actualización para esta versión"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "producción siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "estable es la version estable más reciente. Es adecuada para su uso en producción y siempre estará actualizada a la versión mayor más reciente. ", + "beta is a pre-release version only for testing new features, not for production environments." : "beta es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", "Update to %1$s is available." : "La actualización a %1$s está disponible. ", "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", + "Update notification" : "Notificación de actualización", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_MX.json b/apps/updatenotification/l10n/es_MX.json index 5dea8ca3eec3a..d71edae7cac5b 100644 --- a/apps/updatenotification/l10n/es_MX.json +++ b/apps/updatenotification/l10n/es_MX.json @@ -1,26 +1,38 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "A new version is available: {newVersionString}" : "Una versión más reciente está disponible: {newVersionString}", + "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", + "Checking apps for compatible updates" : "Verificando si las aplicaciones tienen actualizaciones compatibles", + "Please make sure your config.php does not set appstoreenabled to false." : "Por favor asegurate que en tu config.php no se establezca appstoreenabled como falso.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", + "All apps have an update for this version available" : "Todas las aplicaciones tienen una actualización disponible para esta versión", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n aplicación no cuenta con una actualización para esta versión","%n aplicaciones no cuentan con una actualización para esta versión"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "producción siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "estable es la version estable más reciente. Es adecuada para su uso en producción y siempre estará actualizada a la versión mayor más reciente. ", + "beta is a pre-release version only for testing new features, not for production environments." : "beta es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", "Update to %1$s is available." : "La actualización a %1$s está disponible. ", "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", + "Update notification" : "Notificación de actualización", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es_NI.js b/apps/updatenotification/l10n/es_NI.js index 7753f5b5a0482..c5f27640c951c 100644 --- a/apps/updatenotification/l10n/es_NI.js +++ b/apps/updatenotification/l10n/es_NI.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_NI.json b/apps/updatenotification/l10n/es_NI.json index 5dea8ca3eec3a..35a0f910f75d4 100644 --- a/apps/updatenotification/l10n/es_NI.json +++ b/apps/updatenotification/l10n/es_NI.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es_PA.js b/apps/updatenotification/l10n/es_PA.js index 7753f5b5a0482..c5f27640c951c 100644 --- a/apps/updatenotification/l10n/es_PA.js +++ b/apps/updatenotification/l10n/es_PA.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_PA.json b/apps/updatenotification/l10n/es_PA.json index 5dea8ca3eec3a..35a0f910f75d4 100644 --- a/apps/updatenotification/l10n/es_PA.json +++ b/apps/updatenotification/l10n/es_PA.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es_PE.js b/apps/updatenotification/l10n/es_PE.js index 7753f5b5a0482..c5f27640c951c 100644 --- a/apps/updatenotification/l10n/es_PE.js +++ b/apps/updatenotification/l10n/es_PE.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_PE.json b/apps/updatenotification/l10n/es_PE.json index 5dea8ca3eec3a..35a0f910f75d4 100644 --- a/apps/updatenotification/l10n/es_PE.json +++ b/apps/updatenotification/l10n/es_PE.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es_PR.js b/apps/updatenotification/l10n/es_PR.js index 7753f5b5a0482..c5f27640c951c 100644 --- a/apps/updatenotification/l10n/es_PR.js +++ b/apps/updatenotification/l10n/es_PR.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_PR.json b/apps/updatenotification/l10n/es_PR.json index 5dea8ca3eec3a..35a0f910f75d4 100644 --- a/apps/updatenotification/l10n/es_PR.json +++ b/apps/updatenotification/l10n/es_PR.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es_PY.js b/apps/updatenotification/l10n/es_PY.js index 7753f5b5a0482..c5f27640c951c 100644 --- a/apps/updatenotification/l10n/es_PY.js +++ b/apps/updatenotification/l10n/es_PY.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_PY.json b/apps/updatenotification/l10n/es_PY.json index 5dea8ca3eec3a..35a0f910f75d4 100644 --- a/apps/updatenotification/l10n/es_PY.json +++ b/apps/updatenotification/l10n/es_PY.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es_SV.js b/apps/updatenotification/l10n/es_SV.js index 7753f5b5a0482..c5f27640c951c 100644 --- a/apps/updatenotification/l10n/es_SV.js +++ b/apps/updatenotification/l10n/es_SV.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_SV.json b/apps/updatenotification/l10n/es_SV.json index 5dea8ca3eec3a..35a0f910f75d4 100644 --- a/apps/updatenotification/l10n/es_SV.json +++ b/apps/updatenotification/l10n/es_SV.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/es_UY.js b/apps/updatenotification/l10n/es_UY.js index 7753f5b5a0482..c5f27640c951c 100644 --- a/apps/updatenotification/l10n/es_UY.js +++ b/apps/updatenotification/l10n/es_UY.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_UY.json b/apps/updatenotification/l10n/es_UY.json index 5dea8ca3eec3a..35a0f910f75d4 100644 --- a/apps/updatenotification/l10n/es_UY.json +++ b/apps/updatenotification/l10n/es_UY.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Actualizar notificaciones", - "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "{version} is available. Get more information on how to update." : "{version} está disponible. Obten más información de cómo actualizar. ", + "Open updater" : "Abrir actualizador", + "Your version is up to date." : "Tu verisón está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", + "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", + "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", + "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "Update notifications" : "Actualizar notificaciones", "Channel updated" : "Canal actualizado", "The update server could not be reached since %d days to check for new updates." : "El servidor de actualización no ha podido ser alcanzado desde %d días para verificar actualizaciones. ", "Please check the Nextcloud and server log files for errors." : "Por favor verifica los archivos de bitacoras de Nextcloud y del servidor por errores. ", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Open updater" : "Abrir actualizador", "Download now" : "Descargar ahora", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", - "Your version is up to date." : "Tu verisón está actualizada.", "Checked on %s" : "Verificado el %s", - "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", - "Update channel:" : "Actualizar el canal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", - "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", - "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. " + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/et_EE.js b/apps/updatenotification/l10n/et_EE.js index 0007ee1fd0450..08bb12ef9b1ae 100644 --- a/apps/updatenotification/l10n/et_EE.js +++ b/apps/updatenotification/l10n/et_EE.js @@ -2,10 +2,20 @@ OC.L10N.register( "updatenotification", { "{version} is available. Get more information on how to update." : "{version} on saadaval. Vaata lisainfot uuendamise kohta.", - "Updated channel" : "Uuendatud kanal", - "Updater" : "Uuendaja", + "Your version is up to date." : "Su versioon on ajakohane.", + "Update channel:" : "Uuenduste kanal:", + "Notify members of the following groups about available updates:" : "Teavita jägmiste gruppide liikmeid saadaval olevatest uuendustest:", + "Only notification for app updates are available." : "Saadaval on ainult rakenduste uuenduste kohta käivad teated.", + "Could not start updater, please try the manual update" : "Uuendajat ei saanud käivitad, proovige käsitsi uuendada", + "Update notifications" : "Uuendusmärguanded", + "Channel updated" : "Kanal värskendatud", + "Update to %1$s is available." : "Uuendus versioonile %1$s on saadaval.", + "Update for %1$s to version %2$s is available." : "Uuendus versioonilt %1$s versioonile %2$s on saadaval.", + "Update for {app} to version %s is available." : "Uuendus {app} versioonile %s on saadaval.", "A new version is available: %s" : "Saadaval on uus versioon: %s", "Open updater" : "Ava uuendaja", - "Update channel:" : "Uuenduste kanal:" + "Download now" : "Lae kohe alla", + "Checked on %s" : "Kontrollitud %s", + "The update check is not yet finished. Please refresh the page." : "Uuenduste kontrollimine pole veel lõppenud. Palun värskendage lehte." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/et_EE.json b/apps/updatenotification/l10n/et_EE.json index 64003ef590144..bef68816b6cb8 100644 --- a/apps/updatenotification/l10n/et_EE.json +++ b/apps/updatenotification/l10n/et_EE.json @@ -1,9 +1,19 @@ { "translations": { "{version} is available. Get more information on how to update." : "{version} on saadaval. Vaata lisainfot uuendamise kohta.", - "Updated channel" : "Uuendatud kanal", - "Updater" : "Uuendaja", + "Your version is up to date." : "Su versioon on ajakohane.", + "Update channel:" : "Uuenduste kanal:", + "Notify members of the following groups about available updates:" : "Teavita jägmiste gruppide liikmeid saadaval olevatest uuendustest:", + "Only notification for app updates are available." : "Saadaval on ainult rakenduste uuenduste kohta käivad teated.", + "Could not start updater, please try the manual update" : "Uuendajat ei saanud käivitad, proovige käsitsi uuendada", + "Update notifications" : "Uuendusmärguanded", + "Channel updated" : "Kanal värskendatud", + "Update to %1$s is available." : "Uuendus versioonile %1$s on saadaval.", + "Update for %1$s to version %2$s is available." : "Uuendus versioonilt %1$s versioonile %2$s on saadaval.", + "Update for {app} to version %s is available." : "Uuendus {app} versioonile %s on saadaval.", "A new version is available: %s" : "Saadaval on uus versioon: %s", "Open updater" : "Ava uuendaja", - "Update channel:" : "Uuenduste kanal:" + "Download now" : "Lae kohe alla", + "Checked on %s" : "Kontrollitud %s", + "The update check is not yet finished. Please refresh the page." : "Uuenduste kontrollimine pole veel lõppenud. Palun värskendage lehte." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/fi.js b/apps/updatenotification/l10n/fi.js index 116a472dddbd7..6c4671a1ea520 100644 --- a/apps/updatenotification/l10n/fi.js +++ b/apps/updatenotification/l10n/fi.js @@ -1,25 +1,29 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Päivitysilmoitukset", - "Could not start updater, please try the manual update" : "Ei voitu aloittaa päivitystä, kokeile päivittämistä manuaalisesti", "{version} is available. Get more information on how to update." : "{version} on saatavilla. Tarjolla on lisätietoja päivittämisestä.", + "Apps with available updates" : "Sovellukset, joihin saatavilla päivityksiä", + "Open updater" : "Avaa päivittäjä", + "Your version is up to date." : "Versiosi on ajan tasalla.", + "Update channel:" : "Päivityskanava:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Voit aina päivittää uudempaan versioon tai kokeellisen jakelukanavan versioon. Et voi kuitenkaan palata aiempaan, vakaan julkaisukanavan versioon.", + "Notify members of the following groups about available updates:" : "Ilmoita seuraavien ryhmien jäsenille saatavilla olevista päivityksistä:", + "Only notification for app updates are available." : "Sovelluspäivityksiin on saatavilla vain huomautuksia.", + "The selected update channel does not support updates of the server." : "Valittu päivityskanava ei tue palvelimen päivityksiä.", + "A new version is available: {newVersionString}" : "Uusi versio on saatavilla: {newVersionString}", + "Checked on {lastCheckedDate}" : "Tarkistettu {lastCheckedDate}", + "Could not start updater, please try the manual update" : "Ei voitu aloittaa päivitystä, kokeile päivittämistä manuaalisesti", + "Update notifications" : "Päivitysilmoitukset", "Channel updated" : "Päivityskanava päivitetty", "The update server could not be reached since %d days to check for new updates." : "Päivityspalvelinta ei ole tavoitettu %d päivään; uusia päivityksiä ei voida tarkistaa.", "Please check the Nextcloud and server log files for errors." : "Tarkista Nextcloud- ja palvelinlokitiedostot virheiden osalta.", "Update to %1$s is available." : "Kohteen %1$s päivitys on saatavilla.", "Update for %1$s to version %2$s is available." : "Kohteen %1$s päivitys versioon %2$s on saatavilla.", "Update for {app} to version %s is available." : "Sovelluksen {app} päivitys versioon %s on saatavilla.", + "Update notification" : "Päivitysilmoitus", "A new version is available: %s" : "Uusi versio on saatavilla: %s", - "Open updater" : "Avaa päivittäjä", "Download now" : "Lataa heti", - "The update check is not yet finished. Please refresh the page." : "Päivitystarkistus ei ole vielä valmis. Päivitä sivu.", - "Your version is up to date." : "Versiosi on ajan tasalla.", "Checked on %s" : "Tarkistettu %s", - "Update channel:" : "Päivityskanava:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Voit aina päivittää uudempaan versioon tai kokeellisen jakelukanavan versioon. Et voi kuitenkaan palata aiempaan, vakaan julkaisukanavan versioon.", - "Notify members of the following groups about available updates:" : "Ilmoita seuraavien ryhmien jäsenille saatavilla olevista päivityksistä:", - "Only notification for app updates are available." : "Sovelluspäivityksiin on saatavilla vain huomautuksia.", - "The selected update channel does not support updates of the server." : "Valittu päivityskanava ei tue palvelimen päivityksiä." + "The update check is not yet finished. Please refresh the page." : "Päivitystarkistus ei ole vielä valmis. Päivitä sivu." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/fi.json b/apps/updatenotification/l10n/fi.json index 5e8a8b8faec4c..a9a18a8575caa 100644 --- a/apps/updatenotification/l10n/fi.json +++ b/apps/updatenotification/l10n/fi.json @@ -1,23 +1,27 @@ { "translations": { - "Update notifications" : "Päivitysilmoitukset", - "Could not start updater, please try the manual update" : "Ei voitu aloittaa päivitystä, kokeile päivittämistä manuaalisesti", "{version} is available. Get more information on how to update." : "{version} on saatavilla. Tarjolla on lisätietoja päivittämisestä.", + "Apps with available updates" : "Sovellukset, joihin saatavilla päivityksiä", + "Open updater" : "Avaa päivittäjä", + "Your version is up to date." : "Versiosi on ajan tasalla.", + "Update channel:" : "Päivityskanava:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Voit aina päivittää uudempaan versioon tai kokeellisen jakelukanavan versioon. Et voi kuitenkaan palata aiempaan, vakaan julkaisukanavan versioon.", + "Notify members of the following groups about available updates:" : "Ilmoita seuraavien ryhmien jäsenille saatavilla olevista päivityksistä:", + "Only notification for app updates are available." : "Sovelluspäivityksiin on saatavilla vain huomautuksia.", + "The selected update channel does not support updates of the server." : "Valittu päivityskanava ei tue palvelimen päivityksiä.", + "A new version is available: {newVersionString}" : "Uusi versio on saatavilla: {newVersionString}", + "Checked on {lastCheckedDate}" : "Tarkistettu {lastCheckedDate}", + "Could not start updater, please try the manual update" : "Ei voitu aloittaa päivitystä, kokeile päivittämistä manuaalisesti", + "Update notifications" : "Päivitysilmoitukset", "Channel updated" : "Päivityskanava päivitetty", "The update server could not be reached since %d days to check for new updates." : "Päivityspalvelinta ei ole tavoitettu %d päivään; uusia päivityksiä ei voida tarkistaa.", "Please check the Nextcloud and server log files for errors." : "Tarkista Nextcloud- ja palvelinlokitiedostot virheiden osalta.", "Update to %1$s is available." : "Kohteen %1$s päivitys on saatavilla.", "Update for %1$s to version %2$s is available." : "Kohteen %1$s päivitys versioon %2$s on saatavilla.", "Update for {app} to version %s is available." : "Sovelluksen {app} päivitys versioon %s on saatavilla.", + "Update notification" : "Päivitysilmoitus", "A new version is available: %s" : "Uusi versio on saatavilla: %s", - "Open updater" : "Avaa päivittäjä", "Download now" : "Lataa heti", - "The update check is not yet finished. Please refresh the page." : "Päivitystarkistus ei ole vielä valmis. Päivitä sivu.", - "Your version is up to date." : "Versiosi on ajan tasalla.", "Checked on %s" : "Tarkistettu %s", - "Update channel:" : "Päivityskanava:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Voit aina päivittää uudempaan versioon tai kokeellisen jakelukanavan versioon. Et voi kuitenkaan palata aiempaan, vakaan julkaisukanavan versioon.", - "Notify members of the following groups about available updates:" : "Ilmoita seuraavien ryhmien jäsenille saatavilla olevista päivityksistä:", - "Only notification for app updates are available." : "Sovelluspäivityksiin on saatavilla vain huomautuksia.", - "The selected update channel does not support updates of the server." : "Valittu päivityskanava ei tue palvelimen päivityksiä." + "The update check is not yet finished. Please refresh the page." : "Päivitystarkistus ei ole vielä valmis. Päivitä sivu." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/fr.js b/apps/updatenotification/l10n/fr.js index 87bc4175c663e..b80bff1d21865 100644 --- a/apps/updatenotification/l10n/fr.js +++ b/apps/updatenotification/l10n/fr.js @@ -1,28 +1,40 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Notifications de mises à jour", - "Could not start updater, please try the manual update" : "Impossible de démarrer le système de mise à jour, veuillez essayer de mettre à jour manuellement", "{version} is available. Get more information on how to update." : "La version {version} est disponible. Cliquez ici pour plus d'informations sur comment mettre à jour.", + "Apps with available updates" : "Applications avec des mises à jour disponibles", + "Open updater" : "Ouvrir le système de mise à jour", + "Your version is up to date." : "Votre version est à jour.", + "A non-default update server is in use to be checked for updates:" : "Un serveur spécifique est actuellement configuré pour la vérification des mises-à-jour :", + "Update channel:" : "Canal de mise à jour :", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Vous pouvez à tout moment mettre à jour votre instance Nextcloud vers une version plus récente ou un canal expérimental. Vous ne pourrez cependant jamais revenir à une version antérieure en sélectionnant un canal plus stable.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Veuillez noter qu'il peut s'écouler un certain temps entre la sortie d'une nouvelle version et sa disponibilité pour téléchargement et mise-à-jour ici, sur votre instance. Nous répartissons le déploiement des nouvelles versions Nextcloud dans le temps à l'ensemble de nos utilisateurs. Certaines versions mineures, présentant des bugs problématiques, peuvent être sautées.", + "Notify members of the following groups about available updates:" : "Notifier les membres des groupes suivants des mises à jours disponibles :", + "Only notification for app updates are available." : "Seules les notifications pour les mises à jour d'applications sont diponibles.", + "The selected update channel does not support updates of the server." : "Le canal de mises à jour sélectionné ne supporte pas les mises à jour du serveur.", + "A new version is available: {newVersionString}" : "Une nouvelle version est disponible : {newVersionString}", + "Checked on {lastCheckedDate}" : "Vérifié le {lastCheckedDate}", + "Checking apps for compatible updates" : "Vérification des applications pour des mises à jour compatibles", + "Please make sure your config.php does not set appstoreenabled to false." : "Veuillez vous assurer que le paramètre appstoreenabled n'est pas défini à false dans votre config.php.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Il est impossible de se connecter à l'appstore ou alors l'appstore n'a renvoyé aucune mise à jour. Cherchez manuellement les mises à jour ou assurez-vous que votre serveur a accès à Internet et peut se connecter à l'appstore.", + "All apps have an update for this version available" : "Toutes les applications ont une mise à jour disponible pour cette version", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n application n'a pas de mise à jour disponible pour cette version","%n applications n'ont pas de mise à jour disponible pour cette version"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "production fournira toujours le correctif le plus récent, mais ne mettra pas immédiatement à jour vers la version majeure suivante. Cette mise à jour se produit généralement avec la deuxième version mineure (x.0.2).", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "stable est la version stable la plus récente. Il est adapté à une utilisation en production et sera toujours mis à jour vers la dernière version majeure.", + "beta is a pre-release version only for testing new features, not for production environments." : "beta est une version préliminaire utilisée seulement pour tester les nouvelles fonctionnalités, n'est pas adaptée dans un environnement de production.", + "Could not start updater, please try the manual update" : "Impossible de démarrer le système de mise à jour, veuillez essayer de mettre à jour manuellement", + "Update notifications" : "Notifications de mises à jour", "Channel updated" : "Canal de mise à jour modifié", "The update server could not be reached since %d days to check for new updates." : "Le serveur de mise à jour n'a pas pu être atteint depuis %d jours pour vérifier les nouvelles mises à jour.", "Please check the Nextcloud and server log files for errors." : "Veuillez vérifier les fichiers de log de Nextcloud et du serveur pour les erreurs.", "Update to %1$s is available." : "Une mise à jour vers %1$s est disponible", "Update for %1$s to version %2$s is available." : "Une mise à jour de %1$s vers la version %2$s est disponible.", "Update for {app} to version %s is available." : "Une mise à jour de {app} vers la version %s est disponible.", + "Update notification" : "Notification mise à jour", "A new version is available: %s" : "Une nouvelle version est disponible : %s", - "Open updater" : "Ouvrir le système de mise à jour", "Download now" : "Télécharger maintenant", - "The update check is not yet finished. Please refresh the page." : "La vérification de la mise-à-jour n'est pas encore terminée. Veuillez rafraîchir la page.", - "Your version is up to date." : "Votre version est à jour.", "Checked on %s" : "Vérifié le %s", - "A non-default update server is in use to be checked for updates:" : "Un serveur spécifique est actuellement configuré pour la vérification des mises-à-jour :", - "Update channel:" : "Canal de mise à jour :", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Vous pouvez à tout moment mettre à jour votre instance Nextcloud vers une version plus récente ou un canal expérimental. Vous ne pourrez cependant jamais revenir à une version antérieure en sélectionnant un canal plus stable.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Veuillez noter qu'il peut s'écouler un certain temps entre la sortie d'une nouvelle version et sa disponibilité pour téléchargement et mise-à-jour ici, sur votre instance. Nous répartissons le déploiement des nouvelles versions Nextcloud dans le temps à l'ensemble de nos utilisateurs. Certaines versions mineures, présentant des bugs problématiques, peuvent être sautées.", - "Notify members of the following groups about available updates:" : "Notifier les membres des groupes suivants des mises à jours disponibles :", - "Only notification for app updates are available." : "Seules les notifications pour les mises à jour d'applications sont diponibles.", "The selected update channel makes dedicated notifications for the server obsolete." : "Le canal de mise à jour sélectionné rend obsolètes les notifications dédiées au serveur.", - "The selected update channel does not support updates of the server." : "Le canal de mises à jour sélectionné ne supporte pas les mises à jour du serveur." + "The update check is not yet finished. Please refresh the page." : "La vérification de la mise-à-jour n'est pas encore terminée. Veuillez rafraîchir la page." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/updatenotification/l10n/fr.json b/apps/updatenotification/l10n/fr.json index 2fbb5dd9c3dae..21646f03ccc23 100644 --- a/apps/updatenotification/l10n/fr.json +++ b/apps/updatenotification/l10n/fr.json @@ -1,26 +1,38 @@ { "translations": { - "Update notifications" : "Notifications de mises à jour", - "Could not start updater, please try the manual update" : "Impossible de démarrer le système de mise à jour, veuillez essayer de mettre à jour manuellement", "{version} is available. Get more information on how to update." : "La version {version} est disponible. Cliquez ici pour plus d'informations sur comment mettre à jour.", + "Apps with available updates" : "Applications avec des mises à jour disponibles", + "Open updater" : "Ouvrir le système de mise à jour", + "Your version is up to date." : "Votre version est à jour.", + "A non-default update server is in use to be checked for updates:" : "Un serveur spécifique est actuellement configuré pour la vérification des mises-à-jour :", + "Update channel:" : "Canal de mise à jour :", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Vous pouvez à tout moment mettre à jour votre instance Nextcloud vers une version plus récente ou un canal expérimental. Vous ne pourrez cependant jamais revenir à une version antérieure en sélectionnant un canal plus stable.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Veuillez noter qu'il peut s'écouler un certain temps entre la sortie d'une nouvelle version et sa disponibilité pour téléchargement et mise-à-jour ici, sur votre instance. Nous répartissons le déploiement des nouvelles versions Nextcloud dans le temps à l'ensemble de nos utilisateurs. Certaines versions mineures, présentant des bugs problématiques, peuvent être sautées.", + "Notify members of the following groups about available updates:" : "Notifier les membres des groupes suivants des mises à jours disponibles :", + "Only notification for app updates are available." : "Seules les notifications pour les mises à jour d'applications sont diponibles.", + "The selected update channel does not support updates of the server." : "Le canal de mises à jour sélectionné ne supporte pas les mises à jour du serveur.", + "A new version is available: {newVersionString}" : "Une nouvelle version est disponible : {newVersionString}", + "Checked on {lastCheckedDate}" : "Vérifié le {lastCheckedDate}", + "Checking apps for compatible updates" : "Vérification des applications pour des mises à jour compatibles", + "Please make sure your config.php does not set appstoreenabled to false." : "Veuillez vous assurer que le paramètre appstoreenabled n'est pas défini à false dans votre config.php.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Il est impossible de se connecter à l'appstore ou alors l'appstore n'a renvoyé aucune mise à jour. Cherchez manuellement les mises à jour ou assurez-vous que votre serveur a accès à Internet et peut se connecter à l'appstore.", + "All apps have an update for this version available" : "Toutes les applications ont une mise à jour disponible pour cette version", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n application n'a pas de mise à jour disponible pour cette version","%n applications n'ont pas de mise à jour disponible pour cette version"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "production fournira toujours le correctif le plus récent, mais ne mettra pas immédiatement à jour vers la version majeure suivante. Cette mise à jour se produit généralement avec la deuxième version mineure (x.0.2).", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "stable est la version stable la plus récente. Il est adapté à une utilisation en production et sera toujours mis à jour vers la dernière version majeure.", + "beta is a pre-release version only for testing new features, not for production environments." : "beta est une version préliminaire utilisée seulement pour tester les nouvelles fonctionnalités, n'est pas adaptée dans un environnement de production.", + "Could not start updater, please try the manual update" : "Impossible de démarrer le système de mise à jour, veuillez essayer de mettre à jour manuellement", + "Update notifications" : "Notifications de mises à jour", "Channel updated" : "Canal de mise à jour modifié", "The update server could not be reached since %d days to check for new updates." : "Le serveur de mise à jour n'a pas pu être atteint depuis %d jours pour vérifier les nouvelles mises à jour.", "Please check the Nextcloud and server log files for errors." : "Veuillez vérifier les fichiers de log de Nextcloud et du serveur pour les erreurs.", "Update to %1$s is available." : "Une mise à jour vers %1$s est disponible", "Update for %1$s to version %2$s is available." : "Une mise à jour de %1$s vers la version %2$s est disponible.", "Update for {app} to version %s is available." : "Une mise à jour de {app} vers la version %s est disponible.", + "Update notification" : "Notification mise à jour", "A new version is available: %s" : "Une nouvelle version est disponible : %s", - "Open updater" : "Ouvrir le système de mise à jour", "Download now" : "Télécharger maintenant", - "The update check is not yet finished. Please refresh the page." : "La vérification de la mise-à-jour n'est pas encore terminée. Veuillez rafraîchir la page.", - "Your version is up to date." : "Votre version est à jour.", "Checked on %s" : "Vérifié le %s", - "A non-default update server is in use to be checked for updates:" : "Un serveur spécifique est actuellement configuré pour la vérification des mises-à-jour :", - "Update channel:" : "Canal de mise à jour :", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Vous pouvez à tout moment mettre à jour votre instance Nextcloud vers une version plus récente ou un canal expérimental. Vous ne pourrez cependant jamais revenir à une version antérieure en sélectionnant un canal plus stable.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Veuillez noter qu'il peut s'écouler un certain temps entre la sortie d'une nouvelle version et sa disponibilité pour téléchargement et mise-à-jour ici, sur votre instance. Nous répartissons le déploiement des nouvelles versions Nextcloud dans le temps à l'ensemble de nos utilisateurs. Certaines versions mineures, présentant des bugs problématiques, peuvent être sautées.", - "Notify members of the following groups about available updates:" : "Notifier les membres des groupes suivants des mises à jours disponibles :", - "Only notification for app updates are available." : "Seules les notifications pour les mises à jour d'applications sont diponibles.", "The selected update channel makes dedicated notifications for the server obsolete." : "Le canal de mise à jour sélectionné rend obsolètes les notifications dédiées au serveur.", - "The selected update channel does not support updates of the server." : "Le canal de mises à jour sélectionné ne supporte pas les mises à jour du serveur." + "The update check is not yet finished. Please refresh the page." : "La vérification de la mise-à-jour n'est pas encore terminée. Veuillez rafraîchir la page." },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/gl.js b/apps/updatenotification/l10n/gl.js index 063652d2ad738..3b9f1091dbc41 100644 --- a/apps/updatenotification/l10n/gl.js +++ b/apps/updatenotification/l10n/gl.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualizar as notificacións", - "Could not start updater, please try the manual update" : "Non foi posíbel iniciar o actualizador, por favor tente a actualización manual", "{version} is available. Get more information on how to update." : "{version} está dispoñíbel. Obteña máis información sobre como actualizar.", + "Open updater" : "Abrir o actualizador", + "Your version is up to date." : "A súa versión está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Está en uso un servidor de actualizacións que non é o predeterminado para comprobar as actualizacións:", + "Update channel:" : "Canle de actualización:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Sempre poderá actualizar á unha versión máis nova ou á canle experimental, mais nunca poderá voltar atrás a unha canle máis estábel.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Teña en conta que despois da publicación dunha nova versión pode levar algún tempo antes de que se mostre eiquí. Programamos novas versións ao longo do tempo para os nosos usuarios e ás veces saltamos unha versión cando se atopan problemas.", + "Notify members of the following groups about available updates:" : "Notificar aos participantes nos seguintes grupos sobre actualizacións dispoñíbeis:", + "Only notification for app updates are available." : "Só están dispoñíbeis as notificacións para actualizacións de aplicacións.", + "The selected update channel does not support updates of the server." : "A canle de actualización seleccionada non admite actualizacións do servidor.", + "Could not start updater, please try the manual update" : "Non foi posíbel iniciar o actualizador, por favor tente a actualización manual", + "Update notifications" : "Actualizar as notificacións", "Channel updated" : "Canle actualizada", "The update server could not be reached since %d days to check for new updates." : "Non foi posíbel conectar co servidor de actualizacións dende vai %d días para comprobar se hai novas actualizacións.", "Please check the Nextcloud and server log files for errors." : "Por favor comprobe os ficheiros de rexistro de Nextcloud e do servidor na procura de erros.", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "Está dispoñíbel unha actualización para %1$s á versión %2$s.", "Update for {app} to version %s is available." : "Está dispoñíbel unha actualización para {app} á versión %s.", "A new version is available: %s" : "Hai dispoñíbel unha nova versión: %s", - "Open updater" : "Abrir o actualizador", "Download now" : "Descargar agora", - "The update check is not yet finished. Please refresh the page." : "A comprobación de actualización aínda non rematou. Por favor recargue a páxina.", - "Your version is up to date." : "A súa versión está actualizada.", "Checked on %s" : "Comprobado en %s", - "A non-default update server is in use to be checked for updates:" : "Está en uso un servidor de actualizacións que non é o predeterminado para comprobar as actualizacións:", - "Update channel:" : "Canle de actualización:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Sempre poderá actualizar á unha versión máis nova ou á canle experimental, mais nunca poderá voltar atrás a unha canle máis estábel.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Teña en conta que despois da publicación dunha nova versión pode levar algún tempo antes de que se mostre eiquí. Programamos novas versións ao longo do tempo para os nosos usuarios e ás veces saltamos unha versión cando se atopan problemas.", - "Notify members of the following groups about available updates:" : "Notificar aos participantes nos seguintes grupos sobre actualizacións dispoñíbeis:", - "Only notification for app updates are available." : "Só están dispoñíbeis as notificacións para actualizacións de aplicacións.", "The selected update channel makes dedicated notifications for the server obsolete." : "A canle de actualización seleccionada fai obsoletas as notificacións dedicadas para o servidor.", - "The selected update channel does not support updates of the server." : "A canle de actualización seleccionada non admite actualizacións do servidor." + "The update check is not yet finished. Please refresh the page." : "A comprobación de actualización aínda non rematou. Por favor recargue a páxina." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/gl.json b/apps/updatenotification/l10n/gl.json index cfe5ecf9d0020..1db20f22d93c6 100644 --- a/apps/updatenotification/l10n/gl.json +++ b/apps/updatenotification/l10n/gl.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Actualizar as notificacións", - "Could not start updater, please try the manual update" : "Non foi posíbel iniciar o actualizador, por favor tente a actualización manual", "{version} is available. Get more information on how to update." : "{version} está dispoñíbel. Obteña máis información sobre como actualizar.", + "Open updater" : "Abrir o actualizador", + "Your version is up to date." : "A súa versión está actualizada.", + "A non-default update server is in use to be checked for updates:" : "Está en uso un servidor de actualizacións que non é o predeterminado para comprobar as actualizacións:", + "Update channel:" : "Canle de actualización:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Sempre poderá actualizar á unha versión máis nova ou á canle experimental, mais nunca poderá voltar atrás a unha canle máis estábel.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Teña en conta que despois da publicación dunha nova versión pode levar algún tempo antes de que se mostre eiquí. Programamos novas versións ao longo do tempo para os nosos usuarios e ás veces saltamos unha versión cando se atopan problemas.", + "Notify members of the following groups about available updates:" : "Notificar aos participantes nos seguintes grupos sobre actualizacións dispoñíbeis:", + "Only notification for app updates are available." : "Só están dispoñíbeis as notificacións para actualizacións de aplicacións.", + "The selected update channel does not support updates of the server." : "A canle de actualización seleccionada non admite actualizacións do servidor.", + "Could not start updater, please try the manual update" : "Non foi posíbel iniciar o actualizador, por favor tente a actualización manual", + "Update notifications" : "Actualizar as notificacións", "Channel updated" : "Canle actualizada", "The update server could not be reached since %d days to check for new updates." : "Non foi posíbel conectar co servidor de actualizacións dende vai %d días para comprobar se hai novas actualizacións.", "Please check the Nextcloud and server log files for errors." : "Por favor comprobe os ficheiros de rexistro de Nextcloud e do servidor na procura de erros.", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "Está dispoñíbel unha actualización para %1$s á versión %2$s.", "Update for {app} to version %s is available." : "Está dispoñíbel unha actualización para {app} á versión %s.", "A new version is available: %s" : "Hai dispoñíbel unha nova versión: %s", - "Open updater" : "Abrir o actualizador", "Download now" : "Descargar agora", - "The update check is not yet finished. Please refresh the page." : "A comprobación de actualización aínda non rematou. Por favor recargue a páxina.", - "Your version is up to date." : "A súa versión está actualizada.", "Checked on %s" : "Comprobado en %s", - "A non-default update server is in use to be checked for updates:" : "Está en uso un servidor de actualizacións que non é o predeterminado para comprobar as actualizacións:", - "Update channel:" : "Canle de actualización:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Sempre poderá actualizar á unha versión máis nova ou á canle experimental, mais nunca poderá voltar atrás a unha canle máis estábel.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Teña en conta que despois da publicación dunha nova versión pode levar algún tempo antes de que se mostre eiquí. Programamos novas versións ao longo do tempo para os nosos usuarios e ás veces saltamos unha versión cando se atopan problemas.", - "Notify members of the following groups about available updates:" : "Notificar aos participantes nos seguintes grupos sobre actualizacións dispoñíbeis:", - "Only notification for app updates are available." : "Só están dispoñíbeis as notificacións para actualizacións de aplicacións.", "The selected update channel makes dedicated notifications for the server obsolete." : "A canle de actualización seleccionada fai obsoletas as notificacións dedicadas para o servidor.", - "The selected update channel does not support updates of the server." : "A canle de actualización seleccionada non admite actualizacións do servidor." + "The update check is not yet finished. Please refresh the page." : "A comprobación de actualización aínda non rematou. Por favor recargue a páxina." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/hu.js b/apps/updatenotification/l10n/hu.js index ff5f2ba62a7ad..e1604ef23f6d2 100644 --- a/apps/updatenotification/l10n/hu.js +++ b/apps/updatenotification/l10n/hu.js @@ -1,28 +1,37 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Frissítési értesítés", - "Could not start updater, please try the manual update" : "Nem sikerült elindítani a frissítőt, kérlek próbáld a manuális frissítést", "{version} is available. Get more information on how to update." : "{version} rendelkezésre áll. További információ a frissítéshez.", + "Apps with available updates" : "Alkalmazások frissítéssel", + "Open updater" : "Frissítő megnyitása", + "Your version is up to date." : "Verzió frissítve.", + "A non-default update server is in use to be checked for updates:" : "Egy nem alapértelmezett szervert használunk a frissítések kereséséhez:", + "Update channel:" : "Frissítési csatorna:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Mindig frissíthetsz az újabb verzióra vagy kísérleti csatornára, de visszafelé sosem frissíthetsz egy jóval stabilabb verzióra.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vedd figyelembe, hogy egy firssítés megjelenése után eltarthat egy darabig míg itt megjelenik. Fokozatosan juttatjuk el a frissítéseket a felhaszálóinkhoz és néha kihagyunk egy-egy verziót, ha problémák merülnek fel.", + "Notify members of the following groups about available updates:" : "A következő csoport tagjainak értesítése az elérhető frissítésekről:", + "Only notification for app updates are available." : "Csak az értesítő alkalmazás frissítései érhetők el.", + "The selected update channel does not support updates of the server." : "A kiválasztott frissítése csatorna nem támogatja a szerver frissítéseit.", + "A new version is available: {newVersionString}" : "Új verzió érhető el: {newVersionString}", + "Checked on {lastCheckedDate}" : "Ellenőrizve ekkor: {lastCheckedDate}", + "Checking apps for compatible updates" : "Alkalmazások ellenőrzése kompatibilis frissítéséhez", + "Please make sure your config.php does not set appstoreenabled to false." : "Ellenőrizd, hogy a config.php-dben nincs-e beállítva a appstoreenabled false-ra.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Nem lehet csatlakozni az alkalmazásbolthoz, vagy az nem adott vissza frissítéseket egyáltalán. Keress frissítéseket kézzel, vagy győződj meg arról, hogy a szervered hozzáfér az internethez és eléri az alkalmazásboltot.", + "All apps have an update for this version available" : "Minden alkalmazás felfrissítve a legújabb verzióra.", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n alkalmazásnak nincs elérhető frissítése ehhez a verzióhoz","%n alkalmazásnak nincs elérhető frissítése ehhez a verzióhoz"], + "Could not start updater, please try the manual update" : "Nem sikerült elindítani a frissítőt, kérlek próbáld a manuális frissítést", + "Update notifications" : "Frissítési értesítés", "Channel updated" : "Csatorna frissítve", "The update server could not be reached since %d days to check for new updates." : "A frissítési szerver %d napja nem elérhető a frissítések kereséséhez.", "Please check the Nextcloud and server log files for errors." : "Kérlek nézd meg a Nextcloud és a szervernaplókat a hibák miatt.", "Update to %1$s is available." : "%1$s frissítés elérhető.", "Update for %1$s to version %2$s is available." : "%1$s frissíthető %2$s verzióra.", "Update for {app} to version %s is available." : "{app} %s verzió frissítése elérhető", + "Update notification" : "Frissítési értesítés", "A new version is available: %s" : "Új verzió érhető el: %s", - "Open updater" : "Frissítő megnyitása", "Download now" : "Letöltés most", - "The update check is not yet finished. Please refresh the page." : "A frissítéskeresés még nem ért véget. Kérjük frissítsd az oldalt.", - "Your version is up to date." : "Verzió frissítve.", "Checked on %s" : "Ellenőrizve: %s", - "A non-default update server is in use to be checked for updates:" : "Egy nem alapértelmezett szervert használunk a frissítések kereséséhez:", - "Update channel:" : "Frissítési csatorna:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Mindig frissíthetsz az újabb verzióra vagy kísérleti csatornára, de visszafelé sosem frissíthetsz egy jóval stabilabb verzióra.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vedd figyelembe, hogy egy firssítés megjelenése után eltarthat egy darabig míg itt megjelenik. Fokozatosan juttatjuk el a frissítéseket a felhaszálóinkhoz és néha kihagyunk egy-egy verziót, ha problémák merülnek fel.", - "Notify members of the following groups about available updates:" : "A következő csoport tagjainak értesítése az elérhető frissítésekről:", - "Only notification for app updates are available." : "Csak az értesítő alkalmazás frissítései érhetők el.", "The selected update channel makes dedicated notifications for the server obsolete." : "A kiválasztott frissítési csatorna dedikált értesítéseket jelenít meg a szerver elavulásakor.", - "The selected update channel does not support updates of the server." : "A kiválasztott frissítése csatorna nem támogatja a szerver frissítéseit." + "The update check is not yet finished. Please refresh the page." : "A frissítéskeresés még nem ért véget. Kérjük frissítsd az oldalt." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/hu.json b/apps/updatenotification/l10n/hu.json index 2eaacdff14e97..57e1c3c727ef8 100644 --- a/apps/updatenotification/l10n/hu.json +++ b/apps/updatenotification/l10n/hu.json @@ -1,26 +1,35 @@ { "translations": { - "Update notifications" : "Frissítési értesítés", - "Could not start updater, please try the manual update" : "Nem sikerült elindítani a frissítőt, kérlek próbáld a manuális frissítést", "{version} is available. Get more information on how to update." : "{version} rendelkezésre áll. További információ a frissítéshez.", + "Apps with available updates" : "Alkalmazások frissítéssel", + "Open updater" : "Frissítő megnyitása", + "Your version is up to date." : "Verzió frissítve.", + "A non-default update server is in use to be checked for updates:" : "Egy nem alapértelmezett szervert használunk a frissítések kereséséhez:", + "Update channel:" : "Frissítési csatorna:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Mindig frissíthetsz az újabb verzióra vagy kísérleti csatornára, de visszafelé sosem frissíthetsz egy jóval stabilabb verzióra.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vedd figyelembe, hogy egy firssítés megjelenése után eltarthat egy darabig míg itt megjelenik. Fokozatosan juttatjuk el a frissítéseket a felhaszálóinkhoz és néha kihagyunk egy-egy verziót, ha problémák merülnek fel.", + "Notify members of the following groups about available updates:" : "A következő csoport tagjainak értesítése az elérhető frissítésekről:", + "Only notification for app updates are available." : "Csak az értesítő alkalmazás frissítései érhetők el.", + "The selected update channel does not support updates of the server." : "A kiválasztott frissítése csatorna nem támogatja a szerver frissítéseit.", + "A new version is available: {newVersionString}" : "Új verzió érhető el: {newVersionString}", + "Checked on {lastCheckedDate}" : "Ellenőrizve ekkor: {lastCheckedDate}", + "Checking apps for compatible updates" : "Alkalmazások ellenőrzése kompatibilis frissítéséhez", + "Please make sure your config.php does not set appstoreenabled to false." : "Ellenőrizd, hogy a config.php-dben nincs-e beállítva a appstoreenabled false-ra.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Nem lehet csatlakozni az alkalmazásbolthoz, vagy az nem adott vissza frissítéseket egyáltalán. Keress frissítéseket kézzel, vagy győződj meg arról, hogy a szervered hozzáfér az internethez és eléri az alkalmazásboltot.", + "All apps have an update for this version available" : "Minden alkalmazás felfrissítve a legújabb verzióra.", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n alkalmazásnak nincs elérhető frissítése ehhez a verzióhoz","%n alkalmazásnak nincs elérhető frissítése ehhez a verzióhoz"], + "Could not start updater, please try the manual update" : "Nem sikerült elindítani a frissítőt, kérlek próbáld a manuális frissítést", + "Update notifications" : "Frissítési értesítés", "Channel updated" : "Csatorna frissítve", "The update server could not be reached since %d days to check for new updates." : "A frissítési szerver %d napja nem elérhető a frissítések kereséséhez.", "Please check the Nextcloud and server log files for errors." : "Kérlek nézd meg a Nextcloud és a szervernaplókat a hibák miatt.", "Update to %1$s is available." : "%1$s frissítés elérhető.", "Update for %1$s to version %2$s is available." : "%1$s frissíthető %2$s verzióra.", "Update for {app} to version %s is available." : "{app} %s verzió frissítése elérhető", + "Update notification" : "Frissítési értesítés", "A new version is available: %s" : "Új verzió érhető el: %s", - "Open updater" : "Frissítő megnyitása", "Download now" : "Letöltés most", - "The update check is not yet finished. Please refresh the page." : "A frissítéskeresés még nem ért véget. Kérjük frissítsd az oldalt.", - "Your version is up to date." : "Verzió frissítve.", "Checked on %s" : "Ellenőrizve: %s", - "A non-default update server is in use to be checked for updates:" : "Egy nem alapértelmezett szervert használunk a frissítések kereséséhez:", - "Update channel:" : "Frissítési csatorna:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Mindig frissíthetsz az újabb verzióra vagy kísérleti csatornára, de visszafelé sosem frissíthetsz egy jóval stabilabb verzióra.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vedd figyelembe, hogy egy firssítés megjelenése után eltarthat egy darabig míg itt megjelenik. Fokozatosan juttatjuk el a frissítéseket a felhaszálóinkhoz és néha kihagyunk egy-egy verziót, ha problémák merülnek fel.", - "Notify members of the following groups about available updates:" : "A következő csoport tagjainak értesítése az elérhető frissítésekről:", - "Only notification for app updates are available." : "Csak az értesítő alkalmazás frissítései érhetők el.", "The selected update channel makes dedicated notifications for the server obsolete." : "A kiválasztott frissítési csatorna dedikált értesítéseket jelenít meg a szerver elavulásakor.", - "The selected update channel does not support updates of the server." : "A kiválasztott frissítése csatorna nem támogatja a szerver frissítéseit." + "The update check is not yet finished. Please refresh the page." : "A frissítéskeresés még nem ért véget. Kérjük frissítsd az oldalt." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/ia.js b/apps/updatenotification/l10n/ia.js index 6e62eb5ebb074..b6849f18f236f 100644 --- a/apps/updatenotification/l10n/ia.js +++ b/apps/updatenotification/l10n/ia.js @@ -1,23 +1,23 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Actualisar notificationes", - "Could not start updater, please try the manual update" : "Impossibile initiar le actualisator, per favor tenta le actualisation manual", "{version} is available. Get more information on how to update." : "{version} es disponibile. Obtene plus informationes super como actualisar.", + "Open updater" : "Aperir actualisator", + "Your version is up to date." : "Tu version es actualisate.", + "Update channel:" : "Canal de actualisation:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Tu sempre pote actualisar a un version plus nove o a un canal experimental. Ma tu non potera jammais retrogradar a un canal plus stabile.", + "Notify members of the following groups about available updates:" : "Notifica membros del gruppos sequente super actualisationes disponibile:", + "Only notification for app updates are available." : "Notification es disponibile solmente pro actualisationes de applicationes.", + "The selected update channel does not support updates of the server." : "Le canal de actualisation seligite non supporta actualisationes del servitor.", + "Could not start updater, please try the manual update" : "Impossibile initiar le actualisator, per favor tenta le actualisation manual", + "Update notifications" : "Actualisar notificationes", "Channel updated" : "Canal actualisate", "Update to %1$s is available." : "Un actualisation a %1$s es disponibile.", "Update for %1$s to version %2$s is available." : "Un actualisation de %1$s al version %2$s es disponibile.", "Update for {app} to version %s is available." : "Un actualisation del {app} al version %s es disponibile.", "A new version is available: %s" : "Un nove version es disponibile: %s", - "Open updater" : "Aperir actualisator", "Download now" : "Discargar ora", - "Your version is up to date." : "Tu version es actualisate.", "Checked on %s" : "Verificate in %s", - "Update channel:" : "Canal de actualisation:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Tu sempre pote actualisar a un version plus nove o a un canal experimental. Ma tu non potera jammais retrogradar a un canal plus stabile.", - "Notify members of the following groups about available updates:" : "Notifica membros del gruppos sequente super actualisationes disponibile:", - "Only notification for app updates are available." : "Notification es disponibile solmente pro actualisationes de applicationes.", - "The selected update channel makes dedicated notifications for the server obsolete." : "Le canal de actualisation selectionate face le notificationes dedicate al servitor esser obsolete.", - "The selected update channel does not support updates of the server." : "Le canal de actualisation seligite non supporta actualisationes del servitor." + "The selected update channel makes dedicated notifications for the server obsolete." : "Le canal de actualisation selectionate face le notificationes dedicate al servitor esser obsolete." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/ia.json b/apps/updatenotification/l10n/ia.json index dfe8edc981d9b..22d0d52760d93 100644 --- a/apps/updatenotification/l10n/ia.json +++ b/apps/updatenotification/l10n/ia.json @@ -1,21 +1,21 @@ { "translations": { - "Update notifications" : "Actualisar notificationes", - "Could not start updater, please try the manual update" : "Impossibile initiar le actualisator, per favor tenta le actualisation manual", "{version} is available. Get more information on how to update." : "{version} es disponibile. Obtene plus informationes super como actualisar.", + "Open updater" : "Aperir actualisator", + "Your version is up to date." : "Tu version es actualisate.", + "Update channel:" : "Canal de actualisation:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Tu sempre pote actualisar a un version plus nove o a un canal experimental. Ma tu non potera jammais retrogradar a un canal plus stabile.", + "Notify members of the following groups about available updates:" : "Notifica membros del gruppos sequente super actualisationes disponibile:", + "Only notification for app updates are available." : "Notification es disponibile solmente pro actualisationes de applicationes.", + "The selected update channel does not support updates of the server." : "Le canal de actualisation seligite non supporta actualisationes del servitor.", + "Could not start updater, please try the manual update" : "Impossibile initiar le actualisator, per favor tenta le actualisation manual", + "Update notifications" : "Actualisar notificationes", "Channel updated" : "Canal actualisate", "Update to %1$s is available." : "Un actualisation a %1$s es disponibile.", "Update for %1$s to version %2$s is available." : "Un actualisation de %1$s al version %2$s es disponibile.", "Update for {app} to version %s is available." : "Un actualisation del {app} al version %s es disponibile.", "A new version is available: %s" : "Un nove version es disponibile: %s", - "Open updater" : "Aperir actualisator", "Download now" : "Discargar ora", - "Your version is up to date." : "Tu version es actualisate.", "Checked on %s" : "Verificate in %s", - "Update channel:" : "Canal de actualisation:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Tu sempre pote actualisar a un version plus nove o a un canal experimental. Ma tu non potera jammais retrogradar a un canal plus stabile.", - "Notify members of the following groups about available updates:" : "Notifica membros del gruppos sequente super actualisationes disponibile:", - "Only notification for app updates are available." : "Notification es disponibile solmente pro actualisationes de applicationes.", - "The selected update channel makes dedicated notifications for the server obsolete." : "Le canal de actualisation selectionate face le notificationes dedicate al servitor esser obsolete.", - "The selected update channel does not support updates of the server." : "Le canal de actualisation seligite non supporta actualisationes del servitor." + "The selected update channel makes dedicated notifications for the server obsolete." : "Le canal de actualisation selectionate face le notificationes dedicate al servitor esser obsolete." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/id.js b/apps/updatenotification/l10n/id.js index e24df632591f5..3eae35382b827 100644 --- a/apps/updatenotification/l10n/id.js +++ b/apps/updatenotification/l10n/id.js @@ -1,23 +1,23 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Perbarui pemberitahuan", - "Could not start updater, please try the manual update" : "Tidak dapat menjalankan updater, harap coba perbarui manual", "{version} is available. Get more information on how to update." : "{version} tersedia. Dapatkan informasi lebih lanjut cara memperbaruinya.", + "Open updater" : "Buka updater", + "Your version is up to date." : "Versi Anda saat ini adalah yang terbaru.", + "Update channel:" : "Saluran update:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Anda dapat memperbarui ke versi yang lebih baru / saluran percobaan. Namun Anda tidak dapat menurunkan ke saluran stabil.", + "Notify members of the following groups about available updates:" : "Beritahu anggota grup tentang pembaruan yang tersedia:", + "Only notification for app updates are available." : "Hanya pemberitahuan untuk pembaruan aplikasi tersedia.", + "The selected update channel does not support updates of the server." : "Kanal pembaruan yang terpilih tidak mendukung pembaruan server.", + "Could not start updater, please try the manual update" : "Tidak dapat menjalankan updater, harap coba perbarui manual", + "Update notifications" : "Perbarui pemberitahuan", "Channel updated" : "Kanal diperbarui", "Update to %1$s is available." : "Pembaruan untuk %1$s tersedia.", "Update for %1$s to version %2$s is available." : "Pembaruan untuk %1$s ke versi %2$s tersedia.", "Update for {app} to version %s is available." : "Pembaruan untuk {app} ke versi %s tersedia.", "A new version is available: %s" : "Versi baru tersedia: %s", - "Open updater" : "Buka updater", "Download now" : "Unduh sekarang", - "Your version is up to date." : "Versi Anda saat ini adalah yang terbaru.", "Checked on %s" : "Dicek pada %s", - "Update channel:" : "Saluran update:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Anda dapat memperbarui ke versi yang lebih baru / saluran percobaan. Namun Anda tidak dapat menurunkan ke saluran stabil.", - "Notify members of the following groups about available updates:" : "Beritahu anggota grup tentang pembaruan yang tersedia:", - "Only notification for app updates are available." : "Hanya pemberitahuan untuk pembaruan aplikasi tersedia.", - "The selected update channel makes dedicated notifications for the server obsolete." : "Kanal pembaruan yang terpilih membuat pemberitahuan terdedikasi untuk server usang.", - "The selected update channel does not support updates of the server." : "Kanal pembaruan yang terpilih tidak mendukung pembaruan server." + "The selected update channel makes dedicated notifications for the server obsolete." : "Kanal pembaruan yang terpilih membuat pemberitahuan terdedikasi untuk server usang." }, "nplurals=1; plural=0;"); diff --git a/apps/updatenotification/l10n/id.json b/apps/updatenotification/l10n/id.json index 153bcc93cf403..60ab84f301660 100644 --- a/apps/updatenotification/l10n/id.json +++ b/apps/updatenotification/l10n/id.json @@ -1,21 +1,21 @@ { "translations": { - "Update notifications" : "Perbarui pemberitahuan", - "Could not start updater, please try the manual update" : "Tidak dapat menjalankan updater, harap coba perbarui manual", "{version} is available. Get more information on how to update." : "{version} tersedia. Dapatkan informasi lebih lanjut cara memperbaruinya.", + "Open updater" : "Buka updater", + "Your version is up to date." : "Versi Anda saat ini adalah yang terbaru.", + "Update channel:" : "Saluran update:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Anda dapat memperbarui ke versi yang lebih baru / saluran percobaan. Namun Anda tidak dapat menurunkan ke saluran stabil.", + "Notify members of the following groups about available updates:" : "Beritahu anggota grup tentang pembaruan yang tersedia:", + "Only notification for app updates are available." : "Hanya pemberitahuan untuk pembaruan aplikasi tersedia.", + "The selected update channel does not support updates of the server." : "Kanal pembaruan yang terpilih tidak mendukung pembaruan server.", + "Could not start updater, please try the manual update" : "Tidak dapat menjalankan updater, harap coba perbarui manual", + "Update notifications" : "Perbarui pemberitahuan", "Channel updated" : "Kanal diperbarui", "Update to %1$s is available." : "Pembaruan untuk %1$s tersedia.", "Update for %1$s to version %2$s is available." : "Pembaruan untuk %1$s ke versi %2$s tersedia.", "Update for {app} to version %s is available." : "Pembaruan untuk {app} ke versi %s tersedia.", "A new version is available: %s" : "Versi baru tersedia: %s", - "Open updater" : "Buka updater", "Download now" : "Unduh sekarang", - "Your version is up to date." : "Versi Anda saat ini adalah yang terbaru.", "Checked on %s" : "Dicek pada %s", - "Update channel:" : "Saluran update:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Anda dapat memperbarui ke versi yang lebih baru / saluran percobaan. Namun Anda tidak dapat menurunkan ke saluran stabil.", - "Notify members of the following groups about available updates:" : "Beritahu anggota grup tentang pembaruan yang tersedia:", - "Only notification for app updates are available." : "Hanya pemberitahuan untuk pembaruan aplikasi tersedia.", - "The selected update channel makes dedicated notifications for the server obsolete." : "Kanal pembaruan yang terpilih membuat pemberitahuan terdedikasi untuk server usang.", - "The selected update channel does not support updates of the server." : "Kanal pembaruan yang terpilih tidak mendukung pembaruan server." + "The selected update channel makes dedicated notifications for the server obsolete." : "Kanal pembaruan yang terpilih membuat pemberitahuan terdedikasi untuk server usang." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/is.js b/apps/updatenotification/l10n/is.js index 4d1929d09e125..b3ae76411a589 100644 --- a/apps/updatenotification/l10n/is.js +++ b/apps/updatenotification/l10n/is.js @@ -1,28 +1,30 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Tilkynningar um uppfærslu", - "Could not start updater, please try the manual update" : "Gat ekki ræst uppfærslustýringu, prófaðu að uppfæra handvirkt", "{version} is available. Get more information on how to update." : "{version} er í boði. Fáðu frekari upplýsingar um hvernig á að uppfæra.", + "Open updater" : "Opna uppfærslustýringu", + "Your version is up to date." : "Útgáfan þín er af nýjustu gerð.", + "A non-default update server is in use to be checked for updates:" : "Uppfærsluþjónn sem ekki er sjálfgefinn er núna í notkun til að athuga með uppfærslur:", + "Update channel:" : "Uppfærslurás:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Þú getur alltaf uppfært í nýrri útgáfu eða tilraunaútgáfurás. En þú getur aldrei niðurfært í stöðugri rás.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Athugaðu að það getur tekið nokkurn tíma áður en nýjar útgáfur birtast hér. Við dreifum útgáfum yfir tíma auk þess sem stundum er útgáfum sleppt ef í þeim finnast hnökrar.", + "Notify members of the following groups about available updates:" : "Tilkynna meðlimum eftirfarandi hópa um tiltækar uppfærslur:", + "Only notification for app updates are available." : "Eingöngu eru eru tiltækar tilkynningar fyrir uppfærslur forrita.", + "The selected update channel does not support updates of the server." : "Valda uppfærslurásin styður ekki uppfærslur fyrir vefþjóninn.", + "Checked on {lastCheckedDate}" : "Athugað þann {lastCheckedDate}", + "Could not start updater, please try the manual update" : "Gat ekki ræst uppfærslustýringu, prófaðu að uppfæra handvirkt", + "Update notifications" : "Tilkynningar um uppfærslu", "Channel updated" : "Rás uppfærð", "The update server could not be reached since %d days to check for new updates." : "Ekki hefur verið hægt að nálgast uppfærsluþjóninn í %d daga til að athuga með nýjar uppfærslur.", "Please check the Nextcloud and server log files for errors." : "Skoðaðu hvort einhver villuboð séu í annálaskrám Nextcloud þjónsins.", "Update to %1$s is available." : "Uppfærsla fyrir %1$s er tiltæk.", "Update for %1$s to version %2$s is available." : "Uppfærsla %1$s í útgáfu %2$s er tiltæk.", "Update for {app} to version %s is available." : "Uppfærsla fyrir {app} í útgáfu %s er tiltæk.", + "Update notification" : "Tilkynning um uppfærslu", "A new version is available: %s" : "Ný útgáfa er tiltæk: %s", - "Open updater" : "Opna uppfærslustýringu", "Download now" : "Sækja núna", - "The update check is not yet finished. Please refresh the page." : "Athugun á uppfærslum er ekki ennþá lokið. Endurlestu síðuna.", - "Your version is up to date." : "Útgáfan þín er af nýjustu gerð.", "Checked on %s" : "Athugað þann %s", - "A non-default update server is in use to be checked for updates:" : "Uppfærsluþjónn sem ekki er sjálfgefinn er núna í notkun til að athuga með uppfærslur:", - "Update channel:" : "Uppfærslurás:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Þú getur alltaf uppfært í nýrri útgáfu eða tilraunaútgáfurás. En þú getur aldrei niðurfært í stöðugri rás.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Athugaðu að það getur tekið nokkurn tíma áður en nýjar útgáfur birtast hér. Við dreifum útgáfum yfir tíma auk þess sem stundum er útgáfum sleppt ef í þeim finnast hnökrar.", - "Notify members of the following groups about available updates:" : "Tilkynna meðlimum eftirfarandi hópa um tiltækar uppfærslur:", - "Only notification for app updates are available." : "Eingöngu eru eru tiltækar tilkynningar fyrir uppfærslur forrita.", "The selected update channel makes dedicated notifications for the server obsolete." : "Valda uppfærslurásin gerir úreltar sértækar tilkynningar fyrir vefþjóninn.", - "The selected update channel does not support updates of the server." : "Valda uppfærslurásin styður ekki uppfærslur fyrir vefþjóninn." + "The update check is not yet finished. Please refresh the page." : "Athugun á uppfærslum er ekki ennþá lokið. Endurlestu síðuna." }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/updatenotification/l10n/is.json b/apps/updatenotification/l10n/is.json index 004502af3550d..5dbd524a27acf 100644 --- a/apps/updatenotification/l10n/is.json +++ b/apps/updatenotification/l10n/is.json @@ -1,26 +1,28 @@ { "translations": { - "Update notifications" : "Tilkynningar um uppfærslu", - "Could not start updater, please try the manual update" : "Gat ekki ræst uppfærslustýringu, prófaðu að uppfæra handvirkt", "{version} is available. Get more information on how to update." : "{version} er í boði. Fáðu frekari upplýsingar um hvernig á að uppfæra.", + "Open updater" : "Opna uppfærslustýringu", + "Your version is up to date." : "Útgáfan þín er af nýjustu gerð.", + "A non-default update server is in use to be checked for updates:" : "Uppfærsluþjónn sem ekki er sjálfgefinn er núna í notkun til að athuga með uppfærslur:", + "Update channel:" : "Uppfærslurás:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Þú getur alltaf uppfært í nýrri útgáfu eða tilraunaútgáfurás. En þú getur aldrei niðurfært í stöðugri rás.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Athugaðu að það getur tekið nokkurn tíma áður en nýjar útgáfur birtast hér. Við dreifum útgáfum yfir tíma auk þess sem stundum er útgáfum sleppt ef í þeim finnast hnökrar.", + "Notify members of the following groups about available updates:" : "Tilkynna meðlimum eftirfarandi hópa um tiltækar uppfærslur:", + "Only notification for app updates are available." : "Eingöngu eru eru tiltækar tilkynningar fyrir uppfærslur forrita.", + "The selected update channel does not support updates of the server." : "Valda uppfærslurásin styður ekki uppfærslur fyrir vefþjóninn.", + "Checked on {lastCheckedDate}" : "Athugað þann {lastCheckedDate}", + "Could not start updater, please try the manual update" : "Gat ekki ræst uppfærslustýringu, prófaðu að uppfæra handvirkt", + "Update notifications" : "Tilkynningar um uppfærslu", "Channel updated" : "Rás uppfærð", "The update server could not be reached since %d days to check for new updates." : "Ekki hefur verið hægt að nálgast uppfærsluþjóninn í %d daga til að athuga með nýjar uppfærslur.", "Please check the Nextcloud and server log files for errors." : "Skoðaðu hvort einhver villuboð séu í annálaskrám Nextcloud þjónsins.", "Update to %1$s is available." : "Uppfærsla fyrir %1$s er tiltæk.", "Update for %1$s to version %2$s is available." : "Uppfærsla %1$s í útgáfu %2$s er tiltæk.", "Update for {app} to version %s is available." : "Uppfærsla fyrir {app} í útgáfu %s er tiltæk.", + "Update notification" : "Tilkynning um uppfærslu", "A new version is available: %s" : "Ný útgáfa er tiltæk: %s", - "Open updater" : "Opna uppfærslustýringu", "Download now" : "Sækja núna", - "The update check is not yet finished. Please refresh the page." : "Athugun á uppfærslum er ekki ennþá lokið. Endurlestu síðuna.", - "Your version is up to date." : "Útgáfan þín er af nýjustu gerð.", "Checked on %s" : "Athugað þann %s", - "A non-default update server is in use to be checked for updates:" : "Uppfærsluþjónn sem ekki er sjálfgefinn er núna í notkun til að athuga með uppfærslur:", - "Update channel:" : "Uppfærslurás:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Þú getur alltaf uppfært í nýrri útgáfu eða tilraunaútgáfurás. En þú getur aldrei niðurfært í stöðugri rás.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Athugaðu að það getur tekið nokkurn tíma áður en nýjar útgáfur birtast hér. Við dreifum útgáfum yfir tíma auk þess sem stundum er útgáfum sleppt ef í þeim finnast hnökrar.", - "Notify members of the following groups about available updates:" : "Tilkynna meðlimum eftirfarandi hópa um tiltækar uppfærslur:", - "Only notification for app updates are available." : "Eingöngu eru eru tiltækar tilkynningar fyrir uppfærslur forrita.", "The selected update channel makes dedicated notifications for the server obsolete." : "Valda uppfærslurásin gerir úreltar sértækar tilkynningar fyrir vefþjóninn.", - "The selected update channel does not support updates of the server." : "Valda uppfærslurásin styður ekki uppfærslur fyrir vefþjóninn." + "The update check is not yet finished. Please refresh the page." : "Athugun á uppfærslum er ekki ennþá lokið. Endurlestu síðuna." },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/it.js b/apps/updatenotification/l10n/it.js index b48ba2cd554b0..9fe0cfade2983 100644 --- a/apps/updatenotification/l10n/it.js +++ b/apps/updatenotification/l10n/it.js @@ -1,28 +1,40 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Notifiche di aggiornamento", - "Could not start updater, please try the manual update" : "Impossibile avviare lo strumento di aggiornamento, prova l'aggiornamento manuale", "{version} is available. Get more information on how to update." : "{version} è disponibile. Ottieni ulteriori informazioni su come eseguire l'aggiornamento.", + "Apps with available updates" : "Applicazioni con aggiornamenti disponibili", + "Open updater" : "Apri strumento di aggiornamento", + "Your version is up to date." : "La tua versione è aggiornata.", + "A non-default update server is in use to be checked for updates:" : "Stai utilizzando un server non predefinito per controllare gli aggiornamenti:", + "Update channel:" : "Canale di aggiornamento:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Puoi aggiornare sempre a una nuova versione / canale sperimentale. Ma non puoi mai tornare a una versione precedente.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota che, dopo una nuova versione, potrebbe essere necessario del tempo prima che sia mostrato qui. Rilasciamo nel tempo nuove versioni ai nostri utenti e, a volte, saltiamo una versione, se troviamo dei problemi.", + "Notify members of the following groups about available updates:" : "Notifica i membri dei seguenti gruppi sugli aggiornamenti disponibili:", + "Only notification for app updates are available." : "Sono disponibili solo le notifiche per gli aggiornamenti delle applicazioni.", + "The selected update channel does not support updates of the server." : "Il canale di aggiornamento selezionato non supporta gli aggiornamenti del server.", + "A new version is available: {newVersionString}" : "Una nuova versione è disponibile: {newVersionString}", + "Checked on {lastCheckedDate}" : "Controllato il {lastCheckedDate}", + "Checking apps for compatible updates" : "Controlla le applicazioni per aggiornamenti compatibili", + "Please make sure your config.php does not set appstoreenabled to false." : "Assicurati che il tuo config.php non abbia appstoreenabled impostata a false.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Impossibile connettersi al negozio delle applicazioni o il negozio delle applicazioni non ha restituito alcun aggiornamento. Cerca manualmente gli aggiornamenti o assicurati che il server abbia accesso a Internet e possa collegarsi al negozio delle applicazioni.", + "All apps have an update for this version available" : "Tutte le applicazioni hanno un aggiornamento disponibile per questa versione", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n applicazione non ha un aggiornamento disponibile per questa versione","%n applicazioni non hanno un aggiornamento disponibile per questa versione"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "produzione fornirà sempre l'ultimo livello di patch, ma non aggiornerà immediatamente alla successiva versione principale. Tale aggiornamento di solito avviene con la seconda versione minore (x.0.2).", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "stabile è la versione stabile più recente. È appropriata per l'utilizzo in produzione e sarà sempre aggiornata all'ultima versione stabile.", + "beta is a pre-release version only for testing new features, not for production environments." : "beta è una versione pre-rilascio solo per provare le nuove funzionalità, non per ambienti di produzione.", + "Could not start updater, please try the manual update" : "Impossibile avviare lo strumento di aggiornamento, prova l'aggiornamento manuale", + "Update notifications" : "Notifiche di aggiornamento", "Channel updated" : "Canale aggiornato", "The update server could not be reached since %d days to check for new updates." : "Il server degli aggiornamenti non è raggiungibile da %d giorni per controllare la presenza di nuovi aggiornamenti.", "Please check the Nextcloud and server log files for errors." : "Controlla i file di log di Nextcloud e del server alla ricerca di errori.", "Update to %1$s is available." : "Aggiornamento a %1$s disponibile.", "Update for %1$s to version %2$s is available." : "È disponibile l'aggiornamento di %1$s alla versione %2$s.", "Update for {app} to version %s is available." : "È disponibile l'aggiornamento di {app} alla versione %s.", + "Update notification" : "Notifica di aggiornamento", "A new version is available: %s" : "Una nuova versione è disponibile: %s", - "Open updater" : "Apri strumento di aggiornamento", "Download now" : "Scarica ora", - "The update check is not yet finished. Please refresh the page." : "Il controllo degli aggiornamenti non è ancora terminato. Aggiorna la pagina.", - "Your version is up to date." : "La tua versione è aggiornata.", "Checked on %s" : "Controllato il %s", - "A non-default update server is in use to be checked for updates:" : "Stai utilizzando un server non predefinito per controllare gli aggiornamenti:", - "Update channel:" : "Canale di aggiornamento:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Puoi aggiornare sempre a una nuova versione / canale sperimentale. Ma non puoi mai tornare a una versione precedente.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota che, dopo una nuova versione, potrebbe essere necessario del tempo prima che sia mostrato qui. Rilasciamo nel tempo nuove versioni ai nostri utenti e, a volte, saltiamo una versione, se troviamo dei problemi.", - "Notify members of the following groups about available updates:" : "Notifica i membri dei seguenti gruppi sugli aggiornamenti disponibili:", - "Only notification for app updates are available." : "Sono disponibili solo le notifiche per gli aggiornamenti delle applicazioni.", "The selected update channel makes dedicated notifications for the server obsolete." : "Il canale di aggiornamento selezionato rende obsolete le notifiche dedicate al server.", - "The selected update channel does not support updates of the server." : "Il canale di aggiornamento selezionato non supporta gli aggiornamenti del server." + "The update check is not yet finished. Please refresh the page." : "Il controllo degli aggiornamenti non è ancora terminato. Aggiorna la pagina." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/it.json b/apps/updatenotification/l10n/it.json index ab7cad2172e3b..a420c26770a61 100644 --- a/apps/updatenotification/l10n/it.json +++ b/apps/updatenotification/l10n/it.json @@ -1,26 +1,38 @@ { "translations": { - "Update notifications" : "Notifiche di aggiornamento", - "Could not start updater, please try the manual update" : "Impossibile avviare lo strumento di aggiornamento, prova l'aggiornamento manuale", "{version} is available. Get more information on how to update." : "{version} è disponibile. Ottieni ulteriori informazioni su come eseguire l'aggiornamento.", + "Apps with available updates" : "Applicazioni con aggiornamenti disponibili", + "Open updater" : "Apri strumento di aggiornamento", + "Your version is up to date." : "La tua versione è aggiornata.", + "A non-default update server is in use to be checked for updates:" : "Stai utilizzando un server non predefinito per controllare gli aggiornamenti:", + "Update channel:" : "Canale di aggiornamento:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Puoi aggiornare sempre a una nuova versione / canale sperimentale. Ma non puoi mai tornare a una versione precedente.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota che, dopo una nuova versione, potrebbe essere necessario del tempo prima che sia mostrato qui. Rilasciamo nel tempo nuove versioni ai nostri utenti e, a volte, saltiamo una versione, se troviamo dei problemi.", + "Notify members of the following groups about available updates:" : "Notifica i membri dei seguenti gruppi sugli aggiornamenti disponibili:", + "Only notification for app updates are available." : "Sono disponibili solo le notifiche per gli aggiornamenti delle applicazioni.", + "The selected update channel does not support updates of the server." : "Il canale di aggiornamento selezionato non supporta gli aggiornamenti del server.", + "A new version is available: {newVersionString}" : "Una nuova versione è disponibile: {newVersionString}", + "Checked on {lastCheckedDate}" : "Controllato il {lastCheckedDate}", + "Checking apps for compatible updates" : "Controlla le applicazioni per aggiornamenti compatibili", + "Please make sure your config.php does not set appstoreenabled to false." : "Assicurati che il tuo config.php non abbia appstoreenabled impostata a false.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Impossibile connettersi al negozio delle applicazioni o il negozio delle applicazioni non ha restituito alcun aggiornamento. Cerca manualmente gli aggiornamenti o assicurati che il server abbia accesso a Internet e possa collegarsi al negozio delle applicazioni.", + "All apps have an update for this version available" : "Tutte le applicazioni hanno un aggiornamento disponibile per questa versione", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n applicazione non ha un aggiornamento disponibile per questa versione","%n applicazioni non hanno un aggiornamento disponibile per questa versione"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "produzione fornirà sempre l'ultimo livello di patch, ma non aggiornerà immediatamente alla successiva versione principale. Tale aggiornamento di solito avviene con la seconda versione minore (x.0.2).", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "stabile è la versione stabile più recente. È appropriata per l'utilizzo in produzione e sarà sempre aggiornata all'ultima versione stabile.", + "beta is a pre-release version only for testing new features, not for production environments." : "beta è una versione pre-rilascio solo per provare le nuove funzionalità, non per ambienti di produzione.", + "Could not start updater, please try the manual update" : "Impossibile avviare lo strumento di aggiornamento, prova l'aggiornamento manuale", + "Update notifications" : "Notifiche di aggiornamento", "Channel updated" : "Canale aggiornato", "The update server could not be reached since %d days to check for new updates." : "Il server degli aggiornamenti non è raggiungibile da %d giorni per controllare la presenza di nuovi aggiornamenti.", "Please check the Nextcloud and server log files for errors." : "Controlla i file di log di Nextcloud e del server alla ricerca di errori.", "Update to %1$s is available." : "Aggiornamento a %1$s disponibile.", "Update for %1$s to version %2$s is available." : "È disponibile l'aggiornamento di %1$s alla versione %2$s.", "Update for {app} to version %s is available." : "È disponibile l'aggiornamento di {app} alla versione %s.", + "Update notification" : "Notifica di aggiornamento", "A new version is available: %s" : "Una nuova versione è disponibile: %s", - "Open updater" : "Apri strumento di aggiornamento", "Download now" : "Scarica ora", - "The update check is not yet finished. Please refresh the page." : "Il controllo degli aggiornamenti non è ancora terminato. Aggiorna la pagina.", - "Your version is up to date." : "La tua versione è aggiornata.", "Checked on %s" : "Controllato il %s", - "A non-default update server is in use to be checked for updates:" : "Stai utilizzando un server non predefinito per controllare gli aggiornamenti:", - "Update channel:" : "Canale di aggiornamento:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Puoi aggiornare sempre a una nuova versione / canale sperimentale. Ma non puoi mai tornare a una versione precedente.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota che, dopo una nuova versione, potrebbe essere necessario del tempo prima che sia mostrato qui. Rilasciamo nel tempo nuove versioni ai nostri utenti e, a volte, saltiamo una versione, se troviamo dei problemi.", - "Notify members of the following groups about available updates:" : "Notifica i membri dei seguenti gruppi sugli aggiornamenti disponibili:", - "Only notification for app updates are available." : "Sono disponibili solo le notifiche per gli aggiornamenti delle applicazioni.", "The selected update channel makes dedicated notifications for the server obsolete." : "Il canale di aggiornamento selezionato rende obsolete le notifiche dedicate al server.", - "The selected update channel does not support updates of the server." : "Il canale di aggiornamento selezionato non supporta gli aggiornamenti del server." + "The update check is not yet finished. Please refresh the page." : "Il controllo degli aggiornamenti non è ancora terminato. Aggiorna la pagina." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/ja.js b/apps/updatenotification/l10n/ja.js index 2f6de6ed93ed8..308e5d5a6b71f 100644 --- a/apps/updatenotification/l10n/ja.js +++ b/apps/updatenotification/l10n/ja.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "アップデート通知", - "Could not start updater, please try the manual update" : "アップデータを起動できませんでした。手動アップデートをお試しください", "{version} is available. Get more information on how to update." : "{version} が利用可能です。アップデート方法について詳細情報を確認してください。", + "Open updater" : "アップデーターを開く", + "Your version is up to date." : "最新版です。", + "A non-default update server is in use to be checked for updates:" : "更新のチェックにデフォルト以外の更新サーバーが利用されています:", + "Update channel:" : "アップデートチャンネル:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "開発版の新しいバージョンにアップデートできます。ただし、アップデート後は安定版にダウングレードできません。", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "新しいリリースの後、公開されるまでには時間がかかります。\n新しいバージョンを公開して配布しますが、問題が発見されたときにバージョンをスキップすることがあります。", + "Notify members of the following groups about available updates:" : "次のグループのメンバーに対してアップデートのメッセージが表示されます:", + "Only notification for app updates are available." : "アプリ更新情報があるときのみ通知する。", + "The selected update channel does not support updates of the server." : "選択したチャンネルでは、サーバーのアップデートをサポートしていません。", + "Could not start updater, please try the manual update" : "アップデータを起動できませんでした。手動アップデートをお試しください", + "Update notifications" : "アップデート通知", "Channel updated" : "チャンネルが更新されました", "The update server could not be reached since %d days to check for new updates." : "%d日以降、新しい更新をチェックする更新サーバーにアクセスできませんでした。", "Please check the Nextcloud and server log files for errors." : "Nextcloudとサーバーログファイルでエラーがないか確認してください。", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "%1$s に対するバージョン %2$s へアップデートが利用可能です。", "Update for {app} to version %s is available." : " {app} に対するバージョン %s へアップデートが利用可能です。", "A new version is available: %s" : "新しいバージョンが利用可能: %s", - "Open updater" : "アップデーターを開く", "Download now" : "今すぐダウンロード", - "The update check is not yet finished. Please refresh the page." : "アップデートチェックが完了していません。ページを更新してください。", - "Your version is up to date." : "最新版です。", "Checked on %s" : "%s に確認", - "A non-default update server is in use to be checked for updates:" : "更新のチェックにデフォルト以外の更新サーバーが利用されています:", - "Update channel:" : "アップデートチャンネル:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "開発版の新しいバージョンにアップデートできます。ただし、アップデート後は安定版にダウングレードできません。", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "新しいリリースの後、公開されるまでには時間がかかります。\n新しいバージョンを公開して配布しますが、問題が発見されたときにバージョンをスキップすることがあります。", - "Notify members of the following groups about available updates:" : "次のグループのメンバーに対してアップデートのメッセージが表示されます:", - "Only notification for app updates are available." : "アプリ更新情報があるときのみ通知する。", "The selected update channel makes dedicated notifications for the server obsolete." : "選択した更新チャネルでは、廃止サーバーについて専用の通知を行います。", - "The selected update channel does not support updates of the server." : "選択したチャンネルでは、サーバーのアップデートをサポートしていません。" + "The update check is not yet finished. Please refresh the page." : "アップデートチェックが完了していません。ページを更新してください。" }, "nplurals=1; plural=0;"); diff --git a/apps/updatenotification/l10n/ja.json b/apps/updatenotification/l10n/ja.json index 4a807956e348b..a7a0e430572ac 100644 --- a/apps/updatenotification/l10n/ja.json +++ b/apps/updatenotification/l10n/ja.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "アップデート通知", - "Could not start updater, please try the manual update" : "アップデータを起動できませんでした。手動アップデートをお試しください", "{version} is available. Get more information on how to update." : "{version} が利用可能です。アップデート方法について詳細情報を確認してください。", + "Open updater" : "アップデーターを開く", + "Your version is up to date." : "最新版です。", + "A non-default update server is in use to be checked for updates:" : "更新のチェックにデフォルト以外の更新サーバーが利用されています:", + "Update channel:" : "アップデートチャンネル:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "開発版の新しいバージョンにアップデートできます。ただし、アップデート後は安定版にダウングレードできません。", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "新しいリリースの後、公開されるまでには時間がかかります。\n新しいバージョンを公開して配布しますが、問題が発見されたときにバージョンをスキップすることがあります。", + "Notify members of the following groups about available updates:" : "次のグループのメンバーに対してアップデートのメッセージが表示されます:", + "Only notification for app updates are available." : "アプリ更新情報があるときのみ通知する。", + "The selected update channel does not support updates of the server." : "選択したチャンネルでは、サーバーのアップデートをサポートしていません。", + "Could not start updater, please try the manual update" : "アップデータを起動できませんでした。手動アップデートをお試しください", + "Update notifications" : "アップデート通知", "Channel updated" : "チャンネルが更新されました", "The update server could not be reached since %d days to check for new updates." : "%d日以降、新しい更新をチェックする更新サーバーにアクセスできませんでした。", "Please check the Nextcloud and server log files for errors." : "Nextcloudとサーバーログファイルでエラーがないか確認してください。", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "%1$s に対するバージョン %2$s へアップデートが利用可能です。", "Update for {app} to version %s is available." : " {app} に対するバージョン %s へアップデートが利用可能です。", "A new version is available: %s" : "新しいバージョンが利用可能: %s", - "Open updater" : "アップデーターを開く", "Download now" : "今すぐダウンロード", - "The update check is not yet finished. Please refresh the page." : "アップデートチェックが完了していません。ページを更新してください。", - "Your version is up to date." : "最新版です。", "Checked on %s" : "%s に確認", - "A non-default update server is in use to be checked for updates:" : "更新のチェックにデフォルト以外の更新サーバーが利用されています:", - "Update channel:" : "アップデートチャンネル:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "開発版の新しいバージョンにアップデートできます。ただし、アップデート後は安定版にダウングレードできません。", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "新しいリリースの後、公開されるまでには時間がかかります。\n新しいバージョンを公開して配布しますが、問題が発見されたときにバージョンをスキップすることがあります。", - "Notify members of the following groups about available updates:" : "次のグループのメンバーに対してアップデートのメッセージが表示されます:", - "Only notification for app updates are available." : "アプリ更新情報があるときのみ通知する。", "The selected update channel makes dedicated notifications for the server obsolete." : "選択した更新チャネルでは、廃止サーバーについて専用の通知を行います。", - "The selected update channel does not support updates of the server." : "選択したチャンネルでは、サーバーのアップデートをサポートしていません。" + "The update check is not yet finished. Please refresh the page." : "アップデートチェックが完了していません。ページを更新してください。" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/ka_GE.js b/apps/updatenotification/l10n/ka_GE.js index 3010f92d5f033..5f4d40c122777 100644 --- a/apps/updatenotification/l10n/ka_GE.js +++ b/apps/updatenotification/l10n/ka_GE.js @@ -1,28 +1,30 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "განახლების შეტყობინებები", - "Could not start updater, please try the manual update" : "განმანახმებლის გაშვება ვერ მოხერხდა, გთხოვთ სცადოთ განახლება მექანიკურ რეჯიმში", "{version} is available. Get more information on how to update." : "{version} ხელმისაწვდომია. მოიპოვეთ მეტი ინფორმაცია იმაზე, თუ როგორ განაახლოთ.", + "Open updater" : "განმანახლებლის ჩართვა", + "Your version is up to date." : "თქვენ იყენბთ ბოლო ვერსიას.", + "A non-default update server is in use to be checked for updates:" : "განახლებების შესამოწმებლად მოქმედია არა-საწყისი სერვერი:", + "Update channel:" : "განახლების არხი:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "ყოველთვის შეგიძლიათ განაახლოთ უფრო ახალ ვერსიაზე / ექსპერიმენტალურ არხზე. თუმცა სტაბილურ ვერსიაზე ჩამოსვლა ვერ მოხერხდება.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "გაითვალისწინეთ, ახალი რელიზი აქ გამოჩენამდე, საჭიროებს გარკვეულ დროს. ჩვენ მომხმარებლებისთვის ვუშვებთ ახალ ვერსიებს და ხანდახან პრობლემების პოვნისას ზოგიერთ ვერსიას ვტოვებთ.", + "Notify members of the following groups about available updates:" : "შემდეგი ჯგუფის წევრებს გაუგზავნეთ შეტყობინება ხელმისაწვდომ განახლებებზე:", + "Only notification for app updates are available." : "შეტყობინება ხელმისაწვდომია მხოლოდ აპლიკაციების განახლებებზე.", + "The selected update channel does not support updates of the server." : "არჩეული განახლების არხი არ უჭერს მხარს სერვერის განახლებას.", + "Checked on {lastCheckedDate}" : "შემოწმდა {lastCheckedDate}-ზე", + "Could not start updater, please try the manual update" : "განმანახმებლის გაშვება ვერ მოხერხდა, გთხოვთ სცადოთ განახლება მექანიკურ რეჯიმში", + "Update notifications" : "განახლების შეტყობინებები", "Channel updated" : "განახლების შეჩერება", "The update server could not be reached since %d days to check for new updates." : "განახლების სერვერი გალახლებების შესამოწმებლად %d დღე მიუწვდომელია.", "Please check the Nextcloud and server log files for errors." : "შეცდომებისთვის გთხოვთ შეამოწმოთ Nextcloud-ი სერვერის ლოგები.", "Update to %1$s is available." : "განახლება %1$s-ზე ხელმისაწვდომია.", "Update for %1$s to version %2$s is available." : "%1$s-ის განახლება %2$s ვერსიაზე ხელმისაწვდომია.", "Update for {app} to version %s is available." : "განახლება აპლიკაციისთვის {app} ვერსიაზე %s ხელმისაწვდომია.", + "Update notification" : "შეტყობინების განახლება", "A new version is available: %s" : "ხელმისაწვდომია ახალი ვერსია: %s", - "Open updater" : "განმანახლებლის ჩართვა", "Download now" : "ჩამოტვირთვა", - "The update check is not yet finished. Please refresh the page." : "განახლება ჯერ არ დასრულებულა. გთხოვთ განაახლოთ გვერდი.", - "Your version is up to date." : "თქვენ იყენბთ ბოლო ვერსიას.", "Checked on %s" : "შემოწმდა %s-ზე", - "A non-default update server is in use to be checked for updates:" : "განახლებების შესამოწმებლად მოქმედია არა-საწყისი სერვერი:", - "Update channel:" : "განახლების არხი:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "ყოველთვის შეგიძლიათ განაახლოთ უფრო ახალ ვერსიაზე / ექსპერიმენტალურ არხზე. თუმცა სტაბილურ ვერსიაზე ჩამოსვლა ვერ მოხერხდება.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "გაითვალისწინეთ, ახალი რელიზი აქ გამოჩენამდე, საჭიროებს გარკვეულ დროს. ჩვენ მომხმარებლებისთვის ვუშვებთ ახალ ვერსიებს და ხანდახან პრობლემების პოვნისას ზოგიერთ ვერსიას ვტოვებთ.", - "Notify members of the following groups about available updates:" : "შემდეგი ჯგუფის წევრებს გაუგზავნეთ შეტყობინება ხელმისაწვდომ განახლებებზე:", - "Only notification for app updates are available." : "შეტყობინება ხელმისაწვდომია მხოლოდ აპლიკაციების განახლებებზე.", "The selected update channel makes dedicated notifications for the server obsolete." : "არჩეული განახლების არხი მოძველებული სერვერის შესახებ საჭიროებს გამოყოფილ შეტყობინებებს.", - "The selected update channel does not support updates of the server." : "არჩეული განახლების არხი არ უჭერს მხარს სერვერის განახლებას." + "The update check is not yet finished. Please refresh the page." : "განახლება ჯერ არ დასრულებულა. გთხოვთ განაახლოთ გვერდი." }, "nplurals=1; plural=0;"); diff --git a/apps/updatenotification/l10n/ka_GE.json b/apps/updatenotification/l10n/ka_GE.json index 7489f6959f34b..3ccf4e2a5a80e 100644 --- a/apps/updatenotification/l10n/ka_GE.json +++ b/apps/updatenotification/l10n/ka_GE.json @@ -1,26 +1,28 @@ { "translations": { - "Update notifications" : "განახლების შეტყობინებები", - "Could not start updater, please try the manual update" : "განმანახმებლის გაშვება ვერ მოხერხდა, გთხოვთ სცადოთ განახლება მექანიკურ რეჯიმში", "{version} is available. Get more information on how to update." : "{version} ხელმისაწვდომია. მოიპოვეთ მეტი ინფორმაცია იმაზე, თუ როგორ განაახლოთ.", + "Open updater" : "განმანახლებლის ჩართვა", + "Your version is up to date." : "თქვენ იყენბთ ბოლო ვერსიას.", + "A non-default update server is in use to be checked for updates:" : "განახლებების შესამოწმებლად მოქმედია არა-საწყისი სერვერი:", + "Update channel:" : "განახლების არხი:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "ყოველთვის შეგიძლიათ განაახლოთ უფრო ახალ ვერსიაზე / ექსპერიმენტალურ არხზე. თუმცა სტაბილურ ვერსიაზე ჩამოსვლა ვერ მოხერხდება.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "გაითვალისწინეთ, ახალი რელიზი აქ გამოჩენამდე, საჭიროებს გარკვეულ დროს. ჩვენ მომხმარებლებისთვის ვუშვებთ ახალ ვერსიებს და ხანდახან პრობლემების პოვნისას ზოგიერთ ვერსიას ვტოვებთ.", + "Notify members of the following groups about available updates:" : "შემდეგი ჯგუფის წევრებს გაუგზავნეთ შეტყობინება ხელმისაწვდომ განახლებებზე:", + "Only notification for app updates are available." : "შეტყობინება ხელმისაწვდომია მხოლოდ აპლიკაციების განახლებებზე.", + "The selected update channel does not support updates of the server." : "არჩეული განახლების არხი არ უჭერს მხარს სერვერის განახლებას.", + "Checked on {lastCheckedDate}" : "შემოწმდა {lastCheckedDate}-ზე", + "Could not start updater, please try the manual update" : "განმანახმებლის გაშვება ვერ მოხერხდა, გთხოვთ სცადოთ განახლება მექანიკურ რეჯიმში", + "Update notifications" : "განახლების შეტყობინებები", "Channel updated" : "განახლების შეჩერება", "The update server could not be reached since %d days to check for new updates." : "განახლების სერვერი გალახლებების შესამოწმებლად %d დღე მიუწვდომელია.", "Please check the Nextcloud and server log files for errors." : "შეცდომებისთვის გთხოვთ შეამოწმოთ Nextcloud-ი სერვერის ლოგები.", "Update to %1$s is available." : "განახლება %1$s-ზე ხელმისაწვდომია.", "Update for %1$s to version %2$s is available." : "%1$s-ის განახლება %2$s ვერსიაზე ხელმისაწვდომია.", "Update for {app} to version %s is available." : "განახლება აპლიკაციისთვის {app} ვერსიაზე %s ხელმისაწვდომია.", + "Update notification" : "შეტყობინების განახლება", "A new version is available: %s" : "ხელმისაწვდომია ახალი ვერსია: %s", - "Open updater" : "განმანახლებლის ჩართვა", "Download now" : "ჩამოტვირთვა", - "The update check is not yet finished. Please refresh the page." : "განახლება ჯერ არ დასრულებულა. გთხოვთ განაახლოთ გვერდი.", - "Your version is up to date." : "თქვენ იყენბთ ბოლო ვერსიას.", "Checked on %s" : "შემოწმდა %s-ზე", - "A non-default update server is in use to be checked for updates:" : "განახლებების შესამოწმებლად მოქმედია არა-საწყისი სერვერი:", - "Update channel:" : "განახლების არხი:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "ყოველთვის შეგიძლიათ განაახლოთ უფრო ახალ ვერსიაზე / ექსპერიმენტალურ არხზე. თუმცა სტაბილურ ვერსიაზე ჩამოსვლა ვერ მოხერხდება.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "გაითვალისწინეთ, ახალი რელიზი აქ გამოჩენამდე, საჭიროებს გარკვეულ დროს. ჩვენ მომხმარებლებისთვის ვუშვებთ ახალ ვერსიებს და ხანდახან პრობლემების პოვნისას ზოგიერთ ვერსიას ვტოვებთ.", - "Notify members of the following groups about available updates:" : "შემდეგი ჯგუფის წევრებს გაუგზავნეთ შეტყობინება ხელმისაწვდომ განახლებებზე:", - "Only notification for app updates are available." : "შეტყობინება ხელმისაწვდომია მხოლოდ აპლიკაციების განახლებებზე.", "The selected update channel makes dedicated notifications for the server obsolete." : "არჩეული განახლების არხი მოძველებული სერვერის შესახებ საჭიროებს გამოყოფილ შეტყობინებებს.", - "The selected update channel does not support updates of the server." : "არჩეული განახლების არხი არ უჭერს მხარს სერვერის განახლებას." + "The update check is not yet finished. Please refresh the page." : "განახლება ჯერ არ დასრულებულა. გთხოვთ განაახლოთ გვერდი." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/ko.js b/apps/updatenotification/l10n/ko.js index 8b696f289fc51..a72d91de2e0ab 100644 --- a/apps/updatenotification/l10n/ko.js +++ b/apps/updatenotification/l10n/ko.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "업데이트 알림", - "Could not start updater, please try the manual update" : "업데이트를 시작할 수 없습니다. 수동 업데이트를 시도하십시오.", "{version} is available. Get more information on how to update." : "{version}을(를) 사용할 수 있습니다. 업데이트하는 방법에 대해서 알아보십시오.", + "Open updater" : "업데이터 열기", + "Your version is up to date." : "최신 버전을 사용하고 있습니다.", + "A non-default update server is in use to be checked for updates:" : "기본 업데이트 서버가 아닌 곳에서 업데이트를 확인하고 있음:", + "Update channel:" : "업데이트 채널:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "항상 새로운 버전이나 실험 채널로 업그레이드할 수 있지만, 안정 채널로 다운그레이드할 수는 없습니다.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "새 릴리스가 발표된 후 여기에 표시되기까지 시간이 소요됩니다. 새 버전은 단계적으로 적용되고 있으며 문제가 발생한 경우 버전을 건너뛸 수도 있습니다.", + "Notify members of the following groups about available updates:" : "다음 그룹 구성원에게 업데이트 알림 전달:", + "Only notification for app updates are available." : "앱 업데이트 알림만 사용할 수 있습니다.", + "The selected update channel does not support updates of the server." : "선택한 업데이트 채널은 서버 업데이트를 지원하지 않습니다.", + "Could not start updater, please try the manual update" : "업데이트를 시작할 수 없습니다. 수동 업데이트를 시도하십시오.", + "Update notifications" : "업데이트 알림", "Channel updated" : "채널 업데이트됨", "The update server could not be reached since %d days to check for new updates." : "업데이트 서버에 %d일 동안 접근할 수 없어서 새 업데이트를 확인할 수 없습니다.", "Please check the Nextcloud and server log files for errors." : "Nextcloud 및 서버 로그에서 오류 정보를 확인하십시오.", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "%1$s을(를) 버전 %2$s(으)로 업데이트할 수 있습니다.", "Update for {app} to version %s is available." : "{app}을(를) 버전 %s(으)로 업데이트할 수 있습니다.", "A new version is available: %s" : "새 버전을 사용할 수 있습니다: %s", - "Open updater" : "업데이터 열기", "Download now" : "지금 다운로드", - "The update check is not yet finished. Please refresh the page." : "업데이트 확인이 아직 끝나지 않았습니다. 페이지를 새로 고치십시오.", - "Your version is up to date." : "최신 버전을 사용하고 있습니다.", "Checked on %s" : "%s에 확인함", - "A non-default update server is in use to be checked for updates:" : "기본 업데이트 서버가 아닌 곳에서 업데이트를 확인하고 있음:", - "Update channel:" : "업데이트 채널:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "항상 새로운 버전이나 실험 채널로 업그레이드할 수 있지만, 안정 채널로 다운그레이드할 수는 없습니다.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "새 릴리스가 발표된 후 여기에 표시되기까지 시간이 소요됩니다. 새 버전은 단계적으로 적용되고 있으며 문제가 발생한 경우 버전을 건너뛸 수도 있습니다.", - "Notify members of the following groups about available updates:" : "다음 그룹 구성원에게 업데이트 알림 전달:", - "Only notification for app updates are available." : "앱 업데이트 알림만 사용할 수 있습니다.", "The selected update channel makes dedicated notifications for the server obsolete." : "선택한 업데이트 채널은 서버 알림을 사용하지 않습니다.", - "The selected update channel does not support updates of the server." : "선택한 업데이트 채널은 서버 업데이트를 지원하지 않습니다." + "The update check is not yet finished. Please refresh the page." : "업데이트 확인이 아직 끝나지 않았습니다. 페이지를 새로 고치십시오." }, "nplurals=1; plural=0;"); diff --git a/apps/updatenotification/l10n/ko.json b/apps/updatenotification/l10n/ko.json index 759305f9c1040..1ba2e9e54de85 100644 --- a/apps/updatenotification/l10n/ko.json +++ b/apps/updatenotification/l10n/ko.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "업데이트 알림", - "Could not start updater, please try the manual update" : "업데이트를 시작할 수 없습니다. 수동 업데이트를 시도하십시오.", "{version} is available. Get more information on how to update." : "{version}을(를) 사용할 수 있습니다. 업데이트하는 방법에 대해서 알아보십시오.", + "Open updater" : "업데이터 열기", + "Your version is up to date." : "최신 버전을 사용하고 있습니다.", + "A non-default update server is in use to be checked for updates:" : "기본 업데이트 서버가 아닌 곳에서 업데이트를 확인하고 있음:", + "Update channel:" : "업데이트 채널:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "항상 새로운 버전이나 실험 채널로 업그레이드할 수 있지만, 안정 채널로 다운그레이드할 수는 없습니다.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "새 릴리스가 발표된 후 여기에 표시되기까지 시간이 소요됩니다. 새 버전은 단계적으로 적용되고 있으며 문제가 발생한 경우 버전을 건너뛸 수도 있습니다.", + "Notify members of the following groups about available updates:" : "다음 그룹 구성원에게 업데이트 알림 전달:", + "Only notification for app updates are available." : "앱 업데이트 알림만 사용할 수 있습니다.", + "The selected update channel does not support updates of the server." : "선택한 업데이트 채널은 서버 업데이트를 지원하지 않습니다.", + "Could not start updater, please try the manual update" : "업데이트를 시작할 수 없습니다. 수동 업데이트를 시도하십시오.", + "Update notifications" : "업데이트 알림", "Channel updated" : "채널 업데이트됨", "The update server could not be reached since %d days to check for new updates." : "업데이트 서버에 %d일 동안 접근할 수 없어서 새 업데이트를 확인할 수 없습니다.", "Please check the Nextcloud and server log files for errors." : "Nextcloud 및 서버 로그에서 오류 정보를 확인하십시오.", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "%1$s을(를) 버전 %2$s(으)로 업데이트할 수 있습니다.", "Update for {app} to version %s is available." : "{app}을(를) 버전 %s(으)로 업데이트할 수 있습니다.", "A new version is available: %s" : "새 버전을 사용할 수 있습니다: %s", - "Open updater" : "업데이터 열기", "Download now" : "지금 다운로드", - "The update check is not yet finished. Please refresh the page." : "업데이트 확인이 아직 끝나지 않았습니다. 페이지를 새로 고치십시오.", - "Your version is up to date." : "최신 버전을 사용하고 있습니다.", "Checked on %s" : "%s에 확인함", - "A non-default update server is in use to be checked for updates:" : "기본 업데이트 서버가 아닌 곳에서 업데이트를 확인하고 있음:", - "Update channel:" : "업데이트 채널:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "항상 새로운 버전이나 실험 채널로 업그레이드할 수 있지만, 안정 채널로 다운그레이드할 수는 없습니다.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "새 릴리스가 발표된 후 여기에 표시되기까지 시간이 소요됩니다. 새 버전은 단계적으로 적용되고 있으며 문제가 발생한 경우 버전을 건너뛸 수도 있습니다.", - "Notify members of the following groups about available updates:" : "다음 그룹 구성원에게 업데이트 알림 전달:", - "Only notification for app updates are available." : "앱 업데이트 알림만 사용할 수 있습니다.", "The selected update channel makes dedicated notifications for the server obsolete." : "선택한 업데이트 채널은 서버 알림을 사용하지 않습니다.", - "The selected update channel does not support updates of the server." : "선택한 업데이트 채널은 서버 업데이트를 지원하지 않습니다." + "The update check is not yet finished. Please refresh the page." : "업데이트 확인이 아직 끝나지 않았습니다. 페이지를 새로 고치십시오." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/lt_LT.js b/apps/updatenotification/l10n/lt_LT.js index dd29887f98534..d644525946a2f 100644 --- a/apps/updatenotification/l10n/lt_LT.js +++ b/apps/updatenotification/l10n/lt_LT.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Atnaujinimų pranešimai", - "Could not start updater, please try the manual update" : "Nepavyko paleisti atnaujinimo programos, prašome bandyti atnaujinimą rankiniu būdu", "{version} is available. Get more information on how to update." : "Yra prieinama {version}. Gaukite daugiau informacijos apie tai kaip atnaujinti.", + "Open updater" : "Atverti atnaujinimo programą", + "Your version is up to date." : "Jūsų versija yra naujausia.", + "A non-default update server is in use to be checked for updates:" : "Atnaujinimų aptikimui yra naudojamas ne nenumatytasis serveris: ", + "Update channel:" : "Atnaujinimo kanalas:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Visada galite atnaujinti į naujesnę versiją / eksperimentinį kanalą. Tačiau niekada negalite sendinti versijos ar persijungti į stabilų kanalą.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Turėkite omenyje, kad po naujos versijos išleidimo, gali praeiti šiek tiek laiko, kol ji čia taps matoma. Mes išleidžiame naujas versijas paskirstytas pagal laiką savo naudotojams ir, kartais, pastebėjus klaidas, praleidžiame versiją.", + "Notify members of the following groups about available updates:" : "Apie galimus atnaujinimus informuoti narius iš grupių:", + "Only notification for app updates are available." : "Yra prieinami tik pranešimai apie programėlių atnaujinimus.", + "The selected update channel does not support updates of the server." : "Pasirinktas kanalas nepalaiko serverio atnaujinimų.", + "Could not start updater, please try the manual update" : "Nepavyko paleisti atnaujinimo programos, prašome bandyti atnaujinimą rankiniu būdu", + "Update notifications" : "Atnaujinimų pranešimai", "Channel updated" : "Kanalas atnaujintas", "The update server could not be reached since %d days to check for new updates." : " Atnaujinimo serveris nepasiekiamas %d dienas.", "Please check the Nextcloud and server log files for errors." : "Prašome patikrinti Nextcloud ir serverio žurnalų įrašus apie galimas klaidas.", @@ -11,17 +20,8 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "Yra prieinamas %1$s atnaujinimas į versiją %2$s.", "Update for {app} to version %s is available." : "Yra prieinamas {app} atnaujinimas į versiją %s.", "A new version is available: %s" : "Yra prieinama nauja versija: %s", - "Open updater" : "Atverti atnaujinimo programą", "Download now" : "Atsisiųsti dabar", - "The update check is not yet finished. Please refresh the page." : "Atnaujinimų patikrinimas dar neužbaigtas. Prašome įkelti puslapį iš naujo.", - "Your version is up to date." : "Jūsų versija yra naujausia.", "Checked on %s" : "Tikrinta %s", - "A non-default update server is in use to be checked for updates:" : "Atnaujinimų aptikimui yra naudojamas ne nenumatytasis serveris: ", - "Update channel:" : "Atnaujinimo kanalas:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Visada galite atnaujinti į naujesnę versiją / eksperimentinį kanalą. Tačiau niekada negalite sendinti versijos ar persijungti į stabilų kanalą.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Turėkite omenyje, kad po naujos versijos išleidimo, gali praeiti šiek tiek laiko, kol ji čia taps matoma. Mes išleidžiame naujas versijas paskirstytas pagal laiką savo naudotojams ir, kartais, pastebėjus klaidas, praleidžiame versiją.", - "Notify members of the following groups about available updates:" : "Apie galimus atnaujinimus informuoti narius iš grupių:", - "Only notification for app updates are available." : "Yra prieinami tik pranešimai apie programėlių atnaujinimus.", - "The selected update channel does not support updates of the server." : "Pasirinktas kanalas nepalaiko serverio atnaujinimų." + "The update check is not yet finished. Please refresh the page." : "Atnaujinimų patikrinimas dar neužbaigtas. Prašome įkelti puslapį iš naujo." }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/updatenotification/l10n/lt_LT.json b/apps/updatenotification/l10n/lt_LT.json index e652fe57b91e0..1ab530e10932b 100644 --- a/apps/updatenotification/l10n/lt_LT.json +++ b/apps/updatenotification/l10n/lt_LT.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Atnaujinimų pranešimai", - "Could not start updater, please try the manual update" : "Nepavyko paleisti atnaujinimo programos, prašome bandyti atnaujinimą rankiniu būdu", "{version} is available. Get more information on how to update." : "Yra prieinama {version}. Gaukite daugiau informacijos apie tai kaip atnaujinti.", + "Open updater" : "Atverti atnaujinimo programą", + "Your version is up to date." : "Jūsų versija yra naujausia.", + "A non-default update server is in use to be checked for updates:" : "Atnaujinimų aptikimui yra naudojamas ne nenumatytasis serveris: ", + "Update channel:" : "Atnaujinimo kanalas:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Visada galite atnaujinti į naujesnę versiją / eksperimentinį kanalą. Tačiau niekada negalite sendinti versijos ar persijungti į stabilų kanalą.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Turėkite omenyje, kad po naujos versijos išleidimo, gali praeiti šiek tiek laiko, kol ji čia taps matoma. Mes išleidžiame naujas versijas paskirstytas pagal laiką savo naudotojams ir, kartais, pastebėjus klaidas, praleidžiame versiją.", + "Notify members of the following groups about available updates:" : "Apie galimus atnaujinimus informuoti narius iš grupių:", + "Only notification for app updates are available." : "Yra prieinami tik pranešimai apie programėlių atnaujinimus.", + "The selected update channel does not support updates of the server." : "Pasirinktas kanalas nepalaiko serverio atnaujinimų.", + "Could not start updater, please try the manual update" : "Nepavyko paleisti atnaujinimo programos, prašome bandyti atnaujinimą rankiniu būdu", + "Update notifications" : "Atnaujinimų pranešimai", "Channel updated" : "Kanalas atnaujintas", "The update server could not be reached since %d days to check for new updates." : " Atnaujinimo serveris nepasiekiamas %d dienas.", "Please check the Nextcloud and server log files for errors." : "Prašome patikrinti Nextcloud ir serverio žurnalų įrašus apie galimas klaidas.", @@ -9,17 +18,8 @@ "Update for %1$s to version %2$s is available." : "Yra prieinamas %1$s atnaujinimas į versiją %2$s.", "Update for {app} to version %s is available." : "Yra prieinamas {app} atnaujinimas į versiją %s.", "A new version is available: %s" : "Yra prieinama nauja versija: %s", - "Open updater" : "Atverti atnaujinimo programą", "Download now" : "Atsisiųsti dabar", - "The update check is not yet finished. Please refresh the page." : "Atnaujinimų patikrinimas dar neužbaigtas. Prašome įkelti puslapį iš naujo.", - "Your version is up to date." : "Jūsų versija yra naujausia.", "Checked on %s" : "Tikrinta %s", - "A non-default update server is in use to be checked for updates:" : "Atnaujinimų aptikimui yra naudojamas ne nenumatytasis serveris: ", - "Update channel:" : "Atnaujinimo kanalas:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Visada galite atnaujinti į naujesnę versiją / eksperimentinį kanalą. Tačiau niekada negalite sendinti versijos ar persijungti į stabilų kanalą.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Turėkite omenyje, kad po naujos versijos išleidimo, gali praeiti šiek tiek laiko, kol ji čia taps matoma. Mes išleidžiame naujas versijas paskirstytas pagal laiką savo naudotojams ir, kartais, pastebėjus klaidas, praleidžiame versiją.", - "Notify members of the following groups about available updates:" : "Apie galimus atnaujinimus informuoti narius iš grupių:", - "Only notification for app updates are available." : "Yra prieinami tik pranešimai apie programėlių atnaujinimus.", - "The selected update channel does not support updates of the server." : "Pasirinktas kanalas nepalaiko serverio atnaujinimų." + "The update check is not yet finished. Please refresh the page." : "Atnaujinimų patikrinimas dar neužbaigtas. Prašome įkelti puslapį iš naujo." },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/lv.js b/apps/updatenotification/l10n/lv.js index 7c9ece59d92f9..86167a7324794 100644 --- a/apps/updatenotification/l10n/lv.js +++ b/apps/updatenotification/l10n/lv.js @@ -1,23 +1,23 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Atjauninājumu paziņojumi", - "Could not start updater, please try the manual update" : "Nevar sākt atjauninājumu, lūdzu, mēģiniet manuālo atjauninājumu", "{version} is available. Get more information on how to update." : "{version} ir pieejama. Iegūstiet vairāk informācijas par to, kā atjaunināt.", + "Open updater" : "Atveriet atjauninātāju", + "Your version is up to date." : "Jums ir jaunākā versija.", + "Update channel:" : "Atjaunināt kanālu:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Jūs vienmēr varat atjaunināt to uz jaunāku versiju / eksperimentālo versiju. Bet nekad nevar atgriezties uz stabilāku versiju.", + "Notify members of the following groups about available updates:" : "Paziņot šo grupu locekļiem par pieejamajiem atjauninājumiem:", + "Only notification for app updates are available." : "Tikai paziņojumi par programmu atjauninājumiem ir pieejami.", + "The selected update channel does not support updates of the server." : "Izvēlēto atjauninājumu kanāls neatbalsta servera atjauninājumus.", + "Could not start updater, please try the manual update" : "Nevar sākt atjauninājumu, lūdzu, mēģiniet manuālo atjauninājumu", + "Update notifications" : "Atjauninājumu paziņojumi", "Channel updated" : "Kanāls atjaunots", "Update to %1$s is available." : "Atjauninājums uz %1$s ir pieejams.", "Update for %1$s to version %2$s is available." : "Atjauninājums %1$s uz versiju %2$s ir pieejams.", "Update for {app} to version %s is available." : "Atjauninājums {app} uz versiju %s ir pieejams.", "A new version is available: %s" : "Ir pieejama jauna versija: %s", - "Open updater" : "Atveriet atjauninātāju", "Download now" : "Lejupielādēt tagad", - "Your version is up to date." : "Jums ir jaunākā versija.", "Checked on %s" : "Pārbaudīts %s", - "Update channel:" : "Atjaunināt kanālu:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Jūs vienmēr varat atjaunināt to uz jaunāku versiju / eksperimentālo versiju. Bet nekad nevar atgriezties uz stabilāku versiju.", - "Notify members of the following groups about available updates:" : "Paziņot šo grupu locekļiem par pieejamajiem atjauninājumiem:", - "Only notification for app updates are available." : "Tikai paziņojumi par programmu atjauninājumiem ir pieejami.", - "The selected update channel makes dedicated notifications for the server obsolete." : "Izvēlētais atjauninājumu kanāls rādīs īpašus paziņojumus ja serveris novecojis.", - "The selected update channel does not support updates of the server." : "Izvēlēto atjauninājumu kanāls neatbalsta servera atjauninājumus." + "The selected update channel makes dedicated notifications for the server obsolete." : "Izvēlētais atjauninājumu kanāls rādīs īpašus paziņojumus ja serveris novecojis." }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/apps/updatenotification/l10n/lv.json b/apps/updatenotification/l10n/lv.json index 58cd3f39febab..e53558101d146 100644 --- a/apps/updatenotification/l10n/lv.json +++ b/apps/updatenotification/l10n/lv.json @@ -1,21 +1,21 @@ { "translations": { - "Update notifications" : "Atjauninājumu paziņojumi", - "Could not start updater, please try the manual update" : "Nevar sākt atjauninājumu, lūdzu, mēģiniet manuālo atjauninājumu", "{version} is available. Get more information on how to update." : "{version} ir pieejama. Iegūstiet vairāk informācijas par to, kā atjaunināt.", + "Open updater" : "Atveriet atjauninātāju", + "Your version is up to date." : "Jums ir jaunākā versija.", + "Update channel:" : "Atjaunināt kanālu:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Jūs vienmēr varat atjaunināt to uz jaunāku versiju / eksperimentālo versiju. Bet nekad nevar atgriezties uz stabilāku versiju.", + "Notify members of the following groups about available updates:" : "Paziņot šo grupu locekļiem par pieejamajiem atjauninājumiem:", + "Only notification for app updates are available." : "Tikai paziņojumi par programmu atjauninājumiem ir pieejami.", + "The selected update channel does not support updates of the server." : "Izvēlēto atjauninājumu kanāls neatbalsta servera atjauninājumus.", + "Could not start updater, please try the manual update" : "Nevar sākt atjauninājumu, lūdzu, mēģiniet manuālo atjauninājumu", + "Update notifications" : "Atjauninājumu paziņojumi", "Channel updated" : "Kanāls atjaunots", "Update to %1$s is available." : "Atjauninājums uz %1$s ir pieejams.", "Update for %1$s to version %2$s is available." : "Atjauninājums %1$s uz versiju %2$s ir pieejams.", "Update for {app} to version %s is available." : "Atjauninājums {app} uz versiju %s ir pieejams.", "A new version is available: %s" : "Ir pieejama jauna versija: %s", - "Open updater" : "Atveriet atjauninātāju", "Download now" : "Lejupielādēt tagad", - "Your version is up to date." : "Jums ir jaunākā versija.", "Checked on %s" : "Pārbaudīts %s", - "Update channel:" : "Atjaunināt kanālu:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Jūs vienmēr varat atjaunināt to uz jaunāku versiju / eksperimentālo versiju. Bet nekad nevar atgriezties uz stabilāku versiju.", - "Notify members of the following groups about available updates:" : "Paziņot šo grupu locekļiem par pieejamajiem atjauninājumiem:", - "Only notification for app updates are available." : "Tikai paziņojumi par programmu atjauninājumiem ir pieejami.", - "The selected update channel makes dedicated notifications for the server obsolete." : "Izvēlētais atjauninājumu kanāls rādīs īpašus paziņojumus ja serveris novecojis.", - "The selected update channel does not support updates of the server." : "Izvēlēto atjauninājumu kanāls neatbalsta servera atjauninājumus." + "The selected update channel makes dedicated notifications for the server obsolete." : "Izvēlētais atjauninājumu kanāls rādīs īpašus paziņojumus ja serveris novecojis." },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/nb.js b/apps/updatenotification/l10n/nb.js index a9f9249b0c6f2..bf6c756344745 100644 --- a/apps/updatenotification/l10n/nb.js +++ b/apps/updatenotification/l10n/nb.js @@ -1,28 +1,30 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Oppdateringsvarsel", - "Could not start updater, please try the manual update" : "Kunne ikke starte oppdateringen, prøv å oppdatere manuelt", "{version} is available. Get more information on how to update." : "{version} er tilgjengelig. Få mer informasjon om å oppdatere.", + "Open updater" : "Åpne oppdaterer", + "Your version is up to date." : "Du har nyeste versjon.", + "A non-default update server is in use to be checked for updates:" : "En ikke-forvalgt oppdateringstjener brukes for å se etter oppdateringer:", + "Update channel:" : "Oppdateringskanal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan alltid oppdatere til en nyere versjon / eksperimentell kanal. Men du kan aldri nedgradere til en mer stabil kanal.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vær oppmerksom på at etter en ny utgivelse kan det ta noe tid før den vises her. Vi ruller ut nye versjonen spredt utover tid til våre brukere, og av og til hoppes det over en versjon når problemer dukker opp.", + "Notify members of the following groups about available updates:" : "Informer medlemmene i følgende grupper om tilgjengelig oppdateringer:", + "Only notification for app updates are available." : "Kun varsler for app oppdateringer er tilgjengelig.", + "The selected update channel does not support updates of the server." : "Den valgte oppdateringskanalen tilbyr ikke oppdateringer av tjeneren.", + "Checked on {lastCheckedDate}" : "Sist sjekket {lastCheckedDate}", + "Could not start updater, please try the manual update" : "Kunne ikke starte oppdateringen, prøv å oppdatere manuelt", + "Update notifications" : "Oppdateringsvarsel", "Channel updated" : "Kanal oppdatert", "The update server could not be reached since %d days to check for new updates." : "Har ikke oppnådd kontakt med oppdateringstjeneren på %d dager for å se etter nye oppdateringer.", "Please check the Nextcloud and server log files for errors." : "Se i Nextcloud- og tjener-loggen etter feil.", "Update to %1$s is available." : "Oppdatering til %1$s er tilgjengelig.", "Update for %1$s to version %2$s is available." : "Oppdatering for %1$s til versjon %2$s er tilgjengelig.", "Update for {app} to version %s is available." : "Oppdatering for {app} til versjon %s er tilgjengelig.", + "Update notification" : "Oppdateringsvarsel", "A new version is available: %s" : "En ny versjon er tilgjengelig: %s", - "Open updater" : "Åpne oppdaterer", "Download now" : "Last ned nå", - "The update check is not yet finished. Please refresh the page." : "Oppdateringssjekken er ikke ferdig, vennligst oppdater siden.", - "Your version is up to date." : "Du har nyeste versjon.", "Checked on %s" : "Sjekket %s", - "A non-default update server is in use to be checked for updates:" : "En ikke-forvalgt oppdateringstjener brukes for å se etter oppdateringer:", - "Update channel:" : "Oppdateringskanal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan alltid oppdatere til en nyere versjon / eksperimentell kanal. Men du kan aldri nedgradere til en mer stabil kanal.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vær oppmerksom på at etter en ny utgivelse kan det ta noe tid før den vises her. Vi ruller ut nye versjonen spredt utover tid til våre brukere, og av og til hoppes det over en versjon når problemer dukker opp.", - "Notify members of the following groups about available updates:" : "Informer medlemmene i følgende grupper om tilgjengelig oppdateringer:", - "Only notification for app updates are available." : "Kun varsler for app oppdateringer er tilgjengelig.", "The selected update channel makes dedicated notifications for the server obsolete." : "Den valgte oppdateringskanalen gjør dedikerte varsler til denne tjeneren utdatert.", - "The selected update channel does not support updates of the server." : "Den valgte oppdateringskanalen tilbyr ikke oppdateringer av tjeneren." + "The update check is not yet finished. Please refresh the page." : "Oppdateringssjekken er ikke ferdig, vennligst oppdater siden." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/nb.json b/apps/updatenotification/l10n/nb.json index fe4574dd4b254..a56db6331db85 100644 --- a/apps/updatenotification/l10n/nb.json +++ b/apps/updatenotification/l10n/nb.json @@ -1,26 +1,28 @@ { "translations": { - "Update notifications" : "Oppdateringsvarsel", - "Could not start updater, please try the manual update" : "Kunne ikke starte oppdateringen, prøv å oppdatere manuelt", "{version} is available. Get more information on how to update." : "{version} er tilgjengelig. Få mer informasjon om å oppdatere.", + "Open updater" : "Åpne oppdaterer", + "Your version is up to date." : "Du har nyeste versjon.", + "A non-default update server is in use to be checked for updates:" : "En ikke-forvalgt oppdateringstjener brukes for å se etter oppdateringer:", + "Update channel:" : "Oppdateringskanal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan alltid oppdatere til en nyere versjon / eksperimentell kanal. Men du kan aldri nedgradere til en mer stabil kanal.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vær oppmerksom på at etter en ny utgivelse kan det ta noe tid før den vises her. Vi ruller ut nye versjonen spredt utover tid til våre brukere, og av og til hoppes det over en versjon når problemer dukker opp.", + "Notify members of the following groups about available updates:" : "Informer medlemmene i følgende grupper om tilgjengelig oppdateringer:", + "Only notification for app updates are available." : "Kun varsler for app oppdateringer er tilgjengelig.", + "The selected update channel does not support updates of the server." : "Den valgte oppdateringskanalen tilbyr ikke oppdateringer av tjeneren.", + "Checked on {lastCheckedDate}" : "Sist sjekket {lastCheckedDate}", + "Could not start updater, please try the manual update" : "Kunne ikke starte oppdateringen, prøv å oppdatere manuelt", + "Update notifications" : "Oppdateringsvarsel", "Channel updated" : "Kanal oppdatert", "The update server could not be reached since %d days to check for new updates." : "Har ikke oppnådd kontakt med oppdateringstjeneren på %d dager for å se etter nye oppdateringer.", "Please check the Nextcloud and server log files for errors." : "Se i Nextcloud- og tjener-loggen etter feil.", "Update to %1$s is available." : "Oppdatering til %1$s er tilgjengelig.", "Update for %1$s to version %2$s is available." : "Oppdatering for %1$s til versjon %2$s er tilgjengelig.", "Update for {app} to version %s is available." : "Oppdatering for {app} til versjon %s er tilgjengelig.", + "Update notification" : "Oppdateringsvarsel", "A new version is available: %s" : "En ny versjon er tilgjengelig: %s", - "Open updater" : "Åpne oppdaterer", "Download now" : "Last ned nå", - "The update check is not yet finished. Please refresh the page." : "Oppdateringssjekken er ikke ferdig, vennligst oppdater siden.", - "Your version is up to date." : "Du har nyeste versjon.", "Checked on %s" : "Sjekket %s", - "A non-default update server is in use to be checked for updates:" : "En ikke-forvalgt oppdateringstjener brukes for å se etter oppdateringer:", - "Update channel:" : "Oppdateringskanal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan alltid oppdatere til en nyere versjon / eksperimentell kanal. Men du kan aldri nedgradere til en mer stabil kanal.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vær oppmerksom på at etter en ny utgivelse kan det ta noe tid før den vises her. Vi ruller ut nye versjonen spredt utover tid til våre brukere, og av og til hoppes det over en versjon når problemer dukker opp.", - "Notify members of the following groups about available updates:" : "Informer medlemmene i følgende grupper om tilgjengelig oppdateringer:", - "Only notification for app updates are available." : "Kun varsler for app oppdateringer er tilgjengelig.", "The selected update channel makes dedicated notifications for the server obsolete." : "Den valgte oppdateringskanalen gjør dedikerte varsler til denne tjeneren utdatert.", - "The selected update channel does not support updates of the server." : "Den valgte oppdateringskanalen tilbyr ikke oppdateringer av tjeneren." + "The update check is not yet finished. Please refresh the page." : "Oppdateringssjekken er ikke ferdig, vennligst oppdater siden." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/nl.js b/apps/updatenotification/l10n/nl.js index 6337f5cb5bf10..ed58bf7ed031c 100644 --- a/apps/updatenotification/l10n/nl.js +++ b/apps/updatenotification/l10n/nl.js @@ -1,28 +1,37 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Bijwerken meldingen", - "Could not start updater, please try the manual update" : "Kon de updater niet starten, probeer alsjeblieft de handmatige update", "{version} is available. Get more information on how to update." : "{version} is beschikbaar. Meer informatie over het bijwerken.", + "Apps with available updates" : "Apps met beschikbare updates", + "Open updater" : "Open updater", + "Your version is up to date." : "Je versie is up to date.", + "A non-default update server is in use to be checked for updates:" : "Een niet-standaard updateserver is in gebruik om te worden gecontroleerd op updates:", + "Update channel:" : "Bijwerkkanaal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Je kunt altijd updaten naar een nieuwere versie of experimenteel kanaal. Maar terug naar een oudere versie of een stabieler kanaal is niet mogelijk.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Houd er rekening mee dat het enige tijd kan duren voordat na een nieuwe versie hier verschijnt. We verspreiden nieuwe versies over de tijd aan onze gebruikers en soms slaan we een versie over als er problemen zijn gevonden.", + "Notify members of the following groups about available updates:" : "Geef een melding over beschikbare updates aan leden van de volgende groepen:", + "Only notification for app updates are available." : "Er zijn alleen meldingen voor apps beschikbaar.", + "The selected update channel does not support updates of the server." : "Het geselecteerde updatekanaal ondersteunt geen updates voor de server.", + "A new version is available: {newVersionString}" : "Er is een nieuwe versie beschikbaar: {newVersionString}", + "Checked on {lastCheckedDate}" : "Gecontroleerd op {lastCheckedDate}", + "Checking apps for compatible updates" : "Apps controleren op compatibele updates", + "Please make sure your config.php does not set appstoreenabled to false." : "Zorg ervoor dat je in config.php appstoreenabled niet op 'false' zet.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Kan niet verbinden met de appstore of de appstore gaf geen updates terug. Zoek handmatig naar updates of verifieer dat je server internettoegang heeft en kan verbinden met de appstore.", + "All apps have an update for this version available" : "Alle apps hebben een update voor deze versie beschikbaar", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n app heeft geen update voor deze versie beschikbaar","%n apps hebben geen update voor deze versie beschikbaar"], + "Could not start updater, please try the manual update" : "Kon de updater niet starten, probeer alsjeblieft de handmatige update", + "Update notifications" : "Bijwerken meldingen", "Channel updated" : "Kanaal bijgewerkt", "The update server could not be reached since %d days to check for new updates." : "De updateserver kon sinds %d dagen niet meer worden bereikt om op updates te controleren.", "Please check the Nextcloud and server log files for errors." : "Controleer de Nextcloud en server logbestanden op fouten.", "Update to %1$s is available." : "Update naar %1$s is beschikbaar.", "Update for %1$s to version %2$s is available." : "Update voor %1$s naar versie %2$s is beschikbaar.", "Update for {app} to version %s is available." : "Update voor {app} naar versie %s is beschikbaar.", + "Update notification" : "Bijwerkmelding", "A new version is available: %s" : "Er is een nieuwe versie beschikbaar: %s", - "Open updater" : "Open updater", "Download now" : "Download nu", - "The update check is not yet finished. Please refresh the page." : "De update controle is niet afgerond. Ververs de pagina.", - "Your version is up to date." : "Je versie is up to date.", "Checked on %s" : "Gecontroleerd op %s", - "A non-default update server is in use to be checked for updates:" : "Een niet-standaard updateserver is in gebruik om te worden gecontroleerd op updates:", - "Update channel:" : "Bijwerkkanaal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Je kunt altijd updaten naar een nieuwere versie of experimenteel kanaal. Maar terug naar een oudere versie of een stabieler kanaal is niet mogelijk.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Houd er rekening mee dat het enige tijd kan duren voordat na een nieuwe versie hier verschijnt. We verspreiden nieuwe versies over de tijd aan onze gebruikers en soms slaan we een versie over als er problemen zijn gevonden.", - "Notify members of the following groups about available updates:" : "Geef een melding over beschikbare updates aan leden van de volgende groepen:", - "Only notification for app updates are available." : "Er zijn alleen meldingen voor apps beschikbaar.", "The selected update channel makes dedicated notifications for the server obsolete." : "Het geselecteerde updatekanaal maakt overbodig om serverspecifieke meldingen apart te genereren.", - "The selected update channel does not support updates of the server." : "Het geselecteerde updatekanaal ondersteunt geen updates voor de server." + "The update check is not yet finished. Please refresh the page." : "De update controle is niet afgerond. Ververs de pagina." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/nl.json b/apps/updatenotification/l10n/nl.json index 176e3ff28c554..719f15a39cdc1 100644 --- a/apps/updatenotification/l10n/nl.json +++ b/apps/updatenotification/l10n/nl.json @@ -1,26 +1,35 @@ { "translations": { - "Update notifications" : "Bijwerken meldingen", - "Could not start updater, please try the manual update" : "Kon de updater niet starten, probeer alsjeblieft de handmatige update", "{version} is available. Get more information on how to update." : "{version} is beschikbaar. Meer informatie over het bijwerken.", + "Apps with available updates" : "Apps met beschikbare updates", + "Open updater" : "Open updater", + "Your version is up to date." : "Je versie is up to date.", + "A non-default update server is in use to be checked for updates:" : "Een niet-standaard updateserver is in gebruik om te worden gecontroleerd op updates:", + "Update channel:" : "Bijwerkkanaal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Je kunt altijd updaten naar een nieuwere versie of experimenteel kanaal. Maar terug naar een oudere versie of een stabieler kanaal is niet mogelijk.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Houd er rekening mee dat het enige tijd kan duren voordat na een nieuwe versie hier verschijnt. We verspreiden nieuwe versies over de tijd aan onze gebruikers en soms slaan we een versie over als er problemen zijn gevonden.", + "Notify members of the following groups about available updates:" : "Geef een melding over beschikbare updates aan leden van de volgende groepen:", + "Only notification for app updates are available." : "Er zijn alleen meldingen voor apps beschikbaar.", + "The selected update channel does not support updates of the server." : "Het geselecteerde updatekanaal ondersteunt geen updates voor de server.", + "A new version is available: {newVersionString}" : "Er is een nieuwe versie beschikbaar: {newVersionString}", + "Checked on {lastCheckedDate}" : "Gecontroleerd op {lastCheckedDate}", + "Checking apps for compatible updates" : "Apps controleren op compatibele updates", + "Please make sure your config.php does not set appstoreenabled to false." : "Zorg ervoor dat je in config.php appstoreenabled niet op 'false' zet.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Kan niet verbinden met de appstore of de appstore gaf geen updates terug. Zoek handmatig naar updates of verifieer dat je server internettoegang heeft en kan verbinden met de appstore.", + "All apps have an update for this version available" : "Alle apps hebben een update voor deze versie beschikbaar", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n app heeft geen update voor deze versie beschikbaar","%n apps hebben geen update voor deze versie beschikbaar"], + "Could not start updater, please try the manual update" : "Kon de updater niet starten, probeer alsjeblieft de handmatige update", + "Update notifications" : "Bijwerken meldingen", "Channel updated" : "Kanaal bijgewerkt", "The update server could not be reached since %d days to check for new updates." : "De updateserver kon sinds %d dagen niet meer worden bereikt om op updates te controleren.", "Please check the Nextcloud and server log files for errors." : "Controleer de Nextcloud en server logbestanden op fouten.", "Update to %1$s is available." : "Update naar %1$s is beschikbaar.", "Update for %1$s to version %2$s is available." : "Update voor %1$s naar versie %2$s is beschikbaar.", "Update for {app} to version %s is available." : "Update voor {app} naar versie %s is beschikbaar.", + "Update notification" : "Bijwerkmelding", "A new version is available: %s" : "Er is een nieuwe versie beschikbaar: %s", - "Open updater" : "Open updater", "Download now" : "Download nu", - "The update check is not yet finished. Please refresh the page." : "De update controle is niet afgerond. Ververs de pagina.", - "Your version is up to date." : "Je versie is up to date.", "Checked on %s" : "Gecontroleerd op %s", - "A non-default update server is in use to be checked for updates:" : "Een niet-standaard updateserver is in gebruik om te worden gecontroleerd op updates:", - "Update channel:" : "Bijwerkkanaal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Je kunt altijd updaten naar een nieuwere versie of experimenteel kanaal. Maar terug naar een oudere versie of een stabieler kanaal is niet mogelijk.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Houd er rekening mee dat het enige tijd kan duren voordat na een nieuwe versie hier verschijnt. We verspreiden nieuwe versies over de tijd aan onze gebruikers en soms slaan we een versie over als er problemen zijn gevonden.", - "Notify members of the following groups about available updates:" : "Geef een melding over beschikbare updates aan leden van de volgende groepen:", - "Only notification for app updates are available." : "Er zijn alleen meldingen voor apps beschikbaar.", "The selected update channel makes dedicated notifications for the server obsolete." : "Het geselecteerde updatekanaal maakt overbodig om serverspecifieke meldingen apart te genereren.", - "The selected update channel does not support updates of the server." : "Het geselecteerde updatekanaal ondersteunt geen updates voor de server." + "The update check is not yet finished. Please refresh the page." : "De update controle is niet afgerond. Ververs de pagina." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/pl.js b/apps/updatenotification/l10n/pl.js index 34f095b654099..f9f0b44d2234f 100644 --- a/apps/updatenotification/l10n/pl.js +++ b/apps/updatenotification/l10n/pl.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Powiadomienia o aktualizacji", - "Could not start updater, please try the manual update" : "Nie można uruchomić aktualizacji, spróbuj z aktualizować ręcznie", "{version} is available. Get more information on how to update." : "Wersja {version} jest dostępna. Dowiedz się jak zaktualizować.", + "Open updater" : "Otwórz aktualizator", + "Your version is up to date." : "Posiadasz aktualną wersję.", + "A non-default update server is in use to be checked for updates:" : "Do sprawdzania aktualizacji nie są używane domyślne serwery aktualizacji:", + "Update channel:" : "Kanał aktualizacji:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Zawsze możesz zaktualizować do nowszej wersji z eksperymentalnego kanału. Ale nigdy nie możesz powrócić do wersji ze stabilnego kanału.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Zauważ, że po opublikowaniu nowej wersji może minąć trochę czasu, zanim pojawi się ona tutaj. Publikację dla naszych użytkowników rozkładamy w czasie, a czasami pomijamy wersję, gdy znajdziemy jakieś błędy.", + "Notify members of the following groups about available updates:" : "Powiadom członków następujących grup o dostępnych aktualizacjach: ", + "Only notification for app updates are available." : "Tylko powiadomienia o aktualizacjach aplikacji są dostępne.", + "The selected update channel does not support updates of the server." : "Wybrany kanał aktualizacji nie obsługuje danego serwera.", + "Could not start updater, please try the manual update" : "Nie można uruchomić aktualizacji, spróbuj z aktualizować ręcznie", + "Update notifications" : "Powiadomienia o aktualizacji", "Channel updated" : "Kanał zaktualizowany", "The update server could not be reached since %d days to check for new updates." : "Połączenie z serwerem z aktualizacjami w celu sprawdzenia nowych aktualizacji nie powiodło się od %d dni.", "Please check the Nextcloud and server log files for errors." : "Proszę sprawdzić pliki z logami Nextcloud i serwera w celu znalezienia błędów.", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "Dostępna jest aktualizacja dla %1$s do wersji %2$s", "Update for {app} to version %s is available." : "Aktualizacja dla {app} do wersji %s jest dostępna.", "A new version is available: %s" : "Dostępna jest nowa wersja: %s", - "Open updater" : "Otwórz aktualizator", "Download now" : "Pobierz teraz", - "The update check is not yet finished. Please refresh the page." : "Sprawdzanie aktualizacji nie zostało jeszcze zakończone. Odśwież stronę.", - "Your version is up to date." : "Posiadasz aktualną wersję.", "Checked on %s" : "Sprawdzono: %s", - "A non-default update server is in use to be checked for updates:" : "Do sprawdzania aktualizacji nie są używane domyślne serwery aktualizacji:", - "Update channel:" : "Kanał aktualizacji:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Zawsze możesz zaktualizować do nowszej wersji z eksperymentalnego kanału. Ale nigdy nie możesz powrócić do wersji ze stabilnego kanału.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Zauważ, że po opublikowaniu nowej wersji może minąć trochę czasu, zanim pojawi się ona tutaj. Publikację dla naszych użytkowników rozkładamy w czasie, a czasami pomijamy wersję, gdy znajdziemy jakieś błędy.", - "Notify members of the following groups about available updates:" : "Powiadom członków następujących grup o dostępnych aktualizacjach: ", - "Only notification for app updates are available." : "Tylko powiadomienia o aktualizacjach aplikacji są dostępne.", "The selected update channel makes dedicated notifications for the server obsolete." : "Wybrany kanał aktualizacji dla dedykowanych powiadomień dla serwera jest nieaktualny.", - "The selected update channel does not support updates of the server." : "Wybrany kanał aktualizacji nie obsługuje danego serwera." + "The update check is not yet finished. Please refresh the page." : "Sprawdzanie aktualizacji nie zostało jeszcze zakończone. Odśwież stronę." }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/updatenotification/l10n/pl.json b/apps/updatenotification/l10n/pl.json index d90d6afdcd616..9353de55e1eda 100644 --- a/apps/updatenotification/l10n/pl.json +++ b/apps/updatenotification/l10n/pl.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "Powiadomienia o aktualizacji", - "Could not start updater, please try the manual update" : "Nie można uruchomić aktualizacji, spróbuj z aktualizować ręcznie", "{version} is available. Get more information on how to update." : "Wersja {version} jest dostępna. Dowiedz się jak zaktualizować.", + "Open updater" : "Otwórz aktualizator", + "Your version is up to date." : "Posiadasz aktualną wersję.", + "A non-default update server is in use to be checked for updates:" : "Do sprawdzania aktualizacji nie są używane domyślne serwery aktualizacji:", + "Update channel:" : "Kanał aktualizacji:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Zawsze możesz zaktualizować do nowszej wersji z eksperymentalnego kanału. Ale nigdy nie możesz powrócić do wersji ze stabilnego kanału.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Zauważ, że po opublikowaniu nowej wersji może minąć trochę czasu, zanim pojawi się ona tutaj. Publikację dla naszych użytkowników rozkładamy w czasie, a czasami pomijamy wersję, gdy znajdziemy jakieś błędy.", + "Notify members of the following groups about available updates:" : "Powiadom członków następujących grup o dostępnych aktualizacjach: ", + "Only notification for app updates are available." : "Tylko powiadomienia o aktualizacjach aplikacji są dostępne.", + "The selected update channel does not support updates of the server." : "Wybrany kanał aktualizacji nie obsługuje danego serwera.", + "Could not start updater, please try the manual update" : "Nie można uruchomić aktualizacji, spróbuj z aktualizować ręcznie", + "Update notifications" : "Powiadomienia o aktualizacji", "Channel updated" : "Kanał zaktualizowany", "The update server could not be reached since %d days to check for new updates." : "Połączenie z serwerem z aktualizacjami w celu sprawdzenia nowych aktualizacji nie powiodło się od %d dni.", "Please check the Nextcloud and server log files for errors." : "Proszę sprawdzić pliki z logami Nextcloud i serwera w celu znalezienia błędów.", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "Dostępna jest aktualizacja dla %1$s do wersji %2$s", "Update for {app} to version %s is available." : "Aktualizacja dla {app} do wersji %s jest dostępna.", "A new version is available: %s" : "Dostępna jest nowa wersja: %s", - "Open updater" : "Otwórz aktualizator", "Download now" : "Pobierz teraz", - "The update check is not yet finished. Please refresh the page." : "Sprawdzanie aktualizacji nie zostało jeszcze zakończone. Odśwież stronę.", - "Your version is up to date." : "Posiadasz aktualną wersję.", "Checked on %s" : "Sprawdzono: %s", - "A non-default update server is in use to be checked for updates:" : "Do sprawdzania aktualizacji nie są używane domyślne serwery aktualizacji:", - "Update channel:" : "Kanał aktualizacji:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Zawsze możesz zaktualizować do nowszej wersji z eksperymentalnego kanału. Ale nigdy nie możesz powrócić do wersji ze stabilnego kanału.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Zauważ, że po opublikowaniu nowej wersji może minąć trochę czasu, zanim pojawi się ona tutaj. Publikację dla naszych użytkowników rozkładamy w czasie, a czasami pomijamy wersję, gdy znajdziemy jakieś błędy.", - "Notify members of the following groups about available updates:" : "Powiadom członków następujących grup o dostępnych aktualizacjach: ", - "Only notification for app updates are available." : "Tylko powiadomienia o aktualizacjach aplikacji są dostępne.", "The selected update channel makes dedicated notifications for the server obsolete." : "Wybrany kanał aktualizacji dla dedykowanych powiadomień dla serwera jest nieaktualny.", - "The selected update channel does not support updates of the server." : "Wybrany kanał aktualizacji nie obsługuje danego serwera." + "The update check is not yet finished. Please refresh the page." : "Sprawdzanie aktualizacji nie zostało jeszcze zakończone. Odśwież stronę." },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/pt_BR.js b/apps/updatenotification/l10n/pt_BR.js index 4e5f3051faad6..0b473cc5e8345 100644 --- a/apps/updatenotification/l10n/pt_BR.js +++ b/apps/updatenotification/l10n/pt_BR.js @@ -1,28 +1,40 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Notificações de atualização", - "Could not start updater, please try the manual update" : "Não foi possível iniciar o atualizador, tente a atualização manual", "{version} is available. Get more information on how to update." : "{version} está disponível. Obtenha mais informações sobre como atualizar.", + "Apps with available updates" : "Aplicativos com atualizações disponíveis", + "Open updater" : "Abrir atualizador", + "Your version is up to date." : "Sua versão está atualizada.", + "A non-default update server is in use to be checked for updates:" : "Um servidor de atualização não padrão está sendo verificado por atualizações:", + "Update channel:" : "Atualizar para:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Você pode atualizar para uma versão mais nova ou experimental. No entanto, nunca poderá voltar para uma versão estável ou antiga.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Observe que após uma nova versão pode levar um tempo até aparecer aqui. Lançamos novas versões distribuídas ao longo do tempo para nossos usuários e às vezes pulamos uma versão quando problemas são encontrados.", + "Notify members of the following groups about available updates:" : "Notificar membros dos seguintes grupos sobre atualizações disponíveis:", + "Only notification for app updates are available." : "Só está disponível notificação para atualizações de aplicativos.", + "The selected update channel does not support updates of the server." : "A atualização selecionada não fornece suporte a atualizações do servidor.", + "A new version is available: {newVersionString}" : "Uma nova versão está disponível: {newVersionString}", + "Checked on {lastCheckedDate}" : "Verificado em {lastCheckedDate}", + "Checking apps for compatible updates" : "Verificando atualização dos aplicativos", + "Please make sure your config.php does not set appstoreenabled to false." : "Certifique-se de que seu config.php não tenha configurado appstoreenabled para falso.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Não foi possível conectar a appstore ou não havia atualização. Procure manualmente por atualizações ou verifique se o servidor tem acesso à internet.", + "All apps have an update for this version available" : "Todos os aplicativos tem uma atualização disponível", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n aplicativo não tem atualização disponível","%n aplicativos tem uma atualização disponível"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "produção sempre fornecerá o nível de patch mais recente, mas não será atualizada para a próxima versão principal imediatamente. Essa atualização geralmente acontece com o segundo lançamento menor (x.0.2).", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "estável é a versão estável mais recente. Ela é adequada para uso em produção e sempre será atualizada para a versão principal mais recente.", + "beta is a pre-release version only for testing new features, not for production environments." : "beta é uma versão de pré-lançamento apenas para testar novos recursos, não para ambientes de produção.", + "Could not start updater, please try the manual update" : "Não foi possível iniciar o atualizador, tente a atualização manual", + "Update notifications" : "Notificações de atualização", "Channel updated" : "Canal atualizado", "The update server could not be reached since %d days to check for new updates." : "O servidor de atualização não foi encontrado já há %d dias para verificar por novas atualizações.", "Please check the Nextcloud and server log files for errors." : "Verifique se há erros nos arquivos de log do servidor e do Nextcloud ", "Update to %1$s is available." : "Atualização para %1$s está disponível.", "Update for %1$s to version %2$s is available." : "Atualização de %1$s para versão %2$s está disponível.", "Update for {app} to version %s is available." : "Atualização para {app} para a versão %s está disponível.", + "Update notification" : "Notificação de atualização", "A new version is available: %s" : "Uma nova versão está disponível: %s", - "Open updater" : "Abrir atualizador", "Download now" : "Baixar agora", - "The update check is not yet finished. Please refresh the page." : "A verificação de atualização ainda não acabou. Atualize a página.", - "Your version is up to date." : "Sua versão está atualizada.", "Checked on %s" : "Verificada em %s", - "A non-default update server is in use to be checked for updates:" : "Um servidor de atualização não padrão está sendo verificado por atualizações:", - "Update channel:" : "Atualizar para:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Você pode atualizar para uma versão mais nova ou experimental. No entanto, nunca poderá voltar para uma versão estável ou antiga.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Observe que após uma nova versão pode levar um tempo até aparecer aqui. Lançamos novas versões distribuídas ao longo do tempo para nossos usuários e às vezes pulamos uma versão quando problemas são encontrados.", - "Notify members of the following groups about available updates:" : "Notificar membros dos seguintes grupos sobre atualizações disponíveis:", - "Only notification for app updates are available." : "Só está disponível notificação para atualizações de aplicativos.", "The selected update channel makes dedicated notifications for the server obsolete." : "A atualização selecionada fornece notificações dedicadas para o servidor desatualizado.", - "The selected update channel does not support updates of the server." : "A atualização selecionada não fornece suporte a atualizações do servidor." + "The update check is not yet finished. Please refresh the page." : "A verificação de atualização ainda não acabou. Atualize a página." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/updatenotification/l10n/pt_BR.json b/apps/updatenotification/l10n/pt_BR.json index c045786cc7b6e..715e6569d1dc9 100644 --- a/apps/updatenotification/l10n/pt_BR.json +++ b/apps/updatenotification/l10n/pt_BR.json @@ -1,26 +1,38 @@ { "translations": { - "Update notifications" : "Notificações de atualização", - "Could not start updater, please try the manual update" : "Não foi possível iniciar o atualizador, tente a atualização manual", "{version} is available. Get more information on how to update." : "{version} está disponível. Obtenha mais informações sobre como atualizar.", + "Apps with available updates" : "Aplicativos com atualizações disponíveis", + "Open updater" : "Abrir atualizador", + "Your version is up to date." : "Sua versão está atualizada.", + "A non-default update server is in use to be checked for updates:" : "Um servidor de atualização não padrão está sendo verificado por atualizações:", + "Update channel:" : "Atualizar para:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Você pode atualizar para uma versão mais nova ou experimental. No entanto, nunca poderá voltar para uma versão estável ou antiga.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Observe que após uma nova versão pode levar um tempo até aparecer aqui. Lançamos novas versões distribuídas ao longo do tempo para nossos usuários e às vezes pulamos uma versão quando problemas são encontrados.", + "Notify members of the following groups about available updates:" : "Notificar membros dos seguintes grupos sobre atualizações disponíveis:", + "Only notification for app updates are available." : "Só está disponível notificação para atualizações de aplicativos.", + "The selected update channel does not support updates of the server." : "A atualização selecionada não fornece suporte a atualizações do servidor.", + "A new version is available: {newVersionString}" : "Uma nova versão está disponível: {newVersionString}", + "Checked on {lastCheckedDate}" : "Verificado em {lastCheckedDate}", + "Checking apps for compatible updates" : "Verificando atualização dos aplicativos", + "Please make sure your config.php does not set appstoreenabled to false." : "Certifique-se de que seu config.php não tenha configurado appstoreenabled para falso.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Não foi possível conectar a appstore ou não havia atualização. Procure manualmente por atualizações ou verifique se o servidor tem acesso à internet.", + "All apps have an update for this version available" : "Todos os aplicativos tem uma atualização disponível", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n aplicativo não tem atualização disponível","%n aplicativos tem uma atualização disponível"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "produção sempre fornecerá o nível de patch mais recente, mas não será atualizada para a próxima versão principal imediatamente. Essa atualização geralmente acontece com o segundo lançamento menor (x.0.2).", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "estável é a versão estável mais recente. Ela é adequada para uso em produção e sempre será atualizada para a versão principal mais recente.", + "beta is a pre-release version only for testing new features, not for production environments." : "beta é uma versão de pré-lançamento apenas para testar novos recursos, não para ambientes de produção.", + "Could not start updater, please try the manual update" : "Não foi possível iniciar o atualizador, tente a atualização manual", + "Update notifications" : "Notificações de atualização", "Channel updated" : "Canal atualizado", "The update server could not be reached since %d days to check for new updates." : "O servidor de atualização não foi encontrado já há %d dias para verificar por novas atualizações.", "Please check the Nextcloud and server log files for errors." : "Verifique se há erros nos arquivos de log do servidor e do Nextcloud ", "Update to %1$s is available." : "Atualização para %1$s está disponível.", "Update for %1$s to version %2$s is available." : "Atualização de %1$s para versão %2$s está disponível.", "Update for {app} to version %s is available." : "Atualização para {app} para a versão %s está disponível.", + "Update notification" : "Notificação de atualização", "A new version is available: %s" : "Uma nova versão está disponível: %s", - "Open updater" : "Abrir atualizador", "Download now" : "Baixar agora", - "The update check is not yet finished. Please refresh the page." : "A verificação de atualização ainda não acabou. Atualize a página.", - "Your version is up to date." : "Sua versão está atualizada.", "Checked on %s" : "Verificada em %s", - "A non-default update server is in use to be checked for updates:" : "Um servidor de atualização não padrão está sendo verificado por atualizações:", - "Update channel:" : "Atualizar para:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Você pode atualizar para uma versão mais nova ou experimental. No entanto, nunca poderá voltar para uma versão estável ou antiga.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Observe que após uma nova versão pode levar um tempo até aparecer aqui. Lançamos novas versões distribuídas ao longo do tempo para nossos usuários e às vezes pulamos uma versão quando problemas são encontrados.", - "Notify members of the following groups about available updates:" : "Notificar membros dos seguintes grupos sobre atualizações disponíveis:", - "Only notification for app updates are available." : "Só está disponível notificação para atualizações de aplicativos.", "The selected update channel makes dedicated notifications for the server obsolete." : "A atualização selecionada fornece notificações dedicadas para o servidor desatualizado.", - "The selected update channel does not support updates of the server." : "A atualização selecionada não fornece suporte a atualizações do servidor." + "The update check is not yet finished. Please refresh the page." : "A verificação de atualização ainda não acabou. Atualize a página." },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/ru.js b/apps/updatenotification/l10n/ru.js index 39eab95a31add..f598b4f794e13 100644 --- a/apps/updatenotification/l10n/ru.js +++ b/apps/updatenotification/l10n/ru.js @@ -1,28 +1,37 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Уведомления об обновлениях", - "Could not start updater, please try the manual update" : "Не удалось обновить. Пожалуйста, выполните обновление вручную.", "{version} is available. Get more information on how to update." : "Доступна версия {version}. Получить дополнительную информацию о порядке обновления.", + "Apps with available updates" : "Приложения с доступными обновлениями", + "Open updater" : "Открыть окно обновления", + "Your version is up to date." : "Версия не требует обновления.", + "A non-default update server is in use to be checked for updates:" : "Не сервер по умолчанию используется как сервер для проверки обновлений:", + "Update channel:" : "Канал обновлений:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Вы всегда можете переключиться на экспериментальный канал обновлений для получения новейших версий. Но учтите, что вы не сможете переключиться обратно на канал обновлений для стабильных версий.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Обратите внимание, что с момента выпуска новой версии до её появления здесь может пройти некоторое время. Мы растягиваем во времени распространение новых версий и иногда, при обнаружении проблем, пропускаем версию.", + "Notify members of the following groups about available updates:" : "Уведомить членов следующих групп о наличии доступных обновлений:", + "Only notification for app updates are available." : "Только уведомления об обновлении приложений доступны.", + "The selected update channel does not support updates of the server." : "Выбранный канал обновлений не поддерживает обновление сервера.", + "A new version is available: {newVersionString}" : "Доступна новая версия: {newVersionString} ", + "Checked on {lastCheckedDate}" : "Проверялось {lastCheckedDate}", + "Checking apps for compatible updates" : "Проверка приложений на совместимые обновления", + "Please make sure your config.php does not set appstoreenabled to false." : "Убедитесь, что значением параметра appstoreenabled в файле «config.php» не является «false».", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Не удалось установить соединение с магазином приложений, либо магазин приложений не предоставляет информации об обновлениях. Выполните поиск обновлений вручную, или убедитесь, что сервер имеет подключение к Интернет и магазин приложений доступен.", + "All apps have an update for this version available" : "Все приложения имеют доступные обновления для этой версии", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n приложение не имеет доступного обновления для этой версии","%n приложений не имеют доступные обновления для этой версии","%n приложений не имеют доступные обновления для этой версии","%n приложений не имеют доступные обновления для этой версии"], + "Could not start updater, please try the manual update" : "Не удалось обновить. Выполните обновление вручную.", + "Update notifications" : "Уведомления об обновлениях", "Channel updated" : "Канал обновлен.", "The update server could not be reached since %d days to check for new updates." : "Сервер обновлений недоступен для проверки наличия обновлений дней: %d.", - "Please check the Nextcloud and server log files for errors." : "Проверьте наличие ошибок в файлах журналов Nextcloud и сервера.", + "Please check the Nextcloud and server log files for errors." : "Проверьте наличие ошибок в файлах журналов Nextcloud и сервера.", "Update to %1$s is available." : "Доступно обновление до версии %1$s.", "Update for %1$s to version %2$s is available." : "Для приложения «%1$s» доступно обновление до версии %2$s.", "Update for {app} to version %s is available." : "Для приложения «{app}» доступно обновление до версии %s.", + "Update notification" : "Уведомление о новой версии", "A new version is available: %s" : "Доступна новая версия: %s", - "Open updater" : "Открыть окно обновления", "Download now" : "Скачать сейчас", - "The update check is not yet finished. Please refresh the page." : "Проверка обновлений ещё не закончена. Пожалуйста обновите страницу.", - "Your version is up to date." : "Версия не требует обновления.", "Checked on %s" : "Проверено %s", - "A non-default update server is in use to be checked for updates:" : "Не сервер по умолчанию используется как сервер для проверки обновлений:", - "Update channel:" : "Канал обновлений:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Вы всегда можете переключиться на экспериментальный канал обновлений для получения новейших версий. Но учтите, что вы не сможете переключиться обратно на канал обновлений для стабильных версий.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Обратите внимание, что от момента выпуска новой версии до её появления здесь может пройти некоторое время. Мы растягиваем во времени распространение новых версий и иногда, при обнаружении проблем, пропускаем версию.", - "Notify members of the following groups about available updates:" : "Уведомить членов следующих групп о наличии доступных обновлений:", - "Only notification for app updates are available." : "Только уведомления об обновлении приложений доступны.", "The selected update channel makes dedicated notifications for the server obsolete." : "Выбранный канал обновлений высылает специальные уведомления, если сервер устарел.", - "The selected update channel does not support updates of the server." : "Выбранный канал обновлений не поддерживает обновление сервера." + "The update check is not yet finished. Please refresh the page." : "Проверка обновлений ещё не закончена. Пожалуйста обновите страницу." }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/apps/updatenotification/l10n/ru.json b/apps/updatenotification/l10n/ru.json index 182f7967b0b60..05dacfa2ea084 100644 --- a/apps/updatenotification/l10n/ru.json +++ b/apps/updatenotification/l10n/ru.json @@ -1,26 +1,35 @@ { "translations": { - "Update notifications" : "Уведомления об обновлениях", - "Could not start updater, please try the manual update" : "Не удалось обновить. Пожалуйста, выполните обновление вручную.", "{version} is available. Get more information on how to update." : "Доступна версия {version}. Получить дополнительную информацию о порядке обновления.", + "Apps with available updates" : "Приложения с доступными обновлениями", + "Open updater" : "Открыть окно обновления", + "Your version is up to date." : "Версия не требует обновления.", + "A non-default update server is in use to be checked for updates:" : "Не сервер по умолчанию используется как сервер для проверки обновлений:", + "Update channel:" : "Канал обновлений:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Вы всегда можете переключиться на экспериментальный канал обновлений для получения новейших версий. Но учтите, что вы не сможете переключиться обратно на канал обновлений для стабильных версий.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Обратите внимание, что с момента выпуска новой версии до её появления здесь может пройти некоторое время. Мы растягиваем во времени распространение новых версий и иногда, при обнаружении проблем, пропускаем версию.", + "Notify members of the following groups about available updates:" : "Уведомить членов следующих групп о наличии доступных обновлений:", + "Only notification for app updates are available." : "Только уведомления об обновлении приложений доступны.", + "The selected update channel does not support updates of the server." : "Выбранный канал обновлений не поддерживает обновление сервера.", + "A new version is available: {newVersionString}" : "Доступна новая версия: {newVersionString} ", + "Checked on {lastCheckedDate}" : "Проверялось {lastCheckedDate}", + "Checking apps for compatible updates" : "Проверка приложений на совместимые обновления", + "Please make sure your config.php does not set appstoreenabled to false." : "Убедитесь, что значением параметра appstoreenabled в файле «config.php» не является «false».", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Не удалось установить соединение с магазином приложений, либо магазин приложений не предоставляет информации об обновлениях. Выполните поиск обновлений вручную, или убедитесь, что сервер имеет подключение к Интернет и магазин приложений доступен.", + "All apps have an update for this version available" : "Все приложения имеют доступные обновления для этой версии", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n приложение не имеет доступного обновления для этой версии","%n приложений не имеют доступные обновления для этой версии","%n приложений не имеют доступные обновления для этой версии","%n приложений не имеют доступные обновления для этой версии"], + "Could not start updater, please try the manual update" : "Не удалось обновить. Выполните обновление вручную.", + "Update notifications" : "Уведомления об обновлениях", "Channel updated" : "Канал обновлен.", "The update server could not be reached since %d days to check for new updates." : "Сервер обновлений недоступен для проверки наличия обновлений дней: %d.", - "Please check the Nextcloud and server log files for errors." : "Проверьте наличие ошибок в файлах журналов Nextcloud и сервера.", + "Please check the Nextcloud and server log files for errors." : "Проверьте наличие ошибок в файлах журналов Nextcloud и сервера.", "Update to %1$s is available." : "Доступно обновление до версии %1$s.", "Update for %1$s to version %2$s is available." : "Для приложения «%1$s» доступно обновление до версии %2$s.", "Update for {app} to version %s is available." : "Для приложения «{app}» доступно обновление до версии %s.", + "Update notification" : "Уведомление о новой версии", "A new version is available: %s" : "Доступна новая версия: %s", - "Open updater" : "Открыть окно обновления", "Download now" : "Скачать сейчас", - "The update check is not yet finished. Please refresh the page." : "Проверка обновлений ещё не закончена. Пожалуйста обновите страницу.", - "Your version is up to date." : "Версия не требует обновления.", "Checked on %s" : "Проверено %s", - "A non-default update server is in use to be checked for updates:" : "Не сервер по умолчанию используется как сервер для проверки обновлений:", - "Update channel:" : "Канал обновлений:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Вы всегда можете переключиться на экспериментальный канал обновлений для получения новейших версий. Но учтите, что вы не сможете переключиться обратно на канал обновлений для стабильных версий.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Обратите внимание, что от момента выпуска новой версии до её появления здесь может пройти некоторое время. Мы растягиваем во времени распространение новых версий и иногда, при обнаружении проблем, пропускаем версию.", - "Notify members of the following groups about available updates:" : "Уведомить членов следующих групп о наличии доступных обновлений:", - "Only notification for app updates are available." : "Только уведомления об обновлении приложений доступны.", "The selected update channel makes dedicated notifications for the server obsolete." : "Выбранный канал обновлений высылает специальные уведомления, если сервер устарел.", - "The selected update channel does not support updates of the server." : "Выбранный канал обновлений не поддерживает обновление сервера." + "The update check is not yet finished. Please refresh the page." : "Проверка обновлений ещё не закончена. Пожалуйста обновите страницу." },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/sk.js b/apps/updatenotification/l10n/sk.js index 54b68f19418d2..7777f9de63e3e 100644 --- a/apps/updatenotification/l10n/sk.js +++ b/apps/updatenotification/l10n/sk.js @@ -1,28 +1,30 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Upozornenia aktualizácií", - "Could not start updater, please try the manual update" : "Nebolo možné spustiť aktualizátor, skúste prosím manuálnu aktualizáciu", "{version} is available. Get more information on how to update." : "{version} je dostupná. Získajte viac informácií o postupe aktualizácie.", + "Open updater" : "Otvoriť aktualizátor", + "Your version is up to date." : "Vaša verzia je atuálna.", + "A non-default update server is in use to be checked for updates:" : "Pre kontrolu aktualizácií sa používa iný než predvolený server:", + "Update channel:" : "Aktualizačný kanál:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Vždy je možné prejsť na novšiu verziu / experimentálny kanál. Ale následne nie je možné prejsť naspäť na staršiu verziu / stabilnejší kanál.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Upozorňujeme, že po oficiálnom vydaní novej verzie môže chvíľu trvať, než sa tu objaví. Nové verzie medzi našich používateľov distribuujeme priebežne rozložené v čase a ak sa nájdu chyby, niekedy danú verziu preskočíme.", + "Notify members of the following groups about available updates:" : "Upozorňovať členov nasledujúcich skupín o dostupných aktualizáciach:", + "Only notification for app updates are available." : "Sú dostupné upozornenia iba pre aktualizácie aplikácií.", + "The selected update channel does not support updates of the server." : "Vybraný aktualizačný kanál nepodporuje aktualizácie servera.", + "A new version is available: {newVersionString}" : "Je dostupná nová verzia: {newVersionString}", + "Could not start updater, please try the manual update" : "Nebolo možné spustiť aktualizátor, skúste prosím manuálnu aktualizáciu", + "Update notifications" : "Aktualizovať hlásenia", "Channel updated" : "Kanál bol aktualizovaný", "The update server could not be reached since %d days to check for new updates." : "Aktualizačný server je nedostupný %d dní pre kontrolu aktualizácií.", "Please check the Nextcloud and server log files for errors." : "Chyby skontrolujte prosím v logoch Nextcloud a webového servera", "Update to %1$s is available." : "Je dostupná aktualizácia na verziu %1$s.", "Update for %1$s to version %2$s is available." : "Pre %1$s je dostupná aktualizácia na verziu %2$s.", "Update for {app} to version %s is available." : "Pre {app} je dostupná aktualizácia na verziu %s.", + "Update notification" : "Aktualizovať hlásenie", "A new version is available: %s" : "Je dostupná nová verzia: %s", - "Open updater" : "Otvoriť aktualizátor", "Download now" : "Stiahnuť teraz", - "The update check is not yet finished. Please refresh the page." : "Kontrola aktualizácií ešte neskončila. Obnovte prosím stránku.", - "Your version is up to date." : "Vaša verzia je atuálna.", "Checked on %s" : "Skontrolované %s", - "A non-default update server is in use to be checked for updates:" : "Pre kontrolu aktualizácií sa používa iný než predvolený server:", - "Update channel:" : "Aktualizačný kanál:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Vždy je možné prejsť na novšiu verziu / experimentálny kanál. Ale následne nie je možné prejsť naspäť na staršiu verziu / stabilnejší kanál.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Upozorňujeme, že po oficiálnom vydaní novej verzie môže chvíľu trvať, než sa tu objaví. Nové verzie medzi našich používateľov distribuujeme priebežne rozložené v čase a ak sa nájdu chyby, niekedy danú verziu preskočíme.", - "Notify members of the following groups about available updates:" : "Upozorňovať členov nasledujúcich skupín o dostupných aktualizáciach:", - "Only notification for app updates are available." : "Sú dostupné upozornenia iba pre aktualizácie aplikácií.", "The selected update channel makes dedicated notifications for the server obsolete." : "Pre vybraný aktualizačný kanál budú priradené upozornenia pre server zastarané.", - "The selected update channel does not support updates of the server." : "Vybraný aktualizačný kanál nepodporuje aktualizácie servera." + "The update check is not yet finished. Please refresh the page." : "Kontrola aktualizácií ešte neskončila. Obnovte prosím stránku." }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/updatenotification/l10n/sk.json b/apps/updatenotification/l10n/sk.json index f11393fd54231..3561bb4db4e5e 100644 --- a/apps/updatenotification/l10n/sk.json +++ b/apps/updatenotification/l10n/sk.json @@ -1,26 +1,28 @@ { "translations": { - "Update notifications" : "Upozornenia aktualizácií", - "Could not start updater, please try the manual update" : "Nebolo možné spustiť aktualizátor, skúste prosím manuálnu aktualizáciu", "{version} is available. Get more information on how to update." : "{version} je dostupná. Získajte viac informácií o postupe aktualizácie.", + "Open updater" : "Otvoriť aktualizátor", + "Your version is up to date." : "Vaša verzia je atuálna.", + "A non-default update server is in use to be checked for updates:" : "Pre kontrolu aktualizácií sa používa iný než predvolený server:", + "Update channel:" : "Aktualizačný kanál:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Vždy je možné prejsť na novšiu verziu / experimentálny kanál. Ale následne nie je možné prejsť naspäť na staršiu verziu / stabilnejší kanál.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Upozorňujeme, že po oficiálnom vydaní novej verzie môže chvíľu trvať, než sa tu objaví. Nové verzie medzi našich používateľov distribuujeme priebežne rozložené v čase a ak sa nájdu chyby, niekedy danú verziu preskočíme.", + "Notify members of the following groups about available updates:" : "Upozorňovať členov nasledujúcich skupín o dostupných aktualizáciach:", + "Only notification for app updates are available." : "Sú dostupné upozornenia iba pre aktualizácie aplikácií.", + "The selected update channel does not support updates of the server." : "Vybraný aktualizačný kanál nepodporuje aktualizácie servera.", + "A new version is available: {newVersionString}" : "Je dostupná nová verzia: {newVersionString}", + "Could not start updater, please try the manual update" : "Nebolo možné spustiť aktualizátor, skúste prosím manuálnu aktualizáciu", + "Update notifications" : "Aktualizovať hlásenia", "Channel updated" : "Kanál bol aktualizovaný", "The update server could not be reached since %d days to check for new updates." : "Aktualizačný server je nedostupný %d dní pre kontrolu aktualizácií.", "Please check the Nextcloud and server log files for errors." : "Chyby skontrolujte prosím v logoch Nextcloud a webového servera", "Update to %1$s is available." : "Je dostupná aktualizácia na verziu %1$s.", "Update for %1$s to version %2$s is available." : "Pre %1$s je dostupná aktualizácia na verziu %2$s.", "Update for {app} to version %s is available." : "Pre {app} je dostupná aktualizácia na verziu %s.", + "Update notification" : "Aktualizovať hlásenie", "A new version is available: %s" : "Je dostupná nová verzia: %s", - "Open updater" : "Otvoriť aktualizátor", "Download now" : "Stiahnuť teraz", - "The update check is not yet finished. Please refresh the page." : "Kontrola aktualizácií ešte neskončila. Obnovte prosím stránku.", - "Your version is up to date." : "Vaša verzia je atuálna.", "Checked on %s" : "Skontrolované %s", - "A non-default update server is in use to be checked for updates:" : "Pre kontrolu aktualizácií sa používa iný než predvolený server:", - "Update channel:" : "Aktualizačný kanál:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Vždy je možné prejsť na novšiu verziu / experimentálny kanál. Ale následne nie je možné prejsť naspäť na staršiu verziu / stabilnejší kanál.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Upozorňujeme, že po oficiálnom vydaní novej verzie môže chvíľu trvať, než sa tu objaví. Nové verzie medzi našich používateľov distribuujeme priebežne rozložené v čase a ak sa nájdu chyby, niekedy danú verziu preskočíme.", - "Notify members of the following groups about available updates:" : "Upozorňovať členov nasledujúcich skupín o dostupných aktualizáciach:", - "Only notification for app updates are available." : "Sú dostupné upozornenia iba pre aktualizácie aplikácií.", "The selected update channel makes dedicated notifications for the server obsolete." : "Pre vybraný aktualizačný kanál budú priradené upozornenia pre server zastarané.", - "The selected update channel does not support updates of the server." : "Vybraný aktualizačný kanál nepodporuje aktualizácie servera." + "The update check is not yet finished. Please refresh the page." : "Kontrola aktualizácií ešte neskončila. Obnovte prosím stránku." },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/sl.js b/apps/updatenotification/l10n/sl.js index 0afc6b007eb66..d299a1748dd05 100644 --- a/apps/updatenotification/l10n/sl.js +++ b/apps/updatenotification/l10n/sl.js @@ -1,9 +1,13 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Posodobi obvestila", - "Could not start updater, please try the manual update" : "Ne morem zagnati samodejne posodobitve, poskusi ročno", "{version} is available. Get more information on how to update." : "Na voljo je nova različica {version}. Na voljo je več podrobnosti o nadgradnji.", + "Your version is up to date." : "Nameščena je najnovejša različica.", + "Update channel:" : "Posodobi kanal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Nadgradnja na višjo različico ali preizkusni kanal je vedno mogoča, ne pa tudi povrnitev na predhodno, bolj stabilno različico.", + "Notify members of the following groups about available updates:" : "Obvestite člane naslednjih skupin o posodobitvah, ki so na voljo:", + "Could not start updater, please try the manual update" : "Ne morem zagnati samodejne posodobitve, poskusi ročno", + "Update notifications" : "Posodobi obvestila", "Channel updated" : "Kanal posodobljen", "Update to %1$s is available." : "Posodobitev na %1$s je na voljo.", "Update for %1$s to version %2$s is available." : "Posodobitev %1$s na različico %2$s je na voljo.", @@ -11,10 +15,6 @@ OC.L10N.register( "A new version is available: %s" : "Na voljo je nova različica: %s", "Open updater" : "Odpri posodabljalnik", "Download now" : "Prejmi zdaj", - "Your version is up to date." : "Nameščena je najnovejša različica.", - "Checked on %s" : "Zadnjič preverjeno %s", - "Update channel:" : "Posodobi kanal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Nadgradnja na višjo različico ali preizkusni kanal je vedno mogoča, ne pa tudi povrnitev na predhodno, bolj stabilno različico.", - "Notify members of the following groups about available updates:" : "Obvestite člane naslednjih skupin o posodobitvah, ki so na voljo:" + "Checked on %s" : "Zadnjič preverjeno %s" }, "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); diff --git a/apps/updatenotification/l10n/sl.json b/apps/updatenotification/l10n/sl.json index e3c9c8741a65c..85ed80802c2e9 100644 --- a/apps/updatenotification/l10n/sl.json +++ b/apps/updatenotification/l10n/sl.json @@ -1,7 +1,11 @@ { "translations": { - "Update notifications" : "Posodobi obvestila", - "Could not start updater, please try the manual update" : "Ne morem zagnati samodejne posodobitve, poskusi ročno", "{version} is available. Get more information on how to update." : "Na voljo je nova različica {version}. Na voljo je več podrobnosti o nadgradnji.", + "Your version is up to date." : "Nameščena je najnovejša različica.", + "Update channel:" : "Posodobi kanal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Nadgradnja na višjo različico ali preizkusni kanal je vedno mogoča, ne pa tudi povrnitev na predhodno, bolj stabilno različico.", + "Notify members of the following groups about available updates:" : "Obvestite člane naslednjih skupin o posodobitvah, ki so na voljo:", + "Could not start updater, please try the manual update" : "Ne morem zagnati samodejne posodobitve, poskusi ročno", + "Update notifications" : "Posodobi obvestila", "Channel updated" : "Kanal posodobljen", "Update to %1$s is available." : "Posodobitev na %1$s je na voljo.", "Update for %1$s to version %2$s is available." : "Posodobitev %1$s na različico %2$s je na voljo.", @@ -9,10 +13,6 @@ "A new version is available: %s" : "Na voljo je nova različica: %s", "Open updater" : "Odpri posodabljalnik", "Download now" : "Prejmi zdaj", - "Your version is up to date." : "Nameščena je najnovejša različica.", - "Checked on %s" : "Zadnjič preverjeno %s", - "Update channel:" : "Posodobi kanal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Nadgradnja na višjo različico ali preizkusni kanal je vedno mogoča, ne pa tudi povrnitev na predhodno, bolj stabilno različico.", - "Notify members of the following groups about available updates:" : "Obvestite člane naslednjih skupin o posodobitvah, ki so na voljo:" + "Checked on %s" : "Zadnjič preverjeno %s" },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/sq.js b/apps/updatenotification/l10n/sq.js index baa982233898f..4e5779aa40630 100644 --- a/apps/updatenotification/l10n/sq.js +++ b/apps/updatenotification/l10n/sq.js @@ -1,9 +1,17 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Njoftime përditësimesh", - "Could not start updater, please try the manual update" : "Nuk mundi të filloj përditësuesi, ju lutemi të provoni përditësimin manual", "{version} is available. Get more information on how to update." : "Është gati {version}. Merrni më tepër informacion se si ta përditësoni.", + "Open updater" : "Hape përditësuesin", + "Your version is up to date." : "Versioni juaj është i përditësuar.", + "Update channel:" : "Kanal përditësimesh:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Mundeni përherë ta përditësoni me një version të ri / kanal eksperimental. Por nuk mund ta ulni kurrë versionin në një version më të qëndrueshëm.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vini re se pas një lëshimi të ri mund të duhet pak kohë para se të shfaqet këtu. Ne hapim versione të reja të shpërndara me kalimin e kohës tek përdoruesit tanë dhe nganjëherë kalojmë një version kur gjenden çështjet.", + "Notify members of the following groups about available updates:" : "Njoftoji anëtarët e grupeve vijues për përditësime të gatshme:", + "Only notification for app updates are available." : "Vetëm njoftime për përditësime aplikacionesh janë të disponueshme.", + "The selected update channel does not support updates of the server." : "Kanali i zgjdhur i përditësimit nuk mbështet përditësime të shvrbyesit.", + "Could not start updater, please try the manual update" : "Nuk mundi të filloj përditësuesi, ju lutemi të provoni përditësimin manual", + "Update notifications" : "Njoftime përditësimesh", "Channel updated" : "Kanali u përditësua", "The update server could not be reached since %d days to check for new updates." : "Përditësimi i serverit nuk mund të arrihej deri sa %dtë kontrollohen për përditësime të reja.", "Please check the Nextcloud and server log files for errors." : "Ju lutemi kontrolloni dosjet e Nextcloud dhe te server log-ut per gabimet", @@ -11,16 +19,8 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "Është gati përditësimi për %1$s në version %2$s.", "Update for {app} to version %s is available." : "Përditësimi për {app} në versionin %s është në dispozicion", "A new version is available: %s" : "Ka gati një version të ri: %s", - "Open updater" : "Hape përditësuesin", "Download now" : "Shkarko tani", - "Your version is up to date." : "Versioni juaj është i përditësuar.", "Checked on %s" : "Kontrolluar më %s", - "Update channel:" : "Kanal përditësimesh:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Mundeni përherë ta përditësoni me një version të ri / kanal eksperimental. Por nuk mund ta ulni kurrë versionin në një version më të qëndrueshëm.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vini re se pas një lëshimi të ri mund të duhet pak kohë para se të shfaqet këtu. Ne hapim versione të reja të shpërndara me kalimin e kohës tek përdoruesit tanë dhe nganjëherë kalojmë një version kur gjenden çështjet.", - "Notify members of the following groups about available updates:" : "Njoftoji anëtarët e grupeve vijues për përditësime të gatshme:", - "Only notification for app updates are available." : "Vetëm njoftime për përditësime aplikacionesh janë të disponueshme.", - "The selected update channel makes dedicated notifications for the server obsolete." : "Kanali i zgjedhur i përditësimit i bën njoftimet për shërbyesin të papërdorshme.", - "The selected update channel does not support updates of the server." : "Kanali i zgjdhur i përditësimit nuk mbështet përditësime të shvrbyesit." + "The selected update channel makes dedicated notifications for the server obsolete." : "Kanali i zgjedhur i përditësimit i bën njoftimet për shërbyesin të papërdorshme." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/sq.json b/apps/updatenotification/l10n/sq.json index 80dc656c35f70..6a98cb02931c6 100644 --- a/apps/updatenotification/l10n/sq.json +++ b/apps/updatenotification/l10n/sq.json @@ -1,7 +1,15 @@ { "translations": { - "Update notifications" : "Njoftime përditësimesh", - "Could not start updater, please try the manual update" : "Nuk mundi të filloj përditësuesi, ju lutemi të provoni përditësimin manual", "{version} is available. Get more information on how to update." : "Është gati {version}. Merrni më tepër informacion se si ta përditësoni.", + "Open updater" : "Hape përditësuesin", + "Your version is up to date." : "Versioni juaj është i përditësuar.", + "Update channel:" : "Kanal përditësimesh:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Mundeni përherë ta përditësoni me një version të ri / kanal eksperimental. Por nuk mund ta ulni kurrë versionin në një version më të qëndrueshëm.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vini re se pas një lëshimi të ri mund të duhet pak kohë para se të shfaqet këtu. Ne hapim versione të reja të shpërndara me kalimin e kohës tek përdoruesit tanë dhe nganjëherë kalojmë një version kur gjenden çështjet.", + "Notify members of the following groups about available updates:" : "Njoftoji anëtarët e grupeve vijues për përditësime të gatshme:", + "Only notification for app updates are available." : "Vetëm njoftime për përditësime aplikacionesh janë të disponueshme.", + "The selected update channel does not support updates of the server." : "Kanali i zgjdhur i përditësimit nuk mbështet përditësime të shvrbyesit.", + "Could not start updater, please try the manual update" : "Nuk mundi të filloj përditësuesi, ju lutemi të provoni përditësimin manual", + "Update notifications" : "Njoftime përditësimesh", "Channel updated" : "Kanali u përditësua", "The update server could not be reached since %d days to check for new updates." : "Përditësimi i serverit nuk mund të arrihej deri sa %dtë kontrollohen për përditësime të reja.", "Please check the Nextcloud and server log files for errors." : "Ju lutemi kontrolloni dosjet e Nextcloud dhe te server log-ut per gabimet", @@ -9,16 +17,8 @@ "Update for %1$s to version %2$s is available." : "Është gati përditësimi për %1$s në version %2$s.", "Update for {app} to version %s is available." : "Përditësimi për {app} në versionin %s është në dispozicion", "A new version is available: %s" : "Ka gati një version të ri: %s", - "Open updater" : "Hape përditësuesin", "Download now" : "Shkarko tani", - "Your version is up to date." : "Versioni juaj është i përditësuar.", "Checked on %s" : "Kontrolluar më %s", - "Update channel:" : "Kanal përditësimesh:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Mundeni përherë ta përditësoni me një version të ri / kanal eksperimental. Por nuk mund ta ulni kurrë versionin në një version më të qëndrueshëm.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vini re se pas një lëshimi të ri mund të duhet pak kohë para se të shfaqet këtu. Ne hapim versione të reja të shpërndara me kalimin e kohës tek përdoruesit tanë dhe nganjëherë kalojmë një version kur gjenden çështjet.", - "Notify members of the following groups about available updates:" : "Njoftoji anëtarët e grupeve vijues për përditësime të gatshme:", - "Only notification for app updates are available." : "Vetëm njoftime për përditësime aplikacionesh janë të disponueshme.", - "The selected update channel makes dedicated notifications for the server obsolete." : "Kanali i zgjedhur i përditësimit i bën njoftimet për shërbyesin të papërdorshme.", - "The selected update channel does not support updates of the server." : "Kanali i zgjdhur i përditësimit nuk mbështet përditësime të shvrbyesit." + "The selected update channel makes dedicated notifications for the server obsolete." : "Kanali i zgjedhur i përditësimit i bën njoftimet për shërbyesin të papërdorshme." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/sr.js b/apps/updatenotification/l10n/sr.js index e47b86840bb09..b7f99f9bbcf1b 100644 --- a/apps/updatenotification/l10n/sr.js +++ b/apps/updatenotification/l10n/sr.js @@ -1,28 +1,40 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Обавештења о ажурирању", - "Could not start updater, please try the manual update" : "Не могу да покренем програм за ажурирање, покушајте ручно ажурирање", "{version} is available. Get more information on how to update." : "Верзија {version} је доступна. Сазнајте како да ажурирате.", + "Apps with available updates" : "Апликације са доступним ажурирањима", + "Open updater" : "Отвори програм за ажурирање", + "Your version is up to date." : "Ваша верзија је ажурна.", + "A non-default update server is in use to be checked for updates:" : "Неподразумевани сервер за ажурирање је коришћен да провери нове верзије:", + "Update channel:" : "Канал за ажурирање:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Увек можете да надоградите на новију верзију/експериментални канал. Али не можете се вратити на стабилни канал.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "После издавања нове верзије, може да прође неко време пре него што се верзија појави овде. Ми избацујемо нове верзије постепено и можемо некад да прескочимо верзију ако наиђемо на проблеме.", + "Notify members of the following groups about available updates:" : "Обавести чланове следећих група о доступности нових верзија:", + "Only notification for app updates are available." : "Доступна су само обавештења о новим верзијама апликација.", + "The selected update channel does not support updates of the server." : "Означени канал за ажурирање не подржава обавештења о новим верзијама.", + "A new version is available: {newVersionString}" : "Доступна је нова верзија: {newVersionString}", + "Checked on {lastCheckedDate}" : "Проверено {lastCheckedDate}", + "Checking apps for compatible updates" : "Проверавам компатибилна ажурирања за апликације", + "Please make sure your config.php does not set appstoreenabled to false." : "Проверите да у config.php фајлу немате appstoreenabled постављено на „false“.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Не могу да се повежем на продавницу апликација или продавница нема ниједно ажурирање. Претражите ручно ажурирања или проверите да ли сервер има везу са интернетом", + "All apps have an update for this version available" : "Све апликације имају доступна ажурирања за ову верзију", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n апликација имају доступна ажурирања за ову верзију","%n апликације имају доступна ажурирања за ову верзију","%n апликација имају доступна ажурирања за ову верзију"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "радна ће увек давати последњи ниво закрпа али неће се одмах ажурирати на следеће главно издање. То ажурирање се углавном обавља по изласку другог мањег издања (x.0.2).", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "стабилна је најновија стабилна верзија. Прикладна за свакодневну радну употребу и увек се ажурира на најновију главну верзију.", + "beta is a pre-release version only for testing new features, not for production environments." : "бета је пред-издање и служи само за тестирање нових могућности, не за свакодневни рад.", + "Could not start updater, please try the manual update" : "Не могу да покренем програм за ажурирање, покушајте ручно ажурирање", + "Update notifications" : "Обавештења о ажурирању", "Channel updated" : "Канал ажуриран", "The update server could not be reached since %d days to check for new updates." : "Сервер за ажурирања није доступан пошто је прошло %d дана од последње провере ажурирања.", "Please check the Nextcloud and server log files for errors." : "Проверите логове од сервера и од Некстклауда за грешке.", "Update to %1$s is available." : "Доступно је ажурирање на %1$s. ", "Update for %1$s to version %2$s is available." : "Доступно је ажурирање апликације %1$s на верзију %2$s.", "Update for {app} to version %s is available." : "Доступно је ажурирање апликације {app} на верзију %s.", + "Update notification" : "Обавештење о ажурирању", "A new version is available: %s" : "Доступна је нова верзија: %s", - "Open updater" : "Отвори програм за ажурирање", "Download now" : "Скини сада", - "The update check is not yet finished. Please refresh the page." : "Провера за новим верзијама још није готова. Освежите страну.", - "Your version is up to date." : "Ваша верзија је ажурна.", "Checked on %s" : "Проверено %s", - "A non-default update server is in use to be checked for updates:" : "Неподразумевани сервер за ажурирање је коришћен да провери нове верзије:", - "Update channel:" : "Канал за ажурирање:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Увек можете да надоградите на новију верзију/експериментални канал. Али не можете се вратити на стабилни канал.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "После издавања нове верзије, може да прође неко време пре него што се верзија појави овде. Ми избацујемо нове верзије постепено и можемо некад да прескочимо верзију ако наиђемо на проблеме.", - "Notify members of the following groups about available updates:" : "Обавести чланове следећих група о доступности нових верзија:", - "Only notification for app updates are available." : "Доступна су само обавештења о новим верзијама апликација.", "The selected update channel makes dedicated notifications for the server obsolete." : "Уз означени канал за ажурирање нема смисла да имате обавештења о новим верзијама.", - "The selected update channel does not support updates of the server." : "Означени канал за ажурирање не подржава обавештења о новим верзијама." + "The update check is not yet finished. Please refresh the page." : "Провера за новим верзијама још није готова. Освежите страну." }, "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/apps/updatenotification/l10n/sr.json b/apps/updatenotification/l10n/sr.json index 70d2143eec584..2c98a97ac14be 100644 --- a/apps/updatenotification/l10n/sr.json +++ b/apps/updatenotification/l10n/sr.json @@ -1,26 +1,38 @@ { "translations": { - "Update notifications" : "Обавештења о ажурирању", - "Could not start updater, please try the manual update" : "Не могу да покренем програм за ажурирање, покушајте ручно ажурирање", "{version} is available. Get more information on how to update." : "Верзија {version} је доступна. Сазнајте како да ажурирате.", + "Apps with available updates" : "Апликације са доступним ажурирањима", + "Open updater" : "Отвори програм за ажурирање", + "Your version is up to date." : "Ваша верзија је ажурна.", + "A non-default update server is in use to be checked for updates:" : "Неподразумевани сервер за ажурирање је коришћен да провери нове верзије:", + "Update channel:" : "Канал за ажурирање:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Увек можете да надоградите на новију верзију/експериментални канал. Али не можете се вратити на стабилни канал.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "После издавања нове верзије, може да прође неко време пре него што се верзија појави овде. Ми избацујемо нове верзије постепено и можемо некад да прескочимо верзију ако наиђемо на проблеме.", + "Notify members of the following groups about available updates:" : "Обавести чланове следећих група о доступности нових верзија:", + "Only notification for app updates are available." : "Доступна су само обавештења о новим верзијама апликација.", + "The selected update channel does not support updates of the server." : "Означени канал за ажурирање не подржава обавештења о новим верзијама.", + "A new version is available: {newVersionString}" : "Доступна је нова верзија: {newVersionString}", + "Checked on {lastCheckedDate}" : "Проверено {lastCheckedDate}", + "Checking apps for compatible updates" : "Проверавам компатибилна ажурирања за апликације", + "Please make sure your config.php does not set appstoreenabled to false." : "Проверите да у config.php фајлу немате appstoreenabled постављено на „false“.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Не могу да се повежем на продавницу апликација или продавница нема ниједно ажурирање. Претражите ручно ажурирања или проверите да ли сервер има везу са интернетом", + "All apps have an update for this version available" : "Све апликације имају доступна ажурирања за ову верзију", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n апликација имају доступна ажурирања за ову верзију","%n апликације имају доступна ажурирања за ову верзију","%n апликација имају доступна ажурирања за ову верзију"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "радна ће увек давати последњи ниво закрпа али неће се одмах ажурирати на следеће главно издање. То ажурирање се углавном обавља по изласку другог мањег издања (x.0.2).", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "стабилна је најновија стабилна верзија. Прикладна за свакодневну радну употребу и увек се ажурира на најновију главну верзију.", + "beta is a pre-release version only for testing new features, not for production environments." : "бета је пред-издање и служи само за тестирање нових могућности, не за свакодневни рад.", + "Could not start updater, please try the manual update" : "Не могу да покренем програм за ажурирање, покушајте ручно ажурирање", + "Update notifications" : "Обавештења о ажурирању", "Channel updated" : "Канал ажуриран", "The update server could not be reached since %d days to check for new updates." : "Сервер за ажурирања није доступан пошто је прошло %d дана од последње провере ажурирања.", "Please check the Nextcloud and server log files for errors." : "Проверите логове од сервера и од Некстклауда за грешке.", "Update to %1$s is available." : "Доступно је ажурирање на %1$s. ", "Update for %1$s to version %2$s is available." : "Доступно је ажурирање апликације %1$s на верзију %2$s.", "Update for {app} to version %s is available." : "Доступно је ажурирање апликације {app} на верзију %s.", + "Update notification" : "Обавештење о ажурирању", "A new version is available: %s" : "Доступна је нова верзија: %s", - "Open updater" : "Отвори програм за ажурирање", "Download now" : "Скини сада", - "The update check is not yet finished. Please refresh the page." : "Провера за новим верзијама још није готова. Освежите страну.", - "Your version is up to date." : "Ваша верзија је ажурна.", "Checked on %s" : "Проверено %s", - "A non-default update server is in use to be checked for updates:" : "Неподразумевани сервер за ажурирање је коришћен да провери нове верзије:", - "Update channel:" : "Канал за ажурирање:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Увек можете да надоградите на новију верзију/експериментални канал. Али не можете се вратити на стабилни канал.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "После издавања нове верзије, може да прође неко време пре него што се верзија појави овде. Ми избацујемо нове верзије постепено и можемо некад да прескочимо верзију ако наиђемо на проблеме.", - "Notify members of the following groups about available updates:" : "Обавести чланове следећих група о доступности нових верзија:", - "Only notification for app updates are available." : "Доступна су само обавештења о новим верзијама апликација.", "The selected update channel makes dedicated notifications for the server obsolete." : "Уз означени канал за ажурирање нема смисла да имате обавештења о новим верзијама.", - "The selected update channel does not support updates of the server." : "Означени канал за ажурирање не подржава обавештења о новим верзијама." + "The update check is not yet finished. Please refresh the page." : "Провера за новим верзијама још није готова. Освежите страну." },"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);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/sv.js b/apps/updatenotification/l10n/sv.js index eefcbfcc687ae..a4e55cc8a196a 100644 --- a/apps/updatenotification/l10n/sv.js +++ b/apps/updatenotification/l10n/sv.js @@ -1,28 +1,30 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Uppdateringsnotifikationer", - "Could not start updater, please try the manual update" : "Kunde inte starta uppdateraren, vänligen försök uppdatera manuellt", "{version} is available. Get more information on how to update." : "{version} är tillgänglig. Få mer information om hur du uppdaterar.", + "Apps with available updates" : "Appar med tillgängliga uppdateringar", + "Open updater" : "Öppna uppdateraren", + "Your version is up to date." : "Din version är uppdaterad.", + "A non-default update server is in use to be checked for updates:" : "En icke-standard updateringsserver används för att kolla efter uppdateringar:", + "Update channel:" : "Uppdateringskanal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan alltid uppdatera till en nyare version / experimentell kanal. Men du kan aldrig nedgradera till en mer stabil kanal.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Notera att när en ny version släppts kan det ta lite tid innan den dyker upp här. Vi rullar ut nya versioner till våra användare vid utspridda tillfällen och hoppar ibland över versioner när problem hittas.", + "Notify members of the following groups about available updates:" : "Notifiera medlemmar i följande grupper om tillgängliga uppdateraingar:", + "Only notification for app updates are available." : "Endast notifikation för app-uppdateringar är tillgängliga.", + "The selected update channel does not support updates of the server." : "Den valda uppdateringskanalen stödjer inte uppdateringar för servern.", + "Could not start updater, please try the manual update" : "Kunde inte starta uppdateraren, vänligen försök uppdatera manuellt", + "Update notifications" : "Uppdateringsnotifikationer", "Channel updated" : "Uppdateringskanal uppdaterad", "The update server could not be reached since %d days to check for new updates." : "Uppdateringsservern kunde inte nås. Senaste kontakt för %d dagar sedan.", "Please check the Nextcloud and server log files for errors." : "Vänligen kontrollera ditt moln och dess serverloggar för felmeddelanden.", "Update to %1$s is available." : "Uppdatering till %1$s är tillgänglig.", "Update for %1$s to version %2$s is available." : "Uppdatering för %1$s till version %2$s är tillgänglig.", "Update for {app} to version %s is available." : "Uppdatering för {app} till version %s är tillgänglig.", + "Update notification" : "Uppdatera notifikation", "A new version is available: %s" : "En ny version är tillgänglig: %s", - "Open updater" : "Öppna uppdateraren", "Download now" : "Ladda ned nu", - "The update check is not yet finished. Please refresh the page." : "Uppdateringskontrollen är inte färdig ännu. Var god uppdatera sidan.", - "Your version is up to date." : "Din version är uppdaterad.", "Checked on %s" : "Senast kontrollerad %s", - "A non-default update server is in use to be checked for updates:" : "En icke-standard updateringsserver används för att kolla efter uppdateringar:", - "Update channel:" : "Uppdateringskanal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan alltid uppdatera till en nyare version / experimentell kanal. Men du kan aldrig nedgradera till en mer stabil kanal.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Notera att när en ny version släppts kan det ta lite tid innan den dyker upp här. Vi rullar ut nya versioner till våra användare vid utspridda tillfällen och hoppar ibland över versioner när problem hittas.", - "Notify members of the following groups about available updates:" : "Notifiera medlemmar i följande grupper om tillgängliga uppdateraingar:", - "Only notification for app updates are available." : "Endast notifikation för app-uppdateringar är tillgängliga.", "The selected update channel makes dedicated notifications for the server obsolete." : "Den valda uppdateringskanalen gör dedikerade notiser för servern förlegade.", - "The selected update channel does not support updates of the server." : "Den valda uppdateringskanalen stödjer inte uppdateringar för servern." + "The update check is not yet finished. Please refresh the page." : "Uppdateringskontrollen är inte färdig ännu. Var god uppdatera sidan." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/sv.json b/apps/updatenotification/l10n/sv.json index da091ee178721..137a825d77e22 100644 --- a/apps/updatenotification/l10n/sv.json +++ b/apps/updatenotification/l10n/sv.json @@ -1,26 +1,28 @@ { "translations": { - "Update notifications" : "Uppdateringsnotifikationer", - "Could not start updater, please try the manual update" : "Kunde inte starta uppdateraren, vänligen försök uppdatera manuellt", "{version} is available. Get more information on how to update." : "{version} är tillgänglig. Få mer information om hur du uppdaterar.", + "Apps with available updates" : "Appar med tillgängliga uppdateringar", + "Open updater" : "Öppna uppdateraren", + "Your version is up to date." : "Din version är uppdaterad.", + "A non-default update server is in use to be checked for updates:" : "En icke-standard updateringsserver används för att kolla efter uppdateringar:", + "Update channel:" : "Uppdateringskanal:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan alltid uppdatera till en nyare version / experimentell kanal. Men du kan aldrig nedgradera till en mer stabil kanal.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Notera att när en ny version släppts kan det ta lite tid innan den dyker upp här. Vi rullar ut nya versioner till våra användare vid utspridda tillfällen och hoppar ibland över versioner när problem hittas.", + "Notify members of the following groups about available updates:" : "Notifiera medlemmar i följande grupper om tillgängliga uppdateraingar:", + "Only notification for app updates are available." : "Endast notifikation för app-uppdateringar är tillgängliga.", + "The selected update channel does not support updates of the server." : "Den valda uppdateringskanalen stödjer inte uppdateringar för servern.", + "Could not start updater, please try the manual update" : "Kunde inte starta uppdateraren, vänligen försök uppdatera manuellt", + "Update notifications" : "Uppdateringsnotifikationer", "Channel updated" : "Uppdateringskanal uppdaterad", "The update server could not be reached since %d days to check for new updates." : "Uppdateringsservern kunde inte nås. Senaste kontakt för %d dagar sedan.", "Please check the Nextcloud and server log files for errors." : "Vänligen kontrollera ditt moln och dess serverloggar för felmeddelanden.", "Update to %1$s is available." : "Uppdatering till %1$s är tillgänglig.", "Update for %1$s to version %2$s is available." : "Uppdatering för %1$s till version %2$s är tillgänglig.", "Update for {app} to version %s is available." : "Uppdatering för {app} till version %s är tillgänglig.", + "Update notification" : "Uppdatera notifikation", "A new version is available: %s" : "En ny version är tillgänglig: %s", - "Open updater" : "Öppna uppdateraren", "Download now" : "Ladda ned nu", - "The update check is not yet finished. Please refresh the page." : "Uppdateringskontrollen är inte färdig ännu. Var god uppdatera sidan.", - "Your version is up to date." : "Din version är uppdaterad.", "Checked on %s" : "Senast kontrollerad %s", - "A non-default update server is in use to be checked for updates:" : "En icke-standard updateringsserver används för att kolla efter uppdateringar:", - "Update channel:" : "Uppdateringskanal:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan alltid uppdatera till en nyare version / experimentell kanal. Men du kan aldrig nedgradera till en mer stabil kanal.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Notera att när en ny version släppts kan det ta lite tid innan den dyker upp här. Vi rullar ut nya versioner till våra användare vid utspridda tillfällen och hoppar ibland över versioner när problem hittas.", - "Notify members of the following groups about available updates:" : "Notifiera medlemmar i följande grupper om tillgängliga uppdateraingar:", - "Only notification for app updates are available." : "Endast notifikation för app-uppdateringar är tillgängliga.", "The selected update channel makes dedicated notifications for the server obsolete." : "Den valda uppdateringskanalen gör dedikerade notiser för servern förlegade.", - "The selected update channel does not support updates of the server." : "Den valda uppdateringskanalen stödjer inte uppdateringar för servern." + "The update check is not yet finished. Please refresh the page." : "Uppdateringskontrollen är inte färdig ännu. Var god uppdatera sidan." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/tr.js b/apps/updatenotification/l10n/tr.js index 0cc86d74fae23..508ed1eccfd28 100644 --- a/apps/updatenotification/l10n/tr.js +++ b/apps/updatenotification/l10n/tr.js @@ -1,28 +1,40 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Güncelleme bildirimleri", - "Could not start updater, please try the manual update" : "Güncelleyici başlatılamadı lütfen el ile güncellemeyi deneyin", "{version} is available. Get more information on how to update." : "{version} sürümü yayınlanmış. Güncelleme hakkında ayrıntılı bilgi alın.", + "Apps with available updates" : "Güncellenebilecek uygulamalar", + "Open updater" : "Güncelleyici aç", + "Your version is up to date." : "Sürümünüz güncel.", + "A non-default update server is in use to be checked for updates:" : "Güncelleme denetimi için varsayılan sunucudan başka bir sunucu kullanılıyor:", + "Update channel:" : "Güncelleme kanalı:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "İstediğiniz zaman yeni / deneysel bir güncelleme kanalına geçebilirsiniz. Daha kararlı bir kanala geri dönemezsiniz.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Yeni bir sürümün yayınlanmasından sonra burada görüntülenmesinin biraz zaman alabileceğini unutmayın. Yeni sürümleri kullanıcılarımıza zamanla dağıtıyoruz ve bazen sorunlarla karşılaştığımızda bir sürümü atlayabiliyoruz.", + "Notify members of the following groups about available updates:" : "Yayınlanan güncellemeler şu grupların üyelerine bildirilsin:", + "Only notification for app updates are available." : "Yalnız uygulama güncellemeleri kullanılabilir.", + "The selected update channel does not support updates of the server." : "Seçilmiş güncelleme kanalı sunucunun güncellemelerini desteklemiyor.", + "A new version is available: {newVersionString}" : "Yeni bir sürüm yayınlanmış: {newVersionString}", + "Checked on {lastCheckedDate}" : "Son denetim: {lastCheckedDate}", + "Checking apps for compatible updates" : "Uyumlu güncellemeler için uygulamalar denetleniyor", + "Please make sure your config.php does not set appstoreenabled to false." : "Lütfen config.php dosyasındaki appstoreenabled seçeneğinin false olarak ayarlanmadığından emin olun.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Uygulama mağazasına bağlanılamadı ya da uygulama mağazasında herhangi bir güncelleme yok. Güncellemeleri el ile arayın ya da sunucunuzun İnternet üzerine ve uygulama mağazasına bağlanabildiğinden emin olun.", + "All apps have an update for this version available" : "Tüm uygulamaların bu sürüm için kullanılabilecek bir güncellemesi var", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n uygulamanın bu sürüm için kullanılabilecek bir güncellemesi yok","%n uygulamanın bu sürüm için kullanılabilecek bir güncellemesi yok"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "Üretim her zaman en son yama düzeyini sağlar ancak sonraki büyük sürüme hemen güncellemez. Bu güncelleme genellikle ikinci küçük sürüm kullanılarak yapılır (x.0.2)", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "Kararlı son kararlı sürümü sağlar. Üretim kullanımına uygundur ve her zaman son büyük sürüme günceller.", + "beta is a pre-release version only for testing new features, not for production environments." : "Beta yeni özelliklerin denenebileceği yayım öncesi sürümüdür. Üretim ortamlarında kullanılması önerilmez.", + "Could not start updater, please try the manual update" : "Güncelleyici başlatılamadı lütfen el ile güncellemeyi deneyin", + "Update notifications" : "Güncelleme bildirimleri", "Channel updated" : "Kanal güncellendi", "The update server could not be reached since %d days to check for new updates." : "%d gündür güncellemeleri denetlemek için güncelleme sunucusuna bağlanılamadı.", "Please check the Nextcloud and server log files for errors." : "Lütfen sorunu bulmak için Nextcloud ve sunucu günlük dosyalarına bakın.", "Update to %1$s is available." : "%1$s güncellemesi yayınlanmış.", "Update for %1$s to version %2$s is available." : "%1$s sürümünden %2$s sürümüne güncelleme yayınlanmış.", "Update for {app} to version %s is available." : "{app} uygulaması için %s sürümü güncellemesi yayınlanmış.", + "Update notification" : "Güncelleme bildirimi", "A new version is available: %s" : "Yeni bir sürüm yayınlanmış: %s", - "Open updater" : "Güncelleyici aç", "Download now" : "İndir", - "The update check is not yet finished. Please refresh the page." : "Güncelleme denetimi henüz tamamlanmadı. Lütfen sayfayı yenileyin.", - "Your version is up to date." : "Sürümünüz güncel.", "Checked on %s" : "Son denetim: %s", - "A non-default update server is in use to be checked for updates:" : "Güncelleme denetimi için varsayılan sunucudan başka bir sunucu kullanılıyor:", - "Update channel:" : "Güncelleme kanalı:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "İstediğiniz zaman yeni / deneysel bir güncelleme kanalına geçebilirsiniz. Daha kararlı bir kanala geri dönemezsiniz.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Yeni bir sürümün yayınlanmasından sonra burada görüntülenmesinin biraz zaman alabileceğini unutmayın. Yeni sürümleri kullanıcılarımıza zamanla dağıtıyoruz ve bazen sorunlarla karşılaştığımızda bir sürümü atlayabiliyoruz.", - "Notify members of the following groups about available updates:" : "Yayınlanan güncellemeler şu grupların üyelerine bildirilsin:", - "Only notification for app updates are available." : "Yalnız uygulama güncellemeleri kullanılabilir.", "The selected update channel makes dedicated notifications for the server obsolete." : "Seçilmiş güncelleme kanalı kullanımdan kalkmış sunucu bildirimleri için kullanılıyor.", - "The selected update channel does not support updates of the server." : "Seçilmiş güncelleme kanalı sunucunun güncellemelerini desteklemiyor." + "The update check is not yet finished. Please refresh the page." : "Güncelleme denetimi henüz tamamlanmadı. Lütfen sayfayı yenileyin." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/updatenotification/l10n/tr.json b/apps/updatenotification/l10n/tr.json index d6f4661bbaf5a..96882619b5976 100644 --- a/apps/updatenotification/l10n/tr.json +++ b/apps/updatenotification/l10n/tr.json @@ -1,26 +1,38 @@ { "translations": { - "Update notifications" : "Güncelleme bildirimleri", - "Could not start updater, please try the manual update" : "Güncelleyici başlatılamadı lütfen el ile güncellemeyi deneyin", "{version} is available. Get more information on how to update." : "{version} sürümü yayınlanmış. Güncelleme hakkında ayrıntılı bilgi alın.", + "Apps with available updates" : "Güncellenebilecek uygulamalar", + "Open updater" : "Güncelleyici aç", + "Your version is up to date." : "Sürümünüz güncel.", + "A non-default update server is in use to be checked for updates:" : "Güncelleme denetimi için varsayılan sunucudan başka bir sunucu kullanılıyor:", + "Update channel:" : "Güncelleme kanalı:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "İstediğiniz zaman yeni / deneysel bir güncelleme kanalına geçebilirsiniz. Daha kararlı bir kanala geri dönemezsiniz.", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Yeni bir sürümün yayınlanmasından sonra burada görüntülenmesinin biraz zaman alabileceğini unutmayın. Yeni sürümleri kullanıcılarımıza zamanla dağıtıyoruz ve bazen sorunlarla karşılaştığımızda bir sürümü atlayabiliyoruz.", + "Notify members of the following groups about available updates:" : "Yayınlanan güncellemeler şu grupların üyelerine bildirilsin:", + "Only notification for app updates are available." : "Yalnız uygulama güncellemeleri kullanılabilir.", + "The selected update channel does not support updates of the server." : "Seçilmiş güncelleme kanalı sunucunun güncellemelerini desteklemiyor.", + "A new version is available: {newVersionString}" : "Yeni bir sürüm yayınlanmış: {newVersionString}", + "Checked on {lastCheckedDate}" : "Son denetim: {lastCheckedDate}", + "Checking apps for compatible updates" : "Uyumlu güncellemeler için uygulamalar denetleniyor", + "Please make sure your config.php does not set appstoreenabled to false." : "Lütfen config.php dosyasındaki appstoreenabled seçeneğinin false olarak ayarlanmadığından emin olun.", + "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Uygulama mağazasına bağlanılamadı ya da uygulama mağazasında herhangi bir güncelleme yok. Güncellemeleri el ile arayın ya da sunucunuzun İnternet üzerine ve uygulama mağazasına bağlanabildiğinden emin olun.", + "All apps have an update for this version available" : "Tüm uygulamaların bu sürüm için kullanılabilecek bir güncellemesi var", + "_%n app has no update for this version available_::_%n apps have no update for this version available_" : ["%n uygulamanın bu sürüm için kullanılabilecek bir güncellemesi yok","%n uygulamanın bu sürüm için kullanılabilecek bir güncellemesi yok"], + "production will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "Üretim her zaman en son yama düzeyini sağlar ancak sonraki büyük sürüme hemen güncellemez. Bu güncelleme genellikle ikinci küçük sürüm kullanılarak yapılır (x.0.2)", + "stable is the most recent stable version. It is suited for production use and will always update to the latest major version." : "Kararlı son kararlı sürümü sağlar. Üretim kullanımına uygundur ve her zaman son büyük sürüme günceller.", + "beta is a pre-release version only for testing new features, not for production environments." : "Beta yeni özelliklerin denenebileceği yayım öncesi sürümüdür. Üretim ortamlarında kullanılması önerilmez.", + "Could not start updater, please try the manual update" : "Güncelleyici başlatılamadı lütfen el ile güncellemeyi deneyin", + "Update notifications" : "Güncelleme bildirimleri", "Channel updated" : "Kanal güncellendi", "The update server could not be reached since %d days to check for new updates." : "%d gündür güncellemeleri denetlemek için güncelleme sunucusuna bağlanılamadı.", "Please check the Nextcloud and server log files for errors." : "Lütfen sorunu bulmak için Nextcloud ve sunucu günlük dosyalarına bakın.", "Update to %1$s is available." : "%1$s güncellemesi yayınlanmış.", "Update for %1$s to version %2$s is available." : "%1$s sürümünden %2$s sürümüne güncelleme yayınlanmış.", "Update for {app} to version %s is available." : "{app} uygulaması için %s sürümü güncellemesi yayınlanmış.", + "Update notification" : "Güncelleme bildirimi", "A new version is available: %s" : "Yeni bir sürüm yayınlanmış: %s", - "Open updater" : "Güncelleyici aç", "Download now" : "İndir", - "The update check is not yet finished. Please refresh the page." : "Güncelleme denetimi henüz tamamlanmadı. Lütfen sayfayı yenileyin.", - "Your version is up to date." : "Sürümünüz güncel.", "Checked on %s" : "Son denetim: %s", - "A non-default update server is in use to be checked for updates:" : "Güncelleme denetimi için varsayılan sunucudan başka bir sunucu kullanılıyor:", - "Update channel:" : "Güncelleme kanalı:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "İstediğiniz zaman yeni / deneysel bir güncelleme kanalına geçebilirsiniz. Daha kararlı bir kanala geri dönemezsiniz.", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Yeni bir sürümün yayınlanmasından sonra burada görüntülenmesinin biraz zaman alabileceğini unutmayın. Yeni sürümleri kullanıcılarımıza zamanla dağıtıyoruz ve bazen sorunlarla karşılaştığımızda bir sürümü atlayabiliyoruz.", - "Notify members of the following groups about available updates:" : "Yayınlanan güncellemeler şu grupların üyelerine bildirilsin:", - "Only notification for app updates are available." : "Yalnız uygulama güncellemeleri kullanılabilir.", "The selected update channel makes dedicated notifications for the server obsolete." : "Seçilmiş güncelleme kanalı kullanımdan kalkmış sunucu bildirimleri için kullanılıyor.", - "The selected update channel does not support updates of the server." : "Seçilmiş güncelleme kanalı sunucunun güncellemelerini desteklemiyor." + "The update check is not yet finished. Please refresh the page." : "Güncelleme denetimi henüz tamamlanmadı. Lütfen sayfayı yenileyin." },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/vi.js b/apps/updatenotification/l10n/vi.js index 369dde35f44c0..3819e2f27e53b 100644 --- a/apps/updatenotification/l10n/vi.js +++ b/apps/updatenotification/l10n/vi.js @@ -1,9 +1,13 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "Cập nhật thông báo", - "Could not start updater, please try the manual update" : "Không thể bắt đầu cập nhật, vui lòng thử cập nhật thủ công", "{version} is available. Get more information on how to update." : "{version} có sẵn. Tìm hiểu thêm thông tin về cách cập nhật.", + "Your version is up to date." : "Phiên bản của bạn được cập nhật.", + "Update channel:" : "Cập nhật kênh:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Bạn luôn có thể cập nhật lên phiên bản / kênh thử nghiệm mới hơn. Nhưng bạn không bao giờ có thể downgrade vào một kênh ổn định hơn.", + "Notify members of the following groups about available updates:" : "Thông báo cho các thành viên của các nhóm sau đây về các cập nhật có sẵn:", + "Could not start updater, please try the manual update" : "Không thể bắt đầu cập nhật, vui lòng thử cập nhật thủ công", + "Update notifications" : "Cập nhật thông báo", "Channel updated" : "Đã cập nhật kênh", "Update to %1$s is available." : "Cập nhật lên %1$s có sẵn.", "Update for %1$s to version %2$s is available." : "Cập nhật %1$s lên phiên bản %2$s có sẵn.", @@ -11,10 +15,6 @@ OC.L10N.register( "A new version is available: %s" : "Đã có phiên bản mới: %s", "Open updater" : "Mở trình cập nhật", "Download now" : "Tải ngay", - "Your version is up to date." : "Phiên bản của bạn được cập nhật.", - "Checked on %s" : "Đã kiểm tra lúc %s", - "Update channel:" : "Cập nhật kênh:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Bạn luôn có thể cập nhật lên phiên bản / kênh thử nghiệm mới hơn. Nhưng bạn không bao giờ có thể downgrade vào một kênh ổn định hơn.", - "Notify members of the following groups about available updates:" : "Thông báo cho các thành viên của các nhóm sau đây về các cập nhật có sẵn:" + "Checked on %s" : "Đã kiểm tra lúc %s" }, "nplurals=1; plural=0;"); diff --git a/apps/updatenotification/l10n/vi.json b/apps/updatenotification/l10n/vi.json index 709d5347d674f..97cb8ee34a685 100644 --- a/apps/updatenotification/l10n/vi.json +++ b/apps/updatenotification/l10n/vi.json @@ -1,7 +1,11 @@ { "translations": { - "Update notifications" : "Cập nhật thông báo", - "Could not start updater, please try the manual update" : "Không thể bắt đầu cập nhật, vui lòng thử cập nhật thủ công", "{version} is available. Get more information on how to update." : "{version} có sẵn. Tìm hiểu thêm thông tin về cách cập nhật.", + "Your version is up to date." : "Phiên bản của bạn được cập nhật.", + "Update channel:" : "Cập nhật kênh:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Bạn luôn có thể cập nhật lên phiên bản / kênh thử nghiệm mới hơn. Nhưng bạn không bao giờ có thể downgrade vào một kênh ổn định hơn.", + "Notify members of the following groups about available updates:" : "Thông báo cho các thành viên của các nhóm sau đây về các cập nhật có sẵn:", + "Could not start updater, please try the manual update" : "Không thể bắt đầu cập nhật, vui lòng thử cập nhật thủ công", + "Update notifications" : "Cập nhật thông báo", "Channel updated" : "Đã cập nhật kênh", "Update to %1$s is available." : "Cập nhật lên %1$s có sẵn.", "Update for %1$s to version %2$s is available." : "Cập nhật %1$s lên phiên bản %2$s có sẵn.", @@ -9,10 +13,6 @@ "A new version is available: %s" : "Đã có phiên bản mới: %s", "Open updater" : "Mở trình cập nhật", "Download now" : "Tải ngay", - "Your version is up to date." : "Phiên bản của bạn được cập nhật.", - "Checked on %s" : "Đã kiểm tra lúc %s", - "Update channel:" : "Cập nhật kênh:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Bạn luôn có thể cập nhật lên phiên bản / kênh thử nghiệm mới hơn. Nhưng bạn không bao giờ có thể downgrade vào một kênh ổn định hơn.", - "Notify members of the following groups about available updates:" : "Thông báo cho các thành viên của các nhóm sau đây về các cập nhật có sẵn:" + "Checked on %s" : "Đã kiểm tra lúc %s" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/zh_CN.js b/apps/updatenotification/l10n/zh_CN.js index e0762940661c3..a35070092dda9 100644 --- a/apps/updatenotification/l10n/zh_CN.js +++ b/apps/updatenotification/l10n/zh_CN.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "升级通知", - "Could not start updater, please try the manual update" : "无法启动自动更新,请尝试手动更新", "{version} is available. Get more information on how to update." : "新版本 {version} 已可以使用。获取更多升级相关信息。", + "Open updater" : "打开更新器", + "Your version is up to date." : "您的版本已是最新。", + "A non-default update server is in use to be checked for updates:" : "检查更新使用了一个非默认的服务器:", + "Update channel:" : "更新通道:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "您可以随时更新到新版本 / 实验通道。但你永远不能降级到更稳定的通道。", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "请注意, 在新版本发布后, 它可能需要一段时间才能显示在这里。新版本发布后, 随着时间的推移, 当用户发现问题时我们可能会跳过一个版本。", + "Notify members of the following groups about available updates:" : "提醒一下组群的用户关于可用的更新:", + "Only notification for app updates are available." : "仅提醒应用更新就绪。", + "The selected update channel does not support updates of the server." : "选中的更新通道不支持服务器升级。", + "Could not start updater, please try the manual update" : "无法启动自动更新,请尝试手动更新", + "Update notifications" : "升级通知", "Channel updated" : "更新通道", "The update server could not be reached since %d days to check for new updates." : "更新服务器自 1%d 天前起无法访问以检查更新。", "Please check the Nextcloud and server log files for errors." : "请检查 nextcloud 和服务器的日志中的错误。", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "可以从 %1$s 版本更新到 %2$s 版本。", "Update for {app} to version %s is available." : "可以将您的 {app} 更新到版本 %s 。", "A new version is available: %s" : "有可用的新版本: %s", - "Open updater" : "打开更新器", "Download now" : "开始下载", - "The update check is not yet finished. Please refresh the page." : "更新检查未完成。请刷新页面。", - "Your version is up to date." : "您的版本已是最新。", "Checked on %s" : "检查于 %s", - "A non-default update server is in use to be checked for updates:" : "检查更新使用了一个非默认的服务器:", - "Update channel:" : "更新通道:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "您可以随时更新到新版本 / 实验通道。但你永远不能降级到更稳定的通道。", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "请注意, 在新版本发布后, 它可能需要一段时间才能显示在这里。新版本发布后, 随着时间的推移, 当用户发现问题时我们可能会跳过一个版本。", - "Notify members of the following groups about available updates:" : "提醒一下组群的用户关于可用的更新:", - "Only notification for app updates are available." : "仅提醒应用更新就绪。", "The selected update channel makes dedicated notifications for the server obsolete." : "被选中的升级通道将会通知未更新的服务器", - "The selected update channel does not support updates of the server." : "选中的更新通道不支持服务器升级。" + "The update check is not yet finished. Please refresh the page." : "更新检查未完成。请刷新页面。" }, "nplurals=1; plural=0;"); diff --git a/apps/updatenotification/l10n/zh_CN.json b/apps/updatenotification/l10n/zh_CN.json index b539187d1ee29..d1b07190ac245 100644 --- a/apps/updatenotification/l10n/zh_CN.json +++ b/apps/updatenotification/l10n/zh_CN.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "升级通知", - "Could not start updater, please try the manual update" : "无法启动自动更新,请尝试手动更新", "{version} is available. Get more information on how to update." : "新版本 {version} 已可以使用。获取更多升级相关信息。", + "Open updater" : "打开更新器", + "Your version is up to date." : "您的版本已是最新。", + "A non-default update server is in use to be checked for updates:" : "检查更新使用了一个非默认的服务器:", + "Update channel:" : "更新通道:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "您可以随时更新到新版本 / 实验通道。但你永远不能降级到更稳定的通道。", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "请注意, 在新版本发布后, 它可能需要一段时间才能显示在这里。新版本发布后, 随着时间的推移, 当用户发现问题时我们可能会跳过一个版本。", + "Notify members of the following groups about available updates:" : "提醒一下组群的用户关于可用的更新:", + "Only notification for app updates are available." : "仅提醒应用更新就绪。", + "The selected update channel does not support updates of the server." : "选中的更新通道不支持服务器升级。", + "Could not start updater, please try the manual update" : "无法启动自动更新,请尝试手动更新", + "Update notifications" : "升级通知", "Channel updated" : "更新通道", "The update server could not be reached since %d days to check for new updates." : "更新服务器自 1%d 天前起无法访问以检查更新。", "Please check the Nextcloud and server log files for errors." : "请检查 nextcloud 和服务器的日志中的错误。", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "可以从 %1$s 版本更新到 %2$s 版本。", "Update for {app} to version %s is available." : "可以将您的 {app} 更新到版本 %s 。", "A new version is available: %s" : "有可用的新版本: %s", - "Open updater" : "打开更新器", "Download now" : "开始下载", - "The update check is not yet finished. Please refresh the page." : "更新检查未完成。请刷新页面。", - "Your version is up to date." : "您的版本已是最新。", "Checked on %s" : "检查于 %s", - "A non-default update server is in use to be checked for updates:" : "检查更新使用了一个非默认的服务器:", - "Update channel:" : "更新通道:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "您可以随时更新到新版本 / 实验通道。但你永远不能降级到更稳定的通道。", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "请注意, 在新版本发布后, 它可能需要一段时间才能显示在这里。新版本发布后, 随着时间的推移, 当用户发现问题时我们可能会跳过一个版本。", - "Notify members of the following groups about available updates:" : "提醒一下组群的用户关于可用的更新:", - "Only notification for app updates are available." : "仅提醒应用更新就绪。", "The selected update channel makes dedicated notifications for the server obsolete." : "被选中的升级通道将会通知未更新的服务器", - "The selected update channel does not support updates of the server." : "选中的更新通道不支持服务器升级。" + "The update check is not yet finished. Please refresh the page." : "更新检查未完成。请刷新页面。" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/updatenotification/l10n/zh_TW.js b/apps/updatenotification/l10n/zh_TW.js index e0e73802e2226..3e0ae388da7e2 100644 --- a/apps/updatenotification/l10n/zh_TW.js +++ b/apps/updatenotification/l10n/zh_TW.js @@ -1,9 +1,18 @@ OC.L10N.register( "updatenotification", { - "Update notifications" : "更新通知", - "Could not start updater, please try the manual update" : "無法啟動更新程式,請嘗試手動更新", "{version} is available. Get more information on how to update." : "{version} 釋出了,可以更新", + "Open updater" : "打開更新程式", + "Your version is up to date." : "您的版本是最新版", + "A non-default update server is in use to be checked for updates:" : "沒有預設的更新伺服器以至於無法檢查更新:", + "Update channel:" : "更新通道:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "您可以隨時更新至較新的版本 / 實驗通道,但您不能降版至更穩定的通道。", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "請注意,新版本釋出後,需要過一段時間才會在此顯示通知。隨著時間推進,我們為用戶推出了新的版本,有時候會在發現問題時跳過前一個版本更新。", + "Notify members of the following groups about available updates:" : "有可用更新時通知這些群組:", + "Only notification for app updates are available." : "僅提供應用程式更新的通知", + "The selected update channel does not support updates of the server." : "所選的更新頻道不提供伺服器軟體的更新", + "Could not start updater, please try the manual update" : "無法啟動更新程式,請嘗試手動更新", + "Update notifications" : "更新通知", "Channel updated" : "頻道已更新", "The update server could not be reached since %d days to check for new updates." : "更新伺服器在%d天前已經無法連線檢查更新", "Please check the Nextcloud and server log files for errors." : "請確認伺服器log檔以查看錯誤。", @@ -11,18 +20,9 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "%1$s 到 %2$s 的更新已經釋出", "Update for {app} to version %s is available." : "{app} 已有 %s 版本的更新", "A new version is available: %s" : "新版本可用:%s", - "Open updater" : "打開更新程式", "Download now" : "現在下載", - "The update check is not yet finished. Please refresh the page." : "更新檢查未完成,請刷新這個頁面", - "Your version is up to date." : "您的版本是最新版", "Checked on %s" : "於 %s 檢查過", - "A non-default update server is in use to be checked for updates:" : "沒有預設的更新伺服器以至於無法檢查更新:", - "Update channel:" : "更新通道:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "您可以隨時更新至較新的版本 / 實驗通道,但您不能降版至更穩定的通道。", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "請注意,新版本釋出後,需要過一段時間才會在此顯示通知。隨著時間推進,我們為用戶推出了新的版本,有時候會在發現問題時跳過前一個版本更新。", - "Notify members of the following groups about available updates:" : "有可用更新時通知這些群組:", - "Only notification for app updates are available." : "僅提供應用程式更新的通知", "The selected update channel makes dedicated notifications for the server obsolete." : "選擇的更新管道會導致伺服器專門的通知過期", - "The selected update channel does not support updates of the server." : "所選的更新頻道不提供伺服器軟體的更新" + "The update check is not yet finished. Please refresh the page." : "更新檢查未完成,請刷新這個頁面" }, "nplurals=1; plural=0;"); diff --git a/apps/updatenotification/l10n/zh_TW.json b/apps/updatenotification/l10n/zh_TW.json index c0a0a8ff8c71f..2a8c4eac2338b 100644 --- a/apps/updatenotification/l10n/zh_TW.json +++ b/apps/updatenotification/l10n/zh_TW.json @@ -1,7 +1,16 @@ { "translations": { - "Update notifications" : "更新通知", - "Could not start updater, please try the manual update" : "無法啟動更新程式,請嘗試手動更新", "{version} is available. Get more information on how to update." : "{version} 釋出了,可以更新", + "Open updater" : "打開更新程式", + "Your version is up to date." : "您的版本是最新版", + "A non-default update server is in use to be checked for updates:" : "沒有預設的更新伺服器以至於無法檢查更新:", + "Update channel:" : "更新通道:", + "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "您可以隨時更新至較新的版本 / 實驗通道,但您不能降版至更穩定的通道。", + "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "請注意,新版本釋出後,需要過一段時間才會在此顯示通知。隨著時間推進,我們為用戶推出了新的版本,有時候會在發現問題時跳過前一個版本更新。", + "Notify members of the following groups about available updates:" : "有可用更新時通知這些群組:", + "Only notification for app updates are available." : "僅提供應用程式更新的通知", + "The selected update channel does not support updates of the server." : "所選的更新頻道不提供伺服器軟體的更新", + "Could not start updater, please try the manual update" : "無法啟動更新程式,請嘗試手動更新", + "Update notifications" : "更新通知", "Channel updated" : "頻道已更新", "The update server could not be reached since %d days to check for new updates." : "更新伺服器在%d天前已經無法連線檢查更新", "Please check the Nextcloud and server log files for errors." : "請確認伺服器log檔以查看錯誤。", @@ -9,18 +18,9 @@ "Update for %1$s to version %2$s is available." : "%1$s 到 %2$s 的更新已經釋出", "Update for {app} to version %s is available." : "{app} 已有 %s 版本的更新", "A new version is available: %s" : "新版本可用:%s", - "Open updater" : "打開更新程式", "Download now" : "現在下載", - "The update check is not yet finished. Please refresh the page." : "更新檢查未完成,請刷新這個頁面", - "Your version is up to date." : "您的版本是最新版", "Checked on %s" : "於 %s 檢查過", - "A non-default update server is in use to be checked for updates:" : "沒有預設的更新伺服器以至於無法檢查更新:", - "Update channel:" : "更新通道:", - "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "您可以隨時更新至較新的版本 / 實驗通道,但您不能降版至更穩定的通道。", - "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "請注意,新版本釋出後,需要過一段時間才會在此顯示通知。隨著時間推進,我們為用戶推出了新的版本,有時候會在發現問題時跳過前一個版本更新。", - "Notify members of the following groups about available updates:" : "有可用更新時通知這些群組:", - "Only notification for app updates are available." : "僅提供應用程式更新的通知", "The selected update channel makes dedicated notifications for the server obsolete." : "選擇的更新管道會導致伺服器專門的通知過期", - "The selected update channel does not support updates of the server." : "所選的更新頻道不提供伺服器軟體的更新" + "The update check is not yet finished. Please refresh the page." : "更新檢查未完成,請刷新這個頁面" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/updatenotification/lib/Controller/AdminController.php b/apps/updatenotification/lib/Controller/AdminController.php index 9d2a5074a4aa9..c96326c862e96 100644 --- a/apps/updatenotification/lib/Controller/AdminController.php +++ b/apps/updatenotification/lib/Controller/AdminController.php @@ -107,7 +107,7 @@ public function displayPanel() { $notifyGroups = json_decode($this->config->getAppValue('updatenotification', 'notify_groups', '["admin"]'), true); - $defaultUpdateServerURL = 'https://updates.nextcloud.com/server/'; + $defaultUpdateServerURL = 'https://updates.nextcloud.com/updater_server/'; $updateServerURL = $this->config->getSystemValue('updater.server.url', $defaultUpdateServerURL); $params = [ diff --git a/apps/updatenotification/tests/Controller/AdminControllerTest.php b/apps/updatenotification/tests/Controller/AdminControllerTest.php index 75588a1aec5e5..6eb049f6281b5 100644 --- a/apps/updatenotification/tests/Controller/AdminControllerTest.php +++ b/apps/updatenotification/tests/Controller/AdminControllerTest.php @@ -107,8 +107,8 @@ public function testDisplayPanelWithUpdate() { $this->config ->expects($this->once()) ->method('getSystemValue') - ->with('updater.server.url', 'https://updates.nextcloud.com/server/') - ->willReturn('https://updates.nextcloud.com/server/'); + ->with('updater.server.url', 'https://updates.nextcloud.com/updater_server/') + ->willReturn('https://updates.nextcloud.com/updater_server/'); $this->dateTimeFormatter ->expects($this->once()) ->method('formatDateTime') @@ -134,7 +134,7 @@ public function testDisplayPanelWithUpdate() { 'downloadLink' => 'https://downloads.nextcloud.org/server', 'updaterEnabled' => true, 'isDefaultUpdateServerURL' => true, - 'updateServerURL' => 'https://updates.nextcloud.com/server/', + 'updateServerURL' => 'https://updates.nextcloud.com/updater_server/', 'notify_groups' => 'admin', ]; @@ -166,8 +166,8 @@ public function testDisplayPanelWithoutUpdate() { $this->config ->expects($this->once()) ->method('getSystemValue') - ->with('updater.server.url', 'https://updates.nextcloud.com/server/') - ->willReturn('https://updates.nextcloud.com/server/'); + ->with('updater.server.url', 'https://updates.nextcloud.com/updater_server/') + ->willReturn('https://updates.nextcloud.com/updater_server/'); $this->dateTimeFormatter ->expects($this->once()) ->method('formatDateTime') @@ -188,7 +188,7 @@ public function testDisplayPanelWithoutUpdate() { 'downloadLink' => '', 'updaterEnabled' => 0, 'isDefaultUpdateServerURL' => true, - 'updateServerURL' => 'https://updates.nextcloud.com/server/', + 'updateServerURL' => 'https://updates.nextcloud.com/updater_server/', 'notify_groups' => 'admin', ]; diff --git a/apps/user_ldap/l10n/ast.js b/apps/user_ldap/l10n/ast.js index c8aecb6fbbcc8..b919fc5284557 100644 --- a/apps/user_ldap/l10n/ast.js +++ b/apps/user_ldap/l10n/ast.js @@ -30,7 +30,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Sirvidor", "No object found in the given Base DN. Please revise." : "Nun s'atopó nengún oxetu na Base DN dada. Por favor, revísalo.", "More than 1,000 directory entries available." : "Más de 1.000 entraes de directoriu disponibles.", - " entries available within the provided Base DN" : "entraes disponibles dientro la Base DN proporcionada", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Asocedió un erru. Por favor, compruebe la Base DN , amás de la configuración de conexón y les credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Daveres que quies desaniciar la configuración actual del sirvidor?", "Confirm Deletion" : "Confirmar desaniciu", @@ -159,12 +158,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los nomes d'usuariu usense p'atroxar (meta) datos. En cuenta d'identificar y reconocer usuarios, cada usuariu de LDAP tendrá'l so nome d'usuariu internu polo que rique un mapéu dende'l so nome d'usuariu al usuariu de LDAP. El nome d'usuariu creáu mapeáse al UUID del usuariu de LDAP. Amás cacheamos tamién la DN p'amenorgar la intecractividá de LDAP, pero ensin usala pa la identificación. Si la DN camuda, atoparanse los cambios. L'usu internu del nome d'usuariu ye perdayures. ", "Clear Username-LDAP User Mapping" : "Llimpiar l'asignación de los Nomes d'usuariu de los usuarios LDAP", "Clear Groupname-LDAP Group Mapping" : "Llimpiar l'asignación de los Nomes de grupu de los grupos de LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El marcador de posición %uid nun s'atopa. Va ser trocáu col nome d'entamu de sesión cuando se consulta LDAP / AD.", - "Verify settings and count groups" : "Comprobar la configuración y grupos de recuentu", - "Add a new and blank configuration" : "Amestar una configuración nueva y en blancu", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Pues omitir el protocolu, sacantes si necesites SSL. Nesi casu, entama con ldaps://", + " entries available within the provided Base DN" : "entraes disponibles dientro la Base DN proporcionada", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Avisu: Les apps user_ldap y user_webdavauth son incompatibles. Pues esperimentar un comportamientu inesperáu. Entruga al to alministrador de sistemes pa desactivar una d'elles.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Avisu: Les apps user_ldap y user_webdavauth son incompatibles. Pues esperimentar un comportamientu inesperáu. Entruga al to alministrador de sistemes pa desactivar una d'elles." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/ast.json b/apps/user_ldap/l10n/ast.json index 6674a1271865b..e9e44a1f15f7e 100644 --- a/apps/user_ldap/l10n/ast.json +++ b/apps/user_ldap/l10n/ast.json @@ -28,7 +28,6 @@ "{nthServer}. Server" : "{nthServer}. Sirvidor", "No object found in the given Base DN. Please revise." : "Nun s'atopó nengún oxetu na Base DN dada. Por favor, revísalo.", "More than 1,000 directory entries available." : "Más de 1.000 entraes de directoriu disponibles.", - " entries available within the provided Base DN" : "entraes disponibles dientro la Base DN proporcionada", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Asocedió un erru. Por favor, compruebe la Base DN , amás de la configuración de conexón y les credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Daveres que quies desaniciar la configuración actual del sirvidor?", "Confirm Deletion" : "Confirmar desaniciu", @@ -157,12 +156,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los nomes d'usuariu usense p'atroxar (meta) datos. En cuenta d'identificar y reconocer usuarios, cada usuariu de LDAP tendrá'l so nome d'usuariu internu polo que rique un mapéu dende'l so nome d'usuariu al usuariu de LDAP. El nome d'usuariu creáu mapeáse al UUID del usuariu de LDAP. Amás cacheamos tamién la DN p'amenorgar la intecractividá de LDAP, pero ensin usala pa la identificación. Si la DN camuda, atoparanse los cambios. L'usu internu del nome d'usuariu ye perdayures. ", "Clear Username-LDAP User Mapping" : "Llimpiar l'asignación de los Nomes d'usuariu de los usuarios LDAP", "Clear Groupname-LDAP Group Mapping" : "Llimpiar l'asignación de los Nomes de grupu de los grupos de LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El marcador de posición %uid nun s'atopa. Va ser trocáu col nome d'entamu de sesión cuando se consulta LDAP / AD.", - "Verify settings and count groups" : "Comprobar la configuración y grupos de recuentu", - "Add a new and blank configuration" : "Amestar una configuración nueva y en blancu", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Pues omitir el protocolu, sacantes si necesites SSL. Nesi casu, entama con ldaps://", + " entries available within the provided Base DN" : "entraes disponibles dientro la Base DN proporcionada", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Avisu: Les apps user_ldap y user_webdavauth son incompatibles. Pues esperimentar un comportamientu inesperáu. Entruga al to alministrador de sistemes pa desactivar una d'elles.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Avisu: Les apps user_ldap y user_webdavauth son incompatibles. Pues esperimentar un comportamientu inesperáu. Entruga al to alministrador de sistemes pa desactivar una d'elles." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/bg.js b/apps/user_ldap/l10n/bg.js new file mode 100644 index 0000000000000..d620d6e9b287a --- /dev/null +++ b/apps/user_ldap/l10n/bg.js @@ -0,0 +1,102 @@ +OC.L10N.register( + "user_ldap", + { + "Failed to clear the mappings." : "Неуспешно изчистване на mapping-ите.", + "Failed to delete the server configuration" : "Неуспешен опит за изтриване на сървърната конфигурация.", + "No action specified" : "Не е посочено действие", + "No configuration specified" : "Не е посочена конфигурация", + "No data specified" : "Не са посочени данни", + " Could not set configuration %s" : "Неуспешно задаване на конфигруацията %s", + "Action does not exist" : "Действието не съществува", + "Testing configuration…" : "Изпробване на конфигурацията...", + "Configuration incorrect" : "Конфигурацията е грешна", + "Configuration incomplete" : "Конфигурацията не е завършена", + "Configuration OK" : "Конфигурацията е ОК", + "Select groups" : "Избери Групи", + "Select object classes" : "Избери типове обекти", + "Please check the credentials, they seem to be wrong." : "Моля, проверете идентификационните данни, изглежда че са неправилни.", + "Please specify the port, it could not be auto-detected." : "Моля, посочете порт, той не може да бъде автоматично определен.", + "{nthServer}. Server" : "{nthServer}. Сървър", + "Do you really want to delete the current Server Configuration?" : "Наистина ли искаш да изтриеш текущата Сървърна Конфигурация?", + "Confirm Deletion" : "Потвърди Изтриването", + "Select attributes" : "Избери атрибути", + "LDAP / AD integration" : "LDAP / AD интеграция", + "_%s group found_::_%s groups found_" : ["%s открита група","%s открити групи"], + "_%s user found_::_%s users found_" : ["%s октрит потребител","%s октрити потребители"], + "Could not find the desired feature" : "Не е открита желанта функция", + "Invalid Host" : "Невалиден сървър", + "Test Configuration" : "Изпробване на конфигурацията", + "Help" : "Помощ", + "Groups meeting these criteria are available in %s:" : "Групи спазващи тези критерии са разположени в %s:", + "Available groups" : "Налични групи", + "Selected groups" : "Избрани групи", + "LDAP Filter:" : "LDAP филтър:", + "The filter specifies which LDAP groups shall have access to the %s instance." : "Филтърът посочва кои LDAP групи ще имат достъп до %s инсталацията.", + "LDAP / AD Username:" : "LDAP / AD потребител:", + "LDAP / AD Email Address:" : "LDAP / AD имейл адрес:", + "Other Attributes:" : "Други атрибути:", + "Test Loginname" : "Проверка на Потребителско име", + "Verify settings" : "Потвърди настройките", + "1. Server" : "1. Сървър", + "%s. Server:" : "%s. Сървър:", + "Delete the current configuration" : "Изтриване на текущата конфигурация", + "Host" : "Сървър", + "Port" : "Порт", + "Detect Port" : "Открит Port", + "User DN" : "User DN", + "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "DN на потребителят, с който ще стане свързването, пр. uid=agent,dc=example,dc=com. За анонимен достъп, остави DN и Парола празни.", + "Password" : "Парола", + "For anonymous access, leave DN and Password empty." : "За анонимен достъп, остави DN и Парола празни.", + "One Base DN per line" : "По един Base DN на ред", + "You can specify Base DN for users and groups in the Advanced tab" : "Можеш да настроиш Base DN за отделни потребители и групи в разделителя Допълнителни.", + "Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Избягва автоматични LDAP заявки. По-добра опция за големи инсталации, но изисква LDAP познания.", + "Manually enter LDAP filters (recommended for large directories)" : "Ръчно въвеждана на LDAP филтри(препоръчано за по-големи папки)", + "The filter specifies which LDAP users shall have access to the %s instance." : "Филтърът посочва кои LDAP потребители ще имат достъп до %s инсталацията.", + "Saving" : "Записване", + "Back" : "Назад", + "Continue" : "Продължи", + "Server" : "Сървър", + "Users" : "Потребители", + "Groups" : "Групи", + "Expert" : "Експерт", + "Advanced" : "Допълнителни", + "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "Предупреждение: PHP LDAP модулът не е инсталиран, сървърът няма да работи. Моля, поискай системният админстратор да го инсталира.", + "Connection Settings" : "Настройки на Връзката", + "Configuration Active" : "Конфигурацията е Активна", + "When unchecked, this configuration will be skipped." : "Когато не е отметнато, тази конфигурация ще бъде прескочена.", + "Give an optional backup host. It must be a replica of the main LDAP/AD server." : "Задай незадължителен резервен сървър. Трябва да бъде реплика на главния LDAP/AD сървър.", + "Disable Main Server" : "Изключи Главиния Сървър", + "Only connect to the replica server." : "Свържи се само с репликирания сървър.", + "Turn off SSL certificate validation." : "Изключи валидацията на SSL сертификата.", + "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "Не е препоръчително! Ползвайте само за тестване. Ако връзката работи само с тази опция, внесете SSL сертификата на LDAP сървъра във вашия %s сървър.", + "Cache Time-To-Live" : "Кеширай Time-To-Live", + "in seconds. A change empties the cache." : "в секунди. Всяка промяна изтрива кеша.", + "Directory Settings" : "Настройки на Директорията", + "The LDAP attribute to use to generate the user's display name." : "LDAP атрибутът, който да бъде използван за генериране на видимото име на потребителя.", + "Base User Tree" : "Base User Tree", + "One User Base DN per line" : "По един User Base DN на ред", + "User Search Attributes" : "Атрибути на Потребителско Търсене", + "Optional; one attribute per line" : "По желание; един атрибут на ред", + "The LDAP attribute to use to generate the groups's display name." : "LDAP атрибутът, който да бъде използван за генерирането на видмото име на групата.", + "Base Group Tree" : "Base Group Tree", + "One Group Base DN per line" : "По един Group Base DN на ред", + "Group Search Attributes" : "Атрибути на Групово Търсене", + "Group-Member association" : "Group-Member асоциация", + "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" : "Когато е включени, се подържат групи в групи. (Работи единствено ако членът на групата притежава атрибута DNs).", + "Paging chunksize" : "Размер на paging-а", + "Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" : "Размерът използван за връщането на големи резултати от LDAP търсения като изброяване на потребители или групи. (Стойност 0 изключва paged LDAP търсения в тези ситуации).", + "Special Attributes" : "Специални атрибути", + "Quota Field" : "Поле за Квота", + "Quota Default" : "Детайли на квотата", + "Email Field" : "Поле за имейл", + "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." : "Оставете празно за потребителско име (стандартно). Или посочете LDAP/AD атрибут.", + "Internal Username" : "Вътрешно потребителско име", + "Internal Username Attribute:" : "Атрибут на вътрешното потребителско име:", + "Override UUID detection" : "Промени UUID откриването", + "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." : "Обикновено UUID атрибутът ще бъде намерен автоматично. UUID атрибута се използва, за да се идентифицират еднозначно LDAP потребители и групи. Освен това ще бъде генерирано вътрешното име базирано на UUID-то, ако такова не е посочено по-горе. Можете да промените настройката и да използвате атрибут по свой избор. Наложително е атрибутът да бъде уникален както за потребителите така и за групите. Промените ще се отразят само за новодобавени (map-нати) LDAP потребители.", + "UUID Attribute for Users:" : "UUID атрибут за потребителите:", + "UUID Attribute for Groups:" : "UUID атрибут за групите:", + "LDAP" : "LDAP", + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Предупреждение: Приложенията user_ldap и user_webdavauth са несъвместими. Моля, помолете системния администратор да изключи едно от приложенията." +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/bg.json b/apps/user_ldap/l10n/bg.json new file mode 100644 index 0000000000000..b9e94e8b1be49 --- /dev/null +++ b/apps/user_ldap/l10n/bg.json @@ -0,0 +1,100 @@ +{ "translations": { + "Failed to clear the mappings." : "Неуспешно изчистване на mapping-ите.", + "Failed to delete the server configuration" : "Неуспешен опит за изтриване на сървърната конфигурация.", + "No action specified" : "Не е посочено действие", + "No configuration specified" : "Не е посочена конфигурация", + "No data specified" : "Не са посочени данни", + " Could not set configuration %s" : "Неуспешно задаване на конфигруацията %s", + "Action does not exist" : "Действието не съществува", + "Testing configuration…" : "Изпробване на конфигурацията...", + "Configuration incorrect" : "Конфигурацията е грешна", + "Configuration incomplete" : "Конфигурацията не е завършена", + "Configuration OK" : "Конфигурацията е ОК", + "Select groups" : "Избери Групи", + "Select object classes" : "Избери типове обекти", + "Please check the credentials, they seem to be wrong." : "Моля, проверете идентификационните данни, изглежда че са неправилни.", + "Please specify the port, it could not be auto-detected." : "Моля, посочете порт, той не може да бъде автоматично определен.", + "{nthServer}. Server" : "{nthServer}. Сървър", + "Do you really want to delete the current Server Configuration?" : "Наистина ли искаш да изтриеш текущата Сървърна Конфигурация?", + "Confirm Deletion" : "Потвърди Изтриването", + "Select attributes" : "Избери атрибути", + "LDAP / AD integration" : "LDAP / AD интеграция", + "_%s group found_::_%s groups found_" : ["%s открита група","%s открити групи"], + "_%s user found_::_%s users found_" : ["%s октрит потребител","%s октрити потребители"], + "Could not find the desired feature" : "Не е открита желанта функция", + "Invalid Host" : "Невалиден сървър", + "Test Configuration" : "Изпробване на конфигурацията", + "Help" : "Помощ", + "Groups meeting these criteria are available in %s:" : "Групи спазващи тези критерии са разположени в %s:", + "Available groups" : "Налични групи", + "Selected groups" : "Избрани групи", + "LDAP Filter:" : "LDAP филтър:", + "The filter specifies which LDAP groups shall have access to the %s instance." : "Филтърът посочва кои LDAP групи ще имат достъп до %s инсталацията.", + "LDAP / AD Username:" : "LDAP / AD потребител:", + "LDAP / AD Email Address:" : "LDAP / AD имейл адрес:", + "Other Attributes:" : "Други атрибути:", + "Test Loginname" : "Проверка на Потребителско име", + "Verify settings" : "Потвърди настройките", + "1. Server" : "1. Сървър", + "%s. Server:" : "%s. Сървър:", + "Delete the current configuration" : "Изтриване на текущата конфигурация", + "Host" : "Сървър", + "Port" : "Порт", + "Detect Port" : "Открит Port", + "User DN" : "User DN", + "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "DN на потребителят, с който ще стане свързването, пр. uid=agent,dc=example,dc=com. За анонимен достъп, остави DN и Парола празни.", + "Password" : "Парола", + "For anonymous access, leave DN and Password empty." : "За анонимен достъп, остави DN и Парола празни.", + "One Base DN per line" : "По един Base DN на ред", + "You can specify Base DN for users and groups in the Advanced tab" : "Можеш да настроиш Base DN за отделни потребители и групи в разделителя Допълнителни.", + "Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Избягва автоматични LDAP заявки. По-добра опция за големи инсталации, но изисква LDAP познания.", + "Manually enter LDAP filters (recommended for large directories)" : "Ръчно въвеждана на LDAP филтри(препоръчано за по-големи папки)", + "The filter specifies which LDAP users shall have access to the %s instance." : "Филтърът посочва кои LDAP потребители ще имат достъп до %s инсталацията.", + "Saving" : "Записване", + "Back" : "Назад", + "Continue" : "Продължи", + "Server" : "Сървър", + "Users" : "Потребители", + "Groups" : "Групи", + "Expert" : "Експерт", + "Advanced" : "Допълнителни", + "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "Предупреждение: PHP LDAP модулът не е инсталиран, сървърът няма да работи. Моля, поискай системният админстратор да го инсталира.", + "Connection Settings" : "Настройки на Връзката", + "Configuration Active" : "Конфигурацията е Активна", + "When unchecked, this configuration will be skipped." : "Когато не е отметнато, тази конфигурация ще бъде прескочена.", + "Give an optional backup host. It must be a replica of the main LDAP/AD server." : "Задай незадължителен резервен сървър. Трябва да бъде реплика на главния LDAP/AD сървър.", + "Disable Main Server" : "Изключи Главиния Сървър", + "Only connect to the replica server." : "Свържи се само с репликирания сървър.", + "Turn off SSL certificate validation." : "Изключи валидацията на SSL сертификата.", + "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." : "Не е препоръчително! Ползвайте само за тестване. Ако връзката работи само с тази опция, внесете SSL сертификата на LDAP сървъра във вашия %s сървър.", + "Cache Time-To-Live" : "Кеширай Time-To-Live", + "in seconds. A change empties the cache." : "в секунди. Всяка промяна изтрива кеша.", + "Directory Settings" : "Настройки на Директорията", + "The LDAP attribute to use to generate the user's display name." : "LDAP атрибутът, който да бъде използван за генериране на видимото име на потребителя.", + "Base User Tree" : "Base User Tree", + "One User Base DN per line" : "По един User Base DN на ред", + "User Search Attributes" : "Атрибути на Потребителско Търсене", + "Optional; one attribute per line" : "По желание; един атрибут на ред", + "The LDAP attribute to use to generate the groups's display name." : "LDAP атрибутът, който да бъде използван за генерирането на видмото име на групата.", + "Base Group Tree" : "Base Group Tree", + "One Group Base DN per line" : "По един Group Base DN на ред", + "Group Search Attributes" : "Атрибути на Групово Търсене", + "Group-Member association" : "Group-Member асоциация", + "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" : "Когато е включени, се подържат групи в групи. (Работи единствено ако членът на групата притежава атрибута DNs).", + "Paging chunksize" : "Размер на paging-а", + "Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" : "Размерът използван за връщането на големи резултати от LDAP търсения като изброяване на потребители или групи. (Стойност 0 изключва paged LDAP търсения в тези ситуации).", + "Special Attributes" : "Специални атрибути", + "Quota Field" : "Поле за Квота", + "Quota Default" : "Детайли на квотата", + "Email Field" : "Поле за имейл", + "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." : "Оставете празно за потребителско име (стандартно). Или посочете LDAP/AD атрибут.", + "Internal Username" : "Вътрешно потребителско име", + "Internal Username Attribute:" : "Атрибут на вътрешното потребителско име:", + "Override UUID detection" : "Промени UUID откриването", + "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." : "Обикновено UUID атрибутът ще бъде намерен автоматично. UUID атрибута се използва, за да се идентифицират еднозначно LDAP потребители и групи. Освен това ще бъде генерирано вътрешното име базирано на UUID-то, ако такова не е посочено по-горе. Можете да промените настройката и да използвате атрибут по свой избор. Наложително е атрибутът да бъде уникален както за потребителите така и за групите. Промените ще се отразят само за новодобавени (map-нати) LDAP потребители.", + "UUID Attribute for Users:" : "UUID атрибут за потребителите:", + "UUID Attribute for Groups:" : "UUID атрибут за групите:", + "LDAP" : "LDAP", + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Предупреждение: Приложенията user_ldap и user_webdavauth са несъвместими. Моля, помолете системния администратор да изключи едно от приложенията." +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/apps/user_ldap/l10n/ca.js b/apps/user_ldap/l10n/ca.js index 4b361bbba2e3b..4e6444f79ffbd 100644 --- a/apps/user_ldap/l10n/ca.js +++ b/apps/user_ldap/l10n/ca.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No s'ha trobat cap objecte a la Base DN donada. Reviseu.", "More than 1,000 directory entries available." : "Hi ha més de 1.000 entrades de directoris disponibles.", - " entries available within the provided Base DN" : "les entrades disponibles a la Base DN proporcionada", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Hi ha hagut un error. Comproveu la base DN, així com la configuració de connexió i les credencials.", "Do you really want to delete the current Server Configuration?" : "Voleu eliminar la configuració actual del servidor?", "Confirm Deletion" : "Confirma l'eliminació", @@ -142,9 +141,8 @@ OC.L10N.register( "Username-LDAP User Mapping" : "Mapatge d'usuari Nom d'usuari-LDAP", "Clear Username-LDAP User Mapping" : "Elimina el mapatge d'usuari Nom d'usuari-LDAP", "Clear Groupname-LDAP Group Mapping" : "Elimina el mapatge de grup Nom de grup-LDAP", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Podeu ometre el protocol, excepte si requeriu SSL. Llavors comenceu amb ldaps://", + " entries available within the provided Base DN" : "les entrades disponibles a la Base DN proporcionada", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Avís: Les aplicacions user_ldap i user_webdavauth són incompatibles. Podeu experimentar comportaments inesperats. Demaneu a l'administrador del sistema que en desactivi una.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Avís: Les aplicacions user_ldap i user_webdavauth són incompatibles. Podeu experimentar comportaments inesperats. Demaneu a l'administrador del sistema que en desactivi una." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/ca.json b/apps/user_ldap/l10n/ca.json index 4cda46c9bae50..8678aeae7c8ab 100644 --- a/apps/user_ldap/l10n/ca.json +++ b/apps/user_ldap/l10n/ca.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No s'ha trobat cap objecte a la Base DN donada. Reviseu.", "More than 1,000 directory entries available." : "Hi ha més de 1.000 entrades de directoris disponibles.", - " entries available within the provided Base DN" : "les entrades disponibles a la Base DN proporcionada", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Hi ha hagut un error. Comproveu la base DN, així com la configuració de connexió i les credencials.", "Do you really want to delete the current Server Configuration?" : "Voleu eliminar la configuració actual del servidor?", "Confirm Deletion" : "Confirma l'eliminació", @@ -140,9 +139,8 @@ "Username-LDAP User Mapping" : "Mapatge d'usuari Nom d'usuari-LDAP", "Clear Username-LDAP User Mapping" : "Elimina el mapatge d'usuari Nom d'usuari-LDAP", "Clear Groupname-LDAP Group Mapping" : "Elimina el mapatge de grup Nom de grup-LDAP", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Podeu ometre el protocol, excepte si requeriu SSL. Llavors comenceu amb ldaps://", + " entries available within the provided Base DN" : "les entrades disponibles a la Base DN proporcionada", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Avís: Les aplicacions user_ldap i user_webdavauth són incompatibles. Podeu experimentar comportaments inesperats. Demaneu a l'administrador del sistema que en desactivi una.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Avís: Les aplicacions user_ldap i user_webdavauth són incompatibles. Podeu experimentar comportaments inesperats. Demaneu a l'administrador del sistema que en desactivi una." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/cs.js b/apps/user_ldap/l10n/cs.js index ff19c00759bf7..fa3c76b3f51d0 100644 --- a/apps/user_ldap/l10n/cs.js +++ b/apps/user_ldap/l10n/cs.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Server", "No object found in the given Base DN. Please revise." : "V zadané Base DN nebyl objekt nalezen. Ověřte.", "More than 1,000 directory entries available." : "Je dostupných více než 1000 adresářů.", - " entries available within the provided Base DN" : "záznamů dostupných v zadané Base DN", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Došlo k chybě. Ověře prosím Base DN společně s nastavením připojení a přihlašovacími údaji.", "Do you really want to delete the current Server Configuration?" : "Opravdu si přejete smazat současné nastavení serveru?", "Confirm Deletion" : "Potvrdit smazání", @@ -42,8 +41,8 @@ OC.L10N.register( "Anonymous bind is not allowed. Please provide a User DN and Password." : "Anonymní bind není povolen. Zadejte prosím User DN a Heslo.", "LDAP Operations error. Anonymous bind might not be allowed." : "Chyba LDAP operace. Anonymní bind nejspíše není povolen.", "Saving failed. Please make sure the database is in Operation. Reload before continuing." : "Ukládání selhalo. Ujistěte se, že databáze funguje. Načtěte znovu, než budete pokračovat.", - "Switching the mode will enable automatic LDAP queries. Depending on your LDAP size they may take a while. Do you still want to switch the mode?" : "Přepnutí módu povolí automatické LDAP dotazy. V závislosti na velikosti vašeho LDAP může vyhledávání chvíli trvat. Opravdu si přejete přepnout mód?", - "Mode switch" : "Přepnutí módu", + "Switching the mode will enable automatic LDAP queries. Depending on your LDAP size they may take a while. Do you still want to switch the mode?" : "Přepnutí režimu povolí automatické LDAP dotazy. V závislosti na velikosti vašeho LDAP může vyhledávání chvíli trvat. Opravdu si přejete přepnout mód?", + "Mode switch" : "Přepnutí režimu", "Select attributes" : "Vyberte atributy", "User not found. Please check your login attributes and username. Effective filter (to copy-and-paste for command-line validation):
" : "Uživatel nenalezen. Zkontrolujte prosím své přihlašovací údaje a jméno. Použitý filtr (pro zkopírování a ověření v příkazovém řádku):
", "User found and settings verified." : "Uživatel nalezen a nastavení ověřeno.", @@ -80,7 +79,7 @@ OC.L10N.register( "When logging in, %s will find the user based on the following attributes:" : "Při přihlašování, %s bude hledat uživatele na základě následujících atributů:", "LDAP / AD Username:" : "LDAP / AD uživatelské jméno:", "Allows login against the LDAP / AD username, which is either \"uid\" or \"sAMAccountName\" and will be detected." : "Dovoluje přihlášení pomocí LDAP / AD uživatelského jména, což je \"uid\" nebo \"sAMAccountName\", což bude detekováno.", - "LDAP / AD Email Address:" : "LDAP / AD emailová adresa:", + "LDAP / AD Email Address:" : "LDAP / AD e-mailová adresa:", "Allows login against an email attribute. \"mail\" and \"mailPrimaryAddress\" allowed." : "Povoluje přihlášení pomocí e-mailového atributu. Je povolen \"mail\" a \"mailPrimaryAddress\" allowed.", "Other Attributes:" : "Další atributy:", "Defines the filter to apply, when login is attempted. \"%%uid\" replaces the username in the login action. Example: \"uid=%%uid\"" : "Definuje filtr použitý při pokusu o přihlášení. %%uid je nahrazeno uživatelským jménem z přihlašovací akce. Příklad: \"uid=%%uid\"", @@ -172,7 +171,7 @@ OC.L10N.register( "Leave empty for user's default quota. Otherwise, specify an LDAP/AD attribute." : "Ponechte prázné pro výchozí uživatelskou kvótu. Jinak uveďte LDAP / AD atribut.", "Quota Default" : "Výchozí kvóta", "Override default quota for LDAP users who do not have a quota set in the Quota Field." : "Přepsat výchozí kvótu pro LDAP uživatele, kteří nemají kvótu nastavenou v poli kvóty.", - "Email Field" : "Pole emailu", + "Email Field" : "Pole e-mailu", "Set the user's email from their LDAP attribute. Leave it empty for default behaviour." : "Nastavit e-mail uživatele na základě LDAP atributu. Ponechte prázdné pro výchozí chování.", "User Home Folder Naming Rule" : "Pravidlo pojmenování domovského adresáře uživatele", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." : "Ponechte prázdné pro uživatelské jméno (výchozí). Jinak uveďte LDAP/AD parametr.", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Uživatelská jména jsou používána pro uchovávání a přiřazování (meta)dat. Pro správnou identifikaci a rozpoznání uživatelů bude mít každý LDAP uživatel interní uživatelské jméno. To vyžaduje mapování uživatelských jmen na uživatele LDAP. Vytvořené uživatelské jméno je mapováno na UUID uživatele v LDAP. DN informace je navíc udržována v paměti pro snížení interakce s LDAP, ale není používána pro identifikaci. Pokud se DN změní, bude to správně rozpoznáno. Interní uživatelské jméno se používá celé. Vyčištění mapování zanechá zbytky všude. Vyčištění navíc není specifické pro každou konfiguraci, bude mít vliv na všechny LDAP konfigurace! Nikdy nečistěte mapování v produkčním prostředí, ale pouze v testovací nebo experimentální fázi.", "Clear Username-LDAP User Mapping" : "Zrušit mapování uživatelských jmen LDAPu", "Clear Groupname-LDAP Group Mapping" : "Zrušit mapování názvů skupin LDAPu", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Chybí zástupný znak %uid. Bude nahrazen přihlašovacím jménem při dotazování LDAP / AD.", - "Verify settings and count groups" : "Ověřit nastavení a spočítat skupiny", - "Add a new and blank configuration" : "Přidat novou a prázdnou konfiguraci", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://", + " entries available within the provided Base DN" : "záznamů dostupných v zadané Base DN", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Varování: Aplikace user_ldap a user_webdavauth jsou vzájemně nekompatibilní. Můžete zaznamenat neočekávané chování. Požádejte prosím svého správce systému o zakázání jedné z nich.", - "in bytes" : "v bajtech" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Varování: Aplikace user_ldap a user_webdavauth jsou vzájemně nekompatibilní. Můžete zaznamenat neočekávané chování. Požádejte prosím svého správce systému o zakázání jedné z nich." }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/user_ldap/l10n/cs.json b/apps/user_ldap/l10n/cs.json index 69dd21266a252..e3e8244299a39 100644 --- a/apps/user_ldap/l10n/cs.json +++ b/apps/user_ldap/l10n/cs.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Server", "No object found in the given Base DN. Please revise." : "V zadané Base DN nebyl objekt nalezen. Ověřte.", "More than 1,000 directory entries available." : "Je dostupných více než 1000 adresářů.", - " entries available within the provided Base DN" : "záznamů dostupných v zadané Base DN", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Došlo k chybě. Ověře prosím Base DN společně s nastavením připojení a přihlašovacími údaji.", "Do you really want to delete the current Server Configuration?" : "Opravdu si přejete smazat současné nastavení serveru?", "Confirm Deletion" : "Potvrdit smazání", @@ -40,8 +39,8 @@ "Anonymous bind is not allowed. Please provide a User DN and Password." : "Anonymní bind není povolen. Zadejte prosím User DN a Heslo.", "LDAP Operations error. Anonymous bind might not be allowed." : "Chyba LDAP operace. Anonymní bind nejspíše není povolen.", "Saving failed. Please make sure the database is in Operation. Reload before continuing." : "Ukládání selhalo. Ujistěte se, že databáze funguje. Načtěte znovu, než budete pokračovat.", - "Switching the mode will enable automatic LDAP queries. Depending on your LDAP size they may take a while. Do you still want to switch the mode?" : "Přepnutí módu povolí automatické LDAP dotazy. V závislosti na velikosti vašeho LDAP může vyhledávání chvíli trvat. Opravdu si přejete přepnout mód?", - "Mode switch" : "Přepnutí módu", + "Switching the mode will enable automatic LDAP queries. Depending on your LDAP size they may take a while. Do you still want to switch the mode?" : "Přepnutí režimu povolí automatické LDAP dotazy. V závislosti na velikosti vašeho LDAP může vyhledávání chvíli trvat. Opravdu si přejete přepnout mód?", + "Mode switch" : "Přepnutí režimu", "Select attributes" : "Vyberte atributy", "User not found. Please check your login attributes and username. Effective filter (to copy-and-paste for command-line validation):
" : "Uživatel nenalezen. Zkontrolujte prosím své přihlašovací údaje a jméno. Použitý filtr (pro zkopírování a ověření v příkazovém řádku):
", "User found and settings verified." : "Uživatel nalezen a nastavení ověřeno.", @@ -78,7 +77,7 @@ "When logging in, %s will find the user based on the following attributes:" : "Při přihlašování, %s bude hledat uživatele na základě následujících atributů:", "LDAP / AD Username:" : "LDAP / AD uživatelské jméno:", "Allows login against the LDAP / AD username, which is either \"uid\" or \"sAMAccountName\" and will be detected." : "Dovoluje přihlášení pomocí LDAP / AD uživatelského jména, což je \"uid\" nebo \"sAMAccountName\", což bude detekováno.", - "LDAP / AD Email Address:" : "LDAP / AD emailová adresa:", + "LDAP / AD Email Address:" : "LDAP / AD e-mailová adresa:", "Allows login against an email attribute. \"mail\" and \"mailPrimaryAddress\" allowed." : "Povoluje přihlášení pomocí e-mailového atributu. Je povolen \"mail\" a \"mailPrimaryAddress\" allowed.", "Other Attributes:" : "Další atributy:", "Defines the filter to apply, when login is attempted. \"%%uid\" replaces the username in the login action. Example: \"uid=%%uid\"" : "Definuje filtr použitý při pokusu o přihlášení. %%uid je nahrazeno uživatelským jménem z přihlašovací akce. Příklad: \"uid=%%uid\"", @@ -170,7 +169,7 @@ "Leave empty for user's default quota. Otherwise, specify an LDAP/AD attribute." : "Ponechte prázné pro výchozí uživatelskou kvótu. Jinak uveďte LDAP / AD atribut.", "Quota Default" : "Výchozí kvóta", "Override default quota for LDAP users who do not have a quota set in the Quota Field." : "Přepsat výchozí kvótu pro LDAP uživatele, kteří nemají kvótu nastavenou v poli kvóty.", - "Email Field" : "Pole emailu", + "Email Field" : "Pole e-mailu", "Set the user's email from their LDAP attribute. Leave it empty for default behaviour." : "Nastavit e-mail uživatele na základě LDAP atributu. Ponechte prázdné pro výchozí chování.", "User Home Folder Naming Rule" : "Pravidlo pojmenování domovského adresáře uživatele", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." : "Ponechte prázdné pro uživatelské jméno (výchozí). Jinak uveďte LDAP/AD parametr.", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Uživatelská jména jsou používána pro uchovávání a přiřazování (meta)dat. Pro správnou identifikaci a rozpoznání uživatelů bude mít každý LDAP uživatel interní uživatelské jméno. To vyžaduje mapování uživatelských jmen na uživatele LDAP. Vytvořené uživatelské jméno je mapováno na UUID uživatele v LDAP. DN informace je navíc udržována v paměti pro snížení interakce s LDAP, ale není používána pro identifikaci. Pokud se DN změní, bude to správně rozpoznáno. Interní uživatelské jméno se používá celé. Vyčištění mapování zanechá zbytky všude. Vyčištění navíc není specifické pro každou konfiguraci, bude mít vliv na všechny LDAP konfigurace! Nikdy nečistěte mapování v produkčním prostředí, ale pouze v testovací nebo experimentální fázi.", "Clear Username-LDAP User Mapping" : "Zrušit mapování uživatelských jmen LDAPu", "Clear Groupname-LDAP Group Mapping" : "Zrušit mapování názvů skupin LDAPu", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Chybí zástupný znak %uid. Bude nahrazen přihlašovacím jménem při dotazování LDAP / AD.", - "Verify settings and count groups" : "Ověřit nastavení a spočítat skupiny", - "Add a new and blank configuration" : "Přidat novou a prázdnou konfiguraci", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Můžete vynechat protokol, vyjma pokud požadujete SSL. Tehdy začněte s ldaps://", + " entries available within the provided Base DN" : "záznamů dostupných v zadané Base DN", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Varování: Aplikace user_ldap a user_webdavauth jsou vzájemně nekompatibilní. Můžete zaznamenat neočekávané chování. Požádejte prosím svého správce systému o zakázání jedné z nich.", - "in bytes" : "v bajtech" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Varování: Aplikace user_ldap a user_webdavauth jsou vzájemně nekompatibilní. Můžete zaznamenat neočekávané chování. Požádejte prosím svého správce systému o zakázání jedné z nich." },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/da.js b/apps/user_ldap/l10n/da.js index 3b3a3256bbb1f..fe85f8c9d6eab 100644 --- a/apps/user_ldap/l10n/da.js +++ b/apps/user_ldap/l10n/da.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. server", "No object found in the given Base DN. Please revise." : "Intet objekt fundet i den givne Base DN. Gennemse venligst.", "More than 1,000 directory entries available." : "Mere end 1.000 mappeposter", - " entries available within the provided Base DN" : "poster tilgængelige inden for det angivne Base DN.", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Der opstod en fejl. Tjek venligst Base DN, såvel som forbindelsesindstillingerne og brugeroplysningerne.", "Do you really want to delete the current Server Configuration?" : "Ønsker du virkelig at slette den nuværende Server Konfiguration?", "Confirm Deletion" : "Bekræft sletning", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Brugernavne bruges til at lagre og tildele (meta)data. For at kunne identificere og genkende brugere præcist, så vil hver LDAP-bruger have et internt brugernavn. Det oprettede brugernavn kortlægges til UUID'et for LDAP-brugeren. I tillæg mellemlagres DN'et for at mindske LDAP-interaktioner, men det benyttes ikke til identifikation. Hvis DN'et ændres, så vil ændringerne blive registreret. Det interne brugernavn anvendes overalt. Hvis kortlægningerne ryddes, så vil der være rester overalt. Rydning af kortlægningerne er ikke konfigurationssensitivt - det påvirker alle LDAP-konfigurationer! Ryd aldrig kortlægningerne i et produktionsmiljø, kun i et teststadie eller eksperimentelt stadie.", "Clear Username-LDAP User Mapping" : "Ryd kortlægning mellem brugernavn og LDAP-bruger", "Clear Groupname-LDAP Group Mapping" : "Ryd kortlægning mellem gruppenavn og LDAP-gruppe", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Pladsholderen for %uid mangler. Den vil blive erstattes med loginnavnet, når LDAP/AD forespørges.", - "Verify settings and count groups" : "Verificér indstillinger og optællingsgrupper", - "Add a new and blank configuration" : "Tilføj en ny og tom konfiguration", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Du kan udelade protokollen, medmindre du skal bruge SSL. Start i så fald med ldaps://", + " entries available within the provided Base DN" : "poster tilgængelige inden for det angivne Base DN.", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advarsel: Apps'ene user_ldap og user_webdavauth er ikke kompatible. Du kan opleve uventet adfærd. Spørg venligst din systemadministrator om at slå én af dem fra.", - "in bytes" : "i bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advarsel: Apps'ene user_ldap og user_webdavauth er ikke kompatible. Du kan opleve uventet adfærd. Spørg venligst din systemadministrator om at slå én af dem fra." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/da.json b/apps/user_ldap/l10n/da.json index 0ce6f45517c33..12f88c9d9b11e 100644 --- a/apps/user_ldap/l10n/da.json +++ b/apps/user_ldap/l10n/da.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. server", "No object found in the given Base DN. Please revise." : "Intet objekt fundet i den givne Base DN. Gennemse venligst.", "More than 1,000 directory entries available." : "Mere end 1.000 mappeposter", - " entries available within the provided Base DN" : "poster tilgængelige inden for det angivne Base DN.", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Der opstod en fejl. Tjek venligst Base DN, såvel som forbindelsesindstillingerne og brugeroplysningerne.", "Do you really want to delete the current Server Configuration?" : "Ønsker du virkelig at slette den nuværende Server Konfiguration?", "Confirm Deletion" : "Bekræft sletning", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Brugernavne bruges til at lagre og tildele (meta)data. For at kunne identificere og genkende brugere præcist, så vil hver LDAP-bruger have et internt brugernavn. Det oprettede brugernavn kortlægges til UUID'et for LDAP-brugeren. I tillæg mellemlagres DN'et for at mindske LDAP-interaktioner, men det benyttes ikke til identifikation. Hvis DN'et ændres, så vil ændringerne blive registreret. Det interne brugernavn anvendes overalt. Hvis kortlægningerne ryddes, så vil der være rester overalt. Rydning af kortlægningerne er ikke konfigurationssensitivt - det påvirker alle LDAP-konfigurationer! Ryd aldrig kortlægningerne i et produktionsmiljø, kun i et teststadie eller eksperimentelt stadie.", "Clear Username-LDAP User Mapping" : "Ryd kortlægning mellem brugernavn og LDAP-bruger", "Clear Groupname-LDAP Group Mapping" : "Ryd kortlægning mellem gruppenavn og LDAP-gruppe", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Pladsholderen for %uid mangler. Den vil blive erstattes med loginnavnet, når LDAP/AD forespørges.", - "Verify settings and count groups" : "Verificér indstillinger og optællingsgrupper", - "Add a new and blank configuration" : "Tilføj en ny og tom konfiguration", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Du kan udelade protokollen, medmindre du skal bruge SSL. Start i så fald med ldaps://", + " entries available within the provided Base DN" : "poster tilgængelige inden for det angivne Base DN.", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advarsel: Apps'ene user_ldap og user_webdavauth er ikke kompatible. Du kan opleve uventet adfærd. Spørg venligst din systemadministrator om at slå én af dem fra.", - "in bytes" : "i bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advarsel: Apps'ene user_ldap og user_webdavauth er ikke kompatible. Du kan opleve uventet adfærd. Spørg venligst din systemadministrator om at slå én af dem fra." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/de.js b/apps/user_ldap/l10n/de.js index 3a7e0a653632a..eef794d556f38 100644 --- a/apps/user_ldap/l10n/de.js +++ b/apps/user_ldap/l10n/de.js @@ -33,7 +33,7 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. - Server", "No object found in the given Base DN. Please revise." : "Keine Objekte in der Base-DN gefunden, bitte überprüfen.", "More than 1,000 directory entries available." : "Mehr als 1.000 Einträge stehen zur Verfügung.", - " entries available within the provided Base DN" : "Einträge in der Vorgesehenen Base DN verfügbar", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} Eintrag in der angegebenen Base DN verfügbar","{objectsFound} Einträge in der angegebenen Base DN verfügbar"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Ein Fehler ist aufgetreten. Bitte die Base DN sowie die Verbindungs- und Anmeldeeinstellungen überprüfen.", "Do you really want to delete the current Server Configuration?" : "Soll die aktuelle Serverkonfiguration wirklich gelöscht werden?", "Confirm Deletion" : "Löschen bestätigen", @@ -187,12 +187,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Die Benutzernamen werden genutzt, um (Meta-)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Lösche niemals die Zuordnungen in einer produktiven Umgebung. Lösche die Zuordnungen nur in einer Test- oder Experimentierumgebung.", "Clear Username-LDAP User Mapping" : "LDAP-Benutzernamenzuordnung löschen", "Clear Groupname-LDAP Group Mapping" : "LDAP-Gruppennamenzuordnung löschen", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Der %uid - Platzhalter fehlt. Dieser wird mit dem Anmeldenamen beim Abfragen von LDAP / AD ersetzt.", - "Verify settings and count groups" : "Einstellungen überprüfen und Gruppen zählen", - "Add a new and blank configuration" : "Eine neue und leere Konfiguration hinzufügen", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Du kannst das Protokoll auslassen, außer wenn du SSL benötigst. Starte mit ldaps://", + " entries available within the provided Base DN" : "Einträge in der Vorgesehenen Base DN verfügbar", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann deshalb zu unerwartetem Systemverhalten kommen. Bitte kontaktiere deinen Systemadministator und bitte ihn um die Deaktivierung einer der beiden Anwendungen.", - "in bytes" : "in Bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann deshalb zu unerwartetem Systemverhalten kommen. Bitte kontaktiere deinen Systemadministator und bitte ihn um die Deaktivierung einer der beiden Anwendungen." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/de.json b/apps/user_ldap/l10n/de.json index fd79955c2f1d1..e7d24f09df011 100644 --- a/apps/user_ldap/l10n/de.json +++ b/apps/user_ldap/l10n/de.json @@ -31,7 +31,7 @@ "{nthServer}. Server" : "{nthServer}. - Server", "No object found in the given Base DN. Please revise." : "Keine Objekte in der Base-DN gefunden, bitte überprüfen.", "More than 1,000 directory entries available." : "Mehr als 1.000 Einträge stehen zur Verfügung.", - " entries available within the provided Base DN" : "Einträge in der Vorgesehenen Base DN verfügbar", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} Eintrag in der angegebenen Base DN verfügbar","{objectsFound} Einträge in der angegebenen Base DN verfügbar"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Ein Fehler ist aufgetreten. Bitte die Base DN sowie die Verbindungs- und Anmeldeeinstellungen überprüfen.", "Do you really want to delete the current Server Configuration?" : "Soll die aktuelle Serverkonfiguration wirklich gelöscht werden?", "Confirm Deletion" : "Löschen bestätigen", @@ -185,12 +185,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Die Benutzernamen werden genutzt, um (Meta-)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Lösche niemals die Zuordnungen in einer produktiven Umgebung. Lösche die Zuordnungen nur in einer Test- oder Experimentierumgebung.", "Clear Username-LDAP User Mapping" : "LDAP-Benutzernamenzuordnung löschen", "Clear Groupname-LDAP Group Mapping" : "LDAP-Gruppennamenzuordnung löschen", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Der %uid - Platzhalter fehlt. Dieser wird mit dem Anmeldenamen beim Abfragen von LDAP / AD ersetzt.", - "Verify settings and count groups" : "Einstellungen überprüfen und Gruppen zählen", - "Add a new and blank configuration" : "Eine neue und leere Konfiguration hinzufügen", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Du kannst das Protokoll auslassen, außer wenn du SSL benötigst. Starte mit ldaps://", + " entries available within the provided Base DN" : "Einträge in der Vorgesehenen Base DN verfügbar", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann deshalb zu unerwartetem Systemverhalten kommen. Bitte kontaktiere deinen Systemadministator und bitte ihn um die Deaktivierung einer der beiden Anwendungen.", - "in bytes" : "in Bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann deshalb zu unerwartetem Systemverhalten kommen. Bitte kontaktiere deinen Systemadministator und bitte ihn um die Deaktivierung einer der beiden Anwendungen." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/de_DE.js b/apps/user_ldap/l10n/de_DE.js index a88e26fa8a40b..f0b95cac73faf 100644 --- a/apps/user_ldap/l10n/de_DE.js +++ b/apps/user_ldap/l10n/de_DE.js @@ -33,7 +33,7 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. - Server", "No object found in the given Base DN. Please revise." : "Keine Objekte in der angegebenen Base-DN gefunden, bitte überprüfen.", "More than 1,000 directory entries available." : "Es sind mehr als 1.000 Verzeichniseinträge verfügbar.", - " entries available within the provided Base DN" : "Einträge in der angegebenen Base DN verfügbar", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} Eintrag in der angegebenen Base DN verfügbar","{objectsFound} Einträge in der angegebenen Base DN verfügbar"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Es ist ein Fehler aufgetreten. Bitte überprüfen Sie die Base DN wie auch die Verbindungseinstellungen und Anmeldeinformationen.", "Do you really want to delete the current Server Configuration?" : "Soll die aktuelle Serverkonfiguration wirklich gelöscht werden?", "Confirm Deletion" : "Löschen bestätigen", @@ -187,12 +187,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Benutzernamen dienen zum Speichern und Zuweisen von (Meta-)Daten. Um Benutzer eindeutig zu identifizieren und zu erkennen, besitzt jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung des jeweiligen Benutzernamens zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzers zugeordnet. Darüber hinaus wird der DN auch zwischengespeichert, um die Interaktion über LDAP zu reduzieren, was aber nicht zur Identifikation dient. Ändert sich der DN, werden die Änderungen gefunden. Der interne Benutzername wird durchgängig verwendet. Ein Löschen der Zuordnungen führt zum systemweiten Verbleib von Restdaten. Es bleibt nicht auf eine einzelne Konfiguration beschränkt, sondern wirkt sich auf alle LDAP-Konfigurationen aus! Löschen Sie die Zuordnungen nie innerhalb einer Produktivumgebung, sondern nur in einer Test- oder Experimentierumgebung.", "Clear Username-LDAP User Mapping" : "Lösche LDAP-Benutzernamenzuordnung", "Clear Groupname-LDAP Group Mapping" : "Lösche LDAP-Gruppennamenzuordnung", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Der %uid - Platzhalter fehlt. Dieser wird mit dem Anmeldenamen beim Abfragen von LDAP / AD ersetzt.", - "Verify settings and count groups" : "Einstellungen überprüfen und Gruppen zählen", - "Add a new and blank configuration" : "Eine neue und leere Konfiguration hinzufügen", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://", + " entries available within the provided Base DN" : "Einträge in der angegebenen Base DN verfügbar", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann deshalb zu unerwartetem Systemverhalten kommen. Bitte kontaktieren Sie Ihren Systemadministator und bitten Sie um die Deaktivierung einer der beiden Anwendungen.", - "in bytes" : "in Bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann deshalb zu unerwartetem Systemverhalten kommen. Bitte kontaktieren Sie Ihren Systemadministator und bitten Sie um die Deaktivierung einer der beiden Anwendungen." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/de_DE.json b/apps/user_ldap/l10n/de_DE.json index a41c82fdc91b0..9e05ccc3022bb 100644 --- a/apps/user_ldap/l10n/de_DE.json +++ b/apps/user_ldap/l10n/de_DE.json @@ -31,7 +31,7 @@ "{nthServer}. Server" : "{nthServer}. - Server", "No object found in the given Base DN. Please revise." : "Keine Objekte in der angegebenen Base-DN gefunden, bitte überprüfen.", "More than 1,000 directory entries available." : "Es sind mehr als 1.000 Verzeichniseinträge verfügbar.", - " entries available within the provided Base DN" : "Einträge in der angegebenen Base DN verfügbar", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} Eintrag in der angegebenen Base DN verfügbar","{objectsFound} Einträge in der angegebenen Base DN verfügbar"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Es ist ein Fehler aufgetreten. Bitte überprüfen Sie die Base DN wie auch die Verbindungseinstellungen und Anmeldeinformationen.", "Do you really want to delete the current Server Configuration?" : "Soll die aktuelle Serverkonfiguration wirklich gelöscht werden?", "Confirm Deletion" : "Löschen bestätigen", @@ -185,12 +185,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Benutzernamen dienen zum Speichern und Zuweisen von (Meta-)Daten. Um Benutzer eindeutig zu identifizieren und zu erkennen, besitzt jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung des jeweiligen Benutzernamens zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzers zugeordnet. Darüber hinaus wird der DN auch zwischengespeichert, um die Interaktion über LDAP zu reduzieren, was aber nicht zur Identifikation dient. Ändert sich der DN, werden die Änderungen gefunden. Der interne Benutzername wird durchgängig verwendet. Ein Löschen der Zuordnungen führt zum systemweiten Verbleib von Restdaten. Es bleibt nicht auf eine einzelne Konfiguration beschränkt, sondern wirkt sich auf alle LDAP-Konfigurationen aus! Löschen Sie die Zuordnungen nie innerhalb einer Produktivumgebung, sondern nur in einer Test- oder Experimentierumgebung.", "Clear Username-LDAP User Mapping" : "Lösche LDAP-Benutzernamenzuordnung", "Clear Groupname-LDAP Group Mapping" : "Lösche LDAP-Gruppennamenzuordnung", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Der %uid - Platzhalter fehlt. Dieser wird mit dem Anmeldenamen beim Abfragen von LDAP / AD ersetzt.", - "Verify settings and count groups" : "Einstellungen überprüfen und Gruppen zählen", - "Add a new and blank configuration" : "Eine neue und leere Konfiguration hinzufügen", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Sie können das Protokoll auslassen, außer wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://", + " entries available within the provided Base DN" : "Einträge in der angegebenen Base DN verfügbar", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann deshalb zu unerwartetem Systemverhalten kommen. Bitte kontaktieren Sie Ihren Systemadministator und bitten Sie um die Deaktivierung einer der beiden Anwendungen.", - "in bytes" : "in Bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann deshalb zu unerwartetem Systemverhalten kommen. Bitte kontaktieren Sie Ihren Systemadministator und bitten Sie um die Deaktivierung einer der beiden Anwendungen." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/el.js b/apps/user_ldap/l10n/el.js index 8ae2a283edba7..8e1937df7c9c6 100644 --- a/apps/user_ldap/l10n/el.js +++ b/apps/user_ldap/l10n/el.js @@ -15,6 +15,7 @@ OC.L10N.register( "Renewing …" : "Ανανέωση ...", "Very weak password" : "Πολύ αδύναμος κωδικός πρόσβασης", "Weak password" : "Ασθενές συνηματικό", + "So-so password" : "Συνθηματικό έτσι και έτσι", "Good password" : "Καλό συνθηματικό", "Strong password" : "Ισχυρό συνθηματικό", "The Base DN appears to be wrong" : "Το Base DN φαίνεται να είναι εσφαλμένο", @@ -31,7 +32,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Διακομιστής", "No object found in the given Base DN. Please revise." : "Δεν βρέθηκε αντικείμενο στο δηλωθέν Base DN. Παρακαλώ αναθεωρήστε.", "More than 1,000 directory entries available." : "Είναι διαθέσιμες περισσότερες από 1.000 εγγραφές καταλόγου.", - " entries available within the provided Base DN" : "διαθέσιμες καταχωρήσεις εντός του δηλωθέντος ", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Παρουσιάστηκε σφάλμα. Παρακαλούμε ελέγξτε το Base DN καθώς και τις ρυθμίσεις και τα διαπιστευτήρια σύνδεσης.", "Do you really want to delete the current Server Configuration?" : "Θέλετε να διαγράψετε τις τρέχουσες ρυθμίσεις του διακομιστή;", "Confirm Deletion" : "Επιβεβαίωση Διαγραφής", @@ -163,12 +163,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Τα ονόματα χρηστών χρησιμοποιούνται για την αποθήκευση και τον προσδιορισμό των (μετα) δεδομένων. Προκειμένου να προσδιοριστούν με ακρίβεια και να αναγνωριστούν οι χρήστες, κάθε χρήστης LDAP θα έχει ένα εσωτερικό όνομα. Αυτό απαιτεί μια αντιστοίχιση του ονόματος χρήστη με το χρήστη LDAP. Το όνομα χρήστη που δημιουργήθηκαν αντιστοιχίζεται στην UUID του χρήστη LDAP. Επιπροσθέτως, το DN αποθηκεύεται προσωρινά (cache) ώστε να μειωθεί η αλληλεπίδραση LDAP, αλλά δεν χρησιμοποιείται για την ταυτοποίηση. Αν το DN αλλάξει, οι αλλαγές θα εντοπιστούν. Το εσωτερικό όνομα χρήστη χρησιμοποιείται παντού. Η εκκαθάριση των αντιστοιχίσεων θα αφήσει υπολείμματα παντού. Η εκκαθάριση των αντιστοιχίσεων δεν επηρεάζεται από τη διαμόρφωση, επηρεάζει όλες τις διαμορφώσεις LDAP! Μην διαγράψετε ποτέ τις αντιστοιχίσεις σε ένα λειτουργικό περιβάλλον παρά μόνο σε δοκιμές ή σε πειραματικό στάδιο.", "Clear Username-LDAP User Mapping" : "Διαγραφή αντιστοίχησης Ονόματος Χρήστη LDAP-Χρήστη", "Clear Groupname-LDAP Group Mapping" : "Διαγραφή αντιστοίχησης Ονόματος Ομάδας-LDAP Ομάδας", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Η κράτηση θέσης %uid απουσιάζει. Θα αντικατασταθεί με το όνομα σύνδεσης κατά το ερώτημα ", - "Verify settings and count groups" : "Επιβεβαίωση ρυθμίσεων και καταμέτρηση ομάδων", - "Add a new and blank configuration" : "Προσθέτει μια νέα και κενή διαμόρφωση", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Μπορείτε να παραλείψετε το πρωτόκολλο, εκτός αν απαιτείται SSL. Σε αυτή την περίπτωση ξεκινήστε με ldaps://", + " entries available within the provided Base DN" : "διαθέσιμες καταχωρήσεις εντός του δηλωθέντος ", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Προσοχή: Οι εφαρμογές user_ldap και user_webdavauth είναι ασύμβατες. Μπορεί να αντιμετωπίσετε απρόβλεπτη συμπεριφορά. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να απενεργοποιήσει μία από αυτές.", - "in bytes" : "σε bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Προσοχή: Οι εφαρμογές user_ldap και user_webdavauth είναι ασύμβατες. Μπορεί να αντιμετωπίσετε απρόβλεπτη συμπεριφορά. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να απενεργοποιήσει μία από αυτές." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/el.json b/apps/user_ldap/l10n/el.json index 0552c332bc4ea..e311b3d8632be 100644 --- a/apps/user_ldap/l10n/el.json +++ b/apps/user_ldap/l10n/el.json @@ -13,6 +13,7 @@ "Renewing …" : "Ανανέωση ...", "Very weak password" : "Πολύ αδύναμος κωδικός πρόσβασης", "Weak password" : "Ασθενές συνηματικό", + "So-so password" : "Συνθηματικό έτσι και έτσι", "Good password" : "Καλό συνθηματικό", "Strong password" : "Ισχυρό συνθηματικό", "The Base DN appears to be wrong" : "Το Base DN φαίνεται να είναι εσφαλμένο", @@ -29,7 +30,6 @@ "{nthServer}. Server" : "{nthServer}. Διακομιστής", "No object found in the given Base DN. Please revise." : "Δεν βρέθηκε αντικείμενο στο δηλωθέν Base DN. Παρακαλώ αναθεωρήστε.", "More than 1,000 directory entries available." : "Είναι διαθέσιμες περισσότερες από 1.000 εγγραφές καταλόγου.", - " entries available within the provided Base DN" : "διαθέσιμες καταχωρήσεις εντός του δηλωθέντος ", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Παρουσιάστηκε σφάλμα. Παρακαλούμε ελέγξτε το Base DN καθώς και τις ρυθμίσεις και τα διαπιστευτήρια σύνδεσης.", "Do you really want to delete the current Server Configuration?" : "Θέλετε να διαγράψετε τις τρέχουσες ρυθμίσεις του διακομιστή;", "Confirm Deletion" : "Επιβεβαίωση Διαγραφής", @@ -161,12 +161,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Τα ονόματα χρηστών χρησιμοποιούνται για την αποθήκευση και τον προσδιορισμό των (μετα) δεδομένων. Προκειμένου να προσδιοριστούν με ακρίβεια και να αναγνωριστούν οι χρήστες, κάθε χρήστης LDAP θα έχει ένα εσωτερικό όνομα. Αυτό απαιτεί μια αντιστοίχιση του ονόματος χρήστη με το χρήστη LDAP. Το όνομα χρήστη που δημιουργήθηκαν αντιστοιχίζεται στην UUID του χρήστη LDAP. Επιπροσθέτως, το DN αποθηκεύεται προσωρινά (cache) ώστε να μειωθεί η αλληλεπίδραση LDAP, αλλά δεν χρησιμοποιείται για την ταυτοποίηση. Αν το DN αλλάξει, οι αλλαγές θα εντοπιστούν. Το εσωτερικό όνομα χρήστη χρησιμοποιείται παντού. Η εκκαθάριση των αντιστοιχίσεων θα αφήσει υπολείμματα παντού. Η εκκαθάριση των αντιστοιχίσεων δεν επηρεάζεται από τη διαμόρφωση, επηρεάζει όλες τις διαμορφώσεις LDAP! Μην διαγράψετε ποτέ τις αντιστοιχίσεις σε ένα λειτουργικό περιβάλλον παρά μόνο σε δοκιμές ή σε πειραματικό στάδιο.", "Clear Username-LDAP User Mapping" : "Διαγραφή αντιστοίχησης Ονόματος Χρήστη LDAP-Χρήστη", "Clear Groupname-LDAP Group Mapping" : "Διαγραφή αντιστοίχησης Ονόματος Ομάδας-LDAP Ομάδας", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Η κράτηση θέσης %uid απουσιάζει. Θα αντικατασταθεί με το όνομα σύνδεσης κατά το ερώτημα ", - "Verify settings and count groups" : "Επιβεβαίωση ρυθμίσεων και καταμέτρηση ομάδων", - "Add a new and blank configuration" : "Προσθέτει μια νέα και κενή διαμόρφωση", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Μπορείτε να παραλείψετε το πρωτόκολλο, εκτός αν απαιτείται SSL. Σε αυτή την περίπτωση ξεκινήστε με ldaps://", + " entries available within the provided Base DN" : "διαθέσιμες καταχωρήσεις εντός του δηλωθέντος ", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Προσοχή: Οι εφαρμογές user_ldap και user_webdavauth είναι ασύμβατες. Μπορεί να αντιμετωπίσετε απρόβλεπτη συμπεριφορά. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να απενεργοποιήσει μία από αυτές.", - "in bytes" : "σε bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Προσοχή: Οι εφαρμογές user_ldap και user_webdavauth είναι ασύμβατες. Μπορεί να αντιμετωπίσετε απρόβλεπτη συμπεριφορά. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να απενεργοποιήσει μία από αυτές." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/en_GB.js b/apps/user_ldap/l10n/en_GB.js index 25a33a1258814..5f2ca6dfa3bc7 100644 --- a/apps/user_ldap/l10n/en_GB.js +++ b/apps/user_ldap/l10n/en_GB.js @@ -33,7 +33,7 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Server", "No object found in the given Base DN. Please revise." : "No object found in the given Base DN. Please revise.", "More than 1,000 directory entries available." : "More than 1,000 directory entries available.", - " entries available within the provided Base DN" : " entries available within the provided Base DN", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} entry available within the provided Base DN","{objectsFound} entries available within the provided Base DN"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "An error occurred. Please check the Base DN, as well as connection settings and credentials.", "Do you really want to delete the current Server Configuration?" : "Do you really want to delete the current Server Configuration?", "Confirm Deletion" : "Confirm Deletion", @@ -187,12 +187,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Usernames are used to store and assign (meta) data. In order to precisely identify and recognise users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage.", "Clear Username-LDAP User Mapping" : "Clear Username-LDAP User Mapping", "Clear Groupname-LDAP Group Mapping" : "Clear Groupname-LDAP Group Mapping", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD.", - "Verify settings and count groups" : "Verify settings and count groups", - "Add a new and blank configuration" : "Add a new and blank configuration", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "You can omit the protocol, except you require SSL. Then start with ldaps://", + " entries available within the provided Base DN" : " entries available within the provided Base DN", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them.", - "in bytes" : "in bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/en_GB.json b/apps/user_ldap/l10n/en_GB.json index b1e4dcead3828..f45e625b33af9 100644 --- a/apps/user_ldap/l10n/en_GB.json +++ b/apps/user_ldap/l10n/en_GB.json @@ -31,7 +31,7 @@ "{nthServer}. Server" : "{nthServer}. Server", "No object found in the given Base DN. Please revise." : "No object found in the given Base DN. Please revise.", "More than 1,000 directory entries available." : "More than 1,000 directory entries available.", - " entries available within the provided Base DN" : " entries available within the provided Base DN", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} entry available within the provided Base DN","{objectsFound} entries available within the provided Base DN"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "An error occurred. Please check the Base DN, as well as connection settings and credentials.", "Do you really want to delete the current Server Configuration?" : "Do you really want to delete the current Server Configuration?", "Confirm Deletion" : "Confirm Deletion", @@ -185,12 +185,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Usernames are used to store and assign (meta) data. In order to precisely identify and recognise users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage.", "Clear Username-LDAP User Mapping" : "Clear Username-LDAP User Mapping", "Clear Groupname-LDAP Group Mapping" : "Clear Groupname-LDAP Group Mapping", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD.", - "Verify settings and count groups" : "Verify settings and count groups", - "Add a new and blank configuration" : "Add a new and blank configuration", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "You can omit the protocol, except you require SSL. Then start with ldaps://", + " entries available within the provided Base DN" : " entries available within the provided Base DN", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them.", - "in bytes" : "in bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es.js b/apps/user_ldap/l10n/es.js index d7b5b9c6c1501..f847269a80449 100644 --- a/apps/user_ldap/l10n/es.js +++ b/apps/user_ldap/l10n/es.js @@ -1,8 +1,8 @@ OC.L10N.register( "user_ldap", { - "Failed to clear the mappings." : "Ocurrió un fallo al borrar las asignaciones.", - "Failed to delete the server configuration" : "No se pudo borrar la configuración del servidor", + "Failed to clear the mappings." : "Se ha producido un fallo al borrar las asignaciones.", + "Failed to delete the server configuration" : "No se ha podido borrar la configuración del servidor", "Invalid configuration: Anonymous binding is not allowed." : "Configuración no válida: No se permite enlazado anónimo.", "Valid configuration, connection established!" : "Configuración válida. ¡Conexión establecida!", "Valid configuration, but binding failed. Please check the server settings and credentials." : "Configuración válida, pero falló el enlazado. Por favor compruebe los ajustes del servidor y las credenciales.", @@ -27,13 +27,13 @@ OC.L10N.register( "Select groups" : "Seleccionar grupos", "Select object classes" : "Seleccionar la clase de objeto", "Please check the credentials, they seem to be wrong." : "Por favor verifique las credenciales, parecen no ser correctas.", - "Please specify the port, it could not be auto-detected." : "Por favor especifique el puerto, no pudo ser autodetectado.", + "Please specify the port, it could not be auto-detected." : "Por favor especifique el puerto, no se ha podido autodetectar.", "Base DN could not be auto-detected, please revise credentials, host and port." : "Base DN no puede ser detectada automáticamente, por favor revise credenciales, host y puerto.", - "Could not detect Base DN, please enter it manually." : "No se pudo detectar Base DN, por favor ingrésela manualmente.", + "Could not detect Base DN, please enter it manually." : "No se ha podido detectar Base DN, por favor introdúzcala manualmente.", "{nthServer}. Server" : "{nthServer}. servidor", "No object found in the given Base DN. Please revise." : "No se encuentra ningún objeto en la Base DN dada. Por favor revisar.", "More than 1,000 directory entries available." : "Más de 1.000 entradas de directorios disponibles.", - " entries available within the provided Base DN" : "entradas disponibles dentro de la BaseDN provista", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} entrada disponible en la base DN proporcionada","{objectsFound} entradas disponibles en la base DN proporcionada"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Un error ocurrió. Por favor revise la Base DN, también como la configuración de la conexión y credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente desea eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar eliminación", @@ -105,7 +105,7 @@ OC.L10N.register( "Detect Base DN" : "Detectar Base DN", "Test Base DN" : "Probar Base DN", "Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita peticiones automáticas al LDAP. Mejor para grandes configuraciones, pero requiere cierto conocimiento de LDAP.", - "Manually enter LDAP filters (recommended for large directories)" : "Ingrese manualmente los filtros LDAP (Recomendado para grandes directorios)", + "Manually enter LDAP filters (recommended for large directories)" : "Introduzca manualmente los filtros LDAP (recomendado para directorios grandes)", "Listing and searching for users is constrained by these criteria:" : "El listado y la búsqueda de usuarios es restringido por estos criterios:", "The most common object classes for users are organizationalPerson, person, user, and inetOrgPerson. If you are not sure which object class to select, please consult your directory admin." : "Los objetos de clases más comunes para los usuarios son organizationalPerson, persona, usuario y inetOrgPerson. Si no está seguro de qué objeto de clase seleccionar, por favor, consulte con su administrador de directorio. ", "The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica que usuarios LDAP pueden tener acceso a %s.", @@ -187,12 +187,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo o experimental.", "Clear Username-LDAP User Mapping" : "Borrar la asignación de los Nombres de usuario de los usuarios LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar la asignación de los Nombres de grupo de los grupos de LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El marcador de posición %uid no está presente. Será reemplazado con el nombre de inicio de sesión cuando se consulte LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://", + " entries available within the provided Base DN" : "entradas disponibles dentro de la BaseDN provista", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pídale a su administrador del sistema que desactive uno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pídale a su administrador del sistema que desactive uno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es.json b/apps/user_ldap/l10n/es.json index c3b8606cbc519..3bf0944ee2e9f 100644 --- a/apps/user_ldap/l10n/es.json +++ b/apps/user_ldap/l10n/es.json @@ -1,6 +1,6 @@ { "translations": { - "Failed to clear the mappings." : "Ocurrió un fallo al borrar las asignaciones.", - "Failed to delete the server configuration" : "No se pudo borrar la configuración del servidor", + "Failed to clear the mappings." : "Se ha producido un fallo al borrar las asignaciones.", + "Failed to delete the server configuration" : "No se ha podido borrar la configuración del servidor", "Invalid configuration: Anonymous binding is not allowed." : "Configuración no válida: No se permite enlazado anónimo.", "Valid configuration, connection established!" : "Configuración válida. ¡Conexión establecida!", "Valid configuration, but binding failed. Please check the server settings and credentials." : "Configuración válida, pero falló el enlazado. Por favor compruebe los ajustes del servidor y las credenciales.", @@ -25,13 +25,13 @@ "Select groups" : "Seleccionar grupos", "Select object classes" : "Seleccionar la clase de objeto", "Please check the credentials, they seem to be wrong." : "Por favor verifique las credenciales, parecen no ser correctas.", - "Please specify the port, it could not be auto-detected." : "Por favor especifique el puerto, no pudo ser autodetectado.", + "Please specify the port, it could not be auto-detected." : "Por favor especifique el puerto, no se ha podido autodetectar.", "Base DN could not be auto-detected, please revise credentials, host and port." : "Base DN no puede ser detectada automáticamente, por favor revise credenciales, host y puerto.", - "Could not detect Base DN, please enter it manually." : "No se pudo detectar Base DN, por favor ingrésela manualmente.", + "Could not detect Base DN, please enter it manually." : "No se ha podido detectar Base DN, por favor introdúzcala manualmente.", "{nthServer}. Server" : "{nthServer}. servidor", "No object found in the given Base DN. Please revise." : "No se encuentra ningún objeto en la Base DN dada. Por favor revisar.", "More than 1,000 directory entries available." : "Más de 1.000 entradas de directorios disponibles.", - " entries available within the provided Base DN" : "entradas disponibles dentro de la BaseDN provista", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} entrada disponible en la base DN proporcionada","{objectsFound} entradas disponibles en la base DN proporcionada"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Un error ocurrió. Por favor revise la Base DN, también como la configuración de la conexión y credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente desea eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar eliminación", @@ -103,7 +103,7 @@ "Detect Base DN" : "Detectar Base DN", "Test Base DN" : "Probar Base DN", "Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Evita peticiones automáticas al LDAP. Mejor para grandes configuraciones, pero requiere cierto conocimiento de LDAP.", - "Manually enter LDAP filters (recommended for large directories)" : "Ingrese manualmente los filtros LDAP (Recomendado para grandes directorios)", + "Manually enter LDAP filters (recommended for large directories)" : "Introduzca manualmente los filtros LDAP (recomendado para directorios grandes)", "Listing and searching for users is constrained by these criteria:" : "El listado y la búsqueda de usuarios es restringido por estos criterios:", "The most common object classes for users are organizationalPerson, person, user, and inetOrgPerson. If you are not sure which object class to select, please consult your directory admin." : "Los objetos de clases más comunes para los usuarios son organizationalPerson, persona, usuario y inetOrgPerson. Si no está seguro de qué objeto de clase seleccionar, por favor, consulte con su administrador de directorio. ", "The filter specifies which LDAP users shall have access to the %s instance." : "El filtro especifica que usuarios LDAP pueden tener acceso a %s.", @@ -185,12 +185,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuarios son usados para almacenar y asignar (meta) datos. Con el fin de identificar de forma precisa y reconocer usuarios, cada usuario de LDAP tendrá un nombre de usuario interno. Esto requiere un mapeo entre el nombre de usuario y el usuario del LDAP. El nombre de usuario creado es mapeado respecto al UUID del usuario en el LDAP. De forma adicional, el DN es cacheado para reducir la interacción entre el LDAP, pero no es usado para identificar. Si el DN cambia, los cambios serán aplicados. El nombre de usuario interno es usado por encima de todo. Limpiar los mapeos dejará restos por todas partes, no es sensible a configuración, ¡afecta a todas las configuraciones del LDAP! Nunca limpies los mapeos en un entorno de producción, únicamente en una fase de desarrollo o experimental.", "Clear Username-LDAP User Mapping" : "Borrar la asignación de los Nombres de usuario de los usuarios LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar la asignación de los Nombres de grupo de los grupos de LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El marcador de posición %uid no está presente. Será reemplazado con el nombre de inicio de sesión cuando se consulte LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://", + " entries available within the provided Base DN" : "entradas disponibles dentro de la BaseDN provista", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pídale a su administrador del sistema que desactive uno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pídale a su administrador del sistema que desactive uno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es_419.js b/apps/user_ldap/l10n/es_419.js index 4d17ee756be4b..5a3d3d29d0d64 100644 --- a/apps/user_ldap/l10n/es_419.js +++ b/apps/user_ldap/l10n/es_419.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es_419.json b/apps/user_ldap/l10n/es_419.json index a73b974c930c2..07497d06ceb3f 100644 --- a/apps/user_ldap/l10n/es_419.json +++ b/apps/user_ldap/l10n/es_419.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es_AR.js b/apps/user_ldap/l10n/es_AR.js index 2ce4e1ad0bd45..c45ffc1b9b3ab 100644 --- a/apps/user_ldap/l10n/es_AR.js +++ b/apps/user_ldap/l10n/es_AR.js @@ -29,7 +29,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Favor de verificar. ", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Favor de verificar la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente desea eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -175,12 +174,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los nombres de usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Nombre de usuario interno. Esto requiere un mapeo del Nombre de usuario al usuario LDAP. El nombre de usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Nombre del usuario interno se usa en todos lados. Limpiar los mapeos dejará sobras en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borre las configuraciones en el ambiente de producción, sólo hágalo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Nombres de usuario a los Usuarios LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos de LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición esta faltando. Será reemplazado con el nombre de usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Usted puede expermientar comportamientos inesperados. Favor de solicitar a su administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Usted puede expermientar comportamientos inesperados. Favor de solicitar a su administrador del sistema deshabilitar alguno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es_AR.json b/apps/user_ldap/l10n/es_AR.json index 03049d7524935..910c7ac21bd60 100644 --- a/apps/user_ldap/l10n/es_AR.json +++ b/apps/user_ldap/l10n/es_AR.json @@ -27,7 +27,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Favor de verificar. ", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Favor de verificar la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente desea eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -173,12 +172,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los nombres de usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Nombre de usuario interno. Esto requiere un mapeo del Nombre de usuario al usuario LDAP. El nombre de usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Nombre del usuario interno se usa en todos lados. Limpiar los mapeos dejará sobras en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borre las configuraciones en el ambiente de producción, sólo hágalo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Nombres de usuario a los Usuarios LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos de LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición esta faltando. Será reemplazado con el nombre de usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puede omitir el protocolo, excepto si requiere SSL. En ese caso, empiece con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Usted puede expermientar comportamientos inesperados. Favor de solicitar a su administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Usted puede expermientar comportamientos inesperados. Favor de solicitar a su administrador del sistema deshabilitar alguno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es_CL.js b/apps/user_ldap/l10n/es_CL.js index 6c763343f5414..69592f61ace89 100644 --- a/apps/user_ldap/l10n/es_CL.js +++ b/apps/user_ldap/l10n/es_CL.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es_CL.json b/apps/user_ldap/l10n/es_CL.json index 762f18dd04c2f..7ce92b5fc3aeb 100644 --- a/apps/user_ldap/l10n/es_CL.json +++ b/apps/user_ldap/l10n/es_CL.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es_CO.js b/apps/user_ldap/l10n/es_CO.js index 6c763343f5414..69592f61ace89 100644 --- a/apps/user_ldap/l10n/es_CO.js +++ b/apps/user_ldap/l10n/es_CO.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es_CO.json b/apps/user_ldap/l10n/es_CO.json index 762f18dd04c2f..7ce92b5fc3aeb 100644 --- a/apps/user_ldap/l10n/es_CO.json +++ b/apps/user_ldap/l10n/es_CO.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es_CR.js b/apps/user_ldap/l10n/es_CR.js index 6c763343f5414..69592f61ace89 100644 --- a/apps/user_ldap/l10n/es_CR.js +++ b/apps/user_ldap/l10n/es_CR.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es_CR.json b/apps/user_ldap/l10n/es_CR.json index 762f18dd04c2f..7ce92b5fc3aeb 100644 --- a/apps/user_ldap/l10n/es_CR.json +++ b/apps/user_ldap/l10n/es_CR.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es_DO.js b/apps/user_ldap/l10n/es_DO.js index 6c763343f5414..69592f61ace89 100644 --- a/apps/user_ldap/l10n/es_DO.js +++ b/apps/user_ldap/l10n/es_DO.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es_DO.json b/apps/user_ldap/l10n/es_DO.json index 762f18dd04c2f..7ce92b5fc3aeb 100644 --- a/apps/user_ldap/l10n/es_DO.json +++ b/apps/user_ldap/l10n/es_DO.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es_EC.js b/apps/user_ldap/l10n/es_EC.js index 6c763343f5414..69592f61ace89 100644 --- a/apps/user_ldap/l10n/es_EC.js +++ b/apps/user_ldap/l10n/es_EC.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es_EC.json b/apps/user_ldap/l10n/es_EC.json index 762f18dd04c2f..7ce92b5fc3aeb 100644 --- a/apps/user_ldap/l10n/es_EC.json +++ b/apps/user_ldap/l10n/es_EC.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es_GT.js b/apps/user_ldap/l10n/es_GT.js index 6c763343f5414..69592f61ace89 100644 --- a/apps/user_ldap/l10n/es_GT.js +++ b/apps/user_ldap/l10n/es_GT.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es_GT.json b/apps/user_ldap/l10n/es_GT.json index 762f18dd04c2f..7ce92b5fc3aeb 100644 --- a/apps/user_ldap/l10n/es_GT.json +++ b/apps/user_ldap/l10n/es_GT.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es_HN.js b/apps/user_ldap/l10n/es_HN.js index 6c763343f5414..69592f61ace89 100644 --- a/apps/user_ldap/l10n/es_HN.js +++ b/apps/user_ldap/l10n/es_HN.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es_HN.json b/apps/user_ldap/l10n/es_HN.json index 762f18dd04c2f..7ce92b5fc3aeb 100644 --- a/apps/user_ldap/l10n/es_HN.json +++ b/apps/user_ldap/l10n/es_HN.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es_MX.js b/apps/user_ldap/l10n/es_MX.js index 4d17ee756be4b..3c7f274aeaf01 100644 --- a/apps/user_ldap/l10n/es_MX.js +++ b/apps/user_ldap/l10n/es_MX.js @@ -33,7 +33,7 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} registro disponible dentro del DN base proporcionado","{objectsFound} registros disponibles dentro del DN base proporcionado"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -187,12 +187,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es_MX.json b/apps/user_ldap/l10n/es_MX.json index a73b974c930c2..efa2733f12330 100644 --- a/apps/user_ldap/l10n/es_MX.json +++ b/apps/user_ldap/l10n/es_MX.json @@ -31,7 +31,7 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} registro disponible dentro del DN base proporcionado","{objectsFound} registros disponibles dentro del DN base proporcionado"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -185,12 +185,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es_NI.js b/apps/user_ldap/l10n/es_NI.js index 6c763343f5414..69592f61ace89 100644 --- a/apps/user_ldap/l10n/es_NI.js +++ b/apps/user_ldap/l10n/es_NI.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es_NI.json b/apps/user_ldap/l10n/es_NI.json index 762f18dd04c2f..7ce92b5fc3aeb 100644 --- a/apps/user_ldap/l10n/es_NI.json +++ b/apps/user_ldap/l10n/es_NI.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es_PA.js b/apps/user_ldap/l10n/es_PA.js index 6c763343f5414..69592f61ace89 100644 --- a/apps/user_ldap/l10n/es_PA.js +++ b/apps/user_ldap/l10n/es_PA.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es_PA.json b/apps/user_ldap/l10n/es_PA.json index 762f18dd04c2f..7ce92b5fc3aeb 100644 --- a/apps/user_ldap/l10n/es_PA.json +++ b/apps/user_ldap/l10n/es_PA.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es_PE.js b/apps/user_ldap/l10n/es_PE.js index 6c763343f5414..69592f61ace89 100644 --- a/apps/user_ldap/l10n/es_PE.js +++ b/apps/user_ldap/l10n/es_PE.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es_PE.json b/apps/user_ldap/l10n/es_PE.json index 762f18dd04c2f..7ce92b5fc3aeb 100644 --- a/apps/user_ldap/l10n/es_PE.json +++ b/apps/user_ldap/l10n/es_PE.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es_PR.js b/apps/user_ldap/l10n/es_PR.js index 6c763343f5414..69592f61ace89 100644 --- a/apps/user_ldap/l10n/es_PR.js +++ b/apps/user_ldap/l10n/es_PR.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es_PR.json b/apps/user_ldap/l10n/es_PR.json index 762f18dd04c2f..7ce92b5fc3aeb 100644 --- a/apps/user_ldap/l10n/es_PR.json +++ b/apps/user_ldap/l10n/es_PR.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es_PY.js b/apps/user_ldap/l10n/es_PY.js index 6c763343f5414..69592f61ace89 100644 --- a/apps/user_ldap/l10n/es_PY.js +++ b/apps/user_ldap/l10n/es_PY.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es_PY.json b/apps/user_ldap/l10n/es_PY.json index 762f18dd04c2f..7ce92b5fc3aeb 100644 --- a/apps/user_ldap/l10n/es_PY.json +++ b/apps/user_ldap/l10n/es_PY.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es_SV.js b/apps/user_ldap/l10n/es_SV.js index 6c763343f5414..69592f61ace89 100644 --- a/apps/user_ldap/l10n/es_SV.js +++ b/apps/user_ldap/l10n/es_SV.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es_SV.json b/apps/user_ldap/l10n/es_SV.json index 762f18dd04c2f..7ce92b5fc3aeb 100644 --- a/apps/user_ldap/l10n/es_SV.json +++ b/apps/user_ldap/l10n/es_SV.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/es_UY.js b/apps/user_ldap/l10n/es_UY.js index 6c763343f5414..69592f61ace89 100644 --- a/apps/user_ldap/l10n/es_UY.js +++ b/apps/user_ldap/l10n/es_UY.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/es_UY.json b/apps/user_ldap/l10n/es_UY.json index 762f18dd04c2f..7ce92b5fc3aeb 100644 --- a/apps/user_ldap/l10n/es_UY.json +++ b/apps/user_ldap/l10n/es_UY.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "No fue posible encontrar ningún objeto en el DN Base dado. Por favor verifica.", "More than 1,000 directory entries available." : "Se encuentran disponibles más de 1,000 elementos de directoiros. ", - " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Se presentó un error. Por favor verifica la DN Base, así como las configuraciones de la conexión y las credenciales.", "Do you really want to delete the current Server Configuration?" : "¿Realmente deseas eliminar la configuración actual del servidor?", "Confirm Deletion" : "Confirmar el borrado", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Los usuario son usados para almacenar y asignar (meta) datos. Para poder identificar y reconocer con precisión a los usuarios, cada usuario LDAP contará con un Usuario interno. Esto requiere un mapeo del Usuario al usuario-LDAP. El Usuario creado se mapea al UUID del usuario LDAP. Adicionalmente el DN se guarda en caché para reducir las interacciones con LDAP, pero no se usa para identificación. Si el DN cambia, las modficaciones serán encontradas. El Usuario interno se usa en todos lados. Limpiar los mapeos dejará rastros en todos lados. ¡Limpiar los mapeos no es senible a la configuración, afecta a todas las configuraciones LDAP! Nunca borres las configuraciones en el ambiente de producción, sólo házlo en los ambientes de pruebas o de experimentación. ", "Clear Username-LDAP User Mapping" : "Borrar el mapeo de los Usuarios a los Usuarios-LDAP", "Clear Groupname-LDAP Group Mapping" : "Borrar el mapeo de los Nombres de grupo a los grupos-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "El id %u del marcador de posición falta. Será reemplazado con el usuario al consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar configuraciones y contar grupos", - "Add a new and blank configuration" : "Agregar una configuración nueva y en blanco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Puedes omitir el protocolo, excepto si requieres SSL. En ese caso, empieza con ldaps://", + " entries available within the provided Base DN" : "elementos disponibles dentro del DN Base proporcionado", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos.", - "in bytes" : "en bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puedes expermientar comportamientos inesperados. Por favor solicita a tu administrador del sistema deshabilitar alguno de ellos." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/et_EE.js b/apps/user_ldap/l10n/et_EE.js index 2682e624a2cdb..f3d72136da204 100644 --- a/apps/user_ldap/l10n/et_EE.js +++ b/apps/user_ldap/l10n/et_EE.js @@ -1,25 +1,36 @@ OC.L10N.register( "user_ldap", { - "Failed to clear the mappings." : "Vastendususte puhastamine ebaõnnestus.", + "Failed to clear the mappings." : "Vastenduste puhastamine ebaõnnestus.", "Failed to delete the server configuration" : "Serveri seadistuse kustutamine ebaõnnestus", - "The configuration is valid and the connection could be established!" : "Seadistus on korrektne ning ühendus on olemas!", - "The configuration is valid, but the Bind failed. Please check the server settings and credentials." : "Seadistus on korrektne, kuid ühendus ebaõnnestus. Palun kontrolli serveri seadeid ja ühenduseks kasutatavaid kasutajatunnuseid.", - "The configuration is invalid. Please have a look at the logs for further details." : "Seadistus on vigane. Lisainfot vaata palun logidest.", + "Invalid configuration: Anonymous binding is not allowed." : "Vale seadistus: anonüümne sidumine pole lubatud.", + "Valid configuration, connection established!" : "Valiidne seadistus, ühendus loodud!", + "Invalid configuration. Please have a look at the logs for further details." : "Vigane seadistus. Rohkema info jaoks vaadake logisid.", "No action specified" : "Tegevusi pole määratletud", "No configuration specified" : "Seadistust pole määratletud", "No data specified" : "Andmeid pole määratletud", " Could not set configuration %s" : "Ei suutnud seadistada %s", "Action does not exist" : "Toimingut pole olemas", + "Renewing …" : "Värskendamine ...", + "Very weak password" : "Väga nõrk parool", + "Weak password" : "Nõrk parool", + "So-so password" : "Enam-vähem sobiv parool", + "Good password" : "Hea parool", + "Strong password" : "Väga hea parool", "The Base DN appears to be wrong" : "Näib, et Base DN on vale", + "Testing configuration…" : "Seadistuse testimine", "Configuration incorrect" : "Seadistus on vigane", "Configuration incomplete" : "Seadistus on puudulik", "Configuration OK" : "Seadistus on korras", "Select groups" : "Vali grupid", "Select object classes" : "Vali objekti klassid", - "Please check the credentials, they seem to be wrong." : "Palu nkontrolli kasutajaandmeid, need näivad olevat valed.", + "Please check the credentials, they seem to be wrong." : "Palun kontrolli kasutajaandmeid, need näivad olevat valed.", + "Please specify the port, it could not be auto-detected." : "Palun valige port, seda pole võimalik automaatselt tuvastada", + "Base DN could not be auto-detected, please revise credentials, host and port." : "BaasDN-i ei saa automaatselt tuvastada, palun vaata üle kasutajaandned, server ja port.", "Could not detect Base DN, please enter it manually." : "BaasDN-i tuvastamine ebaõnnestus. Palun sisesta see käsitsi.", "{nthServer}. Server" : "{nthServer}. Server", + "No object found in the given Base DN. Please revise." : "BaasDN-is ei leitu ühtegi objekti.", + "More than 1,000 directory entries available." : "Saadaval on rohkem kui 1000 kataloogi kirjet.", "Do you really want to delete the current Server Configuration?" : "Oled kindel, et tahad kustutada praegust serveri seadistust?", "Confirm Deletion" : "Kinnita kustutamine", "Mappings cleared successfully!" : "Vastandused on eemaldatud!", @@ -28,6 +39,11 @@ OC.L10N.register( "Select attributes" : "Vali atribuudid", "User found and settings verified." : "Kasutaja leiti ja seaded on kontrollitud.", "Please provide a login name to test against" : "Palun sisesta kasutajanimi, mida testida", + "Please login with the new password" : "Palun logi uue parooliga sisse", + "Your password will expire tomorrow." : "Su parool aegub homme.", + "Your password will expire today." : "Su parool aegub täna.", + "_Your password will expire within %n day._::_Your password will expire within %n days._" : ["Su parool aegub %n päeva jooksul.","Su parool aegub %n päeva jooksul."], + "LDAP / AD integration" : "LDAP / AD integratsioon", "_%s group found_::_%s groups found_" : ["%s grupp leitud","%s gruppi leitud"], "_%s user found_::_%s users found_" : ["%s kasutaja leitud","%s kasutajat leitud"], "Could not find the desired feature" : "Ei suuda leida soovitud funktsioonaalsust", @@ -43,43 +59,47 @@ OC.L10N.register( "Edit LDAP Query" : "Muuda LDAP päringut", "LDAP Filter:" : "LDAP filter:", "The filter specifies which LDAP groups shall have access to the %s instance." : "Filter määrab millised LDAP grupid saavad ligipääsu sellele %s instantsile.", - "Verify settings and count groups" : "Kontrolli seadeid ja loe grupid üle", "LDAP / AD Username:" : "LDAP / AD kasutajanimi:", "LDAP / AD Email Address:" : "LDAP / AD e-posti aadress:", "Other Attributes:" : "Muud atribuudid:", - "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" : "Määrab sisselogimisel kasutatava filtri. %%uid asendab sisselogimistegevuses kasutajanime. Näide: \"uid=%%uid\"", "Test Loginname" : "Testi kasutajanime", "Verify settings" : "Kontrolli seadeid", "1. Server" : "1. Server", "%s. Server:" : "%s. Server:", - "Add a new and blank configuration" : "Lisa uus ja tühi seadistus", "Delete the current configuration" : "Kustuta praegune seadistus", "Host" : "Host", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Sa ei saa protokolli ära jätta, välja arvatud siis, kui sa nõuad SSL-ühendust. Sel juhul alusta eesliitega ldaps://", "Port" : "Port", "Detect Port" : "Tuvasta port", "User DN" : "Kasutaja DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "Klientkasutaja DN, kellega seotakse, nt. uid=agent,dc=näidis,dc=com. Anonüümseks ligipääsuks jäta DN ja parool tühjaks.", "Password" : "Parool", "For anonymous access, leave DN and Password empty." : "Anonüümseks ligipääsuks jäta DN ja parool tühjaks.", + "Save Credentials" : "Salvesta kasutajaandmed", "One Base DN per line" : "Üks baas-DN rea kohta", "You can specify Base DN for users and groups in the Advanced tab" : "Sa saad kasutajate ja gruppide baas DN-i määrata lisavalikute vahekaardilt", "Detect Base DN" : "Tuvasta Baas DN", "Test Base DN" : "Testi Baas DN-i", "Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Väldib automaatseid LDAP päringuid, Parem suurematele saitidele, aga nõuab mõningaid teadmisi LDAP kohta.", - "Manually enter LDAP filters (recommended for large directories)" : "Sisesta LDAP filtrid automaatselt (sooitatav suurtele kataloogidele)", + "Manually enter LDAP filters (recommended for large directories)" : "Sisesta LDAP filtrid käsitsi (sooitatav suurtele kataloogidele)", + "The most common object classes for users are organizationalPerson, person, user, and inetOrgPerson. If you are not sure which object class to select, please consult your directory admin." : "Leivinuimad objektiklassid kasutajate jaoks on organizationalPerson, person, user ja inetOrgPerson. Kui sa pole kindel, millist objektiklassi valida, pöördu kataloogi haldaja poole.", "The filter specifies which LDAP users shall have access to the %s instance." : "Filter määrab millised LDAP kasutajad pääsevad ligi %s instantsile.", + "Verify settings and count users" : "Kinnita seaded ja loetle kasutajad", "Saving" : "Salvestamine", "Back" : "Tagasi", "Continue" : "Jätka", - "LDAP" : "LDAP", + "Please renew your password." : "Palun uuenda oma parool.", + "Please try again or contact your administrator." : "Proovi uuesti või võta ühendust administraatoriga.", + "Current password" : "Praegune parool", + "New password" : "Uus parool", + "Renew password" : "Uuenda parooli", + "Wrong password." : "Vale parool.", + "Cancel" : "Loobu", "Server" : "Server", "Users" : "Kasutajad", "Login Attributes" : "Sisselogimise andmed", "Groups" : "Grupid", "Expert" : "Ekspert", "Advanced" : "Täpsem", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Hoiatus: rakendused user_ldap ja user_webdavauht ei ole ühilduvad. Töös võib esineda ootamatuid tõrkeid.\nPalu oma süsteemihalduril üks neist rakendustest kasutusest eemaldada.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "Hoiatus:PHP LDAP moodul pole paigaldatud ning LDAP kasutamine ei ole võimalik. Palu oma süsteeihaldurit see paigaldada.", "Connection Settings" : "Ühenduse seaded", "Configuration Active" : "Seadistus aktiivne", @@ -96,6 +116,7 @@ OC.L10N.register( "Directory Settings" : "Kausta seaded", "User Display Name Field" : "Kasutaja näidatava nime väli", "The LDAP attribute to use to generate the user's display name." : "LDAP atribuut, mida kasutatakse kasutaja kuvatava nime loomiseks.", + "Optional. An LDAP attribute to be added to the display name in brackets. Results in e.g. »John Doe (john.doe@example.org)«." : "Valikuline. LDAP atribuut, mis lisatakse nime järele sulgudesse. Näiteks »John Doe (john.doe@example.org)«.", "Base User Tree" : "Baaskasutaja puu", "One User Base DN per line" : "Üks kasutaja baas-DN rea kohta", "User Search Attributes" : "Kasutaja otsingu atribuudid", @@ -125,6 +146,8 @@ OC.L10N.register( "Username-LDAP User Mapping" : "LDAP-Kasutajatunnus Kasutaja Vastendus", "Clear Username-LDAP User Mapping" : "Puhasta LDAP-Kasutajatunnus Kasutaja Vastendus", "Clear Groupname-LDAP Group Mapping" : "Puhasta LDAP-Grupinimi Grupp Vastendus", - "in bytes" : "baitides" + " entries available within the provided Base DN" : "kirjet saadaval ette enatud BaasDN-is.", + "LDAP" : "LDAP", + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Hoiatus: rakendused user_ldap ja user_webdavauht ei ole ühilduvad. Töös võib esineda ootamatuid tõrkeid.\nPalu oma süsteemihalduril üks neist rakendustest kasutusest eemaldada." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/et_EE.json b/apps/user_ldap/l10n/et_EE.json index fa7680eab4eb0..eef1bb12da329 100644 --- a/apps/user_ldap/l10n/et_EE.json +++ b/apps/user_ldap/l10n/et_EE.json @@ -1,23 +1,34 @@ { "translations": { - "Failed to clear the mappings." : "Vastendususte puhastamine ebaõnnestus.", + "Failed to clear the mappings." : "Vastenduste puhastamine ebaõnnestus.", "Failed to delete the server configuration" : "Serveri seadistuse kustutamine ebaõnnestus", - "The configuration is valid and the connection could be established!" : "Seadistus on korrektne ning ühendus on olemas!", - "The configuration is valid, but the Bind failed. Please check the server settings and credentials." : "Seadistus on korrektne, kuid ühendus ebaõnnestus. Palun kontrolli serveri seadeid ja ühenduseks kasutatavaid kasutajatunnuseid.", - "The configuration is invalid. Please have a look at the logs for further details." : "Seadistus on vigane. Lisainfot vaata palun logidest.", + "Invalid configuration: Anonymous binding is not allowed." : "Vale seadistus: anonüümne sidumine pole lubatud.", + "Valid configuration, connection established!" : "Valiidne seadistus, ühendus loodud!", + "Invalid configuration. Please have a look at the logs for further details." : "Vigane seadistus. Rohkema info jaoks vaadake logisid.", "No action specified" : "Tegevusi pole määratletud", "No configuration specified" : "Seadistust pole määratletud", "No data specified" : "Andmeid pole määratletud", " Could not set configuration %s" : "Ei suutnud seadistada %s", "Action does not exist" : "Toimingut pole olemas", + "Renewing …" : "Värskendamine ...", + "Very weak password" : "Väga nõrk parool", + "Weak password" : "Nõrk parool", + "So-so password" : "Enam-vähem sobiv parool", + "Good password" : "Hea parool", + "Strong password" : "Väga hea parool", "The Base DN appears to be wrong" : "Näib, et Base DN on vale", + "Testing configuration…" : "Seadistuse testimine", "Configuration incorrect" : "Seadistus on vigane", "Configuration incomplete" : "Seadistus on puudulik", "Configuration OK" : "Seadistus on korras", "Select groups" : "Vali grupid", "Select object classes" : "Vali objekti klassid", - "Please check the credentials, they seem to be wrong." : "Palu nkontrolli kasutajaandmeid, need näivad olevat valed.", + "Please check the credentials, they seem to be wrong." : "Palun kontrolli kasutajaandmeid, need näivad olevat valed.", + "Please specify the port, it could not be auto-detected." : "Palun valige port, seda pole võimalik automaatselt tuvastada", + "Base DN could not be auto-detected, please revise credentials, host and port." : "BaasDN-i ei saa automaatselt tuvastada, palun vaata üle kasutajaandned, server ja port.", "Could not detect Base DN, please enter it manually." : "BaasDN-i tuvastamine ebaõnnestus. Palun sisesta see käsitsi.", "{nthServer}. Server" : "{nthServer}. Server", + "No object found in the given Base DN. Please revise." : "BaasDN-is ei leitu ühtegi objekti.", + "More than 1,000 directory entries available." : "Saadaval on rohkem kui 1000 kataloogi kirjet.", "Do you really want to delete the current Server Configuration?" : "Oled kindel, et tahad kustutada praegust serveri seadistust?", "Confirm Deletion" : "Kinnita kustutamine", "Mappings cleared successfully!" : "Vastandused on eemaldatud!", @@ -26,6 +37,11 @@ "Select attributes" : "Vali atribuudid", "User found and settings verified." : "Kasutaja leiti ja seaded on kontrollitud.", "Please provide a login name to test against" : "Palun sisesta kasutajanimi, mida testida", + "Please login with the new password" : "Palun logi uue parooliga sisse", + "Your password will expire tomorrow." : "Su parool aegub homme.", + "Your password will expire today." : "Su parool aegub täna.", + "_Your password will expire within %n day._::_Your password will expire within %n days._" : ["Su parool aegub %n päeva jooksul.","Su parool aegub %n päeva jooksul."], + "LDAP / AD integration" : "LDAP / AD integratsioon", "_%s group found_::_%s groups found_" : ["%s grupp leitud","%s gruppi leitud"], "_%s user found_::_%s users found_" : ["%s kasutaja leitud","%s kasutajat leitud"], "Could not find the desired feature" : "Ei suuda leida soovitud funktsioonaalsust", @@ -41,43 +57,47 @@ "Edit LDAP Query" : "Muuda LDAP päringut", "LDAP Filter:" : "LDAP filter:", "The filter specifies which LDAP groups shall have access to the %s instance." : "Filter määrab millised LDAP grupid saavad ligipääsu sellele %s instantsile.", - "Verify settings and count groups" : "Kontrolli seadeid ja loe grupid üle", "LDAP / AD Username:" : "LDAP / AD kasutajanimi:", "LDAP / AD Email Address:" : "LDAP / AD e-posti aadress:", "Other Attributes:" : "Muud atribuudid:", - "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" : "Määrab sisselogimisel kasutatava filtri. %%uid asendab sisselogimistegevuses kasutajanime. Näide: \"uid=%%uid\"", "Test Loginname" : "Testi kasutajanime", "Verify settings" : "Kontrolli seadeid", "1. Server" : "1. Server", "%s. Server:" : "%s. Server:", - "Add a new and blank configuration" : "Lisa uus ja tühi seadistus", "Delete the current configuration" : "Kustuta praegune seadistus", "Host" : "Host", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Sa ei saa protokolli ära jätta, välja arvatud siis, kui sa nõuad SSL-ühendust. Sel juhul alusta eesliitega ldaps://", "Port" : "Port", "Detect Port" : "Tuvasta port", "User DN" : "Kasutaja DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "Klientkasutaja DN, kellega seotakse, nt. uid=agent,dc=näidis,dc=com. Anonüümseks ligipääsuks jäta DN ja parool tühjaks.", "Password" : "Parool", "For anonymous access, leave DN and Password empty." : "Anonüümseks ligipääsuks jäta DN ja parool tühjaks.", + "Save Credentials" : "Salvesta kasutajaandmed", "One Base DN per line" : "Üks baas-DN rea kohta", "You can specify Base DN for users and groups in the Advanced tab" : "Sa saad kasutajate ja gruppide baas DN-i määrata lisavalikute vahekaardilt", "Detect Base DN" : "Tuvasta Baas DN", "Test Base DN" : "Testi Baas DN-i", "Avoids automatic LDAP requests. Better for bigger setups, but requires some LDAP knowledge." : "Väldib automaatseid LDAP päringuid, Parem suurematele saitidele, aga nõuab mõningaid teadmisi LDAP kohta.", - "Manually enter LDAP filters (recommended for large directories)" : "Sisesta LDAP filtrid automaatselt (sooitatav suurtele kataloogidele)", + "Manually enter LDAP filters (recommended for large directories)" : "Sisesta LDAP filtrid käsitsi (sooitatav suurtele kataloogidele)", + "The most common object classes for users are organizationalPerson, person, user, and inetOrgPerson. If you are not sure which object class to select, please consult your directory admin." : "Leivinuimad objektiklassid kasutajate jaoks on organizationalPerson, person, user ja inetOrgPerson. Kui sa pole kindel, millist objektiklassi valida, pöördu kataloogi haldaja poole.", "The filter specifies which LDAP users shall have access to the %s instance." : "Filter määrab millised LDAP kasutajad pääsevad ligi %s instantsile.", + "Verify settings and count users" : "Kinnita seaded ja loetle kasutajad", "Saving" : "Salvestamine", "Back" : "Tagasi", "Continue" : "Jätka", - "LDAP" : "LDAP", + "Please renew your password." : "Palun uuenda oma parool.", + "Please try again or contact your administrator." : "Proovi uuesti või võta ühendust administraatoriga.", + "Current password" : "Praegune parool", + "New password" : "Uus parool", + "Renew password" : "Uuenda parooli", + "Wrong password." : "Vale parool.", + "Cancel" : "Loobu", "Server" : "Server", "Users" : "Kasutajad", "Login Attributes" : "Sisselogimise andmed", "Groups" : "Grupid", "Expert" : "Ekspert", "Advanced" : "Täpsem", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Hoiatus: rakendused user_ldap ja user_webdavauht ei ole ühilduvad. Töös võib esineda ootamatuid tõrkeid.\nPalu oma süsteemihalduril üks neist rakendustest kasutusest eemaldada.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "Hoiatus:PHP LDAP moodul pole paigaldatud ning LDAP kasutamine ei ole võimalik. Palu oma süsteeihaldurit see paigaldada.", "Connection Settings" : "Ühenduse seaded", "Configuration Active" : "Seadistus aktiivne", @@ -94,6 +114,7 @@ "Directory Settings" : "Kausta seaded", "User Display Name Field" : "Kasutaja näidatava nime väli", "The LDAP attribute to use to generate the user's display name." : "LDAP atribuut, mida kasutatakse kasutaja kuvatava nime loomiseks.", + "Optional. An LDAP attribute to be added to the display name in brackets. Results in e.g. »John Doe (john.doe@example.org)«." : "Valikuline. LDAP atribuut, mis lisatakse nime järele sulgudesse. Näiteks »John Doe (john.doe@example.org)«.", "Base User Tree" : "Baaskasutaja puu", "One User Base DN per line" : "Üks kasutaja baas-DN rea kohta", "User Search Attributes" : "Kasutaja otsingu atribuudid", @@ -123,6 +144,8 @@ "Username-LDAP User Mapping" : "LDAP-Kasutajatunnus Kasutaja Vastendus", "Clear Username-LDAP User Mapping" : "Puhasta LDAP-Kasutajatunnus Kasutaja Vastendus", "Clear Groupname-LDAP Group Mapping" : "Puhasta LDAP-Grupinimi Grupp Vastendus", - "in bytes" : "baitides" + " entries available within the provided Base DN" : "kirjet saadaval ette enatud BaasDN-is.", + "LDAP" : "LDAP", + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Hoiatus: rakendused user_ldap ja user_webdavauht ei ole ühilduvad. Töös võib esineda ootamatuid tõrkeid.\nPalu oma süsteemihalduril üks neist rakendustest kasutusest eemaldada." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/eu.js b/apps/user_ldap/l10n/eu.js index ff7fad6017cd3..87e76eb4b6210 100644 --- a/apps/user_ldap/l10n/eu.js +++ b/apps/user_ldap/l10n/eu.js @@ -3,9 +3,10 @@ OC.L10N.register( { "Failed to clear the mappings." : "Mapeatzeen garbiketak huts egin du.", "Failed to delete the server configuration" : "Zerbitzariaren konfigurazioa ezabatzeak huts egin du", - "The configuration is valid and the connection could be established!" : "Konfigurazioa egokia da eta konexioa ezarri daiteke!", - "The configuration is valid, but the Bind failed. Please check the server settings and credentials." : "Konfigurazioa ongi dago, baina Bind-ek huts egin du. Mesedez egiaztatu zerbitzariaren ezarpenak eta kredentzialak.", - "The configuration is invalid. Please have a look at the logs for further details." : "Konfigurazioa ez dago ongi. Mesedez ikusi egunerokoak (log) informazio gehiago eskuratzeko.", + "Invalid configuration: Anonymous binding is not allowed." : "Baliogabeko konfigurazioa. Lotura anonimoak ez dira onartzen.", + "Valid configuration, connection established!" : "Baleko konfigurazioa, konexioa ezarri da!", + "Valid configuration, but binding failed. Please check the server settings and credentials." : "Baleko konfigurazioa, baina lotura ez da ezarri. Egiaztatu zerbitzariaren ezarpenak eta kredentzialak.", + "Invalid configuration. Please have a look at the logs for further details." : "Baliogabeko konfigurazioa. Eman begirada bat egunkari-fitxategiei zehaztasun gehiagorako.", "No action specified" : "Ez da ekintzarik zehaztu", "No configuration specified" : "Ez da konfiguraziorik zehaztu", "No data specified" : "Ez da daturik zehaztu", @@ -19,7 +20,6 @@ OC.L10N.register( "Select object classes" : "Hautatu objektu klaseak", "{nthServer}. Server" : "{nthServer}. Zerbitzaria", "More than 1,000 directory entries available." : "1.000 baino direktorio sarrera gehiago daude.", - " entries available within the provided Base DN" : "sarrera eskuragarri emandako Oinarrizko DNarekin", "Do you really want to delete the current Server Configuration?" : "Ziur zaude Zerbitzariaren Konfigurazioa ezabatu nahi duzula?", "Confirm Deletion" : "Baieztatu Ezabatzea", "Select attributes" : "Hautatu atributuak", @@ -28,7 +28,6 @@ OC.L10N.register( "The group box was disabled, because the LDAP / AD server does not support memberOf." : "Taldeen sarrera desgaitu da, LDAP / AD zerbitzariak ez duelako memberOf onartzen.", "_%s group found_::_%s groups found_" : ["Talde %s aurkitu da","%s talde aurkitu dira"], "_%s user found_::_%s users found_" : ["Erabiltzaile %s aurkitu da","%s erabiltzaile aurkitu dira"], - "Could not detect user display name attribute. Please specify it yourself in advanced ldap settings." : "Ezin izan da erabiltzailearen bistaratze izenaren atributua antzeman. Mesedez zehaztu ldap ezarpen aurreratuetan.", "Could not find the desired feature" : "Ezin izan da nahi zen ezaugarria aurkitu", "Invalid Host" : "Baliogabeko hostalaria", "Test Configuration" : "Egiaztatu Konfigurazioa", @@ -42,20 +41,16 @@ OC.L10N.register( "Edit LDAP Query" : "Editatu LDAP kontsulta", "LDAP Filter:" : "LDAP Iragazkia:", "The filter specifies which LDAP groups shall have access to the %s instance." : "Iragazkiak zehazten du ze LDAP taldek izango duten sarrera %s instantziara:", - "Verify settings and count groups" : "Egiaztatu ezarpetak eta zenbatu taldeak", "LDAP / AD Username:" : "LDAP / AD Erabiltzaile izena:", "LDAP / AD Email Address:" : "LDAP / AD E-posta Helbidea:", "Other Attributes:" : "Bestelako atributuak:", - "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" : "Definitu aplikatu beharreko iragazkia sartzen saiatzean. %%uid erabiltzailearen izena ordezten du sartzeko ekintzan. Adibidez: \"uid=%%uid\"", "Test Loginname" : "Egiaztatu Saioa hasteko izena", "Verify settings" : "Egiaztatu ezarpenak", "1. Server" : "1. Zerbitzaria", "%s. Server:" : "%s. Zerbitzaria:", - "Add a new and blank configuration" : "Gehitu konfigurazio berri eta huts bat", "Copy current configuration into new directory binding" : "Kopiatu uneko konfigurazioa direktorio lotura berrian", "Delete the current configuration" : "Ezabatu uneko konfigurazioa", "Host" : "Hostalaria", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Protokoloa ez da beharrezkoa, SSL behar baldin ez baduzu. Honela bada hasi ldaps://", "Port" : "Portua", "Detect Port" : "Antzeman Ataka", "User DN" : "Erabiltzaile DN", @@ -72,14 +67,12 @@ OC.L10N.register( "Saving" : "Gordetzen", "Back" : "Atzera", "Continue" : "Jarraitu", - "LDAP" : "LDAP", "Server" : "Zerbitzaria", "Users" : "Erabiltzaileak", "Login Attributes" : "Saioa hasteko atributuak", "Groups" : "Taldeak", "Expert" : "Aditua", "Advanced" : "Aurreratua", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Abisua: user_ldap eta user_webdavauth aplikazioak bateraezinak dira. Portaera berezia izan dezakezu. Mesedez eskatu zure sistema kudeatzaileari bietako bat desgaitzeko.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "Abisua: PHPk behar duen LDAP modulua ez dago instalaturik, motorrak ez du funtzionatuko. Mesedez eskatu zure sistema kudeatzaileari instala dezan.", "Connection Settings" : "Konexio Ezarpenak", "Configuration Active" : "Konfigurazio Aktiboa", @@ -111,7 +104,6 @@ OC.L10N.register( "Special Attributes" : "Atributu Bereziak", "Quota Field" : "Kuota Eremua", "Quota Default" : "Kuota Lehenetsia", - "in bytes" : "bytetan", "Email Field" : "Eposta eremua", "User Home Folder Naming Rule" : "Erabiltzailearen Karpeta Nagusia Izendatzeko Patroia", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." : "Utzi hutsik erabiltzaile izenarako (lehentsia). Bestela zehaztu LDAP/AD atributua.", @@ -123,6 +115,9 @@ OC.L10N.register( "UUID Attribute for Groups:" : "Taldeentzako UUID atributuak:", "Username-LDAP User Mapping" : "LDAP-erabiltzaile-izena erabiltzailearen mapeatzea", "Clear Username-LDAP User Mapping" : "Garbitu LDAP-erabiltzaile-izenaren erabiltzaile mapaketa", - "Clear Groupname-LDAP Group Mapping" : "Garbitu LDAP-talde-izenaren talde mapaketa" + "Clear Groupname-LDAP Group Mapping" : "Garbitu LDAP-talde-izenaren talde mapaketa", + " entries available within the provided Base DN" : "sarrera eskuragarri emandako Oinarrizko DNarekin", + "LDAP" : "LDAP", + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Abisua: user_ldap eta user_webdavauth aplikazioak bateraezinak dira. Portaera berezia izan dezakezu. Mesedez eskatu zure sistema kudeatzaileari bietako bat desgaitzeko." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/eu.json b/apps/user_ldap/l10n/eu.json index e4ac633236cea..e4a65813b362f 100644 --- a/apps/user_ldap/l10n/eu.json +++ b/apps/user_ldap/l10n/eu.json @@ -1,9 +1,10 @@ { "translations": { "Failed to clear the mappings." : "Mapeatzeen garbiketak huts egin du.", "Failed to delete the server configuration" : "Zerbitzariaren konfigurazioa ezabatzeak huts egin du", - "The configuration is valid and the connection could be established!" : "Konfigurazioa egokia da eta konexioa ezarri daiteke!", - "The configuration is valid, but the Bind failed. Please check the server settings and credentials." : "Konfigurazioa ongi dago, baina Bind-ek huts egin du. Mesedez egiaztatu zerbitzariaren ezarpenak eta kredentzialak.", - "The configuration is invalid. Please have a look at the logs for further details." : "Konfigurazioa ez dago ongi. Mesedez ikusi egunerokoak (log) informazio gehiago eskuratzeko.", + "Invalid configuration: Anonymous binding is not allowed." : "Baliogabeko konfigurazioa. Lotura anonimoak ez dira onartzen.", + "Valid configuration, connection established!" : "Baleko konfigurazioa, konexioa ezarri da!", + "Valid configuration, but binding failed. Please check the server settings and credentials." : "Baleko konfigurazioa, baina lotura ez da ezarri. Egiaztatu zerbitzariaren ezarpenak eta kredentzialak.", + "Invalid configuration. Please have a look at the logs for further details." : "Baliogabeko konfigurazioa. Eman begirada bat egunkari-fitxategiei zehaztasun gehiagorako.", "No action specified" : "Ez da ekintzarik zehaztu", "No configuration specified" : "Ez da konfiguraziorik zehaztu", "No data specified" : "Ez da daturik zehaztu", @@ -17,7 +18,6 @@ "Select object classes" : "Hautatu objektu klaseak", "{nthServer}. Server" : "{nthServer}. Zerbitzaria", "More than 1,000 directory entries available." : "1.000 baino direktorio sarrera gehiago daude.", - " entries available within the provided Base DN" : "sarrera eskuragarri emandako Oinarrizko DNarekin", "Do you really want to delete the current Server Configuration?" : "Ziur zaude Zerbitzariaren Konfigurazioa ezabatu nahi duzula?", "Confirm Deletion" : "Baieztatu Ezabatzea", "Select attributes" : "Hautatu atributuak", @@ -26,7 +26,6 @@ "The group box was disabled, because the LDAP / AD server does not support memberOf." : "Taldeen sarrera desgaitu da, LDAP / AD zerbitzariak ez duelako memberOf onartzen.", "_%s group found_::_%s groups found_" : ["Talde %s aurkitu da","%s talde aurkitu dira"], "_%s user found_::_%s users found_" : ["Erabiltzaile %s aurkitu da","%s erabiltzaile aurkitu dira"], - "Could not detect user display name attribute. Please specify it yourself in advanced ldap settings." : "Ezin izan da erabiltzailearen bistaratze izenaren atributua antzeman. Mesedez zehaztu ldap ezarpen aurreratuetan.", "Could not find the desired feature" : "Ezin izan da nahi zen ezaugarria aurkitu", "Invalid Host" : "Baliogabeko hostalaria", "Test Configuration" : "Egiaztatu Konfigurazioa", @@ -40,20 +39,16 @@ "Edit LDAP Query" : "Editatu LDAP kontsulta", "LDAP Filter:" : "LDAP Iragazkia:", "The filter specifies which LDAP groups shall have access to the %s instance." : "Iragazkiak zehazten du ze LDAP taldek izango duten sarrera %s instantziara:", - "Verify settings and count groups" : "Egiaztatu ezarpetak eta zenbatu taldeak", "LDAP / AD Username:" : "LDAP / AD Erabiltzaile izena:", "LDAP / AD Email Address:" : "LDAP / AD E-posta Helbidea:", "Other Attributes:" : "Bestelako atributuak:", - "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" : "Definitu aplikatu beharreko iragazkia sartzen saiatzean. %%uid erabiltzailearen izena ordezten du sartzeko ekintzan. Adibidez: \"uid=%%uid\"", "Test Loginname" : "Egiaztatu Saioa hasteko izena", "Verify settings" : "Egiaztatu ezarpenak", "1. Server" : "1. Zerbitzaria", "%s. Server:" : "%s. Zerbitzaria:", - "Add a new and blank configuration" : "Gehitu konfigurazio berri eta huts bat", "Copy current configuration into new directory binding" : "Kopiatu uneko konfigurazioa direktorio lotura berrian", "Delete the current configuration" : "Ezabatu uneko konfigurazioa", "Host" : "Hostalaria", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Protokoloa ez da beharrezkoa, SSL behar baldin ez baduzu. Honela bada hasi ldaps://", "Port" : "Portua", "Detect Port" : "Antzeman Ataka", "User DN" : "Erabiltzaile DN", @@ -70,14 +65,12 @@ "Saving" : "Gordetzen", "Back" : "Atzera", "Continue" : "Jarraitu", - "LDAP" : "LDAP", "Server" : "Zerbitzaria", "Users" : "Erabiltzaileak", "Login Attributes" : "Saioa hasteko atributuak", "Groups" : "Taldeak", "Expert" : "Aditua", "Advanced" : "Aurreratua", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Abisua: user_ldap eta user_webdavauth aplikazioak bateraezinak dira. Portaera berezia izan dezakezu. Mesedez eskatu zure sistema kudeatzaileari bietako bat desgaitzeko.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "Abisua: PHPk behar duen LDAP modulua ez dago instalaturik, motorrak ez du funtzionatuko. Mesedez eskatu zure sistema kudeatzaileari instala dezan.", "Connection Settings" : "Konexio Ezarpenak", "Configuration Active" : "Konfigurazio Aktiboa", @@ -109,7 +102,6 @@ "Special Attributes" : "Atributu Bereziak", "Quota Field" : "Kuota Eremua", "Quota Default" : "Kuota Lehenetsia", - "in bytes" : "bytetan", "Email Field" : "Eposta eremua", "User Home Folder Naming Rule" : "Erabiltzailearen Karpeta Nagusia Izendatzeko Patroia", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." : "Utzi hutsik erabiltzaile izenarako (lehentsia). Bestela zehaztu LDAP/AD atributua.", @@ -121,6 +113,9 @@ "UUID Attribute for Groups:" : "Taldeentzako UUID atributuak:", "Username-LDAP User Mapping" : "LDAP-erabiltzaile-izena erabiltzailearen mapeatzea", "Clear Username-LDAP User Mapping" : "Garbitu LDAP-erabiltzaile-izenaren erabiltzaile mapaketa", - "Clear Groupname-LDAP Group Mapping" : "Garbitu LDAP-talde-izenaren talde mapaketa" + "Clear Groupname-LDAP Group Mapping" : "Garbitu LDAP-talde-izenaren talde mapaketa", + " entries available within the provided Base DN" : "sarrera eskuragarri emandako Oinarrizko DNarekin", + "LDAP" : "LDAP", + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Abisua: user_ldap eta user_webdavauth aplikazioak bateraezinak dira. Portaera berezia izan dezakezu. Mesedez eskatu zure sistema kudeatzaileari bietako bat desgaitzeko." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/fr.js b/apps/user_ldap/l10n/fr.js index 93a0c90a25b2e..e8b7c70ac0f38 100644 --- a/apps/user_ldap/l10n/fr.js +++ b/apps/user_ldap/l10n/fr.js @@ -33,7 +33,7 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Serveur", "No object found in the given Base DN. Please revise." : "Aucun objet trouvé dans le DN de base spécifié. Veuillez le vérifier.", "More than 1,000 directory entries available." : "Il y a plus de 1 000 entrées de répertoire disponibles.", - " entries available within the provided Base DN" : "entrées disponibles dans le DN de base spécifié", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} entrée disponible dans le DN de base spécifié","{objectsFound} entrées disponibles dans le DN de base spécifié"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Une erreur est survenue. Veuillez vérifier le DN de base, ainsi que les paramètres de connexion et les informations d'identification", "Do you really want to delete the current Server Configuration?" : "Êtes-vous sûr de vouloir effacer la configuration serveur actuelle ?", "Confirm Deletion" : "Confirmer la suppression", @@ -187,12 +187,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Les noms d'utilisateurs sont utilisés pour le stockage et l'assignation de (meta) données. Pour identifier et reconnaître précisément les utilisateurs, chaque utilisateur LDAP aura un nom interne spécifique. Cela requiert l'association d'un nom d'utilisateur ownCloud à un nom d'utilisateur LDAP. Le nom d'utilisateur créé est associé à l'attribut UUID de l'utilisateur LDAP. Par ailleurs, le DN est mémorisé en cache pour limiter les interactions LDAP mais il n'est pas utilisé pour l'identification. Si le DN est modifié, ces modifications seront retrouvées. Seul le nom interne à ownCloud est utilisé au sein du produit. Supprimer les associations créera des orphelins et l'action affectera toutes les configurations LDAP. NE JAMAIS SUPPRIMER LES ASSOCIATIONS EN ENVIRONNEMENT DE PRODUCTION, mais uniquement sur des environnements de tests et d'expérimentations.", "Clear Username-LDAP User Mapping" : "Supprimer l'association utilisateur interne-utilisateur LDAP", "Clear Groupname-LDAP Group Mapping" : "Supprimer l'association nom de groupe-groupe LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "La chaîne %uid est manquante. Cette chaîne est remplacée par l'identifiant de connexion lors des requêtes LDAP / AD.", - "Verify settings and count groups" : "Vérifier les paramètres et compter les groupes", - "Add a new and blank configuration" : "Ajouter une nouvelle configuration vierge", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Vous pouvez omettre le protocole, sauf si vous avez besoin de SSL. Dans ce cas, préfixez avec ldaps://", + " entries available within the provided Base DN" : "entrées disponibles dans le DN de base spécifié", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Avertissement : Les applications user_ldap et user_webdavauth sont incompatibles. Des dysfonctionnements peuvent survenir. Contactez votre administrateur système pour qu'il en désactive une.", - "in bytes" : "en octets" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Avertissement : Les applications user_ldap et user_webdavauth sont incompatibles. Des dysfonctionnements peuvent survenir. Contactez votre administrateur système pour qu'il en désactive une." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/user_ldap/l10n/fr.json b/apps/user_ldap/l10n/fr.json index eb654f33406aa..7581e1d05455b 100644 --- a/apps/user_ldap/l10n/fr.json +++ b/apps/user_ldap/l10n/fr.json @@ -31,7 +31,7 @@ "{nthServer}. Server" : "{nthServer}. Serveur", "No object found in the given Base DN. Please revise." : "Aucun objet trouvé dans le DN de base spécifié. Veuillez le vérifier.", "More than 1,000 directory entries available." : "Il y a plus de 1 000 entrées de répertoire disponibles.", - " entries available within the provided Base DN" : "entrées disponibles dans le DN de base spécifié", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} entrée disponible dans le DN de base spécifié","{objectsFound} entrées disponibles dans le DN de base spécifié"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Une erreur est survenue. Veuillez vérifier le DN de base, ainsi que les paramètres de connexion et les informations d'identification", "Do you really want to delete the current Server Configuration?" : "Êtes-vous sûr de vouloir effacer la configuration serveur actuelle ?", "Confirm Deletion" : "Confirmer la suppression", @@ -185,12 +185,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Les noms d'utilisateurs sont utilisés pour le stockage et l'assignation de (meta) données. Pour identifier et reconnaître précisément les utilisateurs, chaque utilisateur LDAP aura un nom interne spécifique. Cela requiert l'association d'un nom d'utilisateur ownCloud à un nom d'utilisateur LDAP. Le nom d'utilisateur créé est associé à l'attribut UUID de l'utilisateur LDAP. Par ailleurs, le DN est mémorisé en cache pour limiter les interactions LDAP mais il n'est pas utilisé pour l'identification. Si le DN est modifié, ces modifications seront retrouvées. Seul le nom interne à ownCloud est utilisé au sein du produit. Supprimer les associations créera des orphelins et l'action affectera toutes les configurations LDAP. NE JAMAIS SUPPRIMER LES ASSOCIATIONS EN ENVIRONNEMENT DE PRODUCTION, mais uniquement sur des environnements de tests et d'expérimentations.", "Clear Username-LDAP User Mapping" : "Supprimer l'association utilisateur interne-utilisateur LDAP", "Clear Groupname-LDAP Group Mapping" : "Supprimer l'association nom de groupe-groupe LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "La chaîne %uid est manquante. Cette chaîne est remplacée par l'identifiant de connexion lors des requêtes LDAP / AD.", - "Verify settings and count groups" : "Vérifier les paramètres et compter les groupes", - "Add a new and blank configuration" : "Ajouter une nouvelle configuration vierge", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Vous pouvez omettre le protocole, sauf si vous avez besoin de SSL. Dans ce cas, préfixez avec ldaps://", + " entries available within the provided Base DN" : "entrées disponibles dans le DN de base spécifié", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Avertissement : Les applications user_ldap et user_webdavauth sont incompatibles. Des dysfonctionnements peuvent survenir. Contactez votre administrateur système pour qu'il en désactive une.", - "in bytes" : "en octets" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Avertissement : Les applications user_ldap et user_webdavauth sont incompatibles. Des dysfonctionnements peuvent survenir. Contactez votre administrateur système pour qu'il en désactive une." },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/he.js b/apps/user_ldap/l10n/he.js index d4b03c5df559a..c47089e718493 100644 --- a/apps/user_ldap/l10n/he.js +++ b/apps/user_ldap/l10n/he.js @@ -3,10 +3,6 @@ OC.L10N.register( { "Failed to clear the mappings." : "כשל בניקוי המיפויים.", "Failed to delete the server configuration" : "כשל במחיקת הגדרות השרת", - "The configuration is invalid: anonymous bind is not allowed." : "התצורה אינה חוקית: חיבור אנונימי אסור", - "The configuration is valid and the connection could be established!" : "התצורה תקפה וניתן לבצע חיבור!", - "The configuration is valid, but the Bind failed. Please check the server settings and credentials." : "התצורה תקפה, אך הקישור נכשל. יש לבדוק את הגדרות השרת והחיבור.", - "The configuration is invalid. Please have a look at the logs for further details." : "התצורה אינה חוקית. יש לבדוק את הלוגים לפרטים נוספים.", "No action specified" : "לא צויינה פעולה", "No configuration specified" : "לא הוגדרה תצורה", "No data specified" : "לא הוגדר מידע", @@ -26,7 +22,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. שרת", "No object found in the given Base DN. Please revise." : "לא אותר אוביקט בבסיס DN שסופק. יש להחליף.", "More than 1,000 directory entries available." : "קיימים יותר מ- 1,000 רשומות ספריה.", - " entries available within the provided Base DN" : " קיימות רשומות מתוך בסיס ה- DN שסופק", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "אירעה שגיאה. יש לבדוק את בסיס ה- DN, כמו גם את הגדרות החיבור ופרטי הכניסה.", "Do you really want to delete the current Server Configuration?" : "האם אכן למחוק את הגדרות השרת הנוכחיות?האם באמת ברצונך למחוק את הגדרות השרת הנוכחיות?", "Confirm Deletion" : "אישור המחיקה", @@ -38,16 +33,13 @@ OC.L10N.register( "Switching the mode will enable automatic LDAP queries. Depending on your LDAP size they may take a while. Do you still want to switch the mode?" : "שינוי המצב יאפשר שאילתות LDAP אוטמטיות. בהתאם לגודל ה- LDAP שלך ייתכן והפעולה תיקח זמן רב. האם ברצונך לשנות את המצב?", "Mode switch" : "שינוי מצב", "Select attributes" : "בחירת מאפיינים", - "User not found. Please check your login attributes and username. Effective filter (to copy-and-paste for command line validation):
" : "משתמש לא אותר. יש לבדוק את מאפייני ההתחברות ושם המשתמש. מסנן אפקטיבי (העתקה והדבקה לאימות שורת פקודה):
", "User found and settings verified." : "משתמש אותר והגדרות אומתו.", - "An unspecified error occurred. Please check the settings and the log." : "אירעה שגיאה לא מזוהה. יש לבדוק את ההגדרות ואת הלוג.", "The search filter is invalid, probably due to syntax issues like uneven number of opened and closed brackets. Please revise." : "סינון החיפוש אינו חוקי. ככל הנראה בשל שיאה תחבירית כגון מספר לא שווה של פתח-סוגריים וסגור-סוגריים. יש לתקן.", "A connection error to LDAP / AD occurred, please check host, port and credentials." : "אירעה שגיאת חיבור ל- LDAP / AD, יש לבדוק את השרת, שער החיבור - פורט ופרטי הכניסה. ", "Please provide a login name to test against" : "יש לספק שם משתמש לבדיקה מולו", "The group box was disabled, because the LDAP / AD server does not support memberOf." : "שדה הקבוצה נוטרל, כיוון ששרת ה- LDAP / AD לא תומך ב- memberOf.", "_%s group found_::_%s groups found_" : ["אותרה %s קבוצה","אותרו %s קבוצות"], "_%s user found_::_%s users found_" : ["אותר %s משתמש","אותרו %s משתמשים"], - "Could not detect user display name attribute. Please specify it yourself in advanced ldap settings." : "לא אותר מאפיין שם תצוגה למשתמש. יש לספק אותו בעצמך בהגדרות ldap מתקדמות.", "Could not find the desired feature" : "לא אותרה התכונה הרצויה", "Invalid Host" : "מארח לא חוקי", "Test Configuration" : "בדיקת הגדרות", @@ -64,9 +56,7 @@ OC.L10N.register( "When logging in, %s will find the user based on the following attributes:" : "כאשר מתחברים, %s יחפש את המשתמש על פי המאפיינים הבאים:", "LDAP / AD Username:" : "שם משתמש LDAP / AD:", "LDAP / AD Email Address:" : "כתובת דואר אלקטרוני LDAP / AD:", - "Allows login against an email attribute. Mail and mailPrimaryAddress will be allowed." : "מאפשר התחברות אל מול מאפיין דואר אלקטרוני. Mail וכן mailPrimaryAddress יהיו מותרים לשימוש.", "Other Attributes:" : "מאפיינים נוספים:", - "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" : "מגדיר את הסינון הפעיל, כשיש ניסיון התחברות. %%uid מחליף את שם המשתמש בפעולת ההתחברות. לדוגמא: \"uid=%%uid\"", "Test Loginname" : "בדיקת שם התחברות", "Verify settings" : "מאמת הגדרות", "1. Server" : "1. שרת", @@ -91,7 +81,6 @@ OC.L10N.register( "Saving" : "שמירה", "Back" : "אחורה", "Continue" : "המשך", - "LDAP" : "LDAP", "Server" : "שרת", "Users" : "משתמשים", "Login Attributes" : "פרטי כניסה", @@ -141,12 +130,8 @@ OC.L10N.register( "Username-LDAP User Mapping" : "מיפוי שם משתמש LDAP:", "Clear Username-LDAP User Mapping" : "ניקוי מיפוי שם משתמש LDAP:", "Clear Groupname-LDAP Group Mapping" : "ניקוי מיפוי שם משתמש קבוצה LDAP:", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "שומר המקום %uid חסר. הוא יוחלף עם שם המשתמש בזמן שאילתת LDAP / AD.", - "Verify settings and count groups" : "מאמת הגדרות וסופר קבוצות", - "Allows login against the LDAP / AD username, which is either uid or samaccountname and will be detected." : "מאפשר התחברות אל מול שם משתמש LDAP / AD, שהוא רק uid או samaccountname ויזוהה.", - "Add a new and blank configuration" : "הוספת תצורה חדשה וריקה", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "ניתן להשמיט את הפרוטוקול, אך SSL מחייב. לפיכך יש להתחיל עם ldaps://", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "אזהרה: יישומים user_ldap ו- user_webdavauth אינם תואמים. תופעות לא מוסברות עלולות להתקיים. כדאי לפנות למנהל המערכת כדי שינטרל אחד מהם.", - "in bytes" : "בבתים" + " entries available within the provided Base DN" : " קיימות רשומות מתוך בסיס ה- DN שסופק", + "LDAP" : "LDAP", + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "אזהרה: יישומים user_ldap ו- user_webdavauth אינם תואמים. תופעות לא מוסברות עלולות להתקיים. כדאי לפנות למנהל המערכת כדי שינטרל אחד מהם." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/he.json b/apps/user_ldap/l10n/he.json index 0a46acadaf405..c98905ef12d7b 100644 --- a/apps/user_ldap/l10n/he.json +++ b/apps/user_ldap/l10n/he.json @@ -1,10 +1,6 @@ { "translations": { "Failed to clear the mappings." : "כשל בניקוי המיפויים.", "Failed to delete the server configuration" : "כשל במחיקת הגדרות השרת", - "The configuration is invalid: anonymous bind is not allowed." : "התצורה אינה חוקית: חיבור אנונימי אסור", - "The configuration is valid and the connection could be established!" : "התצורה תקפה וניתן לבצע חיבור!", - "The configuration is valid, but the Bind failed. Please check the server settings and credentials." : "התצורה תקפה, אך הקישור נכשל. יש לבדוק את הגדרות השרת והחיבור.", - "The configuration is invalid. Please have a look at the logs for further details." : "התצורה אינה חוקית. יש לבדוק את הלוגים לפרטים נוספים.", "No action specified" : "לא צויינה פעולה", "No configuration specified" : "לא הוגדרה תצורה", "No data specified" : "לא הוגדר מידע", @@ -24,7 +20,6 @@ "{nthServer}. Server" : "{nthServer}. שרת", "No object found in the given Base DN. Please revise." : "לא אותר אוביקט בבסיס DN שסופק. יש להחליף.", "More than 1,000 directory entries available." : "קיימים יותר מ- 1,000 רשומות ספריה.", - " entries available within the provided Base DN" : " קיימות רשומות מתוך בסיס ה- DN שסופק", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "אירעה שגיאה. יש לבדוק את בסיס ה- DN, כמו גם את הגדרות החיבור ופרטי הכניסה.", "Do you really want to delete the current Server Configuration?" : "האם אכן למחוק את הגדרות השרת הנוכחיות?האם באמת ברצונך למחוק את הגדרות השרת הנוכחיות?", "Confirm Deletion" : "אישור המחיקה", @@ -36,16 +31,13 @@ "Switching the mode will enable automatic LDAP queries. Depending on your LDAP size they may take a while. Do you still want to switch the mode?" : "שינוי המצב יאפשר שאילתות LDAP אוטמטיות. בהתאם לגודל ה- LDAP שלך ייתכן והפעולה תיקח זמן רב. האם ברצונך לשנות את המצב?", "Mode switch" : "שינוי מצב", "Select attributes" : "בחירת מאפיינים", - "User not found. Please check your login attributes and username. Effective filter (to copy-and-paste for command line validation):
" : "משתמש לא אותר. יש לבדוק את מאפייני ההתחברות ושם המשתמש. מסנן אפקטיבי (העתקה והדבקה לאימות שורת פקודה):
", "User found and settings verified." : "משתמש אותר והגדרות אומתו.", - "An unspecified error occurred. Please check the settings and the log." : "אירעה שגיאה לא מזוהה. יש לבדוק את ההגדרות ואת הלוג.", "The search filter is invalid, probably due to syntax issues like uneven number of opened and closed brackets. Please revise." : "סינון החיפוש אינו חוקי. ככל הנראה בשל שיאה תחבירית כגון מספר לא שווה של פתח-סוגריים וסגור-סוגריים. יש לתקן.", "A connection error to LDAP / AD occurred, please check host, port and credentials." : "אירעה שגיאת חיבור ל- LDAP / AD, יש לבדוק את השרת, שער החיבור - פורט ופרטי הכניסה. ", "Please provide a login name to test against" : "יש לספק שם משתמש לבדיקה מולו", "The group box was disabled, because the LDAP / AD server does not support memberOf." : "שדה הקבוצה נוטרל, כיוון ששרת ה- LDAP / AD לא תומך ב- memberOf.", "_%s group found_::_%s groups found_" : ["אותרה %s קבוצה","אותרו %s קבוצות"], "_%s user found_::_%s users found_" : ["אותר %s משתמש","אותרו %s משתמשים"], - "Could not detect user display name attribute. Please specify it yourself in advanced ldap settings." : "לא אותר מאפיין שם תצוגה למשתמש. יש לספק אותו בעצמך בהגדרות ldap מתקדמות.", "Could not find the desired feature" : "לא אותרה התכונה הרצויה", "Invalid Host" : "מארח לא חוקי", "Test Configuration" : "בדיקת הגדרות", @@ -62,9 +54,7 @@ "When logging in, %s will find the user based on the following attributes:" : "כאשר מתחברים, %s יחפש את המשתמש על פי המאפיינים הבאים:", "LDAP / AD Username:" : "שם משתמש LDAP / AD:", "LDAP / AD Email Address:" : "כתובת דואר אלקטרוני LDAP / AD:", - "Allows login against an email attribute. Mail and mailPrimaryAddress will be allowed." : "מאפשר התחברות אל מול מאפיין דואר אלקטרוני. Mail וכן mailPrimaryAddress יהיו מותרים לשימוש.", "Other Attributes:" : "מאפיינים נוספים:", - "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" : "מגדיר את הסינון הפעיל, כשיש ניסיון התחברות. %%uid מחליף את שם המשתמש בפעולת ההתחברות. לדוגמא: \"uid=%%uid\"", "Test Loginname" : "בדיקת שם התחברות", "Verify settings" : "מאמת הגדרות", "1. Server" : "1. שרת", @@ -89,7 +79,6 @@ "Saving" : "שמירה", "Back" : "אחורה", "Continue" : "המשך", - "LDAP" : "LDAP", "Server" : "שרת", "Users" : "משתמשים", "Login Attributes" : "פרטי כניסה", @@ -139,12 +128,8 @@ "Username-LDAP User Mapping" : "מיפוי שם משתמש LDAP:", "Clear Username-LDAP User Mapping" : "ניקוי מיפוי שם משתמש LDAP:", "Clear Groupname-LDAP Group Mapping" : "ניקוי מיפוי שם משתמש קבוצה LDAP:", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "שומר המקום %uid חסר. הוא יוחלף עם שם המשתמש בזמן שאילתת LDAP / AD.", - "Verify settings and count groups" : "מאמת הגדרות וסופר קבוצות", - "Allows login against the LDAP / AD username, which is either uid or samaccountname and will be detected." : "מאפשר התחברות אל מול שם משתמש LDAP / AD, שהוא רק uid או samaccountname ויזוהה.", - "Add a new and blank configuration" : "הוספת תצורה חדשה וריקה", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "ניתן להשמיט את הפרוטוקול, אך SSL מחייב. לפיכך יש להתחיל עם ldaps://", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "אזהרה: יישומים user_ldap ו- user_webdavauth אינם תואמים. תופעות לא מוסברות עלולות להתקיים. כדאי לפנות למנהל המערכת כדי שינטרל אחד מהם.", - "in bytes" : "בבתים" + " entries available within the provided Base DN" : " קיימות רשומות מתוך בסיס ה- DN שסופק", + "LDAP" : "LDAP", + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "אזהרה: יישומים user_ldap ו- user_webdavauth אינם תואמים. תופעות לא מוסברות עלולות להתקיים. כדאי לפנות למנהל המערכת כדי שינטרל אחד מהם." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/hu.js b/apps/user_ldap/l10n/hu.js index e378375e01341..d796670977f51 100644 --- a/apps/user_ldap/l10n/hu.js +++ b/apps/user_ldap/l10n/hu.js @@ -33,7 +33,7 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Szerver", "No object found in the given Base DN. Please revise." : "Nem találhatók objektumok a megadott címtár gyökérben (base DN). Kérlek, ellenőrizd.", "More than 1,000 directory entries available." : "Több mint 1000 címtár bejegyzés érhető el.", - " entries available within the provided Base DN" : "a megadott címtár gyökér alatt elérhető bejegyzések", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} bejegyzés érhető el a megadott Base DN-ben","{objectsFound} bejegyzés érhető el a megadott Base DN-ben"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Hiba törént. Kérlek, ellenőrizd a címtár gyökerét (base DN), a kapcsolat beállításait és az azonosítókat.", "Do you really want to delete the current Server Configuration?" : "Tényleg törölni szeretné a szerver beállításait?", "Confirm Deletion" : "A törlés megerősítése", @@ -187,12 +187,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "A felhasználónevek adattárolásra és hozzárendelésre (meta) szolgálnak. A felhasználók pontos felismerésére és azonosítására, minden LDAP felhasználóhoz hozzárendelünk egy belső felhaszhálónevet. Ez a felhasználónév LDAP felhasználóhoz rendelését igényli. A létrehozott felhasználónév az LDAP UUID-hez kötődik. Egyben a DN tárolásra kerül az LDAP interakció csökkentésére, de nem használjuk az azonosítás során. Ha a DN változik, a változást megtaláljuk. A belső felhasználónevek újrahasznosításra kerülnek. A leképezés kitörlése mindenfelé maradványokat eredményez. A leképezések törlése nem konfiguráció érzékeny, minden LDAP konfigurációt érint! Soha ne töröld a leképezéseket éles rendszeren, csak tesztelési vagy kísérleti állapotban.", "Clear Username-LDAP User Mapping" : "A felhasználó - LDAP felhasználó hozzárendelés törlése", "Clear Groupname-LDAP Group Mapping" : "A csoport - LDAP csoport hozzárendelés törlése", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "A %uid helytartó hiányzik. Ez kerül behelyettesítésre a felhasználónévvel az LDAP / AD lekérdezéskor.", - "Verify settings and count groups" : "Ellenőrizd a beállításokat és számold meg a csoportokat", - "Add a new and blank configuration" : "Új üres konfiguráció hozzáadása", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "A protokoll előtag elhagyható, kivéve, ha SSL-t kíván használni. Ebben az esetben kezdje így: ldaps://", + " entries available within the provided Base DN" : "a megadott címtár gyökér alatt elérhető bejegyzések", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Figyelem: a user_ldap és user_webdavauth alkalmazások nem kompatibilisek. Együttes használatuk váratlan eredményekhez vezethet. Kérje meg a rendszergazdát, hogy a kettő közül kapcsolja ki az egyiket.", - "in bytes" : "bájtban" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Figyelem: a user_ldap és user_webdavauth alkalmazások nem kompatibilisek. Együttes használatuk váratlan eredményekhez vezethet. Kérje meg a rendszergazdát, hogy a kettő közül kapcsolja ki az egyiket." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/hu.json b/apps/user_ldap/l10n/hu.json index 82b7ff6c9204b..1d0d518486838 100644 --- a/apps/user_ldap/l10n/hu.json +++ b/apps/user_ldap/l10n/hu.json @@ -31,7 +31,7 @@ "{nthServer}. Server" : "{nthServer}. Szerver", "No object found in the given Base DN. Please revise." : "Nem találhatók objektumok a megadott címtár gyökérben (base DN). Kérlek, ellenőrizd.", "More than 1,000 directory entries available." : "Több mint 1000 címtár bejegyzés érhető el.", - " entries available within the provided Base DN" : "a megadott címtár gyökér alatt elérhető bejegyzések", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} bejegyzés érhető el a megadott Base DN-ben","{objectsFound} bejegyzés érhető el a megadott Base DN-ben"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Hiba törént. Kérlek, ellenőrizd a címtár gyökerét (base DN), a kapcsolat beállításait és az azonosítókat.", "Do you really want to delete the current Server Configuration?" : "Tényleg törölni szeretné a szerver beállításait?", "Confirm Deletion" : "A törlés megerősítése", @@ -185,12 +185,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "A felhasználónevek adattárolásra és hozzárendelésre (meta) szolgálnak. A felhasználók pontos felismerésére és azonosítására, minden LDAP felhasználóhoz hozzárendelünk egy belső felhaszhálónevet. Ez a felhasználónév LDAP felhasználóhoz rendelését igényli. A létrehozott felhasználónév az LDAP UUID-hez kötődik. Egyben a DN tárolásra kerül az LDAP interakció csökkentésére, de nem használjuk az azonosítás során. Ha a DN változik, a változást megtaláljuk. A belső felhasználónevek újrahasznosításra kerülnek. A leképezés kitörlése mindenfelé maradványokat eredményez. A leképezések törlése nem konfiguráció érzékeny, minden LDAP konfigurációt érint! Soha ne töröld a leképezéseket éles rendszeren, csak tesztelési vagy kísérleti állapotban.", "Clear Username-LDAP User Mapping" : "A felhasználó - LDAP felhasználó hozzárendelés törlése", "Clear Groupname-LDAP Group Mapping" : "A csoport - LDAP csoport hozzárendelés törlése", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "A %uid helytartó hiányzik. Ez kerül behelyettesítésre a felhasználónévvel az LDAP / AD lekérdezéskor.", - "Verify settings and count groups" : "Ellenőrizd a beállításokat és számold meg a csoportokat", - "Add a new and blank configuration" : "Új üres konfiguráció hozzáadása", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "A protokoll előtag elhagyható, kivéve, ha SSL-t kíván használni. Ebben az esetben kezdje így: ldaps://", + " entries available within the provided Base DN" : "a megadott címtár gyökér alatt elérhető bejegyzések", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Figyelem: a user_ldap és user_webdavauth alkalmazások nem kompatibilisek. Együttes használatuk váratlan eredményekhez vezethet. Kérje meg a rendszergazdát, hogy a kettő közül kapcsolja ki az egyiket.", - "in bytes" : "bájtban" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Figyelem: a user_ldap és user_webdavauth alkalmazások nem kompatibilisek. Együttes használatuk váratlan eredményekhez vezethet. Kérje meg a rendszergazdát, hogy a kettő közül kapcsolja ki az egyiket." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/id.js b/apps/user_ldap/l10n/id.js index a1b266263d6b6..742e5067c589c 100644 --- a/apps/user_ldap/l10n/id.js +++ b/apps/user_ldap/l10n/id.js @@ -22,7 +22,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Server", "No object found in the given Base DN. Please revise." : "Tidak ada obyek ditemukan di Base DN yang diberikan. Mohon diperiksa kembali.", "More than 1,000 directory entries available." : "Lebih dari 1000 entri direktori tersedia.", - " entries available within the provided Base DN" : "entri tersedia didalam Base DN yang diberikan", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Terjadi kesalahan. Silakan periksa Base DN, serta pengaturan sambungan dan kredensial.", "Do you really want to delete the current Server Configuration?" : "Apakan Anda ingin menghapus Konfigurasi Server saat ini?", "Confirm Deletion" : "Konfirmasi Penghapusan", @@ -39,7 +38,7 @@ OC.L10N.register( "A connection error to LDAP / AD occurred, please check host, port and credentials." : "Terjadi kesalahan sambungan ke LDAP / AD, mohon periksa host, port dan kredensial.", "Please provide a login name to test against" : "Mohon berikan nama login untuk mengujinya kembali", "The group box was disabled, because the LDAP / AD server does not support memberOf." : "Kotak grup telah dinonaktifkan, karena server LDAP / AD tidak mendukung keanggotaan.", - "Password change rejected. Hint: " : "Perubahan sandi ditolak. Petunjuk:", + "Password change rejected. Hint: " : "Perubahan kata sandi ditolak. Petunjuk:", "LDAP / AD integration" : "Integrasi LDAP / AD", "_%s group found_::_%s groups found_" : ["%s grup ditemukan"], "_%s user found_::_%s users found_" : ["%s pengguna ditemukan"], @@ -71,7 +70,7 @@ OC.L10N.register( "Detect Port" : "Deteksi Port", "User DN" : "Pengguna DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "DN dari klien pengguna yang dengannya tautan akan diterapkan, mis. uid=agen,dc=contoh,dc=com. Untuk akses anonim, biarkan DN dan kata sandi kosong.", - "Password" : "Sandi", + "Password" : "Kata sandi", "For anonymous access, leave DN and Password empty." : "Untuk akses anonim, biarkan DN dan Kata sandi kosong.", "One Base DN per line" : "Satu Base DN per baris", "You can specify Base DN for users and groups in the Advanced tab" : "Anda dapat menetapkan Base DN untuk pengguna dan grup dalam tab Lanjutan", @@ -125,9 +124,9 @@ OC.L10N.register( "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" : "Ketika dihidupkan, grup yang berisi grup akan didukung. (Hanya bekerja jika atribut anggota grup berisi DN.)", "Paging chunksize" : "Paging chunksize", "Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" : "Chunksize digunakan untuk pencarian paged LDAP yang mengembalikan hasil secara massal seperti enumerasi pengguna dan grup. (Atur dengan nilai 0 untuk menonaktifkan pencarian paged LDAP dalam situasi tersebut.)", - "Enable LDAP password changes per user" : "Aktifkan perubahan sandi LDAP per pengguna", - "Allow LDAP users to change their password and allow Super Administrators and Group Administrators to change the password of their LDAP users. Only works when access control policies are configured accordingly on the LDAP server. As passwords are sent in plaintext to the LDAP server, transport encryption must be used and password hashing should be configured on the LDAP server." : "Perbolehkan pengguna LDAP mengubah sandi mereka dan perbolehkan Administrator Super dan Administrator Grup untuk mengubah sandi pengguna LDAP mereka. Hanya bekerja ketika kebijaksanaan akses kontrol terconfigurasi berdasarkan server LDAP. Sebagaimana sandi dikirim dalam plain teks ke server LDAP, pengiriman enkripsi harus digunakan dan hashing sandi harus terkonfigurasi di server LDAP.", - "(New password is sent as plain text to LDAP)" : "(Sandi baru dikirim sebagai plain teks ke LDAP)", + "Enable LDAP password changes per user" : "Aktifkan perubahan kata sandi LDAP per pengguna", + "Allow LDAP users to change their password and allow Super Administrators and Group Administrators to change the password of their LDAP users. Only works when access control policies are configured accordingly on the LDAP server. As passwords are sent in plaintext to the LDAP server, transport encryption must be used and password hashing should be configured on the LDAP server." : "Perbolehkan pengguna LDAP mengubah kata sandi mereka dan perbolehkan Administrator Super dan Administrator Grup untuk mengubah kata sandi pengguna LDAP mereka. Hanya bekerja ketika kebijaksanaan akses kontrol terconfigurasi berdasarkan server LDAP. Sebagaimana kata sandi dikirim dalam plain teks ke server LDAP, pengiriman enkripsi harus digunakan dan hashing kata sandi harus terkonfigurasi di server LDAP.", + "(New password is sent as plain text to LDAP)" : "(Kata sandi baru dikirim sebagai plain teks ke LDAP)", "Special Attributes" : "Atribut Khusus", "Quota Field" : "Kolom Kuota", "Quota Default" : "Kuota Baku", @@ -145,12 +144,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Nama pengguna digunakan untuk menyimpan dan menetapkan (meta) data. Dalam rangka untuk mengidentifikasi dan mengenali pengguna secara tepat, setiap pengguna LDAP akan memiliki nama pengguna internal. Hal ini memerlukan sebuah pemetaan dari nama pengguna ke pengguna LDAP. Nama pengguna yang dibuat akan dipetakan pada UUID pengguna LDAP. Selain itu, DN akan di cache untuk mengurangi interaksi LDAP, tetapi tidak digunakan untuk identifikasi. Jika DN berubah, perubahan akan ditemukan. Nama pengguna internal digunakan secara menyeluruh. Membersihkan pemetaan akan mempengaruhi semua konfigurasi LDAP! JANGAN PERNAH MENGHAPUS PEMETAAN PADA LINGKUNGAN PRODUKSI, hanya gunakan dalam tahap uji coba dan pengujian.", "Clear Username-LDAP User Mapping" : "Bersihkan Pemetaan Pengguna LDAP-Nama pengguna", "Clear Groupname-LDAP Group Mapping" : "Bersihkan Pemetaan Grup LDAP-Nama grup", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Placeholder %uid tidak ada. Placeholder akan digantikan dengan nama login saat melakukan kueri LDAP / AD.", - "Verify settings and count groups" : "Verifikasi setelan dan hitung grup", - "Add a new and blank configuration" : "Tambah konfigurasi kosong yang baru", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Anda dapat mengabaikan protokol, kecuali Anda membutuhkan SSL. Lalu jalankan dengan ldaps://", + " entries available within the provided Base DN" : "entri tersedia didalam Base DN yang diberikan", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Peringatan: Aplikasi user_ldap dan user_webdavauth tidak kompatibel. Anda mungkin akan mengalami perilaku yang tidak terduga. Silakan minta administrator Anda untuk menonaktifkan salah satunya.", - "in bytes" : "dalam bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Peringatan: Aplikasi user_ldap dan user_webdavauth tidak kompatibel. Anda mungkin akan mengalami perilaku yang tidak terduga. Silakan minta administrator Anda untuk menonaktifkan salah satunya." }, "nplurals=1; plural=0;"); diff --git a/apps/user_ldap/l10n/id.json b/apps/user_ldap/l10n/id.json index 92c0f0c6e9da3..5dd5b5be60a70 100644 --- a/apps/user_ldap/l10n/id.json +++ b/apps/user_ldap/l10n/id.json @@ -20,7 +20,6 @@ "{nthServer}. Server" : "{nthServer}. Server", "No object found in the given Base DN. Please revise." : "Tidak ada obyek ditemukan di Base DN yang diberikan. Mohon diperiksa kembali.", "More than 1,000 directory entries available." : "Lebih dari 1000 entri direktori tersedia.", - " entries available within the provided Base DN" : "entri tersedia didalam Base DN yang diberikan", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Terjadi kesalahan. Silakan periksa Base DN, serta pengaturan sambungan dan kredensial.", "Do you really want to delete the current Server Configuration?" : "Apakan Anda ingin menghapus Konfigurasi Server saat ini?", "Confirm Deletion" : "Konfirmasi Penghapusan", @@ -37,7 +36,7 @@ "A connection error to LDAP / AD occurred, please check host, port and credentials." : "Terjadi kesalahan sambungan ke LDAP / AD, mohon periksa host, port dan kredensial.", "Please provide a login name to test against" : "Mohon berikan nama login untuk mengujinya kembali", "The group box was disabled, because the LDAP / AD server does not support memberOf." : "Kotak grup telah dinonaktifkan, karena server LDAP / AD tidak mendukung keanggotaan.", - "Password change rejected. Hint: " : "Perubahan sandi ditolak. Petunjuk:", + "Password change rejected. Hint: " : "Perubahan kata sandi ditolak. Petunjuk:", "LDAP / AD integration" : "Integrasi LDAP / AD", "_%s group found_::_%s groups found_" : ["%s grup ditemukan"], "_%s user found_::_%s users found_" : ["%s pengguna ditemukan"], @@ -69,7 +68,7 @@ "Detect Port" : "Deteksi Port", "User DN" : "Pengguna DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "DN dari klien pengguna yang dengannya tautan akan diterapkan, mis. uid=agen,dc=contoh,dc=com. Untuk akses anonim, biarkan DN dan kata sandi kosong.", - "Password" : "Sandi", + "Password" : "Kata sandi", "For anonymous access, leave DN and Password empty." : "Untuk akses anonim, biarkan DN dan Kata sandi kosong.", "One Base DN per line" : "Satu Base DN per baris", "You can specify Base DN for users and groups in the Advanced tab" : "Anda dapat menetapkan Base DN untuk pengguna dan grup dalam tab Lanjutan", @@ -123,9 +122,9 @@ "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" : "Ketika dihidupkan, grup yang berisi grup akan didukung. (Hanya bekerja jika atribut anggota grup berisi DN.)", "Paging chunksize" : "Paging chunksize", "Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" : "Chunksize digunakan untuk pencarian paged LDAP yang mengembalikan hasil secara massal seperti enumerasi pengguna dan grup. (Atur dengan nilai 0 untuk menonaktifkan pencarian paged LDAP dalam situasi tersebut.)", - "Enable LDAP password changes per user" : "Aktifkan perubahan sandi LDAP per pengguna", - "Allow LDAP users to change their password and allow Super Administrators and Group Administrators to change the password of their LDAP users. Only works when access control policies are configured accordingly on the LDAP server. As passwords are sent in plaintext to the LDAP server, transport encryption must be used and password hashing should be configured on the LDAP server." : "Perbolehkan pengguna LDAP mengubah sandi mereka dan perbolehkan Administrator Super dan Administrator Grup untuk mengubah sandi pengguna LDAP mereka. Hanya bekerja ketika kebijaksanaan akses kontrol terconfigurasi berdasarkan server LDAP. Sebagaimana sandi dikirim dalam plain teks ke server LDAP, pengiriman enkripsi harus digunakan dan hashing sandi harus terkonfigurasi di server LDAP.", - "(New password is sent as plain text to LDAP)" : "(Sandi baru dikirim sebagai plain teks ke LDAP)", + "Enable LDAP password changes per user" : "Aktifkan perubahan kata sandi LDAP per pengguna", + "Allow LDAP users to change their password and allow Super Administrators and Group Administrators to change the password of their LDAP users. Only works when access control policies are configured accordingly on the LDAP server. As passwords are sent in plaintext to the LDAP server, transport encryption must be used and password hashing should be configured on the LDAP server." : "Perbolehkan pengguna LDAP mengubah kata sandi mereka dan perbolehkan Administrator Super dan Administrator Grup untuk mengubah kata sandi pengguna LDAP mereka. Hanya bekerja ketika kebijaksanaan akses kontrol terconfigurasi berdasarkan server LDAP. Sebagaimana kata sandi dikirim dalam plain teks ke server LDAP, pengiriman enkripsi harus digunakan dan hashing kata sandi harus terkonfigurasi di server LDAP.", + "(New password is sent as plain text to LDAP)" : "(Kata sandi baru dikirim sebagai plain teks ke LDAP)", "Special Attributes" : "Atribut Khusus", "Quota Field" : "Kolom Kuota", "Quota Default" : "Kuota Baku", @@ -143,12 +142,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Nama pengguna digunakan untuk menyimpan dan menetapkan (meta) data. Dalam rangka untuk mengidentifikasi dan mengenali pengguna secara tepat, setiap pengguna LDAP akan memiliki nama pengguna internal. Hal ini memerlukan sebuah pemetaan dari nama pengguna ke pengguna LDAP. Nama pengguna yang dibuat akan dipetakan pada UUID pengguna LDAP. Selain itu, DN akan di cache untuk mengurangi interaksi LDAP, tetapi tidak digunakan untuk identifikasi. Jika DN berubah, perubahan akan ditemukan. Nama pengguna internal digunakan secara menyeluruh. Membersihkan pemetaan akan mempengaruhi semua konfigurasi LDAP! JANGAN PERNAH MENGHAPUS PEMETAAN PADA LINGKUNGAN PRODUKSI, hanya gunakan dalam tahap uji coba dan pengujian.", "Clear Username-LDAP User Mapping" : "Bersihkan Pemetaan Pengguna LDAP-Nama pengguna", "Clear Groupname-LDAP Group Mapping" : "Bersihkan Pemetaan Grup LDAP-Nama grup", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Placeholder %uid tidak ada. Placeholder akan digantikan dengan nama login saat melakukan kueri LDAP / AD.", - "Verify settings and count groups" : "Verifikasi setelan dan hitung grup", - "Add a new and blank configuration" : "Tambah konfigurasi kosong yang baru", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Anda dapat mengabaikan protokol, kecuali Anda membutuhkan SSL. Lalu jalankan dengan ldaps://", + " entries available within the provided Base DN" : "entri tersedia didalam Base DN yang diberikan", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Peringatan: Aplikasi user_ldap dan user_webdavauth tidak kompatibel. Anda mungkin akan mengalami perilaku yang tidak terduga. Silakan minta administrator Anda untuk menonaktifkan salah satunya.", - "in bytes" : "dalam bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Peringatan: Aplikasi user_ldap dan user_webdavauth tidak kompatibel. Anda mungkin akan mengalami perilaku yang tidak terduga. Silakan minta administrator Anda untuk menonaktifkan salah satunya." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/is.js b/apps/user_ldap/l10n/is.js index b158b7960566e..ad321c10c290c 100644 --- a/apps/user_ldap/l10n/is.js +++ b/apps/user_ldap/l10n/is.js @@ -1,41 +1,103 @@ OC.L10N.register( "user_ldap", { + "Failed to clear the mappings." : "Mistókst að hreinsa varpanir.", + "Failed to delete the server configuration" : "Mistókst að eyða uppsetningu þjónsins", + "Valid configuration, connection established!" : "Gild uppsetning, tengingu komið á!", + "Valid configuration, but binding failed. Please check the server settings and credentials." : "Uppsetningin er gild, en binding mistókst. Skoðaðu stillingar þjónsins og auðkenni.", + "Invalid configuration. Please have a look at the logs for further details." : "Uppsetningin er ógild. Skoðaðu atvikaskrárnar til að sjá nánari upplýsingar.", "No action specified" : "Engin aðgerð tiltekin", + "No configuration specified" : "Engin uppsetning tiltekin", "No data specified" : "Engin gögn tiltekin", + " Could not set configuration %s" : "Gat ekki sett uppsetningu %s", "Action does not exist" : "Aðgerð er ekki til", + "LDAP user and group backend" : "LDAP notandi og bakendi hóps", + "Renewing …" : "Endurnýja …", + "Very weak password" : "Mjög veikt lykilorð", + "Weak password" : "Veikt lykilorð", + "So-so password" : "Miðlungs lykilorð", + "Good password" : "Gott lykilorð", + "Strong password" : "Sterkt lykilorð", + "Testing configuration…" : "Prófa stillingar…", "Configuration incorrect" : "Röng uppsetning", + "Configuration incomplete" : "Ófullgerð uppsetning", "Configuration OK" : "Stillingar eru í lagi", "Select groups" : "Veldu hópa", + "Please check the credentials, they seem to be wrong." : "Athugaðu auðkennin, þau líta út fyrir að vera röng.", "{nthServer}. Server" : "{nthServer}. Þjónn", + "More than 1,000 directory entries available." : "Meira en 1,000 möppufærslur tiltækar.", + "Do you really want to delete the current Server Configuration?" : "Ertu viss um að þú viljir eyða núgildandi uppsetningu á þjóninum?", "Confirm Deletion" : "Staðfesta eyðingu", + "Mappings cleared successfully!" : "Það tókst að hreinsa varpanir!", + "Error while clearing the mappings." : "Villa við að hreinsa út varpanir.", + "Mode switch" : "Skipta um ham", "Select attributes" : "Veldu eigindi", + "User found and settings verified." : "Notandi fannst og stillingar yfirfarnar.", + "Password change rejected. Hint: " : "Breytingu á lykilorði hafnað. Ábending: ", + "Please login with the new password" : "Skráðu þig inn með nýja lykilorðinu", + "Your password will expire tomorrow." : "Lykilorðið þitt rennur út á morgun.", + "Your password will expire today." : "Lykilorðið þitt rennur út í dag.", + "_Your password will expire within %n day._::_Your password will expire within %n days._" : ["Lykilorðið þitt rennur út innan %n dags.","Lykilorðið þitt rennur út innan %n daga."], + "LDAP / AD integration" : "LDAP / AD samþætting", "_%s group found_::_%s groups found_" : ["%s hópur fannst","%s hópar fundust"], "_%s user found_::_%s users found_" : ["%s notandi fannst","%s notendur fundust"], + "Could not find the desired feature" : "Gat ekki fundið eiginleika sem óskað var eftir", "Invalid Host" : "Ógild vél", - "Server" : "Þjónn", - "Users" : "Notendur", - "Login Attributes" : "Eigindi innskráningar", - "Groups" : "Hópar", - "Test Configuration" : "Prúfa uppsetningu", + "Test Configuration" : "Prófa uppsetningu", "Help" : "Hjálp", + "Only from these groups:" : "Aðeins úr þessum hópum:", "Search groups" : "Leita í hópum", "Available groups" : "Tiltækir hópar", "Selected groups" : "Valdir hópar", + "Edit LDAP Query" : "Breyta LDAP-fyrirspurn", + "LDAP Filter:" : "LDAP sía:", + "Verify settings and count the groups" : "Sannprófa stillingar og telja hópa", + "LDAP / AD Username:" : "LDAP / AD notandanafn:", + "LDAP / AD Email Address:" : "LDAP / AD tölvupóstfang:", + "Other Attributes:" : "Önnur eigindi:", + "Test Loginname" : "Prófa innskráningarnafn", "Verify settings" : "Sannprófa stillingar", "1. Server" : "1. Þjónn", "%s. Server:" : "%s. Þjónn:", + "Add a new configuration" : "Bæta við nýrri uppsetningu", + "Delete the current configuration" : "Eyða núgildandi uppsetningu", "Host" : "Hýsill", "Port" : "Gátt", "Detect Port" : "Finna gátt", + "User DN" : "DN notanda", "Password" : "Lykilorð", + "Verify settings and count users" : "Sannprófa stillingar og telja notendur", "Saving" : "Vistun", "Back" : "Til baka", "Continue" : "Halda áfram", - "LDAP" : "LDAP", + "Please renew your password." : "Endurnýjaðu lykilorðið þitt", + "An internal error occurred." : "Innri villa kom upp.", + "Please try again or contact your administrator." : "Reyndu aftur eða hafðu samband við kerfisstjóra.", + "Current password" : "Núverandi lykilorð", + "New password" : "Nýtt lykilorð", + "Renew password" : "Endurnýja lykilorð", + "Wrong password. Reset it?" : "Rangt lykilorð. Endursetja?", + "Wrong password." : "Rangt lykilorð.", + "Cancel" : "Hætta við", + "Server" : "Þjónn", + "Users" : "Notendur", + "Login Attributes" : "Eigindi innskráningar", + "Groups" : "Hópar", "Expert" : "Snillingur", "Advanced" : "Ítarlegt", "Connection Settings" : "Valkostir tengingar ", - "in bytes" : "í bætum" + "Configuration Active" : "Uppsetning er virk", + "Disable Main Server" : "Gera aðalþjón óvirkan", + "Turn off SSL certificate validation." : "Slökkva á sannvottun SSL-skilríkja.", + "in seconds. A change empties the cache." : "í sekúndum. Breyting tæmir skyndiminnið.", + "Directory Settings" : "Stillingar möppu", + "Nested Groups" : "Faldaðir hópar", + "(New password is sent as plain text to LDAP)" : "(Nýtt lykilorð er sent sem hreinn texti til LDAP)", + "Special Attributes" : "Sérstök eigindi", + "Quota Field" : "Gagnasvið fyrir kvóta", + "Quota Default" : "Sjálfgefinn kvóti", + "Email Field" : "Gagnasvið fyrir netfang", + "Internal Username" : "Innra notandanafn", + "LDAP" : "LDAP" }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/user_ldap/l10n/is.json b/apps/user_ldap/l10n/is.json index 3c04938290008..dd7d0b236fe5c 100644 --- a/apps/user_ldap/l10n/is.json +++ b/apps/user_ldap/l10n/is.json @@ -1,39 +1,101 @@ { "translations": { + "Failed to clear the mappings." : "Mistókst að hreinsa varpanir.", + "Failed to delete the server configuration" : "Mistókst að eyða uppsetningu þjónsins", + "Valid configuration, connection established!" : "Gild uppsetning, tengingu komið á!", + "Valid configuration, but binding failed. Please check the server settings and credentials." : "Uppsetningin er gild, en binding mistókst. Skoðaðu stillingar þjónsins og auðkenni.", + "Invalid configuration. Please have a look at the logs for further details." : "Uppsetningin er ógild. Skoðaðu atvikaskrárnar til að sjá nánari upplýsingar.", "No action specified" : "Engin aðgerð tiltekin", + "No configuration specified" : "Engin uppsetning tiltekin", "No data specified" : "Engin gögn tiltekin", + " Could not set configuration %s" : "Gat ekki sett uppsetningu %s", "Action does not exist" : "Aðgerð er ekki til", + "LDAP user and group backend" : "LDAP notandi og bakendi hóps", + "Renewing …" : "Endurnýja …", + "Very weak password" : "Mjög veikt lykilorð", + "Weak password" : "Veikt lykilorð", + "So-so password" : "Miðlungs lykilorð", + "Good password" : "Gott lykilorð", + "Strong password" : "Sterkt lykilorð", + "Testing configuration…" : "Prófa stillingar…", "Configuration incorrect" : "Röng uppsetning", + "Configuration incomplete" : "Ófullgerð uppsetning", "Configuration OK" : "Stillingar eru í lagi", "Select groups" : "Veldu hópa", + "Please check the credentials, they seem to be wrong." : "Athugaðu auðkennin, þau líta út fyrir að vera röng.", "{nthServer}. Server" : "{nthServer}. Þjónn", + "More than 1,000 directory entries available." : "Meira en 1,000 möppufærslur tiltækar.", + "Do you really want to delete the current Server Configuration?" : "Ertu viss um að þú viljir eyða núgildandi uppsetningu á þjóninum?", "Confirm Deletion" : "Staðfesta eyðingu", + "Mappings cleared successfully!" : "Það tókst að hreinsa varpanir!", + "Error while clearing the mappings." : "Villa við að hreinsa út varpanir.", + "Mode switch" : "Skipta um ham", "Select attributes" : "Veldu eigindi", + "User found and settings verified." : "Notandi fannst og stillingar yfirfarnar.", + "Password change rejected. Hint: " : "Breytingu á lykilorði hafnað. Ábending: ", + "Please login with the new password" : "Skráðu þig inn með nýja lykilorðinu", + "Your password will expire tomorrow." : "Lykilorðið þitt rennur út á morgun.", + "Your password will expire today." : "Lykilorðið þitt rennur út í dag.", + "_Your password will expire within %n day._::_Your password will expire within %n days._" : ["Lykilorðið þitt rennur út innan %n dags.","Lykilorðið þitt rennur út innan %n daga."], + "LDAP / AD integration" : "LDAP / AD samþætting", "_%s group found_::_%s groups found_" : ["%s hópur fannst","%s hópar fundust"], "_%s user found_::_%s users found_" : ["%s notandi fannst","%s notendur fundust"], + "Could not find the desired feature" : "Gat ekki fundið eiginleika sem óskað var eftir", "Invalid Host" : "Ógild vél", - "Server" : "Þjónn", - "Users" : "Notendur", - "Login Attributes" : "Eigindi innskráningar", - "Groups" : "Hópar", - "Test Configuration" : "Prúfa uppsetningu", + "Test Configuration" : "Prófa uppsetningu", "Help" : "Hjálp", + "Only from these groups:" : "Aðeins úr þessum hópum:", "Search groups" : "Leita í hópum", "Available groups" : "Tiltækir hópar", "Selected groups" : "Valdir hópar", + "Edit LDAP Query" : "Breyta LDAP-fyrirspurn", + "LDAP Filter:" : "LDAP sía:", + "Verify settings and count the groups" : "Sannprófa stillingar og telja hópa", + "LDAP / AD Username:" : "LDAP / AD notandanafn:", + "LDAP / AD Email Address:" : "LDAP / AD tölvupóstfang:", + "Other Attributes:" : "Önnur eigindi:", + "Test Loginname" : "Prófa innskráningarnafn", "Verify settings" : "Sannprófa stillingar", "1. Server" : "1. Þjónn", "%s. Server:" : "%s. Þjónn:", + "Add a new configuration" : "Bæta við nýrri uppsetningu", + "Delete the current configuration" : "Eyða núgildandi uppsetningu", "Host" : "Hýsill", "Port" : "Gátt", "Detect Port" : "Finna gátt", + "User DN" : "DN notanda", "Password" : "Lykilorð", + "Verify settings and count users" : "Sannprófa stillingar og telja notendur", "Saving" : "Vistun", "Back" : "Til baka", "Continue" : "Halda áfram", - "LDAP" : "LDAP", + "Please renew your password." : "Endurnýjaðu lykilorðið þitt", + "An internal error occurred." : "Innri villa kom upp.", + "Please try again or contact your administrator." : "Reyndu aftur eða hafðu samband við kerfisstjóra.", + "Current password" : "Núverandi lykilorð", + "New password" : "Nýtt lykilorð", + "Renew password" : "Endurnýja lykilorð", + "Wrong password. Reset it?" : "Rangt lykilorð. Endursetja?", + "Wrong password." : "Rangt lykilorð.", + "Cancel" : "Hætta við", + "Server" : "Þjónn", + "Users" : "Notendur", + "Login Attributes" : "Eigindi innskráningar", + "Groups" : "Hópar", "Expert" : "Snillingur", "Advanced" : "Ítarlegt", "Connection Settings" : "Valkostir tengingar ", - "in bytes" : "í bætum" + "Configuration Active" : "Uppsetning er virk", + "Disable Main Server" : "Gera aðalþjón óvirkan", + "Turn off SSL certificate validation." : "Slökkva á sannvottun SSL-skilríkja.", + "in seconds. A change empties the cache." : "í sekúndum. Breyting tæmir skyndiminnið.", + "Directory Settings" : "Stillingar möppu", + "Nested Groups" : "Faldaðir hópar", + "(New password is sent as plain text to LDAP)" : "(Nýtt lykilorð er sent sem hreinn texti til LDAP)", + "Special Attributes" : "Sérstök eigindi", + "Quota Field" : "Gagnasvið fyrir kvóta", + "Quota Default" : "Sjálfgefinn kvóti", + "Email Field" : "Gagnasvið fyrir netfang", + "Internal Username" : "Innra notandanafn", + "LDAP" : "LDAP" },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/it.js b/apps/user_ldap/l10n/it.js index 38217aaefdba3..16f07625a5f07 100644 --- a/apps/user_ldap/l10n/it.js +++ b/apps/user_ldap/l10n/it.js @@ -33,7 +33,7 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. server", "No object found in the given Base DN. Please revise." : "Nessun oggetto trovato nel DN base specificato. Controlla.", "More than 1,000 directory entries available." : "Più di 1.000 cartelle disponibili.", - " entries available within the provided Base DN" : "voci disponibili all'interno del DN base", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} voce disponibile all'interno del DN base fornito","{objectsFound} voci disponibili all'interno del DN base fornito"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Si è verificato un errore. Controlla il DN base, così come le impostazioni di connessione e le credenziali.", "Do you really want to delete the current Server Configuration?" : "Vuoi davvero eliminare la configurazione attuale del server?", "Confirm Deletion" : "Conferma l'eliminazione", @@ -187,12 +187,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "I nomi utente sono utilizzati per archiviare e assegnare i (meta) dati. Per identificare con precisione e riconoscere gli utenti, ogni utente LDAP avrà un nome utente interno. Ciò richiede un'associazione tra il nome utente e l'utente LDAP. In aggiunta, il DN viene mantenuto in cache per ridurre l'interazione con LDAP, ma non è utilizzato per l'identificazione. Se il DN cambia, le modifiche saranno rilevate. Il nome utente interno è utilizzato dappertutto. La cancellazione delle associazioni lascerà tracce residue ovunque e interesserà tutta la configurazione LDAP. Non cancellare mai le associazioni in un ambiente di produzione, ma solo in una fase sperimentale o di test.", "Clear Username-LDAP User Mapping" : "Cancella associazione Nome utente-Utente LDAP", "Clear Groupname-LDAP Group Mapping" : "Cancella associazione Nome gruppo-Gruppo LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Manca il segnaposto %uid. Sarà sostituito con il nome di accesso nelle query a LDAP / AD.", - "Verify settings and count groups" : "Verifica le impostazioni e conta i gruppi", - "Add a new and blank configuration" : "Aggiunge una nuova configurazione vuota", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "È possibile omettere il protocollo, ad eccezione se è necessario SSL. Quindi inizia con ldaps://", + " entries available within the provided Base DN" : "voci disponibili all'interno del DN base", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Avviso: le applicazioni user_ldap e user_webdavauth sono incompatibili. Potresti riscontrare un comportamento inatteso. Chiedi al tuo amministratore di sistema di disabilitarne una.", - "in bytes" : "in byte" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Avviso: le applicazioni user_ldap e user_webdavauth sono incompatibili. Potresti riscontrare un comportamento inatteso. Chiedi al tuo amministratore di sistema di disabilitarne una." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/it.json b/apps/user_ldap/l10n/it.json index bb6197b632038..b6e6cecd3024c 100644 --- a/apps/user_ldap/l10n/it.json +++ b/apps/user_ldap/l10n/it.json @@ -31,7 +31,7 @@ "{nthServer}. Server" : "{nthServer}. server", "No object found in the given Base DN. Please revise." : "Nessun oggetto trovato nel DN base specificato. Controlla.", "More than 1,000 directory entries available." : "Più di 1.000 cartelle disponibili.", - " entries available within the provided Base DN" : "voci disponibili all'interno del DN base", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} voce disponibile all'interno del DN base fornito","{objectsFound} voci disponibili all'interno del DN base fornito"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Si è verificato un errore. Controlla il DN base, così come le impostazioni di connessione e le credenziali.", "Do you really want to delete the current Server Configuration?" : "Vuoi davvero eliminare la configurazione attuale del server?", "Confirm Deletion" : "Conferma l'eliminazione", @@ -185,12 +185,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "I nomi utente sono utilizzati per archiviare e assegnare i (meta) dati. Per identificare con precisione e riconoscere gli utenti, ogni utente LDAP avrà un nome utente interno. Ciò richiede un'associazione tra il nome utente e l'utente LDAP. In aggiunta, il DN viene mantenuto in cache per ridurre l'interazione con LDAP, ma non è utilizzato per l'identificazione. Se il DN cambia, le modifiche saranno rilevate. Il nome utente interno è utilizzato dappertutto. La cancellazione delle associazioni lascerà tracce residue ovunque e interesserà tutta la configurazione LDAP. Non cancellare mai le associazioni in un ambiente di produzione, ma solo in una fase sperimentale o di test.", "Clear Username-LDAP User Mapping" : "Cancella associazione Nome utente-Utente LDAP", "Clear Groupname-LDAP Group Mapping" : "Cancella associazione Nome gruppo-Gruppo LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Manca il segnaposto %uid. Sarà sostituito con il nome di accesso nelle query a LDAP / AD.", - "Verify settings and count groups" : "Verifica le impostazioni e conta i gruppi", - "Add a new and blank configuration" : "Aggiunge una nuova configurazione vuota", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "È possibile omettere il protocollo, ad eccezione se è necessario SSL. Quindi inizia con ldaps://", + " entries available within the provided Base DN" : "voci disponibili all'interno del DN base", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Avviso: le applicazioni user_ldap e user_webdavauth sono incompatibili. Potresti riscontrare un comportamento inatteso. Chiedi al tuo amministratore di sistema di disabilitarne una.", - "in bytes" : "in byte" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Avviso: le applicazioni user_ldap e user_webdavauth sono incompatibili. Potresti riscontrare un comportamento inatteso. Chiedi al tuo amministratore di sistema di disabilitarne una." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/ja.js b/apps/user_ldap/l10n/ja.js index 8229c34784aaa..13df333c2025f 100644 --- a/apps/user_ldap/l10n/ja.js +++ b/apps/user_ldap/l10n/ja.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. サーバー", "No object found in the given Base DN. Please revise." : "指定されたベース DN でオブジェクトを見つけることができませんでした。修正をお願いします。", "More than 1,000 directory entries available." : "1,000以上のディレクトリエントリが利用可能です。", - " entries available within the provided Base DN" : "入力されたベースDNでエントリーが利用可能", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "エラーが発生しました。ベースDNをチェックし、接続設定と権限についても同様に確認してください。", "Do you really want to delete the current Server Configuration?" : "現在のサーバー設定を本当に削除してもよろしいですか?", "Confirm Deletion" : "削除の確認", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "ユーザー名は(メタ)データの保存と割り当てに使用されます。ユーザーを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザー名からLDAPユーザーへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、すべてのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。", "Clear Username-LDAP User Mapping" : "ユーザー名とLDAPユーザーのマッピングをクリアする", "Clear Groupname-LDAP Group Mapping" : "グループ名とLDAPグループのマッピングをクリアする", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "%uid のプレースフォルダがありません。プレースフォルダでは、LDAP /ADで問合せするときにログイン名で置き換えられます。", - "Verify settings and count groups" : "設定を検証し、グループを数える", - "Add a new and blank configuration" : "空欄の新しい設定を追加", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "SSL通信しない場合には、プロトコル名を省略することができます。そうでない場合には、ldaps:// から始めてください。", + " entries available within the provided Base DN" : "入力されたベースDNでエントリーが利用可能", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "警告: user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能性があります。システム管理者にどちらかを無効にするよう問い合わせてください。", - "in bytes" : "バイト" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "警告: user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能性があります。システム管理者にどちらかを無効にするよう問い合わせてください。" }, "nplurals=1; plural=0;"); diff --git a/apps/user_ldap/l10n/ja.json b/apps/user_ldap/l10n/ja.json index de410303383b4..50132472991a3 100644 --- a/apps/user_ldap/l10n/ja.json +++ b/apps/user_ldap/l10n/ja.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. サーバー", "No object found in the given Base DN. Please revise." : "指定されたベース DN でオブジェクトを見つけることができませんでした。修正をお願いします。", "More than 1,000 directory entries available." : "1,000以上のディレクトリエントリが利用可能です。", - " entries available within the provided Base DN" : "入力されたベースDNでエントリーが利用可能", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "エラーが発生しました。ベースDNをチェックし、接続設定と権限についても同様に確認してください。", "Do you really want to delete the current Server Configuration?" : "現在のサーバー設定を本当に削除してもよろしいですか?", "Confirm Deletion" : "削除の確認", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "ユーザー名は(メタ)データの保存と割り当てに使用されます。ユーザーを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザー名からLDAPユーザーへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、すべてのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。", "Clear Username-LDAP User Mapping" : "ユーザー名とLDAPユーザーのマッピングをクリアする", "Clear Groupname-LDAP Group Mapping" : "グループ名とLDAPグループのマッピングをクリアする", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "%uid のプレースフォルダがありません。プレースフォルダでは、LDAP /ADで問合せするときにログイン名で置き換えられます。", - "Verify settings and count groups" : "設定を検証し、グループを数える", - "Add a new and blank configuration" : "空欄の新しい設定を追加", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "SSL通信しない場合には、プロトコル名を省略することができます。そうでない場合には、ldaps:// から始めてください。", + " entries available within the provided Base DN" : "入力されたベースDNでエントリーが利用可能", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "警告: user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能性があります。システム管理者にどちらかを無効にするよう問い合わせてください。", - "in bytes" : "バイト" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "警告: user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能性があります。システム管理者にどちらかを無効にするよう問い合わせてください。" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/ka_GE.js b/apps/user_ldap/l10n/ka_GE.js index 494d4769e70bc..f6a1b22017f31 100644 --- a/apps/user_ldap/l10n/ka_GE.js +++ b/apps/user_ldap/l10n/ka_GE.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. სერვერი", "No object found in the given Base DN. Please revise." : "მოცემულ საბაზისო DN-ში ობიექტი ვერ იქნა ნაპოვნი. გთხოვთ გადახედოთ.", "More than 1,000 directory entries available." : "ხელმისაწვდომია 1000-ზე მეტი დირექტორია.", - " entries available within the provided Base DN" : "მითითებულ საბაზისო DN-ში შენატანები ხელმისაწვდომია", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "გამოჩნდა შეცდომა. გთხოვთ შეამოწმოთ საბაზისო DN, ასევე კავშირის და უფლებამოსილებების კონფიგურაცია.", "Do you really want to delete the current Server Configuration?" : "ნამდვილად გსურთ სერვერის მიმდინარე პარამეტრების წაშლა?", "Confirm Deletion" : "წაშლის დადასტურება", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "მომხმარებლების სახელები გამოიყენება (მეტა) მონაცემების შესანახად და დასანიშნად. ზუსტი იდენტიფიკაციისა და ამოზნობისთვის, ყოველ LDAP-ის მომხმარებელს ექნება შიდა მომხმარებელი. ეს საჭიროებს ბმას მომხმარებელსა და LDAP-ის სახელს შორის. შექმნილი მომხმარებელი ებმება LDAP-ის მომხმარებელის UUID-ს. LDAP-თან ინტერაქციის შესამცირებლად, დამატებითად კეშირდება DN, მაგრამ არ ხდება მისი მოხმარება იდენტიფიკაციისთვის. ბმების გასუფთავება ბევრ ადგილას დატოვებს კვალს. ბმების გასუფთავება არაა კონფიგურაციასთან მგრძნობიარე, ის მოქმედებს ყველა LDAP-ის კონფიგურაციაზე! არასდროს გაასუფთავოთ ბმები საწარმოო გარემოში, მოიხმარეთ ეს მხოლოდ შემოწმების ან ექსპერიმენტისთვის.", "Clear Username-LDAP User Mapping" : "Username-LDAP მომხმარებლის ბმების გასუფთავება", "Clear Groupname-LDAP Group Mapping" : "Groupname-LDAP ჯგუფის ბმების გასუფთავება", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "\"%u\" ადგილი არაა მითითებული. LDAP / AD პასუხის მოთხოვნისას ის ჩანაცვლებულ იქნება ლოგინის სახელით.", - "Verify settings and count groups" : "დაამოწმეთ პარამეტრები და დათვალეთ ჯგუფები", - "Add a new and blank configuration" : "დაამტეთ ახალი და ცარიელი კონფიგურაცია", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "იმ შემთხვევაში, თუ არ საჭიროებთ SSL-ს, შეგიზლიათ გამოტოვოთ პროტოკოლი. სხვა შემთხვევაში, დაიწყეთ ldaps://", + " entries available within the provided Base DN" : "მითითებულ საბაზისო DN-ში შენატანები ხელმისაწვდომია", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "გაფრთხილება: აპლიკაციები user_ldap და user_webdavauth არაა თავსებადი. შესაძლოა შეგვხდეთ მოულოდნელი ქმედება. გთხოვთ სთხოვოთ თქვენი სისტემის ადმინისტრატორს ერთ-ერთის გათიშვა.", - "in bytes" : "ბაიტებში" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "გაფრთხილება: აპლიკაციები user_ldap და user_webdavauth არაა თავსებადი. შესაძლოა შეგვხდეთ მოულოდნელი ქმედება. გთხოვთ სთხოვოთ თქვენი სისტემის ადმინისტრატორს ერთ-ერთის გათიშვა." }, "nplurals=1; plural=0;"); diff --git a/apps/user_ldap/l10n/ka_GE.json b/apps/user_ldap/l10n/ka_GE.json index b50a8c2f0aec8..497f629d480ba 100644 --- a/apps/user_ldap/l10n/ka_GE.json +++ b/apps/user_ldap/l10n/ka_GE.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. სერვერი", "No object found in the given Base DN. Please revise." : "მოცემულ საბაზისო DN-ში ობიექტი ვერ იქნა ნაპოვნი. გთხოვთ გადახედოთ.", "More than 1,000 directory entries available." : "ხელმისაწვდომია 1000-ზე მეტი დირექტორია.", - " entries available within the provided Base DN" : "მითითებულ საბაზისო DN-ში შენატანები ხელმისაწვდომია", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "გამოჩნდა შეცდომა. გთხოვთ შეამოწმოთ საბაზისო DN, ასევე კავშირის და უფლებამოსილებების კონფიგურაცია.", "Do you really want to delete the current Server Configuration?" : "ნამდვილად გსურთ სერვერის მიმდინარე პარამეტრების წაშლა?", "Confirm Deletion" : "წაშლის დადასტურება", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "მომხმარებლების სახელები გამოიყენება (მეტა) მონაცემების შესანახად და დასანიშნად. ზუსტი იდენტიფიკაციისა და ამოზნობისთვის, ყოველ LDAP-ის მომხმარებელს ექნება შიდა მომხმარებელი. ეს საჭიროებს ბმას მომხმარებელსა და LDAP-ის სახელს შორის. შექმნილი მომხმარებელი ებმება LDAP-ის მომხმარებელის UUID-ს. LDAP-თან ინტერაქციის შესამცირებლად, დამატებითად კეშირდება DN, მაგრამ არ ხდება მისი მოხმარება იდენტიფიკაციისთვის. ბმების გასუფთავება ბევრ ადგილას დატოვებს კვალს. ბმების გასუფთავება არაა კონფიგურაციასთან მგრძნობიარე, ის მოქმედებს ყველა LDAP-ის კონფიგურაციაზე! არასდროს გაასუფთავოთ ბმები საწარმოო გარემოში, მოიხმარეთ ეს მხოლოდ შემოწმების ან ექსპერიმენტისთვის.", "Clear Username-LDAP User Mapping" : "Username-LDAP მომხმარებლის ბმების გასუფთავება", "Clear Groupname-LDAP Group Mapping" : "Groupname-LDAP ჯგუფის ბმების გასუფთავება", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "\"%u\" ადგილი არაა მითითებული. LDAP / AD პასუხის მოთხოვნისას ის ჩანაცვლებულ იქნება ლოგინის სახელით.", - "Verify settings and count groups" : "დაამოწმეთ პარამეტრები და დათვალეთ ჯგუფები", - "Add a new and blank configuration" : "დაამტეთ ახალი და ცარიელი კონფიგურაცია", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "იმ შემთხვევაში, თუ არ საჭიროებთ SSL-ს, შეგიზლიათ გამოტოვოთ პროტოკოლი. სხვა შემთხვევაში, დაიწყეთ ldaps://", + " entries available within the provided Base DN" : "მითითებულ საბაზისო DN-ში შენატანები ხელმისაწვდომია", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "გაფრთხილება: აპლიკაციები user_ldap და user_webdavauth არაა თავსებადი. შესაძლოა შეგვხდეთ მოულოდნელი ქმედება. გთხოვთ სთხოვოთ თქვენი სისტემის ადმინისტრატორს ერთ-ერთის გათიშვა.", - "in bytes" : "ბაიტებში" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "გაფრთხილება: აპლიკაციები user_ldap და user_webdavauth არაა თავსებადი. შესაძლოა შეგვხდეთ მოულოდნელი ქმედება. გთხოვთ სთხოვოთ თქვენი სისტემის ადმინისტრატორს ერთ-ერთის გათიშვა." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/ko.js b/apps/user_ldap/l10n/ko.js index 6153763d731c5..9e01fd17212f1 100644 --- a/apps/user_ldap/l10n/ko.js +++ b/apps/user_ldap/l10n/ko.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. 서버", "No object found in the given Base DN. Please revise." : "입력한 기본 DN에서 객체를 찾을 수 없습니다. 다시 입력하십시오.", "More than 1,000 directory entries available." : "디렉터리 항목이 1,000개 이상 존재합니다.", - " entries available within the provided Base DN" : "개(지정한 DN의 기본 항목 수)", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "오류가 발생했습니다. 기본 DN, 연결 설정, 인증 정보를 확인하십시오.", "Do you really want to delete the current Server Configuration?" : "현재 서버 설정을 지우시겠습니까?", "Confirm Deletion" : "삭제 확인", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "사용자 이름은 (메타)데이터를 저장하고 할당하는 데 사용됩니다. 사용자를 정확히 식별하기 위해서 모든 LDAP 사용자는 내부 사용자 이름을 갖고 있습니다. 이 정보에 접근하려면 사용자 이름과 LDAP 사용자 사이의 연결을 알아야 합니다. 생성된 사용자 이름은 LDAP 사용자의 UUID에 연결됩니다. LDAP에 연결하는 횟수를 줄이기 위하여 DN을 캐시에 저장하지만, 식별에는 사용하지 않습니다. DN이 변경되었을 때 변경 사항이 적용됩니다. 내부 사용자 이름은 항상 사용됩니다. 매핑을 비우면 과거 매핑의 흔적이 남습니다. 매핑을 비우는 것은 설정에 관계 없이 적용되므로 모든 LDAP 설정에 영향을 줍니다! 테스트 및 실험 단계에서만 매핑을 비우고, 상용 환경에서는 매핑을 비우지 마십시오.", "Clear Username-LDAP User Mapping" : "사용자 이름-LDAP 사용자 매핑 비우기", "Clear Groupname-LDAP Group Mapping" : "그룹 이름-LDAP 그룹 매핑 비우기", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "%uid 자리 비움자가 존재하지 않습니다. LDAP/AD에 조회할 때 로그인 사용자 이름으로 대체됩니다.", - "Verify settings and count groups" : "설정을 확인하고 그룹 수 계산", - "Add a new and blank configuration" : "새 빈 설정 추가", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "SSL을 사용하지 않으면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오.", + " entries available within the provided Base DN" : "개(지정한 DN의 기본 항목 수)", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "경고: user_ldap, user_webdavauth 앱은 서로 호환되지 않습니다. 예상하지 못한 행동을 할 수도 있습니다. 시스템 관리자에게 연락하여 둘 중 하나의 앱의 사용을 중단하십시오.", - "in bytes" : "바이트 단위" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "경고: user_ldap, user_webdavauth 앱은 서로 호환되지 않습니다. 예상하지 못한 행동을 할 수도 있습니다. 시스템 관리자에게 연락하여 둘 중 하나의 앱의 사용을 중단하십시오." }, "nplurals=1; plural=0;"); diff --git a/apps/user_ldap/l10n/ko.json b/apps/user_ldap/l10n/ko.json index 3b9cbd8fc8a7e..1032c82777a69 100644 --- a/apps/user_ldap/l10n/ko.json +++ b/apps/user_ldap/l10n/ko.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. 서버", "No object found in the given Base DN. Please revise." : "입력한 기본 DN에서 객체를 찾을 수 없습니다. 다시 입력하십시오.", "More than 1,000 directory entries available." : "디렉터리 항목이 1,000개 이상 존재합니다.", - " entries available within the provided Base DN" : "개(지정한 DN의 기본 항목 수)", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "오류가 발생했습니다. 기본 DN, 연결 설정, 인증 정보를 확인하십시오.", "Do you really want to delete the current Server Configuration?" : "현재 서버 설정을 지우시겠습니까?", "Confirm Deletion" : "삭제 확인", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "사용자 이름은 (메타)데이터를 저장하고 할당하는 데 사용됩니다. 사용자를 정확히 식별하기 위해서 모든 LDAP 사용자는 내부 사용자 이름을 갖고 있습니다. 이 정보에 접근하려면 사용자 이름과 LDAP 사용자 사이의 연결을 알아야 합니다. 생성된 사용자 이름은 LDAP 사용자의 UUID에 연결됩니다. LDAP에 연결하는 횟수를 줄이기 위하여 DN을 캐시에 저장하지만, 식별에는 사용하지 않습니다. DN이 변경되었을 때 변경 사항이 적용됩니다. 내부 사용자 이름은 항상 사용됩니다. 매핑을 비우면 과거 매핑의 흔적이 남습니다. 매핑을 비우는 것은 설정에 관계 없이 적용되므로 모든 LDAP 설정에 영향을 줍니다! 테스트 및 실험 단계에서만 매핑을 비우고, 상용 환경에서는 매핑을 비우지 마십시오.", "Clear Username-LDAP User Mapping" : "사용자 이름-LDAP 사용자 매핑 비우기", "Clear Groupname-LDAP Group Mapping" : "그룹 이름-LDAP 그룹 매핑 비우기", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "%uid 자리 비움자가 존재하지 않습니다. LDAP/AD에 조회할 때 로그인 사용자 이름으로 대체됩니다.", - "Verify settings and count groups" : "설정을 확인하고 그룹 수 계산", - "Add a new and blank configuration" : "새 빈 설정 추가", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "SSL을 사용하지 않으면 프로토콜을 입력하지 않아도 됩니다. SSL을 사용하려면 ldaps://를 입력하십시오.", + " entries available within the provided Base DN" : "개(지정한 DN의 기본 항목 수)", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "경고: user_ldap, user_webdavauth 앱은 서로 호환되지 않습니다. 예상하지 못한 행동을 할 수도 있습니다. 시스템 관리자에게 연락하여 둘 중 하나의 앱의 사용을 중단하십시오.", - "in bytes" : "바이트 단위" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "경고: user_ldap, user_webdavauth 앱은 서로 호환되지 않습니다. 예상하지 못한 행동을 할 수도 있습니다. 시스템 관리자에게 연락하여 둘 중 하나의 앱의 사용을 중단하십시오." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/lt_LT.js b/apps/user_ldap/l10n/lt_LT.js index d9dc1fad82367..c4e069c3e3010 100644 --- a/apps/user_ldap/l10n/lt_LT.js +++ b/apps/user_ldap/l10n/lt_LT.js @@ -32,7 +32,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Serveris", "No object found in the given Base DN. Please revise." : "Jokie objektai nurodytoje DN šakoje nerasti. Prašome patikslinkite.", "More than 1,000 directory entries available." : "Yra prieinama daugiau nei 1000 katalogo įrašų. ", - " entries available within the provided Base DN" : "pasiekiami įrašai pateiktoje DN šakoje", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Įvyko klaida. Patikrinkite DN šąką, taip pat sujungimo nustatymus ir prisijungimo duomenis.", "Do you really want to delete the current Server Configuration?" : "Ar tikrai norite ištrinti dabartinę serverio konfigūraciją?", "Confirm Deletion" : "Patvirtinkite trynimą", @@ -158,15 +157,16 @@ OC.L10N.register( "Default password policy DN" : "Numatytų slaptažodžio taisyklių DN.", "The DN of a default password policy that will be used for password expiry handling. Works only when LDAP password changes per user are enabled and is only supported by OpenLDAP. Leave empty to disable password expiry handling." : "Numatytų slaptažodžio taisyklių DN, kuris bus naudojamas tvarkant slaptažodžio galiojimą. Veikia tik tada, kai yra įjungtas LDAP vartotojo slaptažodžio keitimas ir yra palaikomas tik OpenLDAP. Palikite tuščią, jei norite išjungti slaptažodžio galiojimo tvarkymą.", "Special Attributes" : "Specialūs atributai", - "Quota Field" : "Kvotos laukas", - "Leave empty for user's default quota. Otherwise, specify an LDAP/AD attribute." : "Palikite tuščią, jei norite, kad galiotų numatytoji naudotojų kvota. Kitu atveju, nurodykite LDAP/AD atributą.", - "Quota Default" : "Numatyta kvota", + "Quota Field" : "Leidžiamo duomenų kiekio laukas", + "Leave empty for user's default quota. Otherwise, specify an LDAP/AD attribute." : "Palikite tuščią, jei norite, kad galiotų numatytasis naudotojui leidžiamas duomenų kiekis. Kitu atveju, nurodykite LDAP/AD atributą.", + "Quota Default" : "Leidžiamo duomenų kiekio numatytoji reikšmė", + "Override default quota for LDAP users who do not have a quota set in the Quota Field." : "Nustelbti numatytąjį leidžiamą duomenų kiekį LDAP naudotojams, kurie leidžiamo duomenų kiekio lauke neturi nustatyto leidžiamo duomenų kiekio.", "Email Field" : "El. pašto laukas", "Set the user's email from their LDAP attribute. Leave it empty for default behaviour." : "Naudotojų el. paštą nustatykite pagal jų LDAP atributą. Palikite tuščią jei norite, kad veiktų pagal numatytuosius parametrus.", "User Home Folder Naming Rule" : "Naudotojo namų aplanko pavadinimo taisyklė", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." : "Palikite tuščią naudotojo vardui (numatytoji reikšmė). Kitu atveju, nurodykite LDAP/AD atributą.", "Internal Username" : "Vidinis naudotojo vardas", - "By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." : "Pagal nutylėjimą vidinis naudotojo vardas bus sukurtas iš UUID atributo. Tai užtikrina naudotojo vardo unikalumą ir kad nereikia konvertuoti simbolių. Vidinis naudotojo vardas turi apribojimą, leidžiantį tik šiuos simbolius: [a-zA-Z0-9 _. @ -]. Kiti simboliai pakeičiami ASCII atitikmenimis arba tiesiog praleidžiami. Sutapimų konflikto atveju yra pridedamas/padidinamas skaičius. Vidinis naudotojo vardas naudojamas yra naudojamas identifikuoti naudotoją viduje. Tai kartu yra numatytasis vartotojo aplanko pavadinimas. Taip pat tai nuotolinių URL dalis, pavyzdžiui, visoms *DAV paslaugoms. Naudojant šį nustatymą, numatytoji elgsena gali būti panaikinta. Palikite tuščią, jei norite kad galiotų numatytąjį reikšmė. Pakeitimai įtakoja tik naujai priskirtiems (pridedamiems) LDAP vartotojams.", + "By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." : "Pagal numatymą vidinis naudotojo vardas bus sukurtas iš UUID atributo. Tai užtikrina naudotojo vardo unikalumą ir tuo pačiu nereikia konvertuoti simbolių. Vidinis naudotojo vardas turi apribojimą, leidžiantį tik šiuos simbolius: [ a-zA-Z0-9 _. @ - ]. Kiti simboliai pakeičiami ASCII atitikmenimis arba tiesiog praleidžiami. Sutapimų konflikto atveju yra pridedamas/padidinamas skaičius. Vidinis naudotojo vardas yra naudojamas identifikuoti naudotoją viduje. Tai kartu yra numatytasis naudotojo aplanko pavadinimas. Taip pat jis yra nuotolinių URL dalimi, pavyzdžiui, visoms *DAV paslaugoms. Naudojant šį nustatymą, numatytoji elgsena gali būti nustelbta. Palikite tuščią, jei norite kad galiotų numatytoji elgsena. Pakeitimai įsigalios tik naujai priskirtiems (pridėtiems) LDAP naudotojams.", "Internal Username Attribute:" : "Vidinis naudotojo vardo atributas:", "Override UUID detection" : "Perrašyti UUID aptikimą", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." : "naudotojo vardasnaudotojo vardasPagal nutylėjimą, UUID atributas yra automatiškai aptinkamas. UUID atributas yra naudojamas identifikuoti LDAP vartotojus ir grupes. Taigi, vidinis naudotojo vardas bus sukurtas remiantis UUID, jei nenurodyta kitaip. Jūs galite pakeisti nustatymus ir perduoti pasirinktus atributus. Turite įsitikinti, kad jūsų pasirinktas atributas gali būti rastas tiek prie vartotojų, tiek prie grupių, ir yra unikalus. Jei norite, kad veiktų pagal numatytuosius parametrus, palikite tuščią. Pakeitimai turės įtakos tik naujai susietiems (pridedamiems) LDAP naudotojams ir grupėms.", @@ -176,12 +176,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Naudotojų vardai yra naudojami saugoti ir priskirti (meta) duomenis. Siekiant identifikuoti ir atpažinti naudotojus,kiekvienas LDAP naudotojas turės vidinį naudotojo vardą. Tam reikia susieti naudotojo vardą su LDAP naudotoju. Sukurtas naudotojo vardas yra susiejamas su LDAP naudotojo UUID. Papildomai DN talpinamas, kad sumažintų LDAP sąveiką, bet nenaudojamas identifikacijoje. Visur yra naudojamas vidinis naudotojo vardas. Susiejimų pašalinimas visur paliks \"pėdsaką\" ir įtakos visas LDAP konfigūracijas! Niekada susiejimų nešalinkite produkciniame serveryje.", "Clear Username-LDAP User Mapping" : "Išvalyti naudotojo vardo - LDAP naudotojo sąsają", "Clear Groupname-LDAP Group Mapping" : "Išvalyti grupės pavadinimo - LDAP naudotojo sąsają", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Trūksta \"%u\" vietaženklio. Jis bus pakeistas prisijungimo vardu, siunčiant užklausas LDAP / AD. ", - "Verify settings and count groups" : "Patikrinkite nustatymus ir suskaičiuokite grupes", - "Add a new and blank configuration" : "Pridėkite naują konfigūraciją", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Jūs galite praleisti protokolą, nebent Jums reikalingas SSL. Jei taip, pradėkite su ldaps://", + " entries available within the provided Base DN" : "pasiekiami įrašai pateiktoje DN šakoje", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Įspėjimas: Programėlės user_ldap ir user_webdavauth yra nesuderinami. Tai gali sukelti nepageidaujamą veikimą. Paprašykite, kad sistemos administratorius vieną jų išjungtų.", - "in bytes" : "baitais" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Įspėjimas: Programėlės user_ldap ir user_webdavauth yra nesuderinami. Tai gali sukelti nepageidaujamą veikimą. Paprašykite, kad sistemos administratorius vieną jų išjungtų." }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/user_ldap/l10n/lt_LT.json b/apps/user_ldap/l10n/lt_LT.json index 2f0e723cbfdac..ce14909ab38f1 100644 --- a/apps/user_ldap/l10n/lt_LT.json +++ b/apps/user_ldap/l10n/lt_LT.json @@ -30,7 +30,6 @@ "{nthServer}. Server" : "{nthServer}. Serveris", "No object found in the given Base DN. Please revise." : "Jokie objektai nurodytoje DN šakoje nerasti. Prašome patikslinkite.", "More than 1,000 directory entries available." : "Yra prieinama daugiau nei 1000 katalogo įrašų. ", - " entries available within the provided Base DN" : "pasiekiami įrašai pateiktoje DN šakoje", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Įvyko klaida. Patikrinkite DN šąką, taip pat sujungimo nustatymus ir prisijungimo duomenis.", "Do you really want to delete the current Server Configuration?" : "Ar tikrai norite ištrinti dabartinę serverio konfigūraciją?", "Confirm Deletion" : "Patvirtinkite trynimą", @@ -156,15 +155,16 @@ "Default password policy DN" : "Numatytų slaptažodžio taisyklių DN.", "The DN of a default password policy that will be used for password expiry handling. Works only when LDAP password changes per user are enabled and is only supported by OpenLDAP. Leave empty to disable password expiry handling." : "Numatytų slaptažodžio taisyklių DN, kuris bus naudojamas tvarkant slaptažodžio galiojimą. Veikia tik tada, kai yra įjungtas LDAP vartotojo slaptažodžio keitimas ir yra palaikomas tik OpenLDAP. Palikite tuščią, jei norite išjungti slaptažodžio galiojimo tvarkymą.", "Special Attributes" : "Specialūs atributai", - "Quota Field" : "Kvotos laukas", - "Leave empty for user's default quota. Otherwise, specify an LDAP/AD attribute." : "Palikite tuščią, jei norite, kad galiotų numatytoji naudotojų kvota. Kitu atveju, nurodykite LDAP/AD atributą.", - "Quota Default" : "Numatyta kvota", + "Quota Field" : "Leidžiamo duomenų kiekio laukas", + "Leave empty for user's default quota. Otherwise, specify an LDAP/AD attribute." : "Palikite tuščią, jei norite, kad galiotų numatytasis naudotojui leidžiamas duomenų kiekis. Kitu atveju, nurodykite LDAP/AD atributą.", + "Quota Default" : "Leidžiamo duomenų kiekio numatytoji reikšmė", + "Override default quota for LDAP users who do not have a quota set in the Quota Field." : "Nustelbti numatytąjį leidžiamą duomenų kiekį LDAP naudotojams, kurie leidžiamo duomenų kiekio lauke neturi nustatyto leidžiamo duomenų kiekio.", "Email Field" : "El. pašto laukas", "Set the user's email from their LDAP attribute. Leave it empty for default behaviour." : "Naudotojų el. paštą nustatykite pagal jų LDAP atributą. Palikite tuščią jei norite, kad veiktų pagal numatytuosius parametrus.", "User Home Folder Naming Rule" : "Naudotojo namų aplanko pavadinimo taisyklė", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." : "Palikite tuščią naudotojo vardui (numatytoji reikšmė). Kitu atveju, nurodykite LDAP/AD atributą.", "Internal Username" : "Vidinis naudotojo vardas", - "By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." : "Pagal nutylėjimą vidinis naudotojo vardas bus sukurtas iš UUID atributo. Tai užtikrina naudotojo vardo unikalumą ir kad nereikia konvertuoti simbolių. Vidinis naudotojo vardas turi apribojimą, leidžiantį tik šiuos simbolius: [a-zA-Z0-9 _. @ -]. Kiti simboliai pakeičiami ASCII atitikmenimis arba tiesiog praleidžiami. Sutapimų konflikto atveju yra pridedamas/padidinamas skaičius. Vidinis naudotojo vardas naudojamas yra naudojamas identifikuoti naudotoją viduje. Tai kartu yra numatytasis vartotojo aplanko pavadinimas. Taip pat tai nuotolinių URL dalis, pavyzdžiui, visoms *DAV paslaugoms. Naudojant šį nustatymą, numatytoji elgsena gali būti panaikinta. Palikite tuščią, jei norite kad galiotų numatytąjį reikšmė. Pakeitimai įtakoja tik naujai priskirtiems (pridedamiems) LDAP vartotojams.", + "By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." : "Pagal numatymą vidinis naudotojo vardas bus sukurtas iš UUID atributo. Tai užtikrina naudotojo vardo unikalumą ir tuo pačiu nereikia konvertuoti simbolių. Vidinis naudotojo vardas turi apribojimą, leidžiantį tik šiuos simbolius: [ a-zA-Z0-9 _. @ - ]. Kiti simboliai pakeičiami ASCII atitikmenimis arba tiesiog praleidžiami. Sutapimų konflikto atveju yra pridedamas/padidinamas skaičius. Vidinis naudotojo vardas yra naudojamas identifikuoti naudotoją viduje. Tai kartu yra numatytasis naudotojo aplanko pavadinimas. Taip pat jis yra nuotolinių URL dalimi, pavyzdžiui, visoms *DAV paslaugoms. Naudojant šį nustatymą, numatytoji elgsena gali būti nustelbta. Palikite tuščią, jei norite kad galiotų numatytoji elgsena. Pakeitimai įsigalios tik naujai priskirtiems (pridėtiems) LDAP naudotojams.", "Internal Username Attribute:" : "Vidinis naudotojo vardo atributas:", "Override UUID detection" : "Perrašyti UUID aptikimą", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." : "naudotojo vardasnaudotojo vardasPagal nutylėjimą, UUID atributas yra automatiškai aptinkamas. UUID atributas yra naudojamas identifikuoti LDAP vartotojus ir grupes. Taigi, vidinis naudotojo vardas bus sukurtas remiantis UUID, jei nenurodyta kitaip. Jūs galite pakeisti nustatymus ir perduoti pasirinktus atributus. Turite įsitikinti, kad jūsų pasirinktas atributas gali būti rastas tiek prie vartotojų, tiek prie grupių, ir yra unikalus. Jei norite, kad veiktų pagal numatytuosius parametrus, palikite tuščią. Pakeitimai turės įtakos tik naujai susietiems (pridedamiems) LDAP naudotojams ir grupėms.", @@ -174,12 +174,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Naudotojų vardai yra naudojami saugoti ir priskirti (meta) duomenis. Siekiant identifikuoti ir atpažinti naudotojus,kiekvienas LDAP naudotojas turės vidinį naudotojo vardą. Tam reikia susieti naudotojo vardą su LDAP naudotoju. Sukurtas naudotojo vardas yra susiejamas su LDAP naudotojo UUID. Papildomai DN talpinamas, kad sumažintų LDAP sąveiką, bet nenaudojamas identifikacijoje. Visur yra naudojamas vidinis naudotojo vardas. Susiejimų pašalinimas visur paliks \"pėdsaką\" ir įtakos visas LDAP konfigūracijas! Niekada susiejimų nešalinkite produkciniame serveryje.", "Clear Username-LDAP User Mapping" : "Išvalyti naudotojo vardo - LDAP naudotojo sąsają", "Clear Groupname-LDAP Group Mapping" : "Išvalyti grupės pavadinimo - LDAP naudotojo sąsają", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Trūksta \"%u\" vietaženklio. Jis bus pakeistas prisijungimo vardu, siunčiant užklausas LDAP / AD. ", - "Verify settings and count groups" : "Patikrinkite nustatymus ir suskaičiuokite grupes", - "Add a new and blank configuration" : "Pridėkite naują konfigūraciją", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Jūs galite praleisti protokolą, nebent Jums reikalingas SSL. Jei taip, pradėkite su ldaps://", + " entries available within the provided Base DN" : "pasiekiami įrašai pateiktoje DN šakoje", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Įspėjimas: Programėlės user_ldap ir user_webdavauth yra nesuderinami. Tai gali sukelti nepageidaujamą veikimą. Paprašykite, kad sistemos administratorius vieną jų išjungtų.", - "in bytes" : "baitais" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Įspėjimas: Programėlės user_ldap ir user_webdavauth yra nesuderinami. Tai gali sukelti nepageidaujamą veikimą. Paprašykite, kad sistemos administratorius vieną jų išjungtų." },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/lv.js b/apps/user_ldap/l10n/lv.js index b671b52872968..52b581feb19d0 100644 --- a/apps/user_ldap/l10n/lv.js +++ b/apps/user_ldap/l10n/lv.js @@ -1,25 +1,74 @@ OC.L10N.register( "user_ldap", { + "Failed to clear the mappings." : "Neizdevās nodzēstu samērošanu.", "Failed to delete the server configuration" : "Neizdevās izdzēst servera konfigurāciju", - "The configuration is valid and the connection could be established!" : "Konfigurācija ir derīga un varēja izveidot savienojumu!", - "The configuration is valid, but the Bind failed. Please check the server settings and credentials." : "Konfigurācija ir derīga, bet sasaiste neizdevās. Lūdzu, pārbaudiet servera iestatījumus un akreditācijas datus.", + "No action specified" : "Nav norādīta darbība", + "No configuration specified" : "Nav norādīta konfigurācija", + "No data specified" : "Nav norādīti dati", + " Could not set configuration %s" : "Nevarēja iestatīt konfigurāciju %s", + "Action does not exist" : "Darbība neeksistē", + "The Base DN appears to be wrong" : "DN bāze šķiet nepareiza", + "Testing configuration…" : "Konfigurācijas pārbaude...", + "Configuration incorrect" : "Nepareiza konfigurācija", + "Configuration incomplete" : "Nepilnīga konfigurācija", + "Configuration OK" : "Konfigurācija OK", "Select groups" : "Izvēlieties grupas", + "Select object classes" : "Atlasiet objektu klases", + "Please check the credentials, they seem to be wrong." : "Lūdzu, pārbaudiet akreditācijas datus, tie šķiet nepareizi.", + "Please specify the port, it could not be auto-detected." : "Lūdzu, norādiet portu, tas nevarēja būt noteikts automātiski.", + "Base DN could not be auto-detected, please revise credentials, host and port." : "DN bāzi nevarēja noteikt, lūdzu, pārskatiet datus, resursdatoru un portu.", + "Could not detect Base DN, please enter it manually." : "Nevarēja noteikt DN bāzi, lūdzu, ievadiet to manuāli.", + "{nthServer}. Server" : "{nthServer}. Serveris", + "No object found in the given Base DN. Please revise." : "Neviens objekts nav atrasts konkrētā DN bāzē. Lūdzu pārskatīt.", + "More than 1,000 directory entries available." : "Vairāk nekā 1,000 kataloga ieraksti ir pieejami.", + "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Radās kļūda. Lūdzu, pārbaudiet bāzes DN, kā arī savienojuma iestatījumus vai akreditācijas datus.", "Do you really want to delete the current Server Configuration?" : "Vai tiešām vēlaties dzēst pašreizējo servera konfigurāciju?", "Confirm Deletion" : "Apstiprināt dzēšanu", - "Users" : "Lietotāji", - "Groups" : "Grupas", + "Mappings cleared successfully!" : "Kartējumi notīrīta veiksmīgi!", + "Error while clearing the mappings." : "Kļūda, dzēšot kartējumus.", + "LDAP Operations error. Anonymous bind might not be allowed." : "LDAP operācijas kļūda. Anonīma sasaiste, iespējams, nav atļauta.", + "Select attributes" : "Atlasīt atribūtus", + "Password change rejected. Hint: " : "Paroles maiņas noraidīja. Padoms:", + "LDAP / AD integration" : "LDAP / AD integrācija", + "_%s group found_::_%s groups found_" : ["%s grupas atrastas","%s grupas atrastas","%s grupas atrastas"], + "_%s user found_::_%s users found_" : ["%s lietotāji atrasti","%s lietotāji atrasti","%s lietotāji atrasti"], + "Invalid Host" : "Nederīgs resursdators", "Test Configuration" : "Testa konfigurācija", "Help" : "Palīdzība", + "Only these object classes:" : "Tikai šo objektu kategorijas:", + "Only from these groups:" : "Tikai no šīm grupām:", + "Search groups" : "Meklēt grupas", + "Available groups" : "Pieejamās grupas", + "Selected groups" : "Izvēlētās grupas", + "Edit LDAP Query" : "Labot LDAP vaicājumu", + "LDAP Filter:" : "LDAP filtrs:", + "LDAP / AD Username:" : "LDAP / AD lietotājvārds:", + "LDAP / AD Email Address:" : "LDAP / AD e-pasta adrese:", + "Other Attributes:" : "Citi atribūti:", + "Test Loginname" : "Pārbaudiet lietotājvārdu", + "Verify settings" : "Pārbaudīt iestatījumus", + "1. Server" : "1. Serveris", + "%s. Server:" : "%s. Serveris:", "Host" : "Resursdators", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Var neiekļaut protokolu, izņemot, ja vajag SSL. Tad sākums ir ldaps://", "Port" : "Ports", + "Detect Port" : "Noteikt portu", "User DN" : "Lietotāja DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "Klienta lietotāja DN, ar ko veiks sasaisti, piemēram, uid=agent,dc=example,dc=com. Lai piekļūtu anonīmi, atstājiet DN un paroli tukšu.", "Password" : "Parole", "For anonymous access, leave DN and Password empty." : "Lai piekļūtu anonīmi, atstājiet DN un paroli tukšu.", "One Base DN per line" : "Viena bāzes DN rindā", - "You can specify Base DN for users and groups in the Advanced tab" : "Lietotājiem un grupām bāzes DN var norādīt cilnē “Paplašināti”", + "You can specify Base DN for users and groups in the Advanced tab" : "Lietotājiem un grupām var norādīt bāzes DN cilnē “Paplašināti”", + "Detect Base DN" : "Noteikt bāzes DN", + "Test Base DN" : "Testēt bāzes DN", + "Saving" : "Saglabā", + "Back" : "Atpakaļ", + "Continue" : "Turpināt", + "Server" : "Serveris", + "Users" : "Lietotāji", + "Login Attributes" : "Pieteikšanās atribūti", + "Groups" : "Grupas", + "Expert" : "Eksperts", "Advanced" : "Paplašināti", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "Brīdinājums: PHP LDAP modulis nav uzinstalēts, aizmugure nedarbosies. Lūdzu, prasiet savam sistēmas administratoram kādu no tām deaktivēt.", "Connection Settings" : "Savienojuma iestatījumi", @@ -35,7 +84,7 @@ OC.L10N.register( "Directory Settings" : "Direktorijas iestatījumi", "User Display Name Field" : "Lietotāja redzamā vārda lauks", "Base User Tree" : "Bāzes lietotāju koks", - "One User Base DN per line" : "Viena lietotāju bāzes DN rindā", + "One User Base DN per line" : "Viens lietotājs bāzes DN rindā", "User Search Attributes" : "Lietotāju meklēšanas atribūts", "Optional; one attribute per line" : "Neobligāti; viens atribūts rindā", "Group Display Name Field" : "Grupas redzamā nosaukuma lauks", @@ -43,12 +92,19 @@ OC.L10N.register( "One Group Base DN per line" : "Viena grupu bāzes DN rindā", "Group Search Attributes" : "Grupu meklēšanas atribūts", "Group-Member association" : "Grupu piederības asociācija", + "Enable LDAP password changes per user" : "Iespējot LDAP paroles maiņu katram lietotājam", + "(New password is sent as plain text to LDAP)" : "(Jaunā parole tiek nosūtīta kā vienkāršs teksts ar LDAP)", "Special Attributes" : "Īpašie atribūti", "Quota Field" : "Kvotu lauks", "Quota Default" : "Kvotas noklusējums", - "in bytes" : "baitos", "Email Field" : "E-pasta lauks", "User Home Folder Naming Rule" : "Lietotāja mājas mapes nosaukšanas kārtula", - "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." : "Atstāt tukšu lietotāja vārdam (noklusējuma). Citādi, norādi LDAP/AD atribūtu." + "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." : "Atstāt tukšu lietotāja vārdam (noklusējuma). Citādi, norādi LDAP/AD atribūtu.", + "Internal Username" : "Iekšējais lietotājvārds", + "Override UUID detection" : "Ignorēt UUID noteikšanu", + "UUID Attribute for Users:" : "UUID atribūti lietotājiem:", + "UUID Attribute for Groups:" : "UUID atribūti grupām:", + " entries available within the provided Base DN" : "ieraksti pieejami ar nosacījumu DN bāzē", + "LDAP" : "LDAP" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/apps/user_ldap/l10n/lv.json b/apps/user_ldap/l10n/lv.json index 44f2b7c048d5a..1d62f3c6a6757 100644 --- a/apps/user_ldap/l10n/lv.json +++ b/apps/user_ldap/l10n/lv.json @@ -1,23 +1,72 @@ { "translations": { + "Failed to clear the mappings." : "Neizdevās nodzēstu samērošanu.", "Failed to delete the server configuration" : "Neizdevās izdzēst servera konfigurāciju", - "The configuration is valid and the connection could be established!" : "Konfigurācija ir derīga un varēja izveidot savienojumu!", - "The configuration is valid, but the Bind failed. Please check the server settings and credentials." : "Konfigurācija ir derīga, bet sasaiste neizdevās. Lūdzu, pārbaudiet servera iestatījumus un akreditācijas datus.", + "No action specified" : "Nav norādīta darbība", + "No configuration specified" : "Nav norādīta konfigurācija", + "No data specified" : "Nav norādīti dati", + " Could not set configuration %s" : "Nevarēja iestatīt konfigurāciju %s", + "Action does not exist" : "Darbība neeksistē", + "The Base DN appears to be wrong" : "DN bāze šķiet nepareiza", + "Testing configuration…" : "Konfigurācijas pārbaude...", + "Configuration incorrect" : "Nepareiza konfigurācija", + "Configuration incomplete" : "Nepilnīga konfigurācija", + "Configuration OK" : "Konfigurācija OK", "Select groups" : "Izvēlieties grupas", + "Select object classes" : "Atlasiet objektu klases", + "Please check the credentials, they seem to be wrong." : "Lūdzu, pārbaudiet akreditācijas datus, tie šķiet nepareizi.", + "Please specify the port, it could not be auto-detected." : "Lūdzu, norādiet portu, tas nevarēja būt noteikts automātiski.", + "Base DN could not be auto-detected, please revise credentials, host and port." : "DN bāzi nevarēja noteikt, lūdzu, pārskatiet datus, resursdatoru un portu.", + "Could not detect Base DN, please enter it manually." : "Nevarēja noteikt DN bāzi, lūdzu, ievadiet to manuāli.", + "{nthServer}. Server" : "{nthServer}. Serveris", + "No object found in the given Base DN. Please revise." : "Neviens objekts nav atrasts konkrētā DN bāzē. Lūdzu pārskatīt.", + "More than 1,000 directory entries available." : "Vairāk nekā 1,000 kataloga ieraksti ir pieejami.", + "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Radās kļūda. Lūdzu, pārbaudiet bāzes DN, kā arī savienojuma iestatījumus vai akreditācijas datus.", "Do you really want to delete the current Server Configuration?" : "Vai tiešām vēlaties dzēst pašreizējo servera konfigurāciju?", "Confirm Deletion" : "Apstiprināt dzēšanu", - "Users" : "Lietotāji", - "Groups" : "Grupas", + "Mappings cleared successfully!" : "Kartējumi notīrīta veiksmīgi!", + "Error while clearing the mappings." : "Kļūda, dzēšot kartējumus.", + "LDAP Operations error. Anonymous bind might not be allowed." : "LDAP operācijas kļūda. Anonīma sasaiste, iespējams, nav atļauta.", + "Select attributes" : "Atlasīt atribūtus", + "Password change rejected. Hint: " : "Paroles maiņas noraidīja. Padoms:", + "LDAP / AD integration" : "LDAP / AD integrācija", + "_%s group found_::_%s groups found_" : ["%s grupas atrastas","%s grupas atrastas","%s grupas atrastas"], + "_%s user found_::_%s users found_" : ["%s lietotāji atrasti","%s lietotāji atrasti","%s lietotāji atrasti"], + "Invalid Host" : "Nederīgs resursdators", "Test Configuration" : "Testa konfigurācija", "Help" : "Palīdzība", + "Only these object classes:" : "Tikai šo objektu kategorijas:", + "Only from these groups:" : "Tikai no šīm grupām:", + "Search groups" : "Meklēt grupas", + "Available groups" : "Pieejamās grupas", + "Selected groups" : "Izvēlētās grupas", + "Edit LDAP Query" : "Labot LDAP vaicājumu", + "LDAP Filter:" : "LDAP filtrs:", + "LDAP / AD Username:" : "LDAP / AD lietotājvārds:", + "LDAP / AD Email Address:" : "LDAP / AD e-pasta adrese:", + "Other Attributes:" : "Citi atribūti:", + "Test Loginname" : "Pārbaudiet lietotājvārdu", + "Verify settings" : "Pārbaudīt iestatījumus", + "1. Server" : "1. Serveris", + "%s. Server:" : "%s. Serveris:", "Host" : "Resursdators", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Var neiekļaut protokolu, izņemot, ja vajag SSL. Tad sākums ir ldaps://", "Port" : "Ports", + "Detect Port" : "Noteikt portu", "User DN" : "Lietotāja DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." : "Klienta lietotāja DN, ar ko veiks sasaisti, piemēram, uid=agent,dc=example,dc=com. Lai piekļūtu anonīmi, atstājiet DN un paroli tukšu.", "Password" : "Parole", "For anonymous access, leave DN and Password empty." : "Lai piekļūtu anonīmi, atstājiet DN un paroli tukšu.", "One Base DN per line" : "Viena bāzes DN rindā", - "You can specify Base DN for users and groups in the Advanced tab" : "Lietotājiem un grupām bāzes DN var norādīt cilnē “Paplašināti”", + "You can specify Base DN for users and groups in the Advanced tab" : "Lietotājiem un grupām var norādīt bāzes DN cilnē “Paplašināti”", + "Detect Base DN" : "Noteikt bāzes DN", + "Test Base DN" : "Testēt bāzes DN", + "Saving" : "Saglabā", + "Back" : "Atpakaļ", + "Continue" : "Turpināt", + "Server" : "Serveris", + "Users" : "Lietotāji", + "Login Attributes" : "Pieteikšanās atribūti", + "Groups" : "Grupas", + "Expert" : "Eksperts", "Advanced" : "Paplašināti", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "Brīdinājums: PHP LDAP modulis nav uzinstalēts, aizmugure nedarbosies. Lūdzu, prasiet savam sistēmas administratoram kādu no tām deaktivēt.", "Connection Settings" : "Savienojuma iestatījumi", @@ -33,7 +82,7 @@ "Directory Settings" : "Direktorijas iestatījumi", "User Display Name Field" : "Lietotāja redzamā vārda lauks", "Base User Tree" : "Bāzes lietotāju koks", - "One User Base DN per line" : "Viena lietotāju bāzes DN rindā", + "One User Base DN per line" : "Viens lietotājs bāzes DN rindā", "User Search Attributes" : "Lietotāju meklēšanas atribūts", "Optional; one attribute per line" : "Neobligāti; viens atribūts rindā", "Group Display Name Field" : "Grupas redzamā nosaukuma lauks", @@ -41,12 +90,19 @@ "One Group Base DN per line" : "Viena grupu bāzes DN rindā", "Group Search Attributes" : "Grupu meklēšanas atribūts", "Group-Member association" : "Grupu piederības asociācija", + "Enable LDAP password changes per user" : "Iespējot LDAP paroles maiņu katram lietotājam", + "(New password is sent as plain text to LDAP)" : "(Jaunā parole tiek nosūtīta kā vienkāršs teksts ar LDAP)", "Special Attributes" : "Īpašie atribūti", "Quota Field" : "Kvotu lauks", "Quota Default" : "Kvotas noklusējums", - "in bytes" : "baitos", "Email Field" : "E-pasta lauks", "User Home Folder Naming Rule" : "Lietotāja mājas mapes nosaukšanas kārtula", - "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." : "Atstāt tukšu lietotāja vārdam (noklusējuma). Citādi, norādi LDAP/AD atribūtu." + "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." : "Atstāt tukšu lietotāja vārdam (noklusējuma). Citādi, norādi LDAP/AD atribūtu.", + "Internal Username" : "Iekšējais lietotājvārds", + "Override UUID detection" : "Ignorēt UUID noteikšanu", + "UUID Attribute for Users:" : "UUID atribūti lietotājiem:", + "UUID Attribute for Groups:" : "UUID atribūti grupām:", + " entries available within the provided Base DN" : "ieraksti pieejami ar nosacījumu DN bāzē", + "LDAP" : "LDAP" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/nb.js b/apps/user_ldap/l10n/nb.js index 4094c18f6d7bd..8b4b1c48e9adf 100644 --- a/apps/user_ldap/l10n/nb.js +++ b/apps/user_ldap/l10n/nb.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Tjener", "No object found in the given Base DN. Please revise." : "Intet objekt funnet i angitt base-DN. Revider oppsettet.", "More than 1,000 directory entries available." : "Mer enn 1.000 katalogoppføringer tilgjengelig.", - " entries available within the provided Base DN" : "oppføringer tilgjengelig innenfor angitt base-DN", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Det oppstod en feil. Sjekk base-DN, tilkoblingsoppsett og påloggingsdetaljer.", "Do you really want to delete the current Server Configuration?" : "Er du sikker på at du vil slette den aktiver tjenerkonfigurasjon?", "Confirm Deletion" : "Bekreft sletting", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Brukernavn brukes til å lagre og tilordne (meta)data. For at brukere skal identifiseres og gjenkjennes presist, vil hver LDAP-bruker ha et internt brukernavn. Dette krever en tilknytning fra brukernavn til LDAP-bruker. Brukernavn som opprettes blir knyttet til LDAP-brukerens UUID. I tillegg hurtiglagres DN for å redusere LDAP-kommunikasjon, men det brukes ikke til identifisering. Hvis DN endres vil endringene bli oppdaget. Det interne brukernavnet brukes alle steder. Nullstilling av tilknytningene vil etterlate seg rester overalt. Nullstilling av tilknytningene skjer ikke pr. oppsett, det påvirker alle LDAP-oppsett! Nullstill aldri tilknytningene i et produksjonsmiljø, kun ved testing eller eksperimentering.", "Clear Username-LDAP User Mapping" : "Nullstill tilknytning av brukernavn til LDAP-bruker", "Clear Groupname-LDAP Group Mapping" : "Nullstill tilknytning av gruppenavn til LDAP-gruppe", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Plassholder %uid mangler. Den erstattes av påloggingsnavnet ved spørring mot LDAP / AD.", - "Verify settings and count groups" : "Sjekk innstillinger og tell gruppene", - "Add a new and blank configuration" : "Legg til et nytt tomt oppsett", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Du kan utelate protokollen, men du krever bruk av SSL. Deretter start med ldaps://", + " entries available within the provided Base DN" : "oppføringer tilgjengelig innenfor angitt base-DN", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advarsel: Programmene user_ldap og user_webdavauth er ikke kompatible med hverandre. Uventet oppførsel kan forekomme. Be systemadministratoren om å deaktivere én av dem.", - "in bytes" : "i Byte" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advarsel: Programmene user_ldap og user_webdavauth er ikke kompatible med hverandre. Uventet oppførsel kan forekomme. Be systemadministratoren om å deaktivere én av dem." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/nb.json b/apps/user_ldap/l10n/nb.json index 3596b16b8400d..904a0e76723bb 100644 --- a/apps/user_ldap/l10n/nb.json +++ b/apps/user_ldap/l10n/nb.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Tjener", "No object found in the given Base DN. Please revise." : "Intet objekt funnet i angitt base-DN. Revider oppsettet.", "More than 1,000 directory entries available." : "Mer enn 1.000 katalogoppføringer tilgjengelig.", - " entries available within the provided Base DN" : "oppføringer tilgjengelig innenfor angitt base-DN", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Det oppstod en feil. Sjekk base-DN, tilkoblingsoppsett og påloggingsdetaljer.", "Do you really want to delete the current Server Configuration?" : "Er du sikker på at du vil slette den aktiver tjenerkonfigurasjon?", "Confirm Deletion" : "Bekreft sletting", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Brukernavn brukes til å lagre og tilordne (meta)data. For at brukere skal identifiseres og gjenkjennes presist, vil hver LDAP-bruker ha et internt brukernavn. Dette krever en tilknytning fra brukernavn til LDAP-bruker. Brukernavn som opprettes blir knyttet til LDAP-brukerens UUID. I tillegg hurtiglagres DN for å redusere LDAP-kommunikasjon, men det brukes ikke til identifisering. Hvis DN endres vil endringene bli oppdaget. Det interne brukernavnet brukes alle steder. Nullstilling av tilknytningene vil etterlate seg rester overalt. Nullstilling av tilknytningene skjer ikke pr. oppsett, det påvirker alle LDAP-oppsett! Nullstill aldri tilknytningene i et produksjonsmiljø, kun ved testing eller eksperimentering.", "Clear Username-LDAP User Mapping" : "Nullstill tilknytning av brukernavn til LDAP-bruker", "Clear Groupname-LDAP Group Mapping" : "Nullstill tilknytning av gruppenavn til LDAP-gruppe", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Plassholder %uid mangler. Den erstattes av påloggingsnavnet ved spørring mot LDAP / AD.", - "Verify settings and count groups" : "Sjekk innstillinger og tell gruppene", - "Add a new and blank configuration" : "Legg til et nytt tomt oppsett", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Du kan utelate protokollen, men du krever bruk av SSL. Deretter start med ldaps://", + " entries available within the provided Base DN" : "oppføringer tilgjengelig innenfor angitt base-DN", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advarsel: Programmene user_ldap og user_webdavauth er ikke kompatible med hverandre. Uventet oppførsel kan forekomme. Be systemadministratoren om å deaktivere én av dem.", - "in bytes" : "i Byte" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Advarsel: Programmene user_ldap og user_webdavauth er ikke kompatible med hverandre. Uventet oppførsel kan forekomme. Be systemadministratoren om å deaktivere én av dem." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/nl.js b/apps/user_ldap/l10n/nl.js index 6811b36a75fe5..9737d3487e619 100644 --- a/apps/user_ldap/l10n/nl.js +++ b/apps/user_ldap/l10n/nl.js @@ -33,7 +33,7 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Server", "No object found in the given Base DN. Please revise." : "Geen object gevonden in de basis DN. Review instellingen.", "More than 1,000 directory entries available." : "Meer dan 1000 directorynamen beschikbaar.", - " entries available within the provided Base DN" : "accounts beschikbaar binnen de provider Basis DN", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} account beschikbaar binnen de provider Basis DN","{objectsFound} accounts beschikbaar binnen de provider Basis DN"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Er trad een fout op. Controleer de Basis DN en de verbindingsinstellingen en inloggegevens.", "Do you really want to delete the current Server Configuration?" : "Wilt je werkelijk de huidige Serverconfiguratie verwijderen?", "Confirm Deletion" : "Bevestig verwijderen", @@ -187,12 +187,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Gebruikersnamen worden gebruikt om (meta) data op te slaan en toe te wijzen. Om gebruikers uniek te identificeren, krijgt elke LDAP-gebruiker ook een interne gebruikersnaam. Dit vereist een koppeling van de gebruikersnaam naar een ​​LDAP-gebruiker. De gecreëerde gebruikersnaam is gekoppeld aan de UUID van de LDAP-gebruiker. Aanvullend wordt ook de 'DN' gecached om het aantal LDAP-interacties te verminderen, maar dit wordt niet gebruikt voor identificatie. Als de DN verandert, zullen de veranderingen worden gevonden. De interne gebruikersnaam wordt overal gebruikt. Het wissen van de koppeling zal overal resten achterlaten. Het wissen van koppelingen is niet configuratiegevoelig, maar het raakt wel alle LDAP instellingen! Zorg ervoor dat deze koppelingen nooit in een productieomgeving gewist worden. Maak ze alleen leeg in een test- of ontwikkelomgeving.", "Clear Username-LDAP User Mapping" : "Leegmaken Gebruikersnaam-LDAP gebruikers vertaling", "Clear Groupname-LDAP Group Mapping" : "Leegmaken Groepsnaam-LDAP groep vertaling", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "De %uid opvultekst ontbreekt. Die wordt vervangen door de inlognaam bij het bevragen van LDAP / AD.", - "Verify settings and count groups" : "Verifiëren instellingen en tel groepen", - "Add a new and blank configuration" : "Toevoegen nieuwe, blanco configuratie", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Je kunt het protocol weglaten, tenzij je SSL vereist. Start in dat geval met ldaps://", + " entries available within the provided Base DN" : "accounts beschikbaar binnen de provider Basis DN", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Waarschuwing: De Apps user_ldap en user_webdavauth zijn incompatibel. Je kunt onverwacht gedrag ervaren. Vraag je beheerder om een van beide apps de deactiveren.", - "in bytes" : "in bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Waarschuwing: De Apps user_ldap en user_webdavauth zijn incompatibel. Je kunt onverwacht gedrag ervaren. Vraag je beheerder om een van beide apps de deactiveren." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/nl.json b/apps/user_ldap/l10n/nl.json index 79560541a7501..b333d97d32469 100644 --- a/apps/user_ldap/l10n/nl.json +++ b/apps/user_ldap/l10n/nl.json @@ -31,7 +31,7 @@ "{nthServer}. Server" : "{nthServer}. Server", "No object found in the given Base DN. Please revise." : "Geen object gevonden in de basis DN. Review instellingen.", "More than 1,000 directory entries available." : "Meer dan 1000 directorynamen beschikbaar.", - " entries available within the provided Base DN" : "accounts beschikbaar binnen de provider Basis DN", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} account beschikbaar binnen de provider Basis DN","{objectsFound} accounts beschikbaar binnen de provider Basis DN"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Er trad een fout op. Controleer de Basis DN en de verbindingsinstellingen en inloggegevens.", "Do you really want to delete the current Server Configuration?" : "Wilt je werkelijk de huidige Serverconfiguratie verwijderen?", "Confirm Deletion" : "Bevestig verwijderen", @@ -185,12 +185,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Gebruikersnamen worden gebruikt om (meta) data op te slaan en toe te wijzen. Om gebruikers uniek te identificeren, krijgt elke LDAP-gebruiker ook een interne gebruikersnaam. Dit vereist een koppeling van de gebruikersnaam naar een ​​LDAP-gebruiker. De gecreëerde gebruikersnaam is gekoppeld aan de UUID van de LDAP-gebruiker. Aanvullend wordt ook de 'DN' gecached om het aantal LDAP-interacties te verminderen, maar dit wordt niet gebruikt voor identificatie. Als de DN verandert, zullen de veranderingen worden gevonden. De interne gebruikersnaam wordt overal gebruikt. Het wissen van de koppeling zal overal resten achterlaten. Het wissen van koppelingen is niet configuratiegevoelig, maar het raakt wel alle LDAP instellingen! Zorg ervoor dat deze koppelingen nooit in een productieomgeving gewist worden. Maak ze alleen leeg in een test- of ontwikkelomgeving.", "Clear Username-LDAP User Mapping" : "Leegmaken Gebruikersnaam-LDAP gebruikers vertaling", "Clear Groupname-LDAP Group Mapping" : "Leegmaken Groepsnaam-LDAP groep vertaling", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "De %uid opvultekst ontbreekt. Die wordt vervangen door de inlognaam bij het bevragen van LDAP / AD.", - "Verify settings and count groups" : "Verifiëren instellingen en tel groepen", - "Add a new and blank configuration" : "Toevoegen nieuwe, blanco configuratie", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Je kunt het protocol weglaten, tenzij je SSL vereist. Start in dat geval met ldaps://", + " entries available within the provided Base DN" : "accounts beschikbaar binnen de provider Basis DN", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Waarschuwing: De Apps user_ldap en user_webdavauth zijn incompatibel. Je kunt onverwacht gedrag ervaren. Vraag je beheerder om een van beide apps de deactiveren.", - "in bytes" : "in bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Waarschuwing: De Apps user_ldap en user_webdavauth zijn incompatibel. Je kunt onverwacht gedrag ervaren. Vraag je beheerder om een van beide apps de deactiveren." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/pl.js b/apps/user_ldap/l10n/pl.js index fcdd0986dcfd5..4627042cf7fdc 100644 --- a/apps/user_ldap/l10n/pl.js +++ b/apps/user_ldap/l10n/pl.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Serwer", "No object found in the given Base DN. Please revise." : "Brak obiektów w podanym Base DN. Proszę sprawdzić.", "More than 1,000 directory entries available." : "Ponad 1,000 wpisów katalogowych dostępne.", - " entries available within the provided Base DN" : "wpisów dostępnych w podanym Base DN ", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Wystąpił błąd. Proszę sprawdzić Base DN oraz ustawienia połączenia i dane dostępowe.", "Do you really want to delete the current Server Configuration?" : "Czy chcesz usunąć bieżącą konfigurację serwera?", "Confirm Deletion" : "Potwierdź usunięcie", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Nazwy użytkowników służą do przechowywania i przypisywania (meta) danych. W celu dokładnego określenia i rozpoznawania użytkowników, każdy użytkownik LDAP ma przypisaną wewnętrzną nazwę użytkownika. Wymaga to mapowania nazwy użytkownika do użytkownika LDAP. Utworzona nazwa użytkownika jest odwzorowywana na UUID użytkownika LDAP. Dodatkowo DN są buforowane, także w celu zmniejszenia oddziaływania LDAP, ale nie są stosowane do identyfikacji. Po zmianie DN, będzie można znaleźć zmiany. Wewnętrzna nazwa jest używana wszędzie. Usuwanie mapowania będzie miało wpływ wszędzie. Usuwanie mapowania nie jest wrażliwe na konfiguracje, dotyczy to wszystkich konfiguracji LDAP! Nigdy nie usuwaj mapowania w środowisku produkcyjnym, jest to dopuszczalne tylko w fazie eksperymentalnej, testowej.", "Clear Username-LDAP User Mapping" : "Czyść Mapowanie użytkownika LDAP", "Clear Groupname-LDAP Group Mapping" : "Czyść Mapowanie nazwy grupy LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Nie znaleziono zamiennika dla %uid. Podczas odpytywania LDAP-a / AD będzie zastąpiony nazwą użytkownika.", - "Verify settings and count groups" : "Zweryfikuj ustawienia i policz grupy", - "Add a new and blank configuration" : "Dodaj nową pustą konfigurację", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Można pominąć protokół, z wyjątkiem wymaganego protokołu SSL. Następnie uruchom z ldaps://", + " entries available within the provided Base DN" : "wpisów dostępnych w podanym Base DN ", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Ostrzeżenie: Aplikacje user_ldap i user_webdavauth nie są kompatybilne. Mogą powodować nieoczekiwane zachowanie. Poproś administratora o wyłączenie jednej z nich.", - "in bytes" : "w bajtach" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Ostrzeżenie: Aplikacje user_ldap i user_webdavauth nie są kompatybilne. Mogą powodować nieoczekiwane zachowanie. Poproś administratora o wyłączenie jednej z nich." }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/user_ldap/l10n/pl.json b/apps/user_ldap/l10n/pl.json index 9a1f1b1d79ddf..bd0a89c8d2dab 100644 --- a/apps/user_ldap/l10n/pl.json +++ b/apps/user_ldap/l10n/pl.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Serwer", "No object found in the given Base DN. Please revise." : "Brak obiektów w podanym Base DN. Proszę sprawdzić.", "More than 1,000 directory entries available." : "Ponad 1,000 wpisów katalogowych dostępne.", - " entries available within the provided Base DN" : "wpisów dostępnych w podanym Base DN ", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Wystąpił błąd. Proszę sprawdzić Base DN oraz ustawienia połączenia i dane dostępowe.", "Do you really want to delete the current Server Configuration?" : "Czy chcesz usunąć bieżącą konfigurację serwera?", "Confirm Deletion" : "Potwierdź usunięcie", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Nazwy użytkowników służą do przechowywania i przypisywania (meta) danych. W celu dokładnego określenia i rozpoznawania użytkowników, każdy użytkownik LDAP ma przypisaną wewnętrzną nazwę użytkownika. Wymaga to mapowania nazwy użytkownika do użytkownika LDAP. Utworzona nazwa użytkownika jest odwzorowywana na UUID użytkownika LDAP. Dodatkowo DN są buforowane, także w celu zmniejszenia oddziaływania LDAP, ale nie są stosowane do identyfikacji. Po zmianie DN, będzie można znaleźć zmiany. Wewnętrzna nazwa jest używana wszędzie. Usuwanie mapowania będzie miało wpływ wszędzie. Usuwanie mapowania nie jest wrażliwe na konfiguracje, dotyczy to wszystkich konfiguracji LDAP! Nigdy nie usuwaj mapowania w środowisku produkcyjnym, jest to dopuszczalne tylko w fazie eksperymentalnej, testowej.", "Clear Username-LDAP User Mapping" : "Czyść Mapowanie użytkownika LDAP", "Clear Groupname-LDAP Group Mapping" : "Czyść Mapowanie nazwy grupy LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Nie znaleziono zamiennika dla %uid. Podczas odpytywania LDAP-a / AD będzie zastąpiony nazwą użytkownika.", - "Verify settings and count groups" : "Zweryfikuj ustawienia i policz grupy", - "Add a new and blank configuration" : "Dodaj nową pustą konfigurację", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Można pominąć protokół, z wyjątkiem wymaganego protokołu SSL. Następnie uruchom z ldaps://", + " entries available within the provided Base DN" : "wpisów dostępnych w podanym Base DN ", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Ostrzeżenie: Aplikacje user_ldap i user_webdavauth nie są kompatybilne. Mogą powodować nieoczekiwane zachowanie. Poproś administratora o wyłączenie jednej z nich.", - "in bytes" : "w bajtach" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Ostrzeżenie: Aplikacje user_ldap i user_webdavauth nie są kompatybilne. Mogą powodować nieoczekiwane zachowanie. Poproś administratora o wyłączenie jednej z nich." },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/pt_BR.js b/apps/user_ldap/l10n/pt_BR.js index 0f2980f20f096..e09d211a0667f 100644 --- a/apps/user_ldap/l10n/pt_BR.js +++ b/apps/user_ldap/l10n/pt_BR.js @@ -33,7 +33,7 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "Nenhum objeto encontrado na Base DN informada. Por favor revise.", "More than 1,000 directory entries available." : "Mais de 1.000 entradas de diretório disponíveis.", - " entries available within the provided Base DN" : "entradas disponíveis na Base DN fornecida", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} entrada disponível na Base DN fornecida","{objectsFound} entradas disponíveis na Base DN fornecida"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Um erro ocorreu. Por favor verifique a Base DN e também as configurações de conexão e credenciais.", "Do you really want to delete the current Server Configuration?" : "Você realmente quer excluir as configurações atuais do servidor?", "Confirm Deletion" : "Confirmar Exclusão", @@ -187,12 +187,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Nomes de usuários são usados para armazenar e atribuir dados (meta). A fim de identificar e reconhecer precisamente os usuários, cada usuário LDAP terá um nome de usuário interno. Isso requer um mapeamento do nome de usuário para o usuário LDAP. O nome de usuário criado é mapeado para o UUID do usuário LDAP. Além disso, o DN é armazenado em cache para reduzir a interação LDAP mas não é usado para identificação. Se o DN mudar, as mudanças serão encontradas. O nome de usuário interno é usado por toda parte. Limpando os mapeamentos terá sobras em todos os lugares. A limpeza dos mapeamentos não é case sensitive e afeta todas as configurações LDAP! Nunca limpe os mapeamentos em um ambiente de produção, somente em um teste ou estágio experimental.", "Clear Username-LDAP User Mapping" : "Limpar Mapeamento de Usuário username-LDAP", "Clear Groupname-LDAP Group Mapping" : "Limpar Mapeamento do Grupo groupname-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "O espaço reservado ID %u está faltando. Ele será substituído pelo nome de login ao consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar as configurações e grupos de conta", - "Add a new and blank configuration" : "Adiciona uma configuração nova em branco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Você pode omitir o protocolo, exceto quando o SSL é requerido. Então inicie com ldaps://", + " entries available within the provided Base DN" : "entradas disponíveis na Base DN fornecida", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Aviso: Os aplicativos user_ldap e user_webdavauth são incompatíveis e pode haver um comportamento inesperado. Por favor, peça ao administrador do sistema para desabilitar um deles.", - "in bytes" : "em bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Aviso: Os aplicativos user_ldap e user_webdavauth são incompatíveis e pode haver um comportamento inesperado. Por favor, peça ao administrador do sistema para desabilitar um deles." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/user_ldap/l10n/pt_BR.json b/apps/user_ldap/l10n/pt_BR.json index 4e0f908c747f9..6e1444017bbc7 100644 --- a/apps/user_ldap/l10n/pt_BR.json +++ b/apps/user_ldap/l10n/pt_BR.json @@ -31,7 +31,7 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "Nenhum objeto encontrado na Base DN informada. Por favor revise.", "More than 1,000 directory entries available." : "Mais de 1.000 entradas de diretório disponíveis.", - " entries available within the provided Base DN" : "entradas disponíveis na Base DN fornecida", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} entrada disponível na Base DN fornecida","{objectsFound} entradas disponíveis na Base DN fornecida"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Um erro ocorreu. Por favor verifique a Base DN e também as configurações de conexão e credenciais.", "Do you really want to delete the current Server Configuration?" : "Você realmente quer excluir as configurações atuais do servidor?", "Confirm Deletion" : "Confirmar Exclusão", @@ -185,12 +185,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Nomes de usuários são usados para armazenar e atribuir dados (meta). A fim de identificar e reconhecer precisamente os usuários, cada usuário LDAP terá um nome de usuário interno. Isso requer um mapeamento do nome de usuário para o usuário LDAP. O nome de usuário criado é mapeado para o UUID do usuário LDAP. Além disso, o DN é armazenado em cache para reduzir a interação LDAP mas não é usado para identificação. Se o DN mudar, as mudanças serão encontradas. O nome de usuário interno é usado por toda parte. Limpando os mapeamentos terá sobras em todos os lugares. A limpeza dos mapeamentos não é case sensitive e afeta todas as configurações LDAP! Nunca limpe os mapeamentos em um ambiente de produção, somente em um teste ou estágio experimental.", "Clear Username-LDAP User Mapping" : "Limpar Mapeamento de Usuário username-LDAP", "Clear Groupname-LDAP Group Mapping" : "Limpar Mapeamento do Grupo groupname-LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "O espaço reservado ID %u está faltando. Ele será substituído pelo nome de login ao consultar LDAP / AD.", - "Verify settings and count groups" : "Verificar as configurações e grupos de conta", - "Add a new and blank configuration" : "Adiciona uma configuração nova em branco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Você pode omitir o protocolo, exceto quando o SSL é requerido. Então inicie com ldaps://", + " entries available within the provided Base DN" : "entradas disponíveis na Base DN fornecida", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Aviso: Os aplicativos user_ldap e user_webdavauth são incompatíveis e pode haver um comportamento inesperado. Por favor, peça ao administrador do sistema para desabilitar um deles.", - "in bytes" : "em bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Aviso: Os aplicativos user_ldap e user_webdavauth são incompatíveis e pode haver um comportamento inesperado. Por favor, peça ao administrador do sistema para desabilitar um deles." },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/pt_PT.js b/apps/user_ldap/l10n/pt_PT.js index 1d0b4481d95e2..584263865fe69 100644 --- a/apps/user_ldap/l10n/pt_PT.js +++ b/apps/user_ldap/l10n/pt_PT.js @@ -22,7 +22,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "Nenhum objecto encontrado na Base DN fornecida. Por favor verifique.", "More than 1,000 directory entries available." : "Mais de 1,000 entradas de diretório disponíveis.", - " entries available within the provided Base DN" : "entradas disponíveis no ND de base fornecido", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Ocorreu um erro. Por favor verifique o ND de base, bem como as definições de ligação e as credenciais.", "Do you really want to delete the current Server Configuration?" : "Deseja realmente apagar as configurações de servidor actuais?", "Confirm Deletion" : "Confirmar a operação de apagar", @@ -139,12 +138,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "O ownCloud usa nomes de utilizadores para guardar e atribuir (meta) dados. Para identificar com precisão os utilizadores, cada utilizador de LDAP tem um nome de utilizador interno. Isto requer um mapeamento entre o utilizador LDAP e o utilizador ownCloud. Adicionalmente, o DN é colocado em cache para reduzir a interação com LDAP, porém não é usado para identificação. Se o DN muda, essas alterações serão vistas pelo ownCloud. O nome interno do ownCloud é usado em todo o lado, no ownCloud. Limpar os mapeamentos deixará vestígios em todo o lado. A limpeza dos mapeamentos não é sensível à configuração, pois afeta todas as configurações de LDAP! Nunca limpe os mapeamentos num ambiente de produção, apenas o faça numa fase de testes ou experimental.", "Clear Username-LDAP User Mapping" : "Limpar mapeamento do utilizador-LDAP", "Clear Groupname-LDAP Group Mapping" : "Limpar o mapeamento do nome de grupo LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "O campo %uid está em falta. Este será substituído pelo utilizador do ownCloud quando for efectuado o pedido ao LDAP / AD.", - "Verify settings and count groups" : "Verificar condições e contar grupos", - "Add a new and blank configuration" : "Adicione uma nova configuração em branco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Pode omitir o protocolo, excepto se necessitar de SSL. Neste caso, comece com ldaps://", + " entries available within the provided Base DN" : "entradas disponíveis no ND de base fornecido", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Aviso: A aplicação user_ldap e user_webdavauth são incompativeis. A aplicação pode tornar-se instável. Por favor, peça ao seu administrador para desactivar uma das aplicações.", - "in bytes" : "em bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Aviso: A aplicação user_ldap e user_webdavauth são incompativeis. A aplicação pode tornar-se instável. Por favor, peça ao seu administrador para desactivar uma das aplicações." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/pt_PT.json b/apps/user_ldap/l10n/pt_PT.json index 32b97a0766348..78ed8eddf42d2 100644 --- a/apps/user_ldap/l10n/pt_PT.json +++ b/apps/user_ldap/l10n/pt_PT.json @@ -20,7 +20,6 @@ "{nthServer}. Server" : "{nthServer}. Servidor", "No object found in the given Base DN. Please revise." : "Nenhum objecto encontrado na Base DN fornecida. Por favor verifique.", "More than 1,000 directory entries available." : "Mais de 1,000 entradas de diretório disponíveis.", - " entries available within the provided Base DN" : "entradas disponíveis no ND de base fornecido", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Ocorreu um erro. Por favor verifique o ND de base, bem como as definições de ligação e as credenciais.", "Do you really want to delete the current Server Configuration?" : "Deseja realmente apagar as configurações de servidor actuais?", "Confirm Deletion" : "Confirmar a operação de apagar", @@ -137,12 +136,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "O ownCloud usa nomes de utilizadores para guardar e atribuir (meta) dados. Para identificar com precisão os utilizadores, cada utilizador de LDAP tem um nome de utilizador interno. Isto requer um mapeamento entre o utilizador LDAP e o utilizador ownCloud. Adicionalmente, o DN é colocado em cache para reduzir a interação com LDAP, porém não é usado para identificação. Se o DN muda, essas alterações serão vistas pelo ownCloud. O nome interno do ownCloud é usado em todo o lado, no ownCloud. Limpar os mapeamentos deixará vestígios em todo o lado. A limpeza dos mapeamentos não é sensível à configuração, pois afeta todas as configurações de LDAP! Nunca limpe os mapeamentos num ambiente de produção, apenas o faça numa fase de testes ou experimental.", "Clear Username-LDAP User Mapping" : "Limpar mapeamento do utilizador-LDAP", "Clear Groupname-LDAP Group Mapping" : "Limpar o mapeamento do nome de grupo LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "O campo %uid está em falta. Este será substituído pelo utilizador do ownCloud quando for efectuado o pedido ao LDAP / AD.", - "Verify settings and count groups" : "Verificar condições e contar grupos", - "Add a new and blank configuration" : "Adicione uma nova configuração em branco", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Pode omitir o protocolo, excepto se necessitar de SSL. Neste caso, comece com ldaps://", + " entries available within the provided Base DN" : "entradas disponíveis no ND de base fornecido", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Aviso: A aplicação user_ldap e user_webdavauth são incompativeis. A aplicação pode tornar-se instável. Por favor, peça ao seu administrador para desactivar uma das aplicações.", - "in bytes" : "em bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Aviso: A aplicação user_ldap e user_webdavauth são incompativeis. A aplicação pode tornar-se instável. Por favor, peça ao seu administrador para desactivar uma das aplicações." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/ru.js b/apps/user_ldap/l10n/ru.js index 13fd981283bde..8baaf2d771b56 100644 --- a/apps/user_ldap/l10n/ru.js +++ b/apps/user_ldap/l10n/ru.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "Сервер {nthServer}.", "No object found in the given Base DN. Please revise." : "Не найдено объектов в Base DN. Пожалуйста перепроверьте.", "More than 1,000 directory entries available." : "В каталоге доступно более 1,000 записей.", - " entries available within the provided Base DN" : "элементов доступно в предоставленном базовом DN", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Произошла ошибка. Пожалуйста проверьте базу поиска DN, а также настройки подключения и учетные данные.", "Do you really want to delete the current Server Configuration?" : "Вы действительно хотите удалить существующую конфигурацию сервера?", "Confirm Deletion" : "Подтверждение удаления", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует привязки имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кешируется DN для уменьшения числа обращений к LDAP, однако он не используется для идентификации. Если DN был изменён, то изменения будут найдены. Внутреннее имя ownCloud используется повсеместно в ownCloud. После сброса привязок в базе могут сохраниться остатки старой информации. Сброс привязок не привязан к конфигурации, он повлияет на все LDAP подключения! Ни в коем случае не рекомендуется сбрасывать привязки если система уже находится в эксплуатации, только на этапе тестирования.", "Clear Username-LDAP User Mapping" : "Очистить соответствия Имя-Пользователь LDAP", "Clear Groupname-LDAP Group Mapping" : "Очистить соответствия Группа-Группа LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Отсутствует заполнитель %uid. Он будет заменен на логин при запросе к LDAP / AD.", - "Verify settings and count groups" : "Проверить настройки и пересчитать группы", - "Add a new and blank configuration" : "Добавить новую и пустую конфигурацию", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Можно пренебречь протоколом, за исключением использования SSL. В этом случае укажите ldaps://", + " entries available within the provided Base DN" : "элементов доступно в предоставленном базовом DN", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Предупреждение: Приложения user_ldap и user_webdavauth несовместимы. Вы можете наблюдать некорректное поведение. Пожалуйста, попросите вашего системного администратора отключить одно из них.", - "in bytes" : "в байтах" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Предупреждение: Приложения user_ldap и user_webdavauth несовместимы. Вы можете наблюдать некорректное поведение. Пожалуйста, попросите вашего системного администратора отключить одно из них." }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/apps/user_ldap/l10n/ru.json b/apps/user_ldap/l10n/ru.json index 710ed9281bc9e..5cefbbefb9de3 100644 --- a/apps/user_ldap/l10n/ru.json +++ b/apps/user_ldap/l10n/ru.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "Сервер {nthServer}.", "No object found in the given Base DN. Please revise." : "Не найдено объектов в Base DN. Пожалуйста перепроверьте.", "More than 1,000 directory entries available." : "В каталоге доступно более 1,000 записей.", - " entries available within the provided Base DN" : "элементов доступно в предоставленном базовом DN", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Произошла ошибка. Пожалуйста проверьте базу поиска DN, а также настройки подключения и учетные данные.", "Do you really want to delete the current Server Configuration?" : "Вы действительно хотите удалить существующую конфигурацию сервера?", "Confirm Deletion" : "Подтверждение удаления", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует привязки имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кешируется DN для уменьшения числа обращений к LDAP, однако он не используется для идентификации. Если DN был изменён, то изменения будут найдены. Внутреннее имя ownCloud используется повсеместно в ownCloud. После сброса привязок в базе могут сохраниться остатки старой информации. Сброс привязок не привязан к конфигурации, он повлияет на все LDAP подключения! Ни в коем случае не рекомендуется сбрасывать привязки если система уже находится в эксплуатации, только на этапе тестирования.", "Clear Username-LDAP User Mapping" : "Очистить соответствия Имя-Пользователь LDAP", "Clear Groupname-LDAP Group Mapping" : "Очистить соответствия Группа-Группа LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Отсутствует заполнитель %uid. Он будет заменен на логин при запросе к LDAP / AD.", - "Verify settings and count groups" : "Проверить настройки и пересчитать группы", - "Add a new and blank configuration" : "Добавить новую и пустую конфигурацию", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Можно пренебречь протоколом, за исключением использования SSL. В этом случае укажите ldaps://", + " entries available within the provided Base DN" : "элементов доступно в предоставленном базовом DN", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Предупреждение: Приложения user_ldap и user_webdavauth несовместимы. Вы можете наблюдать некорректное поведение. Пожалуйста, попросите вашего системного администратора отключить одно из них.", - "in bytes" : "в байтах" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Предупреждение: Приложения user_ldap и user_webdavauth несовместимы. Вы можете наблюдать некорректное поведение. Пожалуйста, попросите вашего системного администратора отключить одно из них." },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/sk.js b/apps/user_ldap/l10n/sk.js index 0abdc64532787..34100a0d6f066 100644 --- a/apps/user_ldap/l10n/sk.js +++ b/apps/user_ldap/l10n/sk.js @@ -28,7 +28,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Server", "No object found in the given Base DN. Please revise." : "Objekt nebol nájdený v zadanej základnej DN. Overte to prosím.", "More than 1,000 directory entries available." : "V adresári je dostupných viac ako 1000 položiek.", - " entries available within the provided Base DN" : "dostupných záznamov v zadanej základnej DN", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Nastala chyba. Overte základnú DN, nastavenia pripojenia a prihlasovacie údaje.", "Do you really want to delete the current Server Configuration?" : "Naozaj chcete zmazať súčasné nastavenie servera?", "Confirm Deletion" : "Potvrdiť vymazanie", @@ -96,7 +95,10 @@ OC.L10N.register( "Saving" : "Ukladá sa", "Back" : "Späť", "Continue" : "Pokračovať", + "An internal error occurred." : "Nastala interná chyba.", + "Current password" : "Aktuálne heslo", "New password" : "Nové heslo", + "Wrong password. Reset it?" : "Chybné heslo. Chcete ho obnoviť?", "Wrong password." : "Nesprávne heslo.", "Cancel" : "Zrušiť", "Server" : "Server", @@ -151,12 +153,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Používateľské mená sa používajú na uchovávanie a priraďovanie (meta)dát. Každý používateľ v LDAP bude mať interné používateľské meno, aby bolo možné správne identifikovať a rozpoznávať používateľov. To je vyžaduje vytvorenie mapovania používateľských mien na používateľov v LDAPe. Vytvorené používateľské meno sa namapuje na UUID používateľa v LDAPe. Naviac je sa vo vyrovnávacej pamäti udržiava DN, aby sa obmedzila nadmerná interakcia s LDAPom, ale to sa nepoužíva na identifikáciu. Ak sa DN zmení, zmena bude správne rozpoznaná. Interné používateľské meno sa používa všade. Vyčistenie mapovaní vymaže zvyšky všade. Vyčistenie mapovaní naviac nie je špecifické pre určitú konfiguráciu; bude mať vplyv na všetky konfigurácie LDAPu! Nikdy nečistite mapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze.", "Clear Username-LDAP User Mapping" : "Zrušiť mapovanie LDAP používateľských mien", "Clear Groupname-LDAP Group Mapping" : "Zrušiť mapovanie názvov LDAP skupín", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Chýba zástupný znak %uid. Bude nahradený prihlasovacím menom pri požiadavke do LDAP / AD.", - "Verify settings and count groups" : "Overiť nastavenia a spočítať skupiny", - "Add a new and blank configuration" : "Pridať novú prázdnu konfiguráciu", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Môžete vynechať protokol, okrem prípadu, kedy sa vyžaduje SSL. Vtedy začnite s ldaps://", + " entries available within the provided Base DN" : "dostupných záznamov v zadanej základnej DN", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Upozornenie: Aplikácie user_ldap a user_webdavauth sú navzájom nekompatibilné. Môžete zaznamenať neočakávané správanie. Požiadajte prosím vášho systémového administrátora pre zakázanie jedného z nich.", - "in bytes" : "v bajtoch" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Upozornenie: Aplikácie user_ldap a user_webdavauth sú navzájom nekompatibilné. Môžete zaznamenať neočakávané správanie. Požiadajte prosím vášho systémového administrátora pre zakázanie jedného z nich." }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/user_ldap/l10n/sk.json b/apps/user_ldap/l10n/sk.json index 3ecf301e2ed81..41b30d9c1c36d 100644 --- a/apps/user_ldap/l10n/sk.json +++ b/apps/user_ldap/l10n/sk.json @@ -26,7 +26,6 @@ "{nthServer}. Server" : "{nthServer}. Server", "No object found in the given Base DN. Please revise." : "Objekt nebol nájdený v zadanej základnej DN. Overte to prosím.", "More than 1,000 directory entries available." : "V adresári je dostupných viac ako 1000 položiek.", - " entries available within the provided Base DN" : "dostupných záznamov v zadanej základnej DN", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Nastala chyba. Overte základnú DN, nastavenia pripojenia a prihlasovacie údaje.", "Do you really want to delete the current Server Configuration?" : "Naozaj chcete zmazať súčasné nastavenie servera?", "Confirm Deletion" : "Potvrdiť vymazanie", @@ -94,7 +93,10 @@ "Saving" : "Ukladá sa", "Back" : "Späť", "Continue" : "Pokračovať", + "An internal error occurred." : "Nastala interná chyba.", + "Current password" : "Aktuálne heslo", "New password" : "Nové heslo", + "Wrong password. Reset it?" : "Chybné heslo. Chcete ho obnoviť?", "Wrong password." : "Nesprávne heslo.", "Cancel" : "Zrušiť", "Server" : "Server", @@ -149,12 +151,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Používateľské mená sa používajú na uchovávanie a priraďovanie (meta)dát. Každý používateľ v LDAP bude mať interné používateľské meno, aby bolo možné správne identifikovať a rozpoznávať používateľov. To je vyžaduje vytvorenie mapovania používateľských mien na používateľov v LDAPe. Vytvorené používateľské meno sa namapuje na UUID používateľa v LDAPe. Naviac je sa vo vyrovnávacej pamäti udržiava DN, aby sa obmedzila nadmerná interakcia s LDAPom, ale to sa nepoužíva na identifikáciu. Ak sa DN zmení, zmena bude správne rozpoznaná. Interné používateľské meno sa používa všade. Vyčistenie mapovaní vymaže zvyšky všade. Vyčistenie mapovaní naviac nie je špecifické pre určitú konfiguráciu; bude mať vplyv na všetky konfigurácie LDAPu! Nikdy nečistite mapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze.", "Clear Username-LDAP User Mapping" : "Zrušiť mapovanie LDAP používateľských mien", "Clear Groupname-LDAP Group Mapping" : "Zrušiť mapovanie názvov LDAP skupín", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Chýba zástupný znak %uid. Bude nahradený prihlasovacím menom pri požiadavke do LDAP / AD.", - "Verify settings and count groups" : "Overiť nastavenia a spočítať skupiny", - "Add a new and blank configuration" : "Pridať novú prázdnu konfiguráciu", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Môžete vynechať protokol, okrem prípadu, kedy sa vyžaduje SSL. Vtedy začnite s ldaps://", + " entries available within the provided Base DN" : "dostupných záznamov v zadanej základnej DN", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Upozornenie: Aplikácie user_ldap a user_webdavauth sú navzájom nekompatibilné. Môžete zaznamenať neočakávané správanie. Požiadajte prosím vášho systémového administrátora pre zakázanie jedného z nich.", - "in bytes" : "v bajtoch" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Upozornenie: Aplikácie user_ldap a user_webdavauth sú navzájom nekompatibilné. Môžete zaznamenať neočakávané správanie. Požiadajte prosím vášho systémového administrátora pre zakázanie jedného z nich." },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/sl.js b/apps/user_ldap/l10n/sl.js index cfc628cae30df..e71f12a2a24eb 100644 --- a/apps/user_ldap/l10n/sl.js +++ b/apps/user_ldap/l10n/sl.js @@ -22,7 +22,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. strežnik", "No object found in the given Base DN. Please revise." : "Ni najdenega predmeta v osnovnem enoznačnem imenu (DN). Preverite nastavitve.", "More than 1,000 directory entries available." : "Na voljo je več kot 1000 vnosov imenika", - " entries available within the provided Base DN" : "vnosi, ki so na voljo znotraj razpoložljivega osnovnega enoznačnega imena (Base DN)", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Prišlo je do napake. Preverite osnovno enoznačno ime, nastavitve povezave in poverila.", "Do you really want to delete the current Server Configuration?" : "Ali res želite izbrisati trenutne nastavitve strežnika?", "Confirm Deletion" : "Potrdi brisanje", @@ -59,9 +58,7 @@ OC.L10N.register( "When logging in, %s will find the user based on the following attributes:" : "Pri prijavi bodo prek %s najdeni uporabniki na osnovi navedenih atributov:", "LDAP / AD Username:" : "Uporabniško ime LDAP / AD:", "LDAP / AD Email Address:" : "Elektronski naslov LDAP / AD:", - "Allows login against an email attribute. Mail and mailPrimaryAddress will be allowed." : "Dovoli prijavo z atributom elektronskega naslova. Dovoljena bosta naslova Mail and mailPrimaryAddress.", "Other Attributes:" : "Drugi atributi:", - "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" : "Določi filter, ki bo uveljavljen ob poskusu prijave. %%uid zamenja uporabniško ime pri prijavi, na primer: \"uid=%%uid\"", "Test Loginname" : "Preizkusi prijavno ime", "Verify settings" : "Preveri nastavitve", "1. Server" : "1. strežnik", @@ -86,7 +83,6 @@ OC.L10N.register( "Saving" : "Poteka shranjevanje ...", "Back" : "Nazaj", "Continue" : "Nadaljuj", - "LDAP" : "LDAP", "Server" : "Strežnik", "Users" : "Uporabniki", "Login Attributes" : "Atributi prijave", @@ -140,12 +136,8 @@ OC.L10N.register( "Username-LDAP User Mapping" : "Uporabniška preslikava uporabniškega imena na LDAP", "Clear Username-LDAP User Mapping" : "Izbriši preslikavo uporabniškega imena na LDAP", "Clear Groupname-LDAP Group Mapping" : "Izbriši preslikavo skupine na LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Manjka držalo %uid. Zamenjano bo z uporabniškim imenom pri poizvedbah LDAP / AD.", - "Verify settings and count groups" : "Preveri nastavitve in preštej skupine", - "Allows login against the LDAP / AD username, which is either uid or samaccountname and will be detected." : "Omogoča prijavo prek LDAP / AD, ki je ali UID ali ime računa, ki bo zaznano.", - "Add a new and blank configuration" : "In nova, privzeta nastavitev", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Protokol je lahko izpuščen, če ni posebej zahtevan SSL. V tem primeru se mora naslov začeti z ldaps://", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Opozorilo: določili user_ldap in user_webdavauth sta neskladni, kar lahko vpliva na delovanje sistema. O napaki pošljite poročilo skrbniku sistema in opozorite, da je treba eno izmed možnosti onemogočiti.", - "in bytes" : "v bajtih" + " entries available within the provided Base DN" : "vnosi, ki so na voljo znotraj razpoložljivega osnovnega enoznačnega imena (Base DN)", + "LDAP" : "LDAP", + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Opozorilo: določili user_ldap in user_webdavauth sta neskladni, kar lahko vpliva na delovanje sistema. O napaki pošljite poročilo skrbniku sistema in opozorite, da je treba eno izmed možnosti onemogočiti." }, "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); diff --git a/apps/user_ldap/l10n/sl.json b/apps/user_ldap/l10n/sl.json index 6f5a5d9674cc8..031d4298ad837 100644 --- a/apps/user_ldap/l10n/sl.json +++ b/apps/user_ldap/l10n/sl.json @@ -20,7 +20,6 @@ "{nthServer}. Server" : "{nthServer}. strežnik", "No object found in the given Base DN. Please revise." : "Ni najdenega predmeta v osnovnem enoznačnem imenu (DN). Preverite nastavitve.", "More than 1,000 directory entries available." : "Na voljo je več kot 1000 vnosov imenika", - " entries available within the provided Base DN" : "vnosi, ki so na voljo znotraj razpoložljivega osnovnega enoznačnega imena (Base DN)", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Prišlo je do napake. Preverite osnovno enoznačno ime, nastavitve povezave in poverila.", "Do you really want to delete the current Server Configuration?" : "Ali res želite izbrisati trenutne nastavitve strežnika?", "Confirm Deletion" : "Potrdi brisanje", @@ -57,9 +56,7 @@ "When logging in, %s will find the user based on the following attributes:" : "Pri prijavi bodo prek %s najdeni uporabniki na osnovi navedenih atributov:", "LDAP / AD Username:" : "Uporabniško ime LDAP / AD:", "LDAP / AD Email Address:" : "Elektronski naslov LDAP / AD:", - "Allows login against an email attribute. Mail and mailPrimaryAddress will be allowed." : "Dovoli prijavo z atributom elektronskega naslova. Dovoljena bosta naslova Mail and mailPrimaryAddress.", "Other Attributes:" : "Drugi atributi:", - "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" : "Določi filter, ki bo uveljavljen ob poskusu prijave. %%uid zamenja uporabniško ime pri prijavi, na primer: \"uid=%%uid\"", "Test Loginname" : "Preizkusi prijavno ime", "Verify settings" : "Preveri nastavitve", "1. Server" : "1. strežnik", @@ -84,7 +81,6 @@ "Saving" : "Poteka shranjevanje ...", "Back" : "Nazaj", "Continue" : "Nadaljuj", - "LDAP" : "LDAP", "Server" : "Strežnik", "Users" : "Uporabniki", "Login Attributes" : "Atributi prijave", @@ -138,12 +134,8 @@ "Username-LDAP User Mapping" : "Uporabniška preslikava uporabniškega imena na LDAP", "Clear Username-LDAP User Mapping" : "Izbriši preslikavo uporabniškega imena na LDAP", "Clear Groupname-LDAP Group Mapping" : "Izbriši preslikavo skupine na LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Manjka držalo %uid. Zamenjano bo z uporabniškim imenom pri poizvedbah LDAP / AD.", - "Verify settings and count groups" : "Preveri nastavitve in preštej skupine", - "Allows login against the LDAP / AD username, which is either uid or samaccountname and will be detected." : "Omogoča prijavo prek LDAP / AD, ki je ali UID ali ime računa, ki bo zaznano.", - "Add a new and blank configuration" : "In nova, privzeta nastavitev", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Protokol je lahko izpuščen, če ni posebej zahtevan SSL. V tem primeru se mora naslov začeti z ldaps://", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Opozorilo: določili user_ldap in user_webdavauth sta neskladni, kar lahko vpliva na delovanje sistema. O napaki pošljite poročilo skrbniku sistema in opozorite, da je treba eno izmed možnosti onemogočiti.", - "in bytes" : "v bajtih" + " entries available within the provided Base DN" : "vnosi, ki so na voljo znotraj razpoložljivega osnovnega enoznačnega imena (Base DN)", + "LDAP" : "LDAP", + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Opozorilo: določili user_ldap in user_webdavauth sta neskladni, kar lahko vpliva na delovanje sistema. O napaki pošljite poročilo skrbniku sistema in opozorite, da je treba eno izmed možnosti onemogočiti." },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/sq.js b/apps/user_ldap/l10n/sq.js index a3a1c4c8e5022..d56f9bef6b31c 100644 --- a/apps/user_ldap/l10n/sq.js +++ b/apps/user_ldap/l10n/sq.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Server", "No object found in the given Base DN. Please revise." : "Në DN Bazë të dhën s’u gjet objekt. Ju lutemi, rishikojeni.", "More than 1,000 directory entries available." : "Më shumë se 1000 zëra të gatshëm.", - " entries available within the provided Base DN" : " zëra të gatshëm brenda DN-së Bazë të dhënë", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Ndodhi një gabim. Ju lutemi, kontrolloni DN-në Bazë, si edhe rregullimet për lidhjen dhe kredencialet.", "Do you really want to delete the current Server Configuration?" : "Doni vërtet të fshihet Formësimi i tanishëm i Shërbyesit?", "Confirm Deletion" : "Ripohoni Fshirjen", @@ -183,12 +182,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Emrat e përdoruesve përdoren për të depozituar dhe shpërndarë (tej) të dhëna. Që të mund të identifikohen dhe pranohen saktësisht përdoruesit, çdo përdorues LDAP do të ketë një emër të brendshëm përdoruesi. Kjo kërkon përshoqërim nga emër përdoruesi te përdorues LDAP. Emri i përdoruesit i krijuar i përshoqërohet UUID-së së përdoruesit LDAP. Tej kësaj, edhe DN-ja ruhet në fshehtinë, për të zvogëluar ndërveprim LDAP, por s’përdoret për identifikim. Nëse ndryshon DN-ja, ndryshimet do të gjenden. Emri i brendshëm i përdoruesi përdoret gjithandej. Heqja e përshoqërimeve do të lërë thërrime ngado. Heqja e përshoqërimeve nuk preket nga formësimi, prek krejt formësimet për LDAP-në! Mos i hiqni kurrë përshoqërimet në një mjedis prodhimi, vetëm në një faqë testimi ose eksperimetale.", "Clear Username-LDAP User Mapping" : "Pastro Përshoqërimin Emër përdoruesi-Përdorues LDAP", "Clear Groupname-LDAP Group Mapping" : "Pastro Përshoqërimin Emër grupi-Grup LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Vendmbajtësja %uid mungon. Do të zëvendësohet me emrin e hyrjes, kur të kërkohet te LDAP / AD.", - "Verify settings and count groups" : "Verifiko rregullimet dhe numëro grupet", - "Add a new and blank configuration" : "Shtoni një formësim të ri të zbrazët", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Protokollin mund ta lini pa vënë, hiq rastin kur ju duhet SSL. Në atë rast filloni me ldaps://", + " entries available within the provided Base DN" : " zëra të gatshëm brenda DN-së Bazë të dhënë", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Kujdes: user_ldap dhe user_webdavauth të aplikacionit janë të papërputhshëm. Mund t’ju ndodhin sjellje të papritura. Ju lutemi, kërkojini përgjegjësit të sistemit tuaj të çaktivizojë një prej tyre.", - "in bytes" : "në bajte" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Kujdes: user_ldap dhe user_webdavauth të aplikacionit janë të papërputhshëm. Mund t’ju ndodhin sjellje të papritura. Ju lutemi, kërkojini përgjegjësit të sistemit tuaj të çaktivizojë një prej tyre." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/sq.json b/apps/user_ldap/l10n/sq.json index f6459c04b32f4..01c3a1f2dde83 100644 --- a/apps/user_ldap/l10n/sq.json +++ b/apps/user_ldap/l10n/sq.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Server", "No object found in the given Base DN. Please revise." : "Në DN Bazë të dhën s’u gjet objekt. Ju lutemi, rishikojeni.", "More than 1,000 directory entries available." : "Më shumë se 1000 zëra të gatshëm.", - " entries available within the provided Base DN" : " zëra të gatshëm brenda DN-së Bazë të dhënë", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Ndodhi një gabim. Ju lutemi, kontrolloni DN-në Bazë, si edhe rregullimet për lidhjen dhe kredencialet.", "Do you really want to delete the current Server Configuration?" : "Doni vërtet të fshihet Formësimi i tanishëm i Shërbyesit?", "Confirm Deletion" : "Ripohoni Fshirjen", @@ -181,12 +180,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Emrat e përdoruesve përdoren për të depozituar dhe shpërndarë (tej) të dhëna. Që të mund të identifikohen dhe pranohen saktësisht përdoruesit, çdo përdorues LDAP do të ketë një emër të brendshëm përdoruesi. Kjo kërkon përshoqërim nga emër përdoruesi te përdorues LDAP. Emri i përdoruesit i krijuar i përshoqërohet UUID-së së përdoruesit LDAP. Tej kësaj, edhe DN-ja ruhet në fshehtinë, për të zvogëluar ndërveprim LDAP, por s’përdoret për identifikim. Nëse ndryshon DN-ja, ndryshimet do të gjenden. Emri i brendshëm i përdoruesi përdoret gjithandej. Heqja e përshoqërimeve do të lërë thërrime ngado. Heqja e përshoqërimeve nuk preket nga formësimi, prek krejt formësimet për LDAP-në! Mos i hiqni kurrë përshoqërimet në një mjedis prodhimi, vetëm në një faqë testimi ose eksperimetale.", "Clear Username-LDAP User Mapping" : "Pastro Përshoqërimin Emër përdoruesi-Përdorues LDAP", "Clear Groupname-LDAP Group Mapping" : "Pastro Përshoqërimin Emër grupi-Grup LDAP", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Vendmbajtësja %uid mungon. Do të zëvendësohet me emrin e hyrjes, kur të kërkohet te LDAP / AD.", - "Verify settings and count groups" : "Verifiko rregullimet dhe numëro grupet", - "Add a new and blank configuration" : "Shtoni një formësim të ri të zbrazët", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Protokollin mund ta lini pa vënë, hiq rastin kur ju duhet SSL. Në atë rast filloni me ldaps://", + " entries available within the provided Base DN" : " zëra të gatshëm brenda DN-së Bazë të dhënë", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Kujdes: user_ldap dhe user_webdavauth të aplikacionit janë të papërputhshëm. Mund t’ju ndodhin sjellje të papritura. Ju lutemi, kërkojini përgjegjësit të sistemit tuaj të çaktivizojë një prej tyre.", - "in bytes" : "në bajte" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Kujdes: user_ldap dhe user_webdavauth të aplikacionit janë të papërputhshëm. Mund t’ju ndodhin sjellje të papritura. Ju lutemi, kërkojini përgjegjësit të sistemit tuaj të çaktivizojë një prej tyre." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/sr.js b/apps/user_ldap/l10n/sr.js index 31c056f8f31a2..297f4ca488eca 100644 --- a/apps/user_ldap/l10n/sr.js +++ b/apps/user_ldap/l10n/sr.js @@ -33,7 +33,7 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Сервер", "No object found in the given Base DN. Please revise." : "Нема објекта за дати базни ДН. Проверите.", "More than 1,000 directory entries available." : "Више од 1000 уноса је доступно.", - " entries available within the provided Base DN" : "уноса доступно за дати базни ДН", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} унос доступан за дати базни ДН","{objectsFound} уноса доступно за дати базни ДН","{objectsFound} уноса доступно за дати базни ДН"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Грешка. Проверите базни ДН као и поставке везе и акредитиве.", "Do you really want to delete the current Server Configuration?" : "Да ли стварно желите да обришете тренутну конфигурацију сервера?", "Confirm Deletion" : "Потврдa брисањa", @@ -187,12 +187,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Корисничка имена се користи за чување и додељивање (мета) података. Да би се прецизно идентификовали и препознавали кориснике, сваки LDAP корисник ће имати локално корисничко име. Ово захтева мапирање од корисничког имена до LDAP корисника. Креирано корисничко име се мапира у UUID LDAP корисника. Поред тога, DN се кешира да смањи LDAP интеракцију, али се не користи за идентификацију. Ако се DN мења, промене се могу наћи. Локално корисничко име се користи свуда. Чишћење мапирања оставља свуда остатке. Чишћење мапирања није осетљиво на конфигурацију, оно утиче на све LDAP конфигурације! Никада не користит чишћење мапирања у радном окружењу, већ само у тестирању или експерименталној фази.", "Clear Username-LDAP User Mapping" : "Очисти Username-LDAP мапирање корисника", "Clear Groupname-LDAP Group Mapping" : "Очисти Groupname-LDAP мапирање група", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Недостаје %uid местодржач. Биће замењен са пријавним именом при ЛДАП / АД упиту.", - "Verify settings and count groups" : "Провери поставке и преброј групе", - "Add a new and blank configuration" : "Додај нову празну поставу", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Можете да изоставите протокол, осим ако захтевате ССЛ. У том случају почните са ldaps://", + " entries available within the provided Base DN" : "уноса доступно за дати базни ДН", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Упозорење: Апликације user_ldap и user_webdavauth нису компатибилне. Можете имати проблема. Питајте систем администратора да искључи једну од њих.", - "in bytes" : "у бајтовима" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Упозорење: Апликације user_ldap и user_webdavauth нису компатибилне. Можете имати проблема. Питајте систем администратора да искључи једну од њих." }, "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/apps/user_ldap/l10n/sr.json b/apps/user_ldap/l10n/sr.json index fdd6bc8b06e4f..4cc9e01ffbd64 100644 --- a/apps/user_ldap/l10n/sr.json +++ b/apps/user_ldap/l10n/sr.json @@ -31,7 +31,7 @@ "{nthServer}. Server" : "{nthServer}. Сервер", "No object found in the given Base DN. Please revise." : "Нема објекта за дати базни ДН. Проверите.", "More than 1,000 directory entries available." : "Више од 1000 уноса је доступно.", - " entries available within the provided Base DN" : "уноса доступно за дати базни ДН", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["{objectsFound} унос доступан за дати базни ДН","{objectsFound} уноса доступно за дати базни ДН","{objectsFound} уноса доступно за дати базни ДН"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Грешка. Проверите базни ДН као и поставке везе и акредитиве.", "Do you really want to delete the current Server Configuration?" : "Да ли стварно желите да обришете тренутну конфигурацију сервера?", "Confirm Deletion" : "Потврдa брисањa", @@ -185,12 +185,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Корисничка имена се користи за чување и додељивање (мета) података. Да би се прецизно идентификовали и препознавали кориснике, сваки LDAP корисник ће имати локално корисничко име. Ово захтева мапирање од корисничког имена до LDAP корисника. Креирано корисничко име се мапира у UUID LDAP корисника. Поред тога, DN се кешира да смањи LDAP интеракцију, али се не користи за идентификацију. Ако се DN мења, промене се могу наћи. Локално корисничко име се користи свуда. Чишћење мапирања оставља свуда остатке. Чишћење мапирања није осетљиво на конфигурацију, оно утиче на све LDAP конфигурације! Никада не користит чишћење мапирања у радном окружењу, већ само у тестирању или експерименталној фази.", "Clear Username-LDAP User Mapping" : "Очисти Username-LDAP мапирање корисника", "Clear Groupname-LDAP Group Mapping" : "Очисти Groupname-LDAP мапирање група", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "Недостаје %uid местодржач. Биће замењен са пријавним именом при ЛДАП / АД упиту.", - "Verify settings and count groups" : "Провери поставке и преброј групе", - "Add a new and blank configuration" : "Додај нову празну поставу", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Можете да изоставите протокол, осим ако захтевате ССЛ. У том случају почните са ldaps://", + " entries available within the provided Base DN" : "уноса доступно за дати базни ДН", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Упозорење: Апликације user_ldap и user_webdavauth нису компатибилне. Можете имати проблема. Питајте систем администратора да искључи једну од њих.", - "in bytes" : "у бајтовима" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Упозорење: Апликације user_ldap и user_webdavauth нису компатибилне. Можете имати проблема. Питајте систем администратора да искључи једну од њих." },"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);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/sv.js b/apps/user_ldap/l10n/sv.js index 628ab1d385fe0..14e42e33296f3 100644 --- a/apps/user_ldap/l10n/sv.js +++ b/apps/user_ldap/l10n/sv.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Server", "No object found in the given Base DN. Please revise." : "Inget objekt funnet i den givna Base DN. Var god granska.", "More than 1,000 directory entries available." : "Mer än 1,000 katalogposter tillgängliga.", - " entries available within the provided Base DN" : "Poster tillgängliga inom angivet Base DN", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Ett fel uppstod. Var god kontrollera Base DN, och även anslutningsinställningar och referenser.", "Do you really want to delete the current Server Configuration?" : "Vill du verkligen radera den nuvarande serverinställningen?", "Confirm Deletion" : "Bekräfta radering", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Användarnamn används för att lagra och tilldela (meta) data. För att exakt identifiera och känna igen användare, kommer varje LDAP-användare att ha ett internt användarnamn. Detta kräver en mappning från användarnamn till LDAP-användare. Det skapade användarnamnet mappas till UUID't för LDAP-användaren. Dessutom är DN't cachat också för att minska LDAP-interaktion, men används inte för identifiering. Om DN't ändras, kommer ändringar att hittas. Det interna användarnamnet används överallt. Rensning av mappningarna kommer att ha kvarlevor överallt. Rensning av mappningarna är inte konfigurationskänsliga, de påverka alla LDAP-konfigurationer! Rensa aldrig mappningarna i en produktionsmiljö, bara i test- eller experimentläge.", "Clear Username-LDAP User Mapping" : "Rensa användarnamn-LDAP användarmappning", "Clear Groupname-LDAP Group Mapping" : "Rensa gruppnamn-LDAP gruppmappning", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "%uid-platshållaren saknas. Den kommer att ersättas med inloggningsnamn när LDAP / AD efterfrågas.", - "Verify settings and count groups" : "Verifiera inställningar och räkna grupper", - "Add a new and blank configuration" : "Skapa en ny och tom konfiguration", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Du behöver inte ange protokoll förutom om du använder SSL. Starta då med ldaps://", + " entries available within the provided Base DN" : "Poster tillgängliga inom angivet Base DN", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Varning: Apps user_ldap och user_webdavauth är inkompatibla. Oväntade problem kan uppstå. Be din systemadministratör att inaktivera en av dem.", - "in bytes" : "i bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Varning: Apps user_ldap och user_webdavauth är inkompatibla. Oväntade problem kan uppstå. Be din systemadministratör att inaktivera en av dem." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/user_ldap/l10n/sv.json b/apps/user_ldap/l10n/sv.json index e8e2121acbf9d..99006f9ab8496 100644 --- a/apps/user_ldap/l10n/sv.json +++ b/apps/user_ldap/l10n/sv.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. Server", "No object found in the given Base DN. Please revise." : "Inget objekt funnet i den givna Base DN. Var god granska.", "More than 1,000 directory entries available." : "Mer än 1,000 katalogposter tillgängliga.", - " entries available within the provided Base DN" : "Poster tillgängliga inom angivet Base DN", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Ett fel uppstod. Var god kontrollera Base DN, och även anslutningsinställningar och referenser.", "Do you really want to delete the current Server Configuration?" : "Vill du verkligen radera den nuvarande serverinställningen?", "Confirm Deletion" : "Bekräfta radering", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Användarnamn används för att lagra och tilldela (meta) data. För att exakt identifiera och känna igen användare, kommer varje LDAP-användare att ha ett internt användarnamn. Detta kräver en mappning från användarnamn till LDAP-användare. Det skapade användarnamnet mappas till UUID't för LDAP-användaren. Dessutom är DN't cachat också för att minska LDAP-interaktion, men används inte för identifiering. Om DN't ändras, kommer ändringar att hittas. Det interna användarnamnet används överallt. Rensning av mappningarna kommer att ha kvarlevor överallt. Rensning av mappningarna är inte konfigurationskänsliga, de påverka alla LDAP-konfigurationer! Rensa aldrig mappningarna i en produktionsmiljö, bara i test- eller experimentläge.", "Clear Username-LDAP User Mapping" : "Rensa användarnamn-LDAP användarmappning", "Clear Groupname-LDAP Group Mapping" : "Rensa gruppnamn-LDAP gruppmappning", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "%uid-platshållaren saknas. Den kommer att ersättas med inloggningsnamn när LDAP / AD efterfrågas.", - "Verify settings and count groups" : "Verifiera inställningar och räkna grupper", - "Add a new and blank configuration" : "Skapa en ny och tom konfiguration", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Du behöver inte ange protokoll förutom om du använder SSL. Starta då med ldaps://", + " entries available within the provided Base DN" : "Poster tillgängliga inom angivet Base DN", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Varning: Apps user_ldap och user_webdavauth är inkompatibla. Oväntade problem kan uppstå. Be din systemadministratör att inaktivera en av dem.", - "in bytes" : "i bytes" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Varning: Apps user_ldap och user_webdavauth är inkompatibla. Oväntade problem kan uppstå. Be din systemadministratör att inaktivera en av dem." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/th.js b/apps/user_ldap/l10n/th.js index b04775e1ab77c..03a194f4b4989 100644 --- a/apps/user_ldap/l10n/th.js +++ b/apps/user_ldap/l10n/th.js @@ -22,7 +22,6 @@ OC.L10N.register( "{nthServer}. Server" : "เซิร์ฟเวอร์ {nthServer}", "No object found in the given Base DN. Please revise." : "ไม่พบวัตถุที่กำหนดใน Base DN กรุณาแก้ไข", "More than 1,000 directory entries available." : "ไดเรกทอรีมีอยู่มากกว่า 1,000 รายการ", - " entries available within the provided Base DN" : "รายการที่มีอยู่ใน Base DN", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "เกิดข้อผิดพลาด กรุณาตรวจสอบ Base DN เช่นเดียวกับการตั้งค่าการเชื่อมต่อและข้อมูลที่สำคัญ", "Do you really want to delete the current Server Configuration?" : "คุณแน่ใจแล้วหรือว่าต้องการลบการกำหนดค่าเซิร์ฟเวอร์ปัจจุบันทิ้งไป?", "Confirm Deletion" : "ยืนยันการลบทิ้ง", @@ -57,9 +56,7 @@ OC.L10N.register( "When logging in, %s will find the user based on the following attributes:" : "เมื่อเข้าสู่ระบบ %s จะได้พบกับผู้ใช้ตามลักษณะดังต่อไปนี้:", "LDAP / AD Username:" : "ชื่อผู้ใช้ LDAP/AD:", "LDAP / AD Email Address:" : "ที่อยู่อีเมล LDAP/AD:", - "Allows login against an email attribute. Mail and mailPrimaryAddress will be allowed." : "อนุญาตให้เข้าสู่ระบบด้วยอีเมล Mail และ mailPrimaryAddress จะได้รับอนุญาต", "Other Attributes:" : "คุณลักษณะอื่นๆ:", - "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" : "กำหนดตัวกรองที่จะใช้ เมื่อพยายามเข้าสู่ระบบจะใช้ %%uid แทนชื่อผู้ใช้ในการดำเนินการเข้าสู่ระบบ ตัวอย่าง: \"uid=%%uid\"", "Test Loginname" : "ทดสอบชื่อที่ใช้ในการเข้าสู่ระบบ", "Verify settings" : "ตรวจสอบการตั้งค่า", "1. Server" : "1. เซิร์ฟเวอร์", @@ -85,7 +82,6 @@ OC.L10N.register( "Saving" : "บันทึก", "Back" : "ย้อนกลับ", "Continue" : "ดำเนินการต่อ", - "LDAP" : "LDAP", "Server" : "เซิร์ฟเวอร์", "Users" : "ผู้ใช้งาน", "Login Attributes" : "คุณลักษณะการเข้าสู่ระบบ", @@ -139,12 +135,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "ชื่อผู้ใช้จะใช้ในการจัดเก็บและกำหนดข้อมูล (เมตา) เพื่อรู้จักกับผู้ใช้และสามารถระบุได้อย่างแม่นยำ แต่ละ LDAP จะมีชื่อผู้ใช้ภายใน จึงต้องทำ Mapping ให้กับผู้ใช้ LDAP ชื่อผู้ใช้ที่ถูกสร้างขึ้นจะถูกแมปเข้ากับ UUID ของผู้ใช้ LDAP นอกจากนี้ DN ก็จะถูกแคชเช่นกันเพื่อลดการทำงานร่วมกันของ LDAP แต่มันก็ไม่ได้ใช้เพื่อระบุตัวตน หากมีการเปลี่ยนแปลง DN การเปลี่ยนแปลงจะถูกพบในทันที ชื่อผู้ใช้ภายในจะถูกใช้กับทั้งหมด การล้างแมปไม่มีผลต่อการกำหนดค่า LDAP ทั้งหมด! \nและจะเกิดขึ้นเฉพาะในการทดสอบหรือขั้นตอนการทดลอง", "Clear Username-LDAP User Mapping" : "ล้าง Username-LDAP ผู้ใช้ Mapping", "Clear Groupname-LDAP Group Mapping" : "ล้าง Groupname-LDAP กลุ่ม Mapping", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "ตัวยึดตำแหน่ง %uid หายไป มันจะถูกแทนที่ด้วยชื่อที่ใช้ในการเข้าสู่ระบบเมื่อสอบถาม LDAP/AD", - "Verify settings and count groups" : "ตรวจสอบการตั้งค่าและจำนวนกลุ่มนับ", - "Allows login against the LDAP / AD username, which is either uid or samaccountname and will be detected." : "อนุญาตให้ผู้ใช้เข้าสู่ระบบ LDAP/AD ซึ่งเป็นทั้ง uid หรือ samAccountName และมันจะถูกตรวจพบ", - "Add a new and blank configuration" : "เพิ่มใหม่และการกำหนดค่าว่าง", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "คุณสามารถปล่อยช่องโปรโตคอลเว้นไว้ได้, ยกเว้นกรณีที่คุณต้องการใช้ SSL จากนั้นเริ่มต้นด้วย ldaps://", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "คำเตือน: แอพฯ user_ldap และ user_webdavauth เข้ากันไม่ได้ คุณอาจจะพบเหตุการณ์ที่ไม่คาดคิด กรุณาขอให้ผู้ดูแลระบบของคุณปิดการใช้งานบางอย่างของพวกเขา", - "in bytes" : "ในหน่วยไบต์" + " entries available within the provided Base DN" : "รายการที่มีอยู่ใน Base DN", + "LDAP" : "LDAP", + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "คำเตือน: แอพฯ user_ldap และ user_webdavauth เข้ากันไม่ได้ คุณอาจจะพบเหตุการณ์ที่ไม่คาดคิด กรุณาขอให้ผู้ดูแลระบบของคุณปิดการใช้งานบางอย่างของพวกเขา" }, "nplurals=1; plural=0;"); diff --git a/apps/user_ldap/l10n/th.json b/apps/user_ldap/l10n/th.json index 89e89ca3022d3..95519ebbe18fe 100644 --- a/apps/user_ldap/l10n/th.json +++ b/apps/user_ldap/l10n/th.json @@ -20,7 +20,6 @@ "{nthServer}. Server" : "เซิร์ฟเวอร์ {nthServer}", "No object found in the given Base DN. Please revise." : "ไม่พบวัตถุที่กำหนดใน Base DN กรุณาแก้ไข", "More than 1,000 directory entries available." : "ไดเรกทอรีมีอยู่มากกว่า 1,000 รายการ", - " entries available within the provided Base DN" : "รายการที่มีอยู่ใน Base DN", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "เกิดข้อผิดพลาด กรุณาตรวจสอบ Base DN เช่นเดียวกับการตั้งค่าการเชื่อมต่อและข้อมูลที่สำคัญ", "Do you really want to delete the current Server Configuration?" : "คุณแน่ใจแล้วหรือว่าต้องการลบการกำหนดค่าเซิร์ฟเวอร์ปัจจุบันทิ้งไป?", "Confirm Deletion" : "ยืนยันการลบทิ้ง", @@ -55,9 +54,7 @@ "When logging in, %s will find the user based on the following attributes:" : "เมื่อเข้าสู่ระบบ %s จะได้พบกับผู้ใช้ตามลักษณะดังต่อไปนี้:", "LDAP / AD Username:" : "ชื่อผู้ใช้ LDAP/AD:", "LDAP / AD Email Address:" : "ที่อยู่อีเมล LDAP/AD:", - "Allows login against an email attribute. Mail and mailPrimaryAddress will be allowed." : "อนุญาตให้เข้าสู่ระบบด้วยอีเมล Mail และ mailPrimaryAddress จะได้รับอนุญาต", "Other Attributes:" : "คุณลักษณะอื่นๆ:", - "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" : "กำหนดตัวกรองที่จะใช้ เมื่อพยายามเข้าสู่ระบบจะใช้ %%uid แทนชื่อผู้ใช้ในการดำเนินการเข้าสู่ระบบ ตัวอย่าง: \"uid=%%uid\"", "Test Loginname" : "ทดสอบชื่อที่ใช้ในการเข้าสู่ระบบ", "Verify settings" : "ตรวจสอบการตั้งค่า", "1. Server" : "1. เซิร์ฟเวอร์", @@ -83,7 +80,6 @@ "Saving" : "บันทึก", "Back" : "ย้อนกลับ", "Continue" : "ดำเนินการต่อ", - "LDAP" : "LDAP", "Server" : "เซิร์ฟเวอร์", "Users" : "ผู้ใช้งาน", "Login Attributes" : "คุณลักษณะการเข้าสู่ระบบ", @@ -137,12 +133,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "ชื่อผู้ใช้จะใช้ในการจัดเก็บและกำหนดข้อมูล (เมตา) เพื่อรู้จักกับผู้ใช้และสามารถระบุได้อย่างแม่นยำ แต่ละ LDAP จะมีชื่อผู้ใช้ภายใน จึงต้องทำ Mapping ให้กับผู้ใช้ LDAP ชื่อผู้ใช้ที่ถูกสร้างขึ้นจะถูกแมปเข้ากับ UUID ของผู้ใช้ LDAP นอกจากนี้ DN ก็จะถูกแคชเช่นกันเพื่อลดการทำงานร่วมกันของ LDAP แต่มันก็ไม่ได้ใช้เพื่อระบุตัวตน หากมีการเปลี่ยนแปลง DN การเปลี่ยนแปลงจะถูกพบในทันที ชื่อผู้ใช้ภายในจะถูกใช้กับทั้งหมด การล้างแมปไม่มีผลต่อการกำหนดค่า LDAP ทั้งหมด! \nและจะเกิดขึ้นเฉพาะในการทดสอบหรือขั้นตอนการทดลอง", "Clear Username-LDAP User Mapping" : "ล้าง Username-LDAP ผู้ใช้ Mapping", "Clear Groupname-LDAP Group Mapping" : "ล้าง Groupname-LDAP กลุ่ม Mapping", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "ตัวยึดตำแหน่ง %uid หายไป มันจะถูกแทนที่ด้วยชื่อที่ใช้ในการเข้าสู่ระบบเมื่อสอบถาม LDAP/AD", - "Verify settings and count groups" : "ตรวจสอบการตั้งค่าและจำนวนกลุ่มนับ", - "Allows login against the LDAP / AD username, which is either uid or samaccountname and will be detected." : "อนุญาตให้ผู้ใช้เข้าสู่ระบบ LDAP/AD ซึ่งเป็นทั้ง uid หรือ samAccountName และมันจะถูกตรวจพบ", - "Add a new and blank configuration" : "เพิ่มใหม่และการกำหนดค่าว่าง", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "คุณสามารถปล่อยช่องโปรโตคอลเว้นไว้ได้, ยกเว้นกรณีที่คุณต้องการใช้ SSL จากนั้นเริ่มต้นด้วย ldaps://", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "คำเตือน: แอพฯ user_ldap และ user_webdavauth เข้ากันไม่ได้ คุณอาจจะพบเหตุการณ์ที่ไม่คาดคิด กรุณาขอให้ผู้ดูแลระบบของคุณปิดการใช้งานบางอย่างของพวกเขา", - "in bytes" : "ในหน่วยไบต์" + " entries available within the provided Base DN" : "รายการที่มีอยู่ใน Base DN", + "LDAP" : "LDAP", + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "คำเตือน: แอพฯ user_ldap และ user_webdavauth เข้ากันไม่ได้ คุณอาจจะพบเหตุการณ์ที่ไม่คาดคิด กรุณาขอให้ผู้ดูแลระบบของคุณปิดการใช้งานบางอย่างของพวกเขา" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/tr.js b/apps/user_ldap/l10n/tr.js index 16530a546ceb1..0c0cea43199a7 100644 --- a/apps/user_ldap/l10n/tr.js +++ b/apps/user_ldap/l10n/tr.js @@ -33,7 +33,7 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. Sunucu", "No object found in the given Base DN. Please revise." : "Belirtilen Base DN içerisinde herhangi bir nesne bulunamadı. Lütfen gözden geçirin.", "More than 1,000 directory entries available." : "Kullanılabilecek 1000'den fazla dizin kaydı var.", - " entries available within the provided Base DN" : "kayıt belirtilen Base DN üzerinde var", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["Belirtilen Base DN üzerinde {objectsFound} kayıt var","Belirtilen Base DN üzerinde {objectsFound} kayıt var"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Bir sorun çıktı. Lütfen Base DN ile birlikte bağlantı ayarlarını ve kimlik doğrulama bilgilerini denetleyin.", "Do you really want to delete the current Server Configuration?" : "Geçerli sunucu yapılandırmasını silmek istediğinizden emin misiniz?", "Confirm Deletion" : "Silmeyi Onaylıyorum", @@ -187,12 +187,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Kullanıcı adları, (üst) veri depolaması ve ataması için kullanılır. Kullanıcıları kesin olarak belirlemek ve algılamak için, her LDAP kullanıcısına bir iç kullanıcı verilir. Bu kullanıcı adı ile LDAP kullanıcısının eşleştirilmesi gerekir. Oluşturulan kullanıcı adı LDAP kullanıcısının UUID değeri ile eşleştirilir. Bunun yanında LDAP etkileşimini azaltmak için DN ön belleğe alınır ancak bu işlem kimlik belirleme için kullanılmaz. DN üzerinde yapılan değişiklikler aktarılır. İç kullanıcı her yerde kullanıldığından, bir eşleştirmeyi kaldırmak pek çok yerde kalıntılar bırakır. Eşleştirmeleri kaldırmak yalnız yapılandırmaya bağlı değildir, tüm LDAP yapılandırmalarını etkiler! Üretim ortamında eşleştirmeleri asla kaldırmayın, yalnız sınama ya da deney aşamalarında kullanın.", "Clear Username-LDAP User Mapping" : "Kullanıcı Adı-LDAP Kullanıcısı Eşleştirmesini Kaldır", "Clear Groupname-LDAP Group Mapping" : "Grup Adı-LDAP Grubu Eşleştirmesini Kaldır", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "LDAP / AD sorgularında kullanıcı adı ile değiştirilecek %uid yer belirleyicisi eksik. ", - "Verify settings and count groups" : "Ayarları doğrula ve grupları say", - "Add a new and blank configuration" : "Yeni ve boş bir yapılandırma ekle", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "SSL gerekmiyorsa iletişim kuralı belirtilmeyebilir. Gerekiyorsa ldaps:// ile başlayın", + " entries available within the provided Base DN" : "kayıt belirtilen Base DN üzerinde var", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Uyarı: user_ldap ve user_webdavauth uygulamaları uyumlu değil. Beklenmedik bir davranışla karşılaşabilirsiniz. Lütfen ikisinden birini devre dışı bırakmak için sistem yöneticinizle görüşün.", - "in bytes" : "bayt cinsinden" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Uyarı: user_ldap ve user_webdavauth uygulamaları uyumlu değil. Beklenmedik bir davranışla karşılaşabilirsiniz. Lütfen ikisinden birini devre dışı bırakmak için sistem yöneticinizle görüşün." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/user_ldap/l10n/tr.json b/apps/user_ldap/l10n/tr.json index 575c698df75be..d9bd5f6212e14 100644 --- a/apps/user_ldap/l10n/tr.json +++ b/apps/user_ldap/l10n/tr.json @@ -31,7 +31,7 @@ "{nthServer}. Server" : "{nthServer}. Sunucu", "No object found in the given Base DN. Please revise." : "Belirtilen Base DN içerisinde herhangi bir nesne bulunamadı. Lütfen gözden geçirin.", "More than 1,000 directory entries available." : "Kullanılabilecek 1000'den fazla dizin kaydı var.", - " entries available within the provided Base DN" : "kayıt belirtilen Base DN üzerinde var", + "_{objectsFound} entry available within the provided Base DN_::_{objectsFound} entries available within the provided Base DN_" : ["Belirtilen Base DN üzerinde {objectsFound} kayıt var","Belirtilen Base DN üzerinde {objectsFound} kayıt var"], "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "Bir sorun çıktı. Lütfen Base DN ile birlikte bağlantı ayarlarını ve kimlik doğrulama bilgilerini denetleyin.", "Do you really want to delete the current Server Configuration?" : "Geçerli sunucu yapılandırmasını silmek istediğinizden emin misiniz?", "Confirm Deletion" : "Silmeyi Onaylıyorum", @@ -185,12 +185,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "Kullanıcı adları, (üst) veri depolaması ve ataması için kullanılır. Kullanıcıları kesin olarak belirlemek ve algılamak için, her LDAP kullanıcısına bir iç kullanıcı verilir. Bu kullanıcı adı ile LDAP kullanıcısının eşleştirilmesi gerekir. Oluşturulan kullanıcı adı LDAP kullanıcısının UUID değeri ile eşleştirilir. Bunun yanında LDAP etkileşimini azaltmak için DN ön belleğe alınır ancak bu işlem kimlik belirleme için kullanılmaz. DN üzerinde yapılan değişiklikler aktarılır. İç kullanıcı her yerde kullanıldığından, bir eşleştirmeyi kaldırmak pek çok yerde kalıntılar bırakır. Eşleştirmeleri kaldırmak yalnız yapılandırmaya bağlı değildir, tüm LDAP yapılandırmalarını etkiler! Üretim ortamında eşleştirmeleri asla kaldırmayın, yalnız sınama ya da deney aşamalarında kullanın.", "Clear Username-LDAP User Mapping" : "Kullanıcı Adı-LDAP Kullanıcısı Eşleştirmesini Kaldır", "Clear Groupname-LDAP Group Mapping" : "Grup Adı-LDAP Grubu Eşleştirmesini Kaldır", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "LDAP / AD sorgularında kullanıcı adı ile değiştirilecek %uid yer belirleyicisi eksik. ", - "Verify settings and count groups" : "Ayarları doğrula ve grupları say", - "Add a new and blank configuration" : "Yeni ve boş bir yapılandırma ekle", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "SSL gerekmiyorsa iletişim kuralı belirtilmeyebilir. Gerekiyorsa ldaps:// ile başlayın", + " entries available within the provided Base DN" : "kayıt belirtilen Base DN üzerinde var", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Uyarı: user_ldap ve user_webdavauth uygulamaları uyumlu değil. Beklenmedik bir davranışla karşılaşabilirsiniz. Lütfen ikisinden birini devre dışı bırakmak için sistem yöneticinizle görüşün.", - "in bytes" : "bayt cinsinden" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Uyarı: user_ldap ve user_webdavauth uygulamaları uyumlu değil. Beklenmedik bir davranışla karşılaşabilirsiniz. Lütfen ikisinden birini devre dışı bırakmak için sistem yöneticinizle görüşün." },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/uk.js b/apps/user_ldap/l10n/uk.js index 7bc2fbe8a3983..2bb85b2229f21 100644 --- a/apps/user_ldap/l10n/uk.js +++ b/apps/user_ldap/l10n/uk.js @@ -3,9 +3,6 @@ OC.L10N.register( { "Failed to clear the mappings." : "Не вдалося очистити відображення.", "Failed to delete the server configuration" : "Не вдалося видалити конфігурацію сервера", - "The configuration is valid and the connection could be established!" : "Конфігурація вірна і зв'язок може бути встановлений ​​!", - "The configuration is valid, but the Bind failed. Please check the server settings and credentials." : "Конфігурація вірна, але встановити зв'язок не вдалося. Будь ласка, перевірте налаштування сервера і облікові дані.", - "The configuration is invalid. Please have a look at the logs for further details." : "Конфігурація є недійсною. Будь ласка, дивіться журнали для отримання додаткової інформації.", "No action specified" : "Ніяких дій не вказано", "No configuration specified" : "Немає конфігурації", "No data specified" : "Немає даних", @@ -26,12 +23,8 @@ OC.L10N.register( "User found and settings verified." : "Користувача знайдено і налаштування перевірені.", "_%s group found_::_%s groups found_" : [" %s група знайдена "," %s груп знайдено ","%s груп знайдено "], "_%s user found_::_%s users found_" : ["%s користувача знайдено","%s користувачів знайдено","%s користувачів знайдено"], - "Could not detect user display name attribute. Please specify it yourself in advanced ldap settings." : "Не вдалося виявити ім'я користувача. Будь ласка, сформулюйте самі в розширених налаштуваннях LDAP.", "Could not find the desired feature" : "Не вдалося знайти потрібну функцію", "Invalid Host" : "Невірний Host", - "Server" : "Сервер", - "Users" : "Користувачі", - "Groups" : "Групи", "Test Configuration" : "Тестове налаштування", "Help" : "Допомога", "Groups meeting these criteria are available in %s:" : "Групи, що відповідають цим критеріям доступні в %s:", @@ -43,11 +36,9 @@ OC.L10N.register( "The filter specifies which LDAP groups shall have access to the %s instance." : "Фільтр визначає, які LDAP групи повинні мати доступ до %s примірника.", "LDAP / AD Email Address:" : "LDAP / AD Email адреса:", "Other Attributes:" : "Інші Атрибути:", - "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" : "Визначає фільтр, який слід застосовувати при спробі входу.\n%%uid замінює ім'я користувача при вході в систему. Приклад: \"uid=%%uid\"", "1. Server" : "1. Сервер", "%s. Server:" : "%s. Сервер:", "Host" : "Хост", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Можна не вказувати протокол, якщо вам не потрібен SSL. Тоді почніть з ldaps://", "Port" : "Порт", "Detect Port" : "Визначити Порт", "User DN" : "DN Користувача", @@ -62,10 +53,11 @@ OC.L10N.register( "Saving" : "Збереження", "Back" : "Назад", "Continue" : "Продовжити", - "LDAP" : "LDAP", + "Server" : "Сервер", + "Users" : "Користувачі", + "Groups" : "Групи", "Expert" : "Експерт", "Advanced" : "Додатково", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Попередження: Застосунки user_ldap та user_webdavauth не сумісні. Ви можете зіткнутися з несподіваною поведінкою. Будь ласка, зверніться до системного адміністратора, щоб відключити одну з них.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "Увага: Потрібний модуль PHP LDAP не встановлено, базова програма працювати не буде. Будь ласка, зверніться до системного адміністратора, щоб встановити його.", "Connection Settings" : "Налаштування З'єднання", "Configuration Active" : "Налаштування Активне", @@ -99,12 +91,10 @@ OC.L10N.register( "Special Attributes" : "Спеціальні Атрибути", "Quota Field" : "Поле Квоти", "Quota Default" : "Квота за замовчанням", - "in bytes" : "в байтах", "Email Field" : "Поле E-mail", "User Home Folder Naming Rule" : "Правило іменування домашньої теки користувача", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." : "Залиште порожнім для імені користувача (за замовчанням). Інакше, вкажіть атрибут LDAP/AD.", "Internal Username" : "Внутрішня Ім'я користувача", - "By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." : "За замовчуванням внутрішнє ім'я користувача буде створено з атрибуту UUID. Таким чином ім'я користувача є унікальним і не потребує перетворення символів. Внутрішнє ім'я користувача може складатися лише з наступних символів: [A-Za-z0-9 _ @ -.]. Інші символи заміняються відповідними з таблиці ASCII або пропускаються. При збігу до імені буде додано або збільшено число. Внутрішнє ім'я користувача використовується для внутрішньої ідентифікації користувача. Це також ім'я за замовчуванням для домашньої теки користувача та частина віддалених URL, наприклад, для всіх сервісів *DAV. За допомогою цієї установки можна змінити поведінку за замовчуванням. Для досягнення поведінки, що була до OwnCloud 5, введіть атрибут ім'я користувача, що відображається, в наступне поле. Залиште порожнім для режиму за замовчуванням. Зміни будуть діяти тільки для нових підключень (доданих) користувачів LDAP.", "Internal Username Attribute:" : "Внутрішня Ім'я користувача, Атрибут:", "Override UUID detection" : "Перекрити вивід UUID ", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." : "За замовчуванням ownCloud визначає атрибут UUID автоматично. Цей атрибут використовується для того, щоб достовірно ідентифікувати користувачів і групи LDAP. Також на підставі атрибута UUID створюється внутрішнє ім'я користувача, якщо вище не вказано інакше. Ви можете перевизначити це налаштування та вказати свій атрибут за вибором. Ви повинні упевнитися, що обраний вами атрибут може бути вибраний для користувачів і груп, а також те, що він унікальний. Залиште поле порожнім для поведінки за замовчуванням. Зміни вступлять в силу тільки для нових підключених (доданих) користувачів і груп LDAP.", @@ -113,6 +103,8 @@ OC.L10N.register( "Username-LDAP User Mapping" : "Картографія Імен користувачів-LDAP ", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "ownCloud використовує імена користувачів для зберігання та призначення метаданих. Для точної ідентифікації та розпізнавання користувачів, кожен користувач LDAP буде мати своє внутрішнє ім'я користувача. Це вимагає прив'язки імені користувача ownCloud до користувача LDAP. При створенні ім'я користувача призначається ідентифікатором UUID користувача LDAP. Крім цього кешируєтся доменне ім'я (DN) для зменшення числа звернень до LDAP, однак воно не використовується для ідентифікації. Якщо доменне ім'я було змінено, про це стане відомо ownCloud. Внутрішнє ім'я ownCloud використовується повсюдно в ownCloud. Після скидання прив'язок в базі можуть зберегтися залишки старої інформації. Скидання прив'язок не прив'язане до конфігурації, воно вплине на всі LDAP підключення! Ні в якому разі не рекомендується скидати прив'язки якщо система вже знаходиться в експлуатації, тільки на етапі тестування.", "Clear Username-LDAP User Mapping" : "Очистити картографію Імен користувачів-LDAP", - "Clear Groupname-LDAP Group Mapping" : "Очистити картографію Імен груп-LDAP" + "Clear Groupname-LDAP Group Mapping" : "Очистити картографію Імен груп-LDAP", + "LDAP" : "LDAP", + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Попередження: Застосунки user_ldap та user_webdavauth не сумісні. Ви можете зіткнутися з несподіваною поведінкою. Будь ласка, зверніться до системного адміністратора, щоб відключити одну з них." }, "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/apps/user_ldap/l10n/uk.json b/apps/user_ldap/l10n/uk.json index 056dcd1917abf..b7fcbbf031ca5 100644 --- a/apps/user_ldap/l10n/uk.json +++ b/apps/user_ldap/l10n/uk.json @@ -1,9 +1,6 @@ { "translations": { "Failed to clear the mappings." : "Не вдалося очистити відображення.", "Failed to delete the server configuration" : "Не вдалося видалити конфігурацію сервера", - "The configuration is valid and the connection could be established!" : "Конфігурація вірна і зв'язок може бути встановлений ​​!", - "The configuration is valid, but the Bind failed. Please check the server settings and credentials." : "Конфігурація вірна, але встановити зв'язок не вдалося. Будь ласка, перевірте налаштування сервера і облікові дані.", - "The configuration is invalid. Please have a look at the logs for further details." : "Конфігурація є недійсною. Будь ласка, дивіться журнали для отримання додаткової інформації.", "No action specified" : "Ніяких дій не вказано", "No configuration specified" : "Немає конфігурації", "No data specified" : "Немає даних", @@ -24,12 +21,8 @@ "User found and settings verified." : "Користувача знайдено і налаштування перевірені.", "_%s group found_::_%s groups found_" : [" %s група знайдена "," %s груп знайдено ","%s груп знайдено "], "_%s user found_::_%s users found_" : ["%s користувача знайдено","%s користувачів знайдено","%s користувачів знайдено"], - "Could not detect user display name attribute. Please specify it yourself in advanced ldap settings." : "Не вдалося виявити ім'я користувача. Будь ласка, сформулюйте самі в розширених налаштуваннях LDAP.", "Could not find the desired feature" : "Не вдалося знайти потрібну функцію", "Invalid Host" : "Невірний Host", - "Server" : "Сервер", - "Users" : "Користувачі", - "Groups" : "Групи", "Test Configuration" : "Тестове налаштування", "Help" : "Допомога", "Groups meeting these criteria are available in %s:" : "Групи, що відповідають цим критеріям доступні в %s:", @@ -41,11 +34,9 @@ "The filter specifies which LDAP groups shall have access to the %s instance." : "Фільтр визначає, які LDAP групи повинні мати доступ до %s примірника.", "LDAP / AD Email Address:" : "LDAP / AD Email адреса:", "Other Attributes:" : "Інші Атрибути:", - "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" : "Визначає фільтр, який слід застосовувати при спробі входу.\n%%uid замінює ім'я користувача при вході в систему. Приклад: \"uid=%%uid\"", "1. Server" : "1. Сервер", "%s. Server:" : "%s. Сервер:", "Host" : "Хост", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "Можна не вказувати протокол, якщо вам не потрібен SSL. Тоді почніть з ldaps://", "Port" : "Порт", "Detect Port" : "Визначити Порт", "User DN" : "DN Користувача", @@ -60,10 +51,11 @@ "Saving" : "Збереження", "Back" : "Назад", "Continue" : "Продовжити", - "LDAP" : "LDAP", + "Server" : "Сервер", + "Users" : "Користувачі", + "Groups" : "Групи", "Expert" : "Експерт", "Advanced" : "Додатково", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Попередження: Застосунки user_ldap та user_webdavauth не сумісні. Ви можете зіткнутися з несподіваною поведінкою. Будь ласка, зверніться до системного адміністратора, щоб відключити одну з них.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "Увага: Потрібний модуль PHP LDAP не встановлено, базова програма працювати не буде. Будь ласка, зверніться до системного адміністратора, щоб встановити його.", "Connection Settings" : "Налаштування З'єднання", "Configuration Active" : "Налаштування Активне", @@ -97,12 +89,10 @@ "Special Attributes" : "Спеціальні Атрибути", "Quota Field" : "Поле Квоти", "Quota Default" : "Квота за замовчанням", - "in bytes" : "в байтах", "Email Field" : "Поле E-mail", "User Home Folder Naming Rule" : "Правило іменування домашньої теки користувача", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." : "Залиште порожнім для імені користувача (за замовчанням). Інакше, вкажіть атрибут LDAP/AD.", "Internal Username" : "Внутрішня Ім'я користувача", - "By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." : "За замовчуванням внутрішнє ім'я користувача буде створено з атрибуту UUID. Таким чином ім'я користувача є унікальним і не потребує перетворення символів. Внутрішнє ім'я користувача може складатися лише з наступних символів: [A-Za-z0-9 _ @ -.]. Інші символи заміняються відповідними з таблиці ASCII або пропускаються. При збігу до імені буде додано або збільшено число. Внутрішнє ім'я користувача використовується для внутрішньої ідентифікації користувача. Це також ім'я за замовчуванням для домашньої теки користувача та частина віддалених URL, наприклад, для всіх сервісів *DAV. За допомогою цієї установки можна змінити поведінку за замовчуванням. Для досягнення поведінки, що була до OwnCloud 5, введіть атрибут ім'я користувача, що відображається, в наступне поле. Залиште порожнім для режиму за замовчуванням. Зміни будуть діяти тільки для нових підключень (доданих) користувачів LDAP.", "Internal Username Attribute:" : "Внутрішня Ім'я користувача, Атрибут:", "Override UUID detection" : "Перекрити вивід UUID ", "By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." : "За замовчуванням ownCloud визначає атрибут UUID автоматично. Цей атрибут використовується для того, щоб достовірно ідентифікувати користувачів і групи LDAP. Також на підставі атрибута UUID створюється внутрішнє ім'я користувача, якщо вище не вказано інакше. Ви можете перевизначити це налаштування та вказати свій атрибут за вибором. Ви повинні упевнитися, що обраний вами атрибут може бути вибраний для користувачів і груп, а також те, що він унікальний. Залиште поле порожнім для поведінки за замовчуванням. Зміни вступлять в силу тільки для нових підключених (доданих) користувачів і груп LDAP.", @@ -111,6 +101,8 @@ "Username-LDAP User Mapping" : "Картографія Імен користувачів-LDAP ", "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "ownCloud використовує імена користувачів для зберігання та призначення метаданих. Для точної ідентифікації та розпізнавання користувачів, кожен користувач LDAP буде мати своє внутрішнє ім'я користувача. Це вимагає прив'язки імені користувача ownCloud до користувача LDAP. При створенні ім'я користувача призначається ідентифікатором UUID користувача LDAP. Крім цього кешируєтся доменне ім'я (DN) для зменшення числа звернень до LDAP, однак воно не використовується для ідентифікації. Якщо доменне ім'я було змінено, про це стане відомо ownCloud. Внутрішнє ім'я ownCloud використовується повсюдно в ownCloud. Після скидання прив'язок в базі можуть зберегтися залишки старої інформації. Скидання прив'язок не прив'язане до конфігурації, воно вплине на всі LDAP підключення! Ні в якому разі не рекомендується скидати прив'язки якщо система вже знаходиться в експлуатації, тільки на етапі тестування.", "Clear Username-LDAP User Mapping" : "Очистити картографію Імен користувачів-LDAP", - "Clear Groupname-LDAP Group Mapping" : "Очистити картографію Імен груп-LDAP" + "Clear Groupname-LDAP Group Mapping" : "Очистити картографію Імен груп-LDAP", + "LDAP" : "LDAP", + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "Попередження: Застосунки user_ldap та user_webdavauth не сумісні. Ви можете зіткнутися з несподіваною поведінкою. Будь ласка, зверніться до системного адміністратора, щоб відключити одну з них." },"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);" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/zh_CN.js b/apps/user_ldap/l10n/zh_CN.js index 9279b9c26b36c..1075f0d41467c 100644 --- a/apps/user_ldap/l10n/zh_CN.js +++ b/apps/user_ldap/l10n/zh_CN.js @@ -33,7 +33,6 @@ OC.L10N.register( "{nthServer}. Server" : "{nthServer}. 服务器", "No object found in the given Base DN. Please revise." : "基础DN中未能找到指定对象,请检查。", "More than 1,000 directory entries available." : "超过1000个可用目录条目。", - " entries available within the provided Base DN" : "基础DN中的可用条目", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "发生错误。请检查基本DN,以及连接设置和凭据。", "Do you really want to delete the current Server Configuration?" : "您真的想要删除当前服务器配置吗?", "Confirm Deletion" : "确认删除", @@ -187,12 +186,8 @@ OC.L10N.register( "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "用户名用于存储和分配数据 (元)。为了准确地识别和确认用户,每个用户都有一个内部用户名。这需要一个 ownCloud 用户名到 LDAP 用户的映射。创建的用户名被映射到 LDAP 用户的 UUID。此外,DN 也会被缓存,以减少 LDAP 连接,但它不用于识别。DN 的变化会被监视到。内部用户名会被用于所有地方。清除映射将导致一片混乱。清除映射不是常用的设置,它会影响到所有的 LDAP 配置!千万不要在正式环境中清除映射,只有在测试或试验时才这样做。", "Clear Username-LDAP User Mapping" : "清除用户-LDAP用户映射", "Clear Groupname-LDAP Group Mapping" : "清除组用户-LDAP级映射", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "该%uid占位符缺失。它将在LDAP/ AD登录名查询时进行替换。", - "Verify settings and count groups" : "验证设置和统计组", - "Add a new and blank configuration" : "添加一个新的空白配置", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "可以忽略协议,但如要使用SSL,则需以ldaps://开头", + " entries available within the provided Base DN" : "基础DN中的可用条目", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "警告: 应用 user_ldap 和 user_webdavauth 之间不兼容。您可能遭遇未预料的行为。请让系统管理员禁用其中一个。", - "in bytes" : "字节数" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "警告: 应用 user_ldap 和 user_webdavauth 之间不兼容。您可能遭遇未预料的行为。请让系统管理员禁用其中一个。" }, "nplurals=1; plural=0;"); diff --git a/apps/user_ldap/l10n/zh_CN.json b/apps/user_ldap/l10n/zh_CN.json index 26b0391770b79..6c11d9e1c4e31 100644 --- a/apps/user_ldap/l10n/zh_CN.json +++ b/apps/user_ldap/l10n/zh_CN.json @@ -31,7 +31,6 @@ "{nthServer}. Server" : "{nthServer}. 服务器", "No object found in the given Base DN. Please revise." : "基础DN中未能找到指定对象,请检查。", "More than 1,000 directory entries available." : "超过1000个可用目录条目。", - " entries available within the provided Base DN" : "基础DN中的可用条目", "An error occurred. Please check the Base DN, as well as connection settings and credentials." : "发生错误。请检查基本DN,以及连接设置和凭据。", "Do you really want to delete the current Server Configuration?" : "您真的想要删除当前服务器配置吗?", "Confirm Deletion" : "确认删除", @@ -185,12 +184,8 @@ "Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have an internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." : "用户名用于存储和分配数据 (元)。为了准确地识别和确认用户,每个用户都有一个内部用户名。这需要一个 ownCloud 用户名到 LDAP 用户的映射。创建的用户名被映射到 LDAP 用户的 UUID。此外,DN 也会被缓存,以减少 LDAP 连接,但它不用于识别。DN 的变化会被监视到。内部用户名会被用于所有地方。清除映射将导致一片混乱。清除映射不是常用的设置,它会影响到所有的 LDAP 配置!千万不要在正式环境中清除映射,只有在测试或试验时才这样做。", "Clear Username-LDAP User Mapping" : "清除用户-LDAP用户映射", "Clear Groupname-LDAP Group Mapping" : "清除组用户-LDAP级映射", - "The %uid placeholder is missing. It will be replaced with the login name when querying LDAP / AD." : "该%uid占位符缺失。它将在LDAP/ AD登录名查询时进行替换。", - "Verify settings and count groups" : "验证设置和统计组", - "Add a new and blank configuration" : "添加一个新的空白配置", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "可以忽略协议,但如要使用SSL,则需以ldaps://开头", + " entries available within the provided Base DN" : "基础DN中的可用条目", "LDAP" : "LDAP", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "警告: 应用 user_ldap 和 user_webdavauth 之间不兼容。您可能遭遇未预料的行为。请让系统管理员禁用其中一个。", - "in bytes" : "字节数" + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "警告: 应用 user_ldap 和 user_webdavauth 之间不兼容。您可能遭遇未预料的行为。请让系统管理员禁用其中一个。" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/user_ldap/l10n/zh_TW.js b/apps/user_ldap/l10n/zh_TW.js index a1d33015abf86..0f4118c24d7ab 100644 --- a/apps/user_ldap/l10n/zh_TW.js +++ b/apps/user_ldap/l10n/zh_TW.js @@ -3,10 +3,6 @@ OC.L10N.register( { "Failed to clear the mappings." : "清除映射失敗", "Failed to delete the server configuration" : "刪除伺服器設定時失敗", - "The configuration is invalid: anonymous bind is not allowed." : "設定檔無效: 不允許匿名使者", - "The configuration is valid and the connection could be established!" : "設定有效且連線可建立", - "The configuration is valid, but the Bind failed. Please check the server settings and credentials." : "設定有效但連線無法建立,請檢查伺服器設定與認證資料。", - "The configuration is invalid. Please have a look at the logs for further details." : "設定無效,更多細節請參閱 ownCloud 的記錄檔。", "No action specified" : "沒有指定操作", "No configuration specified" : "沒有指定設定", "No data specified" : "沒有指定資料", @@ -36,15 +32,12 @@ OC.L10N.register( "Switching the mode will enable automatic LDAP queries. Depending on your LDAP size they may take a while. Do you still want to switch the mode?" : "切換模式會使LDAP自動抓取資訊,抓取資訊的時間依您的LDAP大小而定,可能會花一點時間,您確定要切換模式?", "Mode switch" : "模式切換", "Select attributes" : "選擇屬性", - "User not found. Please check your login attributes and username. Effective filter (to copy-and-paste for command line validation):
" : "找不到使用者,請檢查您的登入資料以及使用者名稱。驗證(複製貼上到命令提示位元做認證):
", "User found and settings verified." : "使用者存在,設定值正確", - "An unspecified error occurred. Please check the settings and the log." : "發生預期之外的錯誤,請檢查設定和記錄檔", "A connection error to LDAP / AD occurred, please check host, port and credentials." : "連線到 LDAP/AD出現錯誤,請檢查主機,連接阜和驗證資訊", "Please provide a login name to test against" : "請提供登入姓名以便再次測試", "The group box was disabled, because the LDAP / AD server does not support memberOf." : "群組盒已經停用,LDAP/AD 伺服器並不支援", "_%s group found_::_%s groups found_" : ["找到 %s 群組"], "_%s user found_::_%s users found_" : ["找到 %s 使用者"], - "Could not detect user display name attribute. Please specify it yourself in advanced ldap settings." : "無法偵測使用者的顯示名稱,請您自行在ldap設定中指定", "Could not find the desired feature" : "無法找到所需的功能", "Invalid Host" : "無效的Host", "Test Configuration" : "測試此設定", @@ -59,7 +52,6 @@ OC.L10N.register( "LDAP / AD Username:" : "LDAP / AD 使用者名稱:", "LDAP / AD Email Address:" : "LDAP / AD 電子郵件:", "Other Attributes:" : "其他屬性:", - "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" : "試圖登入時會定義要套用的篩選器。登入過程中%%uid會取代使用者名稱。例如:\"uid=%%uid\"", "Test Loginname" : "測試登入姓名", "Verify settings" : "驗證設定", "1. Server" : "1. 伺服器", @@ -83,13 +75,11 @@ OC.L10N.register( "Saving" : "儲存", "Back" : "返回", "Continue" : "繼續", - "LDAP" : "LDAP", "Server" : "伺服器", "Users" : "使用者", "Login Attributes" : "登入的設定", "Groups" : "群組", "Advanced" : "進階", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "警告: 應用程式user_ldap和user_webdavauth互不相容。可能會造成無法預期的結果。請要求您的系統管理員將兩者其中之一停用。", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "警告:沒有安裝 PHP LDAP 模組,後端系統將無法運作,請要求您的系統管理員安裝模組。", "Connection Settings" : "連線設定", "Configuration Active" : "設定使用中", @@ -126,9 +116,7 @@ OC.L10N.register( "Override UUID detection" : "偵測覆寫UUID", "UUID Attribute for Users:" : "使用者的UUID值:", "UUID Attribute for Groups:" : "群組的UUID值:", - "Verify settings and count groups" : "驗證設定並計算群組數", - "Add a new and blank configuration" : "新增一個空白的設定檔", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "若您不需要 SSL 加密連線則不需輸入通訊協定,反之請輸入 ldaps://", - "in bytes" : "以位元組為單位" + "LDAP" : "LDAP", + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "警告: 應用程式user_ldap和user_webdavauth互不相容。可能會造成無法預期的結果。請要求您的系統管理員將兩者其中之一停用。" }, "nplurals=1; plural=0;"); diff --git a/apps/user_ldap/l10n/zh_TW.json b/apps/user_ldap/l10n/zh_TW.json index 0275b15c270f0..b43aec23cd344 100644 --- a/apps/user_ldap/l10n/zh_TW.json +++ b/apps/user_ldap/l10n/zh_TW.json @@ -1,10 +1,6 @@ { "translations": { "Failed to clear the mappings." : "清除映射失敗", "Failed to delete the server configuration" : "刪除伺服器設定時失敗", - "The configuration is invalid: anonymous bind is not allowed." : "設定檔無效: 不允許匿名使者", - "The configuration is valid and the connection could be established!" : "設定有效且連線可建立", - "The configuration is valid, but the Bind failed. Please check the server settings and credentials." : "設定有效但連線無法建立,請檢查伺服器設定與認證資料。", - "The configuration is invalid. Please have a look at the logs for further details." : "設定無效,更多細節請參閱 ownCloud 的記錄檔。", "No action specified" : "沒有指定操作", "No configuration specified" : "沒有指定設定", "No data specified" : "沒有指定資料", @@ -34,15 +30,12 @@ "Switching the mode will enable automatic LDAP queries. Depending on your LDAP size they may take a while. Do you still want to switch the mode?" : "切換模式會使LDAP自動抓取資訊,抓取資訊的時間依您的LDAP大小而定,可能會花一點時間,您確定要切換模式?", "Mode switch" : "模式切換", "Select attributes" : "選擇屬性", - "User not found. Please check your login attributes and username. Effective filter (to copy-and-paste for command line validation):
" : "找不到使用者,請檢查您的登入資料以及使用者名稱。驗證(複製貼上到命令提示位元做認證):
", "User found and settings verified." : "使用者存在,設定值正確", - "An unspecified error occurred. Please check the settings and the log." : "發生預期之外的錯誤,請檢查設定和記錄檔", "A connection error to LDAP / AD occurred, please check host, port and credentials." : "連線到 LDAP/AD出現錯誤,請檢查主機,連接阜和驗證資訊", "Please provide a login name to test against" : "請提供登入姓名以便再次測試", "The group box was disabled, because the LDAP / AD server does not support memberOf." : "群組盒已經停用,LDAP/AD 伺服器並不支援", "_%s group found_::_%s groups found_" : ["找到 %s 群組"], "_%s user found_::_%s users found_" : ["找到 %s 使用者"], - "Could not detect user display name attribute. Please specify it yourself in advanced ldap settings." : "無法偵測使用者的顯示名稱,請您自行在ldap設定中指定", "Could not find the desired feature" : "無法找到所需的功能", "Invalid Host" : "無效的Host", "Test Configuration" : "測試此設定", @@ -57,7 +50,6 @@ "LDAP / AD Username:" : "LDAP / AD 使用者名稱:", "LDAP / AD Email Address:" : "LDAP / AD 電子郵件:", "Other Attributes:" : "其他屬性:", - "Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: \"uid=%%uid\"" : "試圖登入時會定義要套用的篩選器。登入過程中%%uid會取代使用者名稱。例如:\"uid=%%uid\"", "Test Loginname" : "測試登入姓名", "Verify settings" : "驗證設定", "1. Server" : "1. 伺服器", @@ -81,13 +73,11 @@ "Saving" : "儲存", "Back" : "返回", "Continue" : "繼續", - "LDAP" : "LDAP", "Server" : "伺服器", "Users" : "使用者", "Login Attributes" : "登入的設定", "Groups" : "群組", "Advanced" : "進階", - "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "警告: 應用程式user_ldap和user_webdavauth互不相容。可能會造成無法預期的結果。請要求您的系統管理員將兩者其中之一停用。", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." : "警告:沒有安裝 PHP LDAP 模組,後端系統將無法運作,請要求您的系統管理員安裝模組。", "Connection Settings" : "連線設定", "Configuration Active" : "設定使用中", @@ -124,9 +114,7 @@ "Override UUID detection" : "偵測覆寫UUID", "UUID Attribute for Users:" : "使用者的UUID值:", "UUID Attribute for Groups:" : "群組的UUID值:", - "Verify settings and count groups" : "驗證設定並計算群組數", - "Add a new and blank configuration" : "新增一個空白的設定檔", - "You can omit the protocol, except you require SSL. Then start with ldaps://" : "若您不需要 SSL 加密連線則不需輸入通訊協定,反之請輸入 ldaps://", - "in bytes" : "以位元組為單位" + "LDAP" : "LDAP", + "Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." : "警告: 應用程式user_ldap和user_webdavauth互不相容。可能會造成無法預期的結果。請要求您的系統管理員將兩者其中之一停用。" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/user_ldap/lib/Access.php b/apps/user_ldap/lib/Access.php index b84f5a38b3141..f2fc43ed9b830 100644 --- a/apps/user_ldap/lib/Access.php +++ b/apps/user_ldap/lib/Access.php @@ -168,12 +168,14 @@ public function getConnection() { /** * reads a given attribute for an LDAP record identified by a DN + * * @param string $dn the record in question * @param string $attr the attribute that shall be retrieved * if empty, just check the record's existence * @param string $filter * @return array|false an array of values on success or an empty * array if $attr is empty, false otherwise + * @throws ServerNotAvailableException */ public function readAttribute($dn, $attr, $filter = 'objectClass=*') { if(!$this->checkConnection()) { @@ -255,6 +257,7 @@ public function readAttribute($dn, $attr, $filter = 'objectClass=*') { * @return array|bool false if there was any error, true if an exists check * was performed and the requested DN found, array with the * returned data on a successful usual operation + * @throws ServerNotAvailableException */ public function executeRead($cr, $dn, $attribute, $filter, $maxResults) { $this->initPagedSearch($filter, array($dn), array($attribute), $maxResults, 0); @@ -470,6 +473,7 @@ public function dn2groupname($fdn, $ldapName = null) { * * @param string[] $groupDNs * @return string[] + * @throws ServerNotAvailableException */ public function groupsMatchFilter($groupDNs) { $validGroupDNs = []; @@ -490,7 +494,7 @@ public function groupsMatchFilter($groupDNs) { continue; } - $result = $this->readAttribute($dn, 'cn', $this->connection->ldapGroupFilter); + $result = $this->readAttribute($dn, '', $this->connection->ldapGroupFilter); if(is_array($result)) { $this->connection->writeToCache($cacheKey, true); $validGroupDNs[] = $dn; @@ -577,7 +581,19 @@ public function dn2ocname($fdn, $ldapName = null, $isUser = true, &$newlyMapped } else { $username = $uuid; } - $intName = $this->sanitizeUsername($username); + try { + $intName = $this->sanitizeUsername($username); + } catch (\InvalidArgumentException $e) { + \OC::$server->getLogger()->logException($e, [ + 'app' => 'user_ldap', + 'level' => Util::WARN, + ]); + // we don't attempt to set a username here. We can go for + // for an alternative 4 digit random number as we would append + // otherwise, however it's likely not enough space in bigger + // setups, and most importantly: this is not intended. + return false; + } } else { $intName = $ldapName; } @@ -1291,16 +1307,22 @@ public function search($filter, $base, $attr = null, $limit = null, $offset = nu /** * @param string $name - * @return bool|mixed|string + * @return string + * @throws \InvalidArgumentException */ public function sanitizeUsername($name) { + $name = trim($name); + if($this->connection->ldapIgnoreNamingRules) { - return trim($name); + return $name; } - // Transliteration - // latin characters to ASCII - $name = iconv('UTF-8', 'ASCII//TRANSLIT', $name); + // Transliteration to ASCII + $transliterated = @iconv('UTF-8', 'ASCII//TRANSLIT', $name); + if($transliterated !== false) { + // depending on system config iconv can work or not + $name = $transliterated; + } // Replacements $name = str_replace(' ', '_', $name); @@ -1308,6 +1330,10 @@ public function sanitizeUsername($name) { // Every remaining disallowed characters will be removed $name = preg_replace('/[^a-zA-Z0-9_.@-]/u', '', $name); + if($name === '') { + throw new \InvalidArgumentException('provided name template for username does not contain any allowed characters'); + } + return $name; } diff --git a/apps/user_ldap/lib/Connection.php b/apps/user_ldap/lib/Connection.php index c73a35e6bf194..ab1ab11de4706 100644 --- a/apps/user_ldap/lib/Connection.php +++ b/apps/user_ldap/lib/Connection.php @@ -86,6 +86,8 @@ class Connection extends LDAPUtility { protected $ignoreValidation = false; + protected $bindResult = []; + /** * Constructor * @param ILDAPWrapper $ldap @@ -113,7 +115,8 @@ public function __construct(ILDAPWrapper $ldap, $configPrefix = '', $configID = public function __destruct() { if(!$this->dontDestruct && $this->ldap->isResource($this->ldapConnectionRes)) { @$this->ldap->unbind($this->ldapConnectionRes); - }; + } + $this->bindResult = []; } /** @@ -202,6 +205,7 @@ public function resetConnectionResource() { if(!is_null($this->ldapConnectionRes)) { @$this->ldap->unbind($this->ldapConnectionRes); $this->ldapConnectionRes = null; + $this->bindResult = []; } } @@ -214,7 +218,7 @@ private function getCacheKey($key) { if(is_null($key)) { return $prefix; } - return $prefix.md5($key); + return $prefix.hash('sha256', $key); } /** @@ -560,6 +564,7 @@ private function establishConnection() { if($isBackupHost && ($error !== 0 || $isOverrideMainServer)) { $this->doConnect($this->configuration->ldapBackupHost, $this->configuration->ldapBackupPort); + $this->bindResult = []; $bindStatus = $this->bind(); $error = $this->ldap->isResource($this->ldapConnectionRes) ? $this->ldap->errno($this->ldapConnectionRes) : -1; @@ -612,13 +617,35 @@ public function bind() { if(!$this->configuration->ldapConfigurationActive) { return false; } - $cr = $this->getConnectionResource(); + $cr = $this->ldapConnectionRes; if(!$this->ldap->isResource($cr)) { - return false; + $cr = $this->getConnectionResource(); } + + if( + count($this->bindResult) !== 0 + && $this->bindResult['dn'] === $this->configuration->ldapAgentName + && \OC::$server->getHasher()->verify( + $this->configPrefix . $this->configuration->ldapAgentPassword, + $this->bindResult['hash'] + ) + ) { + // don't attempt to bind again with the same data as before + // bind might have been invoked via getConnectionResource(), + // but we need results specifically for e.g. user login + return $this->bindResult['result']; + } + $ldapLogin = @$this->ldap->bind($cr, $this->configuration->ldapAgentName, $this->configuration->ldapAgentPassword); + + $this->bindResult = [ + 'dn' => $this->configuration->ldapAgentName, + 'hash' => \OC::$server->getHasher()->hash($this->configPrefix . $this->configuration->ldapAgentPassword), + 'result' => $ldapLogin, + ]; + if(!$ldapLogin) { $errno = $this->ldap->errno($cr); diff --git a/apps/user_ldap/lib/Group_LDAP.php b/apps/user_ldap/lib/Group_LDAP.php index 3faa96bc2b847..0f4bb2d8b6a52 100644 --- a/apps/user_ldap/lib/Group_LDAP.php +++ b/apps/user_ldap/lib/Group_LDAP.php @@ -207,6 +207,7 @@ public function getDynamicGroupMembers($dnGroup) { * @param string $dnGroup * @param array|null &$seen * @return array|mixed|null + * @throws \OC\ServerNotAvailableException */ private function _groupMembers($dnGroup, &$seen = null) { if ($seen === null) { @@ -220,26 +221,26 @@ private function _groupMembers($dnGroup, &$seen = null) { // used extensively in cron job, caching makes sense for nested groups $cacheKey = '_groupMembers'.$dnGroup; $groupMembers = $this->access->connection->getFromCache($cacheKey); - if(!is_null($groupMembers)) { + if($groupMembers !== null) { return $groupMembers; } $seen[$dnGroup] = 1; $members = $this->access->readAttribute($dnGroup, $this->access->connection->ldapGroupMemberAssocAttr, $this->access->connection->ldapGroupFilter); if (is_array($members)) { - foreach ($members as $memberDN) { - $allMembers[$memberDN] = 1; + foreach ($members as $member) { + $allMembers[$member] = 1; $nestedGroups = $this->access->connection->ldapNestedGroups; if (!empty($nestedGroups)) { - $subMembers = $this->_groupMembers($memberDN, $seen); + $subMembers = $this->_groupMembers($member, $seen); if ($subMembers) { - $allMembers = array_merge($allMembers, $subMembers); + $allMembers += $subMembers; } } } } - $allMembers = array_merge($allMembers, $this->getDynamicGroupMembers($dnGroup)); + $allMembers += $this->getDynamicGroupMembers($dnGroup); $this->access->connection->writeToCache($cacheKey, $allMembers); return $allMembers; diff --git a/apps/user_ldap/lib/Proxy.php b/apps/user_ldap/lib/Proxy.php index dc8c6fc77cc61..ab5434f9fe5fd 100644 --- a/apps/user_ldap/lib/Proxy.php +++ b/apps/user_ldap/lib/Proxy.php @@ -163,7 +163,7 @@ private function getCacheKey($key) { if($key === null) { return $prefix; } - return $prefix.md5($key); + return $prefix.hash('sha256', $key); } /** diff --git a/apps/user_ldap/lib/User_LDAP.php b/apps/user_ldap/lib/User_LDAP.php index 506ea36c52984..cc3bf85716f9d 100644 --- a/apps/user_ldap/lib/User_LDAP.php +++ b/apps/user_ldap/lib/User_LDAP.php @@ -38,6 +38,7 @@ namespace OCA\User_LDAP; +use OC\ServerNotAvailableException; use OC\User\Backend; use OC\User\NoUserException; use OCA\User_LDAP\Exceptions\NotOnLDAP; @@ -317,16 +318,18 @@ public function userExistsOnLDAP($user) { try { $uuid = $this->access->getUserMapper()->getUUIDByDN($dn); - if(!$uuid) { + if (!$uuid) { return false; } $newDn = $this->access->getUserDnByUuid($uuid); //check if renamed user is still valid by reapplying the ldap filter - if(!is_array($this->access->readAttribute($newDn, '', $this->access->connection->ldapUserFilter))) { + if (!is_array($this->access->readAttribute($newDn, '', $this->access->connection->ldapUserFilter))) { return false; } $this->access->getUserMapper()->setDNbyUUID($newDn, $uuid); return true; + } catch (ServerNotAvailableException $e) { + throw $e; } catch (\Exception $e) { return false; } diff --git a/apps/user_ldap/tests/AccessTest.php b/apps/user_ldap/tests/AccessTest.php index cbb695d779a0c..336b92af04fdf 100644 --- a/apps/user_ldap/tests/AccessTest.php +++ b/apps/user_ldap/tests/AccessTest.php @@ -632,5 +632,36 @@ public function testFetchListOfUsers() { $this->assertSame($expected, $list); } + public function intUsernameProvider() { + // system dependent :-/ + $translitExpected = @iconv('UTF-8', 'ASCII//TRANSLIT', 'fränk') ? 'frank' : 'frnk'; + + return [ + ['alice', 'alice'], + ['b/ob', 'bob'], + ['charly🐬', 'charly'], + ['debo rah', 'debo_rah'], + ['epost@poste.test', 'epost@poste.test'], + ['fränk', $translitExpected], + [' gerda ', 'gerda'], + ['🕱🐵🐘🐑', null] + ]; + } + + /** + * @dataProvider intUsernameProvider + * + * @param $name + * @param $expected + */ + public function testSanitizeUsername($name, $expected) { + if($expected === null) { + $this->expectException(\InvalidArgumentException::class); + } + $sanitizedName = $this->access->sanitizeUsername($name); + $this->assertSame($expected, $sanitizedName); + } + + } diff --git a/apps/user_ldap/tests/ConnectionTest.php b/apps/user_ldap/tests/ConnectionTest.php index c0f91d25d397b..cead84b05b06a 100644 --- a/apps/user_ldap/tests/ConnectionTest.php +++ b/apps/user_ldap/tests/ConnectionTest.php @@ -174,7 +174,7 @@ public function testBindWithInvalidCredentials() { ->method('connect') ->will($this->returnValue('ldapResource')); - $this->ldap->expects($this->exactly(2)) + $this->ldap->expects($this->once()) ->method('bind') ->will($this->returnValue(false)); diff --git a/apps/user_ldap/tests/Group_LDAPTest.php b/apps/user_ldap/tests/Group_LDAPTest.php index e758bc9bd02c4..e9ed1e66b2058 100644 --- a/apps/user_ldap/tests/Group_LDAPTest.php +++ b/apps/user_ldap/tests/Group_LDAPTest.php @@ -39,6 +39,7 @@ use OCA\User_LDAP\Group_LDAP as GroupLDAP; use OCA\User_LDAP\ILDAPWrapper; use OCA\User_LDAP\User\Manager; +use Test\TestCase; /** * Class GroupLDAPTest @@ -47,7 +48,7 @@ * * @package OCA\User_LDAP\Tests */ -class Group_LDAPTest extends \Test\TestCase { +class Group_LDAPTest extends TestCase { /** * @return \PHPUnit_Framework_MockObject_MockObject|Access */ @@ -965,6 +966,88 @@ public function testGetGroupDetailsFailing() { $ldap = new GroupLDAP($access, $pluginManager); $ldap->getGroupDetails('gid'); - } + } + + public function groupMemberProvider() { + $base = 'dc=species,dc=earth'; + + $groups0 = [ + 'uid=3723,' . $base, + 'uid=8372,' . $base, + 'uid=8427,' . $base, + 'uid=2333,' . $base, + 'uid=4754,' . $base, + ]; + $groups1 = [ + '3723', + '8372', + '8427', + '2333', + '4754', + ]; + $groups2Nested = ['6642', '1424']; + $expGroups2 = array_merge($groups1, $groups2Nested); + + return [ + [ #0 – test DNs + 'cn=Birds,' . $base, + $groups0, + ['cn=Birds,' . $base => $groups0] + ], + [ #1 – test uids + 'cn=Birds,' . $base, + $groups1, + ['cn=Birds,' . $base => $groups1] + ], + [ #2 – test uids with nested groups + 'cn=Birds,' . $base, + $expGroups2, + [ + 'cn=Birds,' . $base => $groups1, + '8427' => $groups2Nested, // simplified - nested groups would work with DNs + ], + ], + ]; + } + + /** + * @param string $groupDN + * @param string[] $expectedMembers + * @param array $groupsInfo + * @dataProvider groupMemberProvider + */ + public function testGroupMembers($groupDN, $expectedMembers, $groupsInfo = null) { + $access = $this->getAccessMock(); + $access->expects($this->any()) + ->method('readAttribute') + ->willReturnCallback(function($group) use ($groupDN, $expectedMembers, $groupsInfo) { + if(isset($groupsInfo[$group])) { + return $groupsInfo[$group]; + } + return []; + }); + + $access->connection = $this->createMock(Connection::class); + if(count($groupsInfo) > 1) { + $access->connection->expects($this->any()) + ->method('__get') + ->willReturnCallback(function($name) { + if($name === 'ldapNestedGroups') { + return 1; + } + return null; + }); + } + + /** @var GroupPluginManager $pluginManager */ + $pluginManager = $this->createMock(GroupPluginManager::class); + + $ldap = new GroupLDAP($access, $pluginManager); + $resultingMembers = $this->invokePrivate($ldap, '_groupMembers', [$groupDN]); + + $expected = array_keys(array_flip($expectedMembers)); + + $this->assertEquals($expected, array_keys($resultingMembers), '', 0.0, 10, true); + } } diff --git a/apps/workflowengine/js/requestuseragentplugin.js b/apps/workflowengine/js/requestuseragentplugin.js index 42e3f6b13d253..973f66cba31c1 100644 --- a/apps/workflowengine/js/requestuseragentplugin.js +++ b/apps/workflowengine/js/requestuseragentplugin.js @@ -45,7 +45,7 @@ var placeholder = 'Mozilla/5.0 User Agent'; if (check['operator'] === 'matches' || check['operator'] === '!matches') { - placeholder = '/^Mozilla\\/5\\.0 (.?)$/i'; + placeholder = '/^Mozilla\\/5\\.0 (.*)$/i'; } $(element).css('width', '250px') diff --git a/apps/workflowengine/l10n/ast.js b/apps/workflowengine/l10n/ast.js index 3ce0f9a8b0b9e..e246ee314ea4f 100644 --- a/apps/workflowengine/l10n/ast.js +++ b/apps/workflowengine/l10n/ast.js @@ -49,8 +49,6 @@ OC.L10N.register( "Add rule" : "Amestar regla", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardóse con ésitu", - "File mime type" : "Triba MIME de ficheru" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/ast.json b/apps/workflowengine/l10n/ast.json index fa0fb0921b4b1..d0ce0d77cf99b 100644 --- a/apps/workflowengine/l10n/ast.json +++ b/apps/workflowengine/l10n/ast.json @@ -47,8 +47,6 @@ "Add rule" : "Amestar regla", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardóse con ésitu", - "File mime type" : "Triba MIME de ficheru" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/bg.js b/apps/workflowengine/l10n/bg.js index 7646f36302cda..7efea5d1e6a3f 100644 --- a/apps/workflowengine/l10n/bg.js +++ b/apps/workflowengine/l10n/bg.js @@ -1,7 +1,9 @@ OC.L10N.register( "workflowengine", { + "Saved" : "Запазено", "Saving failed:" : "Запазването се провали:", + "File MIME type" : "Тип MIME файл", "is" : "е", "is not" : "не е", "matches" : "съвпадения", @@ -64,8 +66,6 @@ OC.L10N.register( "Reset" : "Възстанови", "Save" : "Запази", "Saving…" : "Запазване...", - "Loading…" : "Зареждане...", - "Successfully saved" : "Успешно запазен", - "File mime type" : "Разширения" + "Loading…" : "Зареждане..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/bg.json b/apps/workflowengine/l10n/bg.json index 4788e40881d01..85f67e23520ee 100644 --- a/apps/workflowengine/l10n/bg.json +++ b/apps/workflowengine/l10n/bg.json @@ -1,5 +1,7 @@ { "translations": { + "Saved" : "Запазено", "Saving failed:" : "Запазването се провали:", + "File MIME type" : "Тип MIME файл", "is" : "е", "is not" : "не е", "matches" : "съвпадения", @@ -62,8 +64,6 @@ "Reset" : "Възстанови", "Save" : "Запази", "Saving…" : "Запазване...", - "Loading…" : "Зареждане...", - "Successfully saved" : "Успешно запазен", - "File mime type" : "Разширения" + "Loading…" : "Зареждане..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/ca.js b/apps/workflowengine/l10n/ca.js index c8de2819b344e..2051fcff3477f 100644 --- a/apps/workflowengine/l10n/ca.js +++ b/apps/workflowengine/l10n/ca.js @@ -59,6 +59,7 @@ OC.L10N.register( "Check %s is invalid" : "Comprovació %s no és vàlid", "Check #%s does not exist" : "Comprovació #%s no existeix", "Workflow" : "Flux de treball", + "Files workflow engine" : "Fitxers del motor de flux de treball", "Open documentation" : "Obrir documentació", "Add rule group" : "Afegeix una regla de grup", "Short rule description" : "Descripció breu de regla", @@ -66,8 +67,6 @@ OC.L10N.register( "Reset" : "Resetejar", "Save" : "Desa", "Saving…" : "Desant...", - "Loading…" : "Carregant...", - "Successfully saved" : "S\\'ha desat correctament", - "File mime type" : "Tipus mime de l\\'arxiu" + "Loading…" : "Carregant..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/ca.json b/apps/workflowengine/l10n/ca.json index d142823c0bbed..66ee033d04ce1 100644 --- a/apps/workflowengine/l10n/ca.json +++ b/apps/workflowengine/l10n/ca.json @@ -57,6 +57,7 @@ "Check %s is invalid" : "Comprovació %s no és vàlid", "Check #%s does not exist" : "Comprovació #%s no existeix", "Workflow" : "Flux de treball", + "Files workflow engine" : "Fitxers del motor de flux de treball", "Open documentation" : "Obrir documentació", "Add rule group" : "Afegeix una regla de grup", "Short rule description" : "Descripció breu de regla", @@ -64,8 +65,6 @@ "Reset" : "Resetejar", "Save" : "Desa", "Saving…" : "Desant...", - "Loading…" : "Carregant...", - "Successfully saved" : "S\\'ha desat correctament", - "File mime type" : "Tipus mime de l\\'arxiu" + "Loading…" : "Carregant..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/cs.js b/apps/workflowengine/l10n/cs.js index 50cf2affb0b4a..d5b34773d4bc4 100644 --- a/apps/workflowengine/l10n/cs.js +++ b/apps/workflowengine/l10n/cs.js @@ -44,7 +44,7 @@ OC.L10N.register( "The given regular expression is invalid" : "Zadaný regulární výraz je neplatný", "The given file size is invalid" : "Zadaná velikost souboru je neplatná", "The given tag id is invalid" : "Zadané id značky je neplatné", - "The given IP range is invalid" : "Zadaný rozsah IP je neplatný", + "The given IP range is invalid" : "Zadaný rozsah IP adres není platný", "The given IP range is not valid for IPv4" : "Zadaný rozsah IP je pro IPv4 neplatný", "The given IP range is not valid for IPv6" : "Zadaný IP rozsah není pro IPv6 platný", "The given time span is invalid" : "Zadaný časový rozsah je neplatný", @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Obnovit", "Save" : "Uložit", "Saving…" : "Ukládání…", - "Loading…" : "Načítání…", - "Successfully saved" : "Úspěšně uloženo", - "File mime type" : "Mime typ souboru" + "Loading…" : "Načítání…" }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/workflowengine/l10n/cs.json b/apps/workflowengine/l10n/cs.json index 82ba8a8063943..923fc6a4004ab 100644 --- a/apps/workflowengine/l10n/cs.json +++ b/apps/workflowengine/l10n/cs.json @@ -42,7 +42,7 @@ "The given regular expression is invalid" : "Zadaný regulární výraz je neplatný", "The given file size is invalid" : "Zadaná velikost souboru je neplatná", "The given tag id is invalid" : "Zadané id značky je neplatné", - "The given IP range is invalid" : "Zadaný rozsah IP je neplatný", + "The given IP range is invalid" : "Zadaný rozsah IP adres není platný", "The given IP range is not valid for IPv4" : "Zadaný rozsah IP je pro IPv4 neplatný", "The given IP range is not valid for IPv6" : "Zadaný IP rozsah není pro IPv6 platný", "The given time span is invalid" : "Zadaný časový rozsah je neplatný", @@ -64,8 +64,6 @@ "Reset" : "Obnovit", "Save" : "Uložit", "Saving…" : "Ukládání…", - "Loading…" : "Načítání…", - "Successfully saved" : "Úspěšně uloženo", - "File mime type" : "Mime typ souboru" + "Loading…" : "Načítání…" },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/da.js b/apps/workflowengine/l10n/da.js index 5fa32d9b6faf0..c2b0433e58321 100644 --- a/apps/workflowengine/l10n/da.js +++ b/apps/workflowengine/l10n/da.js @@ -1,6 +1,7 @@ OC.L10N.register( "workflowengine", { + "Unable to retrieve the group list" : "Kan ikke hente gruppelisten", "Saved" : "Gemt", "Saving failed:" : "Kunne ikke gemme:", "File MIME type" : "Fil MIME type", @@ -59,6 +60,7 @@ OC.L10N.register( "Check %s is invalid" : "Tjek %s er invalid", "Check #%s does not exist" : "Tjek #%s eksisterer", "Workflow" : "Workflow", + "Files workflow engine" : "Filer workflow motoren", "Open documentation" : "Åben dokumentationen", "Add rule group" : "Tilføj regelgruppe", "Short rule description" : "Kort regelbeskrivelse", @@ -66,8 +68,6 @@ OC.L10N.register( "Reset" : "Reset", "Save" : "Gem", "Saving…" : "Gemmer...", - "Loading…" : "Indlæser...", - "Successfully saved" : "Succesfuld gemt ", - "File mime type" : "Fil MIME type" + "Loading…" : "Indlæser..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/da.json b/apps/workflowengine/l10n/da.json index afc9bc2ec3050..f0c58d5f54459 100644 --- a/apps/workflowengine/l10n/da.json +++ b/apps/workflowengine/l10n/da.json @@ -1,4 +1,5 @@ { "translations": { + "Unable to retrieve the group list" : "Kan ikke hente gruppelisten", "Saved" : "Gemt", "Saving failed:" : "Kunne ikke gemme:", "File MIME type" : "Fil MIME type", @@ -57,6 +58,7 @@ "Check %s is invalid" : "Tjek %s er invalid", "Check #%s does not exist" : "Tjek #%s eksisterer", "Workflow" : "Workflow", + "Files workflow engine" : "Filer workflow motoren", "Open documentation" : "Åben dokumentationen", "Add rule group" : "Tilføj regelgruppe", "Short rule description" : "Kort regelbeskrivelse", @@ -64,8 +66,6 @@ "Reset" : "Reset", "Save" : "Gem", "Saving…" : "Gemmer...", - "Loading…" : "Indlæser...", - "Successfully saved" : "Succesfuld gemt ", - "File mime type" : "Fil MIME type" + "Loading…" : "Indlæser..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/de.js b/apps/workflowengine/l10n/de.js index a5bc99a1f703f..33558774c8467 100644 --- a/apps/workflowengine/l10n/de.js +++ b/apps/workflowengine/l10n/de.js @@ -1,6 +1,7 @@ OC.L10N.register( "workflowengine", { + "Unable to retrieve the group list" : "Gruppenliste konnte nicht empfangen werden", "Saved" : "Gespeichert", "Saving failed:" : "Speichern fehlgeschlagen:", "File MIME type" : "Datei MIME-Typ", @@ -59,6 +60,7 @@ OC.L10N.register( "Check %s is invalid" : "Die Prüfung %s ist ungültig", "Check #%s does not exist" : "Die Prüfung #%s existiert nicht", "Workflow" : "Workflow", + "Files workflow engine" : "Datei-Workflow-Engine", "Open documentation" : "Dokumentation öffnen", "Add rule group" : "Regelgruppe hinzufügen", "Short rule description" : "Kurze Regelbeschreibung", @@ -66,8 +68,6 @@ OC.L10N.register( "Reset" : "Zurücksetzen", "Save" : "Speichern", "Saving…" : "Speichern…", - "Loading…" : "Laden…", - "Successfully saved" : "Erfolgreich gespeichert", - "File mime type" : "Datei MIME-Typ" + "Loading…" : "Laden…" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/de.json b/apps/workflowengine/l10n/de.json index 90e91ab1197eb..5d777ff910108 100644 --- a/apps/workflowengine/l10n/de.json +++ b/apps/workflowengine/l10n/de.json @@ -1,4 +1,5 @@ { "translations": { + "Unable to retrieve the group list" : "Gruppenliste konnte nicht empfangen werden", "Saved" : "Gespeichert", "Saving failed:" : "Speichern fehlgeschlagen:", "File MIME type" : "Datei MIME-Typ", @@ -57,6 +58,7 @@ "Check %s is invalid" : "Die Prüfung %s ist ungültig", "Check #%s does not exist" : "Die Prüfung #%s existiert nicht", "Workflow" : "Workflow", + "Files workflow engine" : "Datei-Workflow-Engine", "Open documentation" : "Dokumentation öffnen", "Add rule group" : "Regelgruppe hinzufügen", "Short rule description" : "Kurze Regelbeschreibung", @@ -64,8 +66,6 @@ "Reset" : "Zurücksetzen", "Save" : "Speichern", "Saving…" : "Speichern…", - "Loading…" : "Laden…", - "Successfully saved" : "Erfolgreich gespeichert", - "File mime type" : "Datei MIME-Typ" + "Loading…" : "Laden…" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/de_DE.js b/apps/workflowengine/l10n/de_DE.js index b667ea12e4fc6..a8349e499a84a 100644 --- a/apps/workflowengine/l10n/de_DE.js +++ b/apps/workflowengine/l10n/de_DE.js @@ -1,6 +1,7 @@ OC.L10N.register( "workflowengine", { + "Unable to retrieve the group list" : "Gruppenliste konnte nicht empfangen werden", "Saved" : "Gespeichert", "Saving failed:" : "Speichern fehlgeschlagen:", "File MIME type" : "Datei MIME-Typ", @@ -59,6 +60,7 @@ OC.L10N.register( "Check %s is invalid" : "Die Prüfung %s ist ungültig", "Check #%s does not exist" : "Die Prüfung #%s existiert nicht", "Workflow" : "Workflow", + "Files workflow engine" : "Datei-Workflow-Engine", "Open documentation" : "Dokumentation öffnen", "Add rule group" : "Regelgruppe hinzufügen", "Short rule description" : "Kurze Regelbeschreibung", @@ -66,8 +68,6 @@ OC.L10N.register( "Reset" : "Zurücksetzen", "Save" : "Speichern", "Saving…" : "Speichern…", - "Loading…" : "Laden…", - "Successfully saved" : "Erfolgreich gespeichert", - "File mime type" : "Datei MIME-Typ" + "Loading…" : "Laden…" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/de_DE.json b/apps/workflowengine/l10n/de_DE.json index 1d10e018e5722..7e01b378c93c8 100644 --- a/apps/workflowengine/l10n/de_DE.json +++ b/apps/workflowengine/l10n/de_DE.json @@ -1,4 +1,5 @@ { "translations": { + "Unable to retrieve the group list" : "Gruppenliste konnte nicht empfangen werden", "Saved" : "Gespeichert", "Saving failed:" : "Speichern fehlgeschlagen:", "File MIME type" : "Datei MIME-Typ", @@ -57,6 +58,7 @@ "Check %s is invalid" : "Die Prüfung %s ist ungültig", "Check #%s does not exist" : "Die Prüfung #%s existiert nicht", "Workflow" : "Workflow", + "Files workflow engine" : "Datei-Workflow-Engine", "Open documentation" : "Dokumentation öffnen", "Add rule group" : "Regelgruppe hinzufügen", "Short rule description" : "Kurze Regelbeschreibung", @@ -64,8 +66,6 @@ "Reset" : "Zurücksetzen", "Save" : "Speichern", "Saving…" : "Speichern…", - "Loading…" : "Laden…", - "Successfully saved" : "Erfolgreich gespeichert", - "File mime type" : "Datei MIME-Typ" + "Loading…" : "Laden…" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/el.js b/apps/workflowengine/l10n/el.js index 994332bdc3707..359f0fe5529ff 100644 --- a/apps/workflowengine/l10n/el.js +++ b/apps/workflowengine/l10n/el.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Επαναφορά", "Save" : "Αποθήκευση", "Saving…" : "Αποθηκεύεται...", - "Loading…" : "Φορτώνει...", - "Successfully saved" : "Επιτυχημένη αποθήκευση", - "File mime type" : "Αρχεία τύπου mime" + "Loading…" : "Φορτώνει..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/el.json b/apps/workflowengine/l10n/el.json index 3942c93a05739..66473d4a06c7d 100644 --- a/apps/workflowengine/l10n/el.json +++ b/apps/workflowengine/l10n/el.json @@ -64,8 +64,6 @@ "Reset" : "Επαναφορά", "Save" : "Αποθήκευση", "Saving…" : "Αποθηκεύεται...", - "Loading…" : "Φορτώνει...", - "Successfully saved" : "Επιτυχημένη αποθήκευση", - "File mime type" : "Αρχεία τύπου mime" + "Loading…" : "Φορτώνει..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/en_GB.js b/apps/workflowengine/l10n/en_GB.js index 82df35215d169..5c90961bc1280 100644 --- a/apps/workflowengine/l10n/en_GB.js +++ b/apps/workflowengine/l10n/en_GB.js @@ -1,6 +1,7 @@ OC.L10N.register( "workflowengine", { + "Unable to retrieve the group list" : "Unable to retrieve the group list", "Saved" : "Saved", "Saving failed:" : "Saving failed:", "File MIME type" : "File MIME type", @@ -59,6 +60,7 @@ OC.L10N.register( "Check %s is invalid" : "Check %s is invalid", "Check #%s does not exist" : "Check #%s does not exist", "Workflow" : "Workflow", + "Files workflow engine" : "Files workflow engine", "Open documentation" : "Open documentation", "Add rule group" : "Add rule group", "Short rule description" : "Short rule description", @@ -66,8 +68,6 @@ OC.L10N.register( "Reset" : "Reset", "Save" : "Save", "Saving…" : "Saving…", - "Loading…" : "Loading…", - "Successfully saved" : "Successfully saved", - "File mime type" : "File mime type" + "Loading…" : "Loading…" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/en_GB.json b/apps/workflowengine/l10n/en_GB.json index b7faf6f232310..fbaa43772d2bb 100644 --- a/apps/workflowengine/l10n/en_GB.json +++ b/apps/workflowengine/l10n/en_GB.json @@ -1,4 +1,5 @@ { "translations": { + "Unable to retrieve the group list" : "Unable to retrieve the group list", "Saved" : "Saved", "Saving failed:" : "Saving failed:", "File MIME type" : "File MIME type", @@ -57,6 +58,7 @@ "Check %s is invalid" : "Check %s is invalid", "Check #%s does not exist" : "Check #%s does not exist", "Workflow" : "Workflow", + "Files workflow engine" : "Files workflow engine", "Open documentation" : "Open documentation", "Add rule group" : "Add rule group", "Short rule description" : "Short rule description", @@ -64,8 +66,6 @@ "Reset" : "Reset", "Save" : "Save", "Saving…" : "Saving…", - "Loading…" : "Loading…", - "Successfully saved" : "Successfully saved", - "File mime type" : "File mime type" + "Loading…" : "Loading…" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es.js b/apps/workflowengine/l10n/es.js index a2ada331453f2..e628e101fd55b 100644 --- a/apps/workflowengine/l10n/es.js +++ b/apps/workflowengine/l10n/es.js @@ -1,8 +1,9 @@ OC.L10N.register( "workflowengine", { + "Unable to retrieve the group list" : "No es posible recibir la lista de grupos", "Saved" : "Guardado", - "Saving failed:" : "Guardado fallido:", + "Saving failed:" : "Fallo al guardar:", "File MIME type" : "Tipo MIME del archivo", "is" : "es/esta", "is not" : "no es/esta", @@ -59,15 +60,14 @@ OC.L10N.register( "Check %s is invalid" : "Chequeo %s no es valido", "Check #%s does not exist" : "El chequeo #%s no existe", "Workflow" : "Flujo de trabajo", + "Files workflow engine" : "Motor de flujo de trabajo de archivos", "Open documentation" : "Documentación abierta", "Add rule group" : "Añadir regla al grupo", "Short rule description" : "Descripción de la regla corta", "Add rule" : "Añadir regla", - "Reset" : "Reiniciar", + "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado con éxito", - "File mime type" : "Tipo MIME del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es.json b/apps/workflowengine/l10n/es.json index d6a9bb79e9ba7..6620c4a765efc 100644 --- a/apps/workflowengine/l10n/es.json +++ b/apps/workflowengine/l10n/es.json @@ -1,6 +1,7 @@ { "translations": { + "Unable to retrieve the group list" : "No es posible recibir la lista de grupos", "Saved" : "Guardado", - "Saving failed:" : "Guardado fallido:", + "Saving failed:" : "Fallo al guardar:", "File MIME type" : "Tipo MIME del archivo", "is" : "es/esta", "is not" : "no es/esta", @@ -57,15 +58,14 @@ "Check %s is invalid" : "Chequeo %s no es valido", "Check #%s does not exist" : "El chequeo #%s no existe", "Workflow" : "Flujo de trabajo", + "Files workflow engine" : "Motor de flujo de trabajo de archivos", "Open documentation" : "Documentación abierta", "Add rule group" : "Añadir regla al grupo", "Short rule description" : "Descripción de la regla corta", "Add rule" : "Añadir regla", - "Reset" : "Reiniciar", + "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado con éxito", - "File mime type" : "Tipo MIME del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es_419.js b/apps/workflowengine/l10n/es_419.js index a67dbc8472fd8..b1bae553634c4 100644 --- a/apps/workflowengine/l10n/es_419.js +++ b/apps/workflowengine/l10n/es_419.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es_419.json b/apps/workflowengine/l10n/es_419.json index 1ae425f4e19d4..7b0db7e47272f 100644 --- a/apps/workflowengine/l10n/es_419.json +++ b/apps/workflowengine/l10n/es_419.json @@ -64,8 +64,6 @@ "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es_AR.js b/apps/workflowengine/l10n/es_AR.js index 373275c6b7cde..4c674602131a0 100644 --- a/apps/workflowengine/l10n/es_AR.js +++ b/apps/workflowengine/l10n/es_AR.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es_AR.json b/apps/workflowengine/l10n/es_AR.json index b18acc9739646..4167c1320c1ce 100644 --- a/apps/workflowengine/l10n/es_AR.json +++ b/apps/workflowengine/l10n/es_AR.json @@ -64,8 +64,6 @@ "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es_CL.js b/apps/workflowengine/l10n/es_CL.js index a67dbc8472fd8..b1bae553634c4 100644 --- a/apps/workflowengine/l10n/es_CL.js +++ b/apps/workflowengine/l10n/es_CL.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es_CL.json b/apps/workflowengine/l10n/es_CL.json index 1ae425f4e19d4..7b0db7e47272f 100644 --- a/apps/workflowengine/l10n/es_CL.json +++ b/apps/workflowengine/l10n/es_CL.json @@ -64,8 +64,6 @@ "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es_CO.js b/apps/workflowengine/l10n/es_CO.js index a67dbc8472fd8..b1bae553634c4 100644 --- a/apps/workflowengine/l10n/es_CO.js +++ b/apps/workflowengine/l10n/es_CO.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es_CO.json b/apps/workflowengine/l10n/es_CO.json index 1ae425f4e19d4..7b0db7e47272f 100644 --- a/apps/workflowengine/l10n/es_CO.json +++ b/apps/workflowengine/l10n/es_CO.json @@ -64,8 +64,6 @@ "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es_CR.js b/apps/workflowengine/l10n/es_CR.js index a67dbc8472fd8..b1bae553634c4 100644 --- a/apps/workflowengine/l10n/es_CR.js +++ b/apps/workflowengine/l10n/es_CR.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es_CR.json b/apps/workflowengine/l10n/es_CR.json index 1ae425f4e19d4..7b0db7e47272f 100644 --- a/apps/workflowengine/l10n/es_CR.json +++ b/apps/workflowengine/l10n/es_CR.json @@ -64,8 +64,6 @@ "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es_DO.js b/apps/workflowengine/l10n/es_DO.js index a67dbc8472fd8..b1bae553634c4 100644 --- a/apps/workflowengine/l10n/es_DO.js +++ b/apps/workflowengine/l10n/es_DO.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es_DO.json b/apps/workflowengine/l10n/es_DO.json index 1ae425f4e19d4..7b0db7e47272f 100644 --- a/apps/workflowengine/l10n/es_DO.json +++ b/apps/workflowengine/l10n/es_DO.json @@ -64,8 +64,6 @@ "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es_EC.js b/apps/workflowengine/l10n/es_EC.js index a67dbc8472fd8..b1bae553634c4 100644 --- a/apps/workflowengine/l10n/es_EC.js +++ b/apps/workflowengine/l10n/es_EC.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es_EC.json b/apps/workflowengine/l10n/es_EC.json index 1ae425f4e19d4..7b0db7e47272f 100644 --- a/apps/workflowengine/l10n/es_EC.json +++ b/apps/workflowengine/l10n/es_EC.json @@ -64,8 +64,6 @@ "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es_GT.js b/apps/workflowengine/l10n/es_GT.js index a67dbc8472fd8..b1bae553634c4 100644 --- a/apps/workflowengine/l10n/es_GT.js +++ b/apps/workflowengine/l10n/es_GT.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es_GT.json b/apps/workflowengine/l10n/es_GT.json index 1ae425f4e19d4..7b0db7e47272f 100644 --- a/apps/workflowengine/l10n/es_GT.json +++ b/apps/workflowengine/l10n/es_GT.json @@ -64,8 +64,6 @@ "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es_HN.js b/apps/workflowengine/l10n/es_HN.js index a67dbc8472fd8..b1bae553634c4 100644 --- a/apps/workflowengine/l10n/es_HN.js +++ b/apps/workflowengine/l10n/es_HN.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es_HN.json b/apps/workflowengine/l10n/es_HN.json index 1ae425f4e19d4..7b0db7e47272f 100644 --- a/apps/workflowengine/l10n/es_HN.json +++ b/apps/workflowengine/l10n/es_HN.json @@ -64,8 +64,6 @@ "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es_MX.js b/apps/workflowengine/l10n/es_MX.js index a67dbc8472fd8..f5d85b428768f 100644 --- a/apps/workflowengine/l10n/es_MX.js +++ b/apps/workflowengine/l10n/es_MX.js @@ -1,6 +1,7 @@ OC.L10N.register( "workflowengine", { + "Unable to retrieve the group list" : "No fue posible recuperar la lista del gurpo", "Saved" : "Guardado", "Saving failed:" : "Falla al guardar:", "File MIME type" : "Tipo MIME del archivo", @@ -59,6 +60,7 @@ OC.L10N.register( "Check %s is invalid" : "La validación %s no es inválida", "Check #%s does not exist" : "La validación #%s no existe", "Workflow" : "Flujo de trabajo", + "Files workflow engine" : "Motor de flujo de trabajo de archivos", "Open documentation" : "Abrir la documentación", "Add rule group" : "Agregar regla de grupo", "Short rule description" : "Descripción corta de la regla", @@ -66,8 +68,6 @@ OC.L10N.register( "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es_MX.json b/apps/workflowengine/l10n/es_MX.json index 1ae425f4e19d4..cfdfdb718ae34 100644 --- a/apps/workflowengine/l10n/es_MX.json +++ b/apps/workflowengine/l10n/es_MX.json @@ -1,4 +1,5 @@ { "translations": { + "Unable to retrieve the group list" : "No fue posible recuperar la lista del gurpo", "Saved" : "Guardado", "Saving failed:" : "Falla al guardar:", "File MIME type" : "Tipo MIME del archivo", @@ -57,6 +58,7 @@ "Check %s is invalid" : "La validación %s no es inválida", "Check #%s does not exist" : "La validación #%s no existe", "Workflow" : "Flujo de trabajo", + "Files workflow engine" : "Motor de flujo de trabajo de archivos", "Open documentation" : "Abrir la documentación", "Add rule group" : "Agregar regla de grupo", "Short rule description" : "Descripción corta de la regla", @@ -64,8 +66,6 @@ "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es_NI.js b/apps/workflowengine/l10n/es_NI.js index a67dbc8472fd8..b1bae553634c4 100644 --- a/apps/workflowengine/l10n/es_NI.js +++ b/apps/workflowengine/l10n/es_NI.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es_NI.json b/apps/workflowengine/l10n/es_NI.json index 1ae425f4e19d4..7b0db7e47272f 100644 --- a/apps/workflowengine/l10n/es_NI.json +++ b/apps/workflowengine/l10n/es_NI.json @@ -64,8 +64,6 @@ "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es_PA.js b/apps/workflowengine/l10n/es_PA.js index a67dbc8472fd8..b1bae553634c4 100644 --- a/apps/workflowengine/l10n/es_PA.js +++ b/apps/workflowengine/l10n/es_PA.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es_PA.json b/apps/workflowengine/l10n/es_PA.json index 1ae425f4e19d4..7b0db7e47272f 100644 --- a/apps/workflowengine/l10n/es_PA.json +++ b/apps/workflowengine/l10n/es_PA.json @@ -64,8 +64,6 @@ "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es_PE.js b/apps/workflowengine/l10n/es_PE.js index a67dbc8472fd8..b1bae553634c4 100644 --- a/apps/workflowengine/l10n/es_PE.js +++ b/apps/workflowengine/l10n/es_PE.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es_PE.json b/apps/workflowengine/l10n/es_PE.json index 1ae425f4e19d4..7b0db7e47272f 100644 --- a/apps/workflowengine/l10n/es_PE.json +++ b/apps/workflowengine/l10n/es_PE.json @@ -64,8 +64,6 @@ "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es_PR.js b/apps/workflowengine/l10n/es_PR.js index a67dbc8472fd8..b1bae553634c4 100644 --- a/apps/workflowengine/l10n/es_PR.js +++ b/apps/workflowengine/l10n/es_PR.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es_PR.json b/apps/workflowengine/l10n/es_PR.json index 1ae425f4e19d4..7b0db7e47272f 100644 --- a/apps/workflowengine/l10n/es_PR.json +++ b/apps/workflowengine/l10n/es_PR.json @@ -64,8 +64,6 @@ "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es_PY.js b/apps/workflowengine/l10n/es_PY.js index a67dbc8472fd8..b1bae553634c4 100644 --- a/apps/workflowengine/l10n/es_PY.js +++ b/apps/workflowengine/l10n/es_PY.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es_PY.json b/apps/workflowengine/l10n/es_PY.json index 1ae425f4e19d4..7b0db7e47272f 100644 --- a/apps/workflowengine/l10n/es_PY.json +++ b/apps/workflowengine/l10n/es_PY.json @@ -64,8 +64,6 @@ "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es_SV.js b/apps/workflowengine/l10n/es_SV.js index a67dbc8472fd8..b1bae553634c4 100644 --- a/apps/workflowengine/l10n/es_SV.js +++ b/apps/workflowengine/l10n/es_SV.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es_SV.json b/apps/workflowengine/l10n/es_SV.json index 1ae425f4e19d4..7b0db7e47272f 100644 --- a/apps/workflowengine/l10n/es_SV.json +++ b/apps/workflowengine/l10n/es_SV.json @@ -64,8 +64,6 @@ "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/es_UY.js b/apps/workflowengine/l10n/es_UY.js index a67dbc8472fd8..b1bae553634c4 100644 --- a/apps/workflowengine/l10n/es_UY.js +++ b/apps/workflowengine/l10n/es_UY.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/es_UY.json b/apps/workflowengine/l10n/es_UY.json index 1ae425f4e19d4..7b0db7e47272f 100644 --- a/apps/workflowengine/l10n/es_UY.json +++ b/apps/workflowengine/l10n/es_UY.json @@ -64,8 +64,6 @@ "Reset" : "Restablecer", "Save" : "Guardar", "Saving…" : "Guardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Guardado exitosamente", - "File mime type" : "Tipo mime del archivo" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/et_EE.js b/apps/workflowengine/l10n/et_EE.js index a35458ac2e1de..6c8a36e12c4e4 100644 --- a/apps/workflowengine/l10n/et_EE.js +++ b/apps/workflowengine/l10n/et_EE.js @@ -61,8 +61,6 @@ OC.L10N.register( "Reset" : "Lähtesta", "Save" : "Salvesta", "Saving…" : "Salvestamine...", - "Loading…" : "Laadimine...", - "Successfully saved" : "Edukalt salvestatud", - "File mime type" : "Faili MIME tüüp" + "Loading…" : "Laadimine..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/et_EE.json b/apps/workflowengine/l10n/et_EE.json index 65067361a14be..d0e76070e55da 100644 --- a/apps/workflowengine/l10n/et_EE.json +++ b/apps/workflowengine/l10n/et_EE.json @@ -59,8 +59,6 @@ "Reset" : "Lähtesta", "Save" : "Salvesta", "Saving…" : "Salvestamine...", - "Loading…" : "Laadimine...", - "Successfully saved" : "Edukalt salvestatud", - "File mime type" : "Faili MIME tüüp" + "Loading…" : "Laadimine..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/fa.js b/apps/workflowengine/l10n/fa.js index 7ffe079982e49..023c22aca89db 100644 --- a/apps/workflowengine/l10n/fa.js +++ b/apps/workflowengine/l10n/fa.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "ریست", "Save" : "ذخیره", "Saving…" : "در حال ذخیره", - "Loading…" : "در حال بار گزاری", - "Successfully saved" : "با موفقیت ذخیره شد ", - "File mime type" : "نوع فایل " + "Loading…" : "در حال بار گزاری" }, "nplurals=1; plural=0;"); diff --git a/apps/workflowengine/l10n/fa.json b/apps/workflowengine/l10n/fa.json index 4d5a50082adcb..a2342b3198ce8 100644 --- a/apps/workflowengine/l10n/fa.json +++ b/apps/workflowengine/l10n/fa.json @@ -64,8 +64,6 @@ "Reset" : "ریست", "Save" : "ذخیره", "Saving…" : "در حال ذخیره", - "Loading…" : "در حال بار گزاری", - "Successfully saved" : "با موفقیت ذخیره شد ", - "File mime type" : "نوع فایل " + "Loading…" : "در حال بار گزاری" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/fi.js b/apps/workflowengine/l10n/fi.js index e01c67c7aa02e..038e661d3a777 100644 --- a/apps/workflowengine/l10n/fi.js +++ b/apps/workflowengine/l10n/fi.js @@ -58,8 +58,6 @@ OC.L10N.register( "Reset" : "Palauta", "Save" : "Tallenna", "Saving…" : "Tallennetaan...", - "Loading…" : "Ladataan…", - "Successfully saved" : "Tallennettu onnistuneesti", - "File mime type" : "Tiedoston mediatyyppi" + "Loading…" : "Ladataan…" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/fi.json b/apps/workflowengine/l10n/fi.json index 3d9007cf7e5b0..d9f5b72b6e00a 100644 --- a/apps/workflowengine/l10n/fi.json +++ b/apps/workflowengine/l10n/fi.json @@ -56,8 +56,6 @@ "Reset" : "Palauta", "Save" : "Tallenna", "Saving…" : "Tallennetaan...", - "Loading…" : "Ladataan…", - "Successfully saved" : "Tallennettu onnistuneesti", - "File mime type" : "Tiedoston mediatyyppi" + "Loading…" : "Ladataan…" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/fr.js b/apps/workflowengine/l10n/fr.js index 5fb2ff3f410e8..5d66c6dafd5c9 100644 --- a/apps/workflowengine/l10n/fr.js +++ b/apps/workflowengine/l10n/fr.js @@ -1,6 +1,7 @@ OC.L10N.register( "workflowengine", { + "Unable to retrieve the group list" : "Impossible de récupérer la liste du groupe", "Saved" : "Sauvegardé", "Saving failed:" : "L'enregistrement a échoué:", "File MIME type" : "Type MIME du fichier", @@ -59,6 +60,7 @@ OC.L10N.register( "Check %s is invalid" : "Vérifiez si %s est invalide", "Check #%s does not exist" : "Vérifiez si #%s n'existe pas", "Workflow" : "Flux d'activités", + "Files workflow engine" : "Moteur de Workflow de fichiers", "Open documentation" : "Voir la documentation", "Add rule group" : "Ajouter une règle de groupe", "Short rule description" : "Trier par description de règle", @@ -66,8 +68,6 @@ OC.L10N.register( "Reset" : "Réinitialiser", "Save" : "Enregistrer", "Saving…" : "Enregistrement...", - "Loading…" : "Chargement...", - "Successfully saved" : "Enregistré avec succès", - "File mime type" : "Type MIME du fichier" + "Loading…" : "Chargement..." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/workflowengine/l10n/fr.json b/apps/workflowengine/l10n/fr.json index cdf3945888951..e85bec67c9436 100644 --- a/apps/workflowengine/l10n/fr.json +++ b/apps/workflowengine/l10n/fr.json @@ -1,4 +1,5 @@ { "translations": { + "Unable to retrieve the group list" : "Impossible de récupérer la liste du groupe", "Saved" : "Sauvegardé", "Saving failed:" : "L'enregistrement a échoué:", "File MIME type" : "Type MIME du fichier", @@ -57,6 +58,7 @@ "Check %s is invalid" : "Vérifiez si %s est invalide", "Check #%s does not exist" : "Vérifiez si #%s n'existe pas", "Workflow" : "Flux d'activités", + "Files workflow engine" : "Moteur de Workflow de fichiers", "Open documentation" : "Voir la documentation", "Add rule group" : "Ajouter une règle de groupe", "Short rule description" : "Trier par description de règle", @@ -64,8 +66,6 @@ "Reset" : "Réinitialiser", "Save" : "Enregistrer", "Saving…" : "Enregistrement...", - "Loading…" : "Chargement...", - "Successfully saved" : "Enregistré avec succès", - "File mime type" : "Type MIME du fichier" + "Loading…" : "Chargement..." },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/gl.js b/apps/workflowengine/l10n/gl.js index 6431721d72984..1ff58214585d2 100644 --- a/apps/workflowengine/l10n/gl.js +++ b/apps/workflowengine/l10n/gl.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Restabelecer", "Save" : "Gardar", "Saving…" : "Gardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Gardado satisfactoriamente", - "File mime type" : "Tipo MIME do ficheiro" + "Loading…" : "Cargando..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/gl.json b/apps/workflowengine/l10n/gl.json index b662e4afebd9d..91511d581d423 100644 --- a/apps/workflowengine/l10n/gl.json +++ b/apps/workflowengine/l10n/gl.json @@ -64,8 +64,6 @@ "Reset" : "Restabelecer", "Save" : "Gardar", "Saving…" : "Gardando...", - "Loading…" : "Cargando...", - "Successfully saved" : "Gardado satisfactoriamente", - "File mime type" : "Tipo MIME do ficheiro" + "Loading…" : "Cargando..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/hu.js b/apps/workflowengine/l10n/hu.js index 3ca2b526c4053..9407bb10a1297 100644 --- a/apps/workflowengine/l10n/hu.js +++ b/apps/workflowengine/l10n/hu.js @@ -1,6 +1,7 @@ OC.L10N.register( "workflowengine", { + "Unable to retrieve the group list" : "Csoportlista betöltése sikertelen", "Saved" : "Elmentve", "Saving failed:" : "Mentés sikertelen:", "File MIME type" : "Fájl MIME típus", @@ -59,6 +60,7 @@ OC.L10N.register( "Check %s is invalid" : "%s érvénytelen, ellenőrizd", "Check #%s does not exist" : "#%s nem létezik, ellenőrizd", "Workflow" : "Munkafolyamat", + "Files workflow engine" : "Fájl munkafolyamat motor", "Open documentation" : "Dokumentáció megnyitása", "Add rule group" : "Szabály csoport hozzáadás", "Short rule description" : "A szabály rövid leírása", @@ -66,8 +68,6 @@ OC.L10N.register( "Reset" : "Visszaállítás", "Save" : "Mentés", "Saving…" : "Mentés...", - "Loading…" : "Betöltés...", - "Successfully saved" : "Sikeresen mentve", - "File mime type" : "Fájl mime típus" + "Loading…" : "Betöltés..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/hu.json b/apps/workflowengine/l10n/hu.json index 94da5a4a06c8d..b6eebf6e99c7a 100644 --- a/apps/workflowengine/l10n/hu.json +++ b/apps/workflowengine/l10n/hu.json @@ -1,4 +1,5 @@ { "translations": { + "Unable to retrieve the group list" : "Csoportlista betöltése sikertelen", "Saved" : "Elmentve", "Saving failed:" : "Mentés sikertelen:", "File MIME type" : "Fájl MIME típus", @@ -57,6 +58,7 @@ "Check %s is invalid" : "%s érvénytelen, ellenőrizd", "Check #%s does not exist" : "#%s nem létezik, ellenőrizd", "Workflow" : "Munkafolyamat", + "Files workflow engine" : "Fájl munkafolyamat motor", "Open documentation" : "Dokumentáció megnyitása", "Add rule group" : "Szabály csoport hozzáadás", "Short rule description" : "A szabály rövid leírása", @@ -64,8 +66,6 @@ "Reset" : "Visszaállítás", "Save" : "Mentés", "Saving…" : "Mentés...", - "Loading…" : "Betöltés...", - "Successfully saved" : "Sikeresen mentve", - "File mime type" : "Fájl mime típus" + "Loading…" : "Betöltés..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/ia.js b/apps/workflowengine/l10n/ia.js new file mode 100644 index 0000000000000..d99a235862baa --- /dev/null +++ b/apps/workflowengine/l10n/ia.js @@ -0,0 +1,46 @@ +OC.L10N.register( + "workflowengine", + { + "Saving failed:" : "Salveguardata falleva:", + "is" : "es", + "is not" : "non es", + "matches" : "corresponde", + "does not match" : "non corresponde", + "Example: {placeholder}" : "Exemplo: {placeholder}", + "File size (upload)" : "Dimension de file (incarga)", + "less" : "minus", + "less or equals" : "minus o equal", + "greater or equals" : "major o equal", + "greater" : "major", + "File system tag" : "Etiquetta de systema de file", + "is tagged with" : "es etiquettate con", + "is not tagged with" : "non es etiquettate con", + "Select tag…" : "Selectionar etiquetta...", + "Request remote address" : "Demandar adresse remote", + "matches IPv4" : "corresponde a IPv4", + "does not match IPv4" : "non corresponde a IPv4", + "matches IPv6" : "corresponde a IPv6", + "does not match IPv6" : "non corresponde a IPv6", + "Request time" : "Demandar tempore", + "between" : "inter", + "not between" : "non inter", + "Start" : "Initio", + "End" : "Fin", + "Select timezone…" : "Selectionar fuso horari ...", + "Request URL" : "Demandar URL", + "Predefined URLs" : "URLs predefinite", + "Files WebDAV" : "Files WebDAV", + "Sync clients" : "Synchronisar clientes", + "Android client" : "Cliente Android", + "iOS client" : "Cliente iOS", + "Desktop client" : "Cliente de Scriptorio", + "is member of" : "es membro de", + "is not member of" : "non es membro de", + "Open documentation" : "Aperir documentation", + "Add rule" : "Adder regula", + "Reset" : "Reinitialisar", + "Save" : "Salveguardar", + "Saving…" : "Salveguardante...", + "Loading…" : "Cargante..." +}, +"nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/ia.json b/apps/workflowengine/l10n/ia.json new file mode 100644 index 0000000000000..1ca7386e4f7e8 --- /dev/null +++ b/apps/workflowengine/l10n/ia.json @@ -0,0 +1,44 @@ +{ "translations": { + "Saving failed:" : "Salveguardata falleva:", + "is" : "es", + "is not" : "non es", + "matches" : "corresponde", + "does not match" : "non corresponde", + "Example: {placeholder}" : "Exemplo: {placeholder}", + "File size (upload)" : "Dimension de file (incarga)", + "less" : "minus", + "less or equals" : "minus o equal", + "greater or equals" : "major o equal", + "greater" : "major", + "File system tag" : "Etiquetta de systema de file", + "is tagged with" : "es etiquettate con", + "is not tagged with" : "non es etiquettate con", + "Select tag…" : "Selectionar etiquetta...", + "Request remote address" : "Demandar adresse remote", + "matches IPv4" : "corresponde a IPv4", + "does not match IPv4" : "non corresponde a IPv4", + "matches IPv6" : "corresponde a IPv6", + "does not match IPv6" : "non corresponde a IPv6", + "Request time" : "Demandar tempore", + "between" : "inter", + "not between" : "non inter", + "Start" : "Initio", + "End" : "Fin", + "Select timezone…" : "Selectionar fuso horari ...", + "Request URL" : "Demandar URL", + "Predefined URLs" : "URLs predefinite", + "Files WebDAV" : "Files WebDAV", + "Sync clients" : "Synchronisar clientes", + "Android client" : "Cliente Android", + "iOS client" : "Cliente iOS", + "Desktop client" : "Cliente de Scriptorio", + "is member of" : "es membro de", + "is not member of" : "non es membro de", + "Open documentation" : "Aperir documentation", + "Add rule" : "Adder regula", + "Reset" : "Reinitialisar", + "Save" : "Salveguardar", + "Saving…" : "Salveguardante...", + "Loading…" : "Cargante..." +},"pluralForm" :"nplurals=2; plural=(n != 1);" +} \ No newline at end of file diff --git a/apps/workflowengine/l10n/id.js b/apps/workflowengine/l10n/id.js index 2e22dd57a988b..f2c1af1d9d19a 100644 --- a/apps/workflowengine/l10n/id.js +++ b/apps/workflowengine/l10n/id.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Setel ulang", "Save" : "Simpan", "Saving…" : "Menyimpan...", - "Loading…" : "Memuat...", - "Successfully saved" : "Berhasil disimpan", - "File mime type" : "Tipe MIME berkas" + "Loading…" : "Memuat..." }, "nplurals=1; plural=0;"); diff --git a/apps/workflowengine/l10n/id.json b/apps/workflowengine/l10n/id.json index 319caa1ba6e0c..7600308f0ac4a 100644 --- a/apps/workflowengine/l10n/id.json +++ b/apps/workflowengine/l10n/id.json @@ -64,8 +64,6 @@ "Reset" : "Setel ulang", "Save" : "Simpan", "Saving…" : "Menyimpan...", - "Loading…" : "Memuat...", - "Successfully saved" : "Berhasil disimpan", - "File mime type" : "Tipe MIME berkas" + "Loading…" : "Memuat..." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/is.js b/apps/workflowengine/l10n/is.js index bd58e51965c7e..400a84f0252cb 100644 --- a/apps/workflowengine/l10n/is.js +++ b/apps/workflowengine/l10n/is.js @@ -59,6 +59,7 @@ OC.L10N.register( "Check %s is invalid" : "Athugunin %s er ógild", "Check #%s does not exist" : "Athugunin #%s er ekki til", "Workflow" : "Vinnuferli", + "Files workflow engine" : "Verkferlavél skráa", "Open documentation" : "Opna hjálparskjöl", "Add rule group" : "Bæta við regluhópi", "Short rule description" : "Stutt lýsing á reglu", @@ -66,8 +67,6 @@ OC.L10N.register( "Reset" : "Endurstilla", "Save" : "Vista", "Saving…" : "Vista…", - "Loading…" : "Hleð inn...", - "Successfully saved" : "Tókst að vista", - "File mime type" : "Skráartegund" + "Loading…" : "Hleð inn..." }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/workflowengine/l10n/is.json b/apps/workflowengine/l10n/is.json index 3dd3ee9304bcf..2e17628bbc44b 100644 --- a/apps/workflowengine/l10n/is.json +++ b/apps/workflowengine/l10n/is.json @@ -57,6 +57,7 @@ "Check %s is invalid" : "Athugunin %s er ógild", "Check #%s does not exist" : "Athugunin #%s er ekki til", "Workflow" : "Vinnuferli", + "Files workflow engine" : "Verkferlavél skráa", "Open documentation" : "Opna hjálparskjöl", "Add rule group" : "Bæta við regluhópi", "Short rule description" : "Stutt lýsing á reglu", @@ -64,8 +65,6 @@ "Reset" : "Endurstilla", "Save" : "Vista", "Saving…" : "Vista…", - "Loading…" : "Hleð inn...", - "Successfully saved" : "Tókst að vista", - "File mime type" : "Skráartegund" + "Loading…" : "Hleð inn..." },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/it.js b/apps/workflowengine/l10n/it.js index 86a912cdf9a17..a16fec791f07d 100644 --- a/apps/workflowengine/l10n/it.js +++ b/apps/workflowengine/l10n/it.js @@ -1,6 +1,7 @@ OC.L10N.register( "workflowengine", { + "Unable to retrieve the group list" : "Impossibile recuperare l'elenco dei gruppi", "Saved" : "Salvato", "Saving failed:" : "Salvataggio non riuscito:", "File MIME type" : "Tipo MIME del file", @@ -59,6 +60,7 @@ OC.L10N.register( "Check %s is invalid" : "Il controllo %s non è valido", "Check #%s does not exist" : "Il controllo #%s non esiste", "Workflow" : "Flusso di lavoro", + "Files workflow engine" : "Motore delle procedure dei file", "Open documentation" : "Apri documentazione", "Add rule group" : "Aggiungi gruppo di regole", "Short rule description" : "Descrizione breve della regola", @@ -66,8 +68,6 @@ OC.L10N.register( "Reset" : "Ripristina", "Save" : "Salva", "Saving…" : "Salvataggio in corso...", - "Loading…" : "Caricamento in corso...", - "Successfully saved" : "Salvato correttamente", - "File mime type" : "Tipo MIME del file" + "Loading…" : "Caricamento in corso..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/it.json b/apps/workflowengine/l10n/it.json index 9d6b50647f381..7ced857a54c00 100644 --- a/apps/workflowengine/l10n/it.json +++ b/apps/workflowengine/l10n/it.json @@ -1,4 +1,5 @@ { "translations": { + "Unable to retrieve the group list" : "Impossibile recuperare l'elenco dei gruppi", "Saved" : "Salvato", "Saving failed:" : "Salvataggio non riuscito:", "File MIME type" : "Tipo MIME del file", @@ -57,6 +58,7 @@ "Check %s is invalid" : "Il controllo %s non è valido", "Check #%s does not exist" : "Il controllo #%s non esiste", "Workflow" : "Flusso di lavoro", + "Files workflow engine" : "Motore delle procedure dei file", "Open documentation" : "Apri documentazione", "Add rule group" : "Aggiungi gruppo di regole", "Short rule description" : "Descrizione breve della regola", @@ -64,8 +66,6 @@ "Reset" : "Ripristina", "Save" : "Salva", "Saving…" : "Salvataggio in corso...", - "Loading…" : "Caricamento in corso...", - "Successfully saved" : "Salvato correttamente", - "File mime type" : "Tipo MIME del file" + "Loading…" : "Caricamento in corso..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/ja.js b/apps/workflowengine/l10n/ja.js index 90f7cf1b93207..a6eca63cbc936 100644 --- a/apps/workflowengine/l10n/ja.js +++ b/apps/workflowengine/l10n/ja.js @@ -59,6 +59,7 @@ OC.L10N.register( "Check %s is invalid" : "チェック %s は無効です", "Check #%s does not exist" : "チェック #%s は存在しません", "Workflow" : "ワークフロー", + "Files workflow engine" : "ファイルワークフローエンジン", "Open documentation" : "ドキュメントを開く", "Add rule group" : "ルールグループを追加する", "Short rule description" : "ルールの簡潔な説明", @@ -66,8 +67,6 @@ OC.L10N.register( "Reset" : "リセット", "Save" : "保存", "Saving…" : "保存中...", - "Loading…" : "読み込み中...", - "Successfully saved" : "保存しました", - "File mime type" : "ファイルMIMEタイプ" + "Loading…" : "読み込み中..." }, "nplurals=1; plural=0;"); diff --git a/apps/workflowengine/l10n/ja.json b/apps/workflowengine/l10n/ja.json index 7c90834dcee0e..3f3b5673a2487 100644 --- a/apps/workflowengine/l10n/ja.json +++ b/apps/workflowengine/l10n/ja.json @@ -57,6 +57,7 @@ "Check %s is invalid" : "チェック %s は無効です", "Check #%s does not exist" : "チェック #%s は存在しません", "Workflow" : "ワークフロー", + "Files workflow engine" : "ファイルワークフローエンジン", "Open documentation" : "ドキュメントを開く", "Add rule group" : "ルールグループを追加する", "Short rule description" : "ルールの簡潔な説明", @@ -64,8 +65,6 @@ "Reset" : "リセット", "Save" : "保存", "Saving…" : "保存中...", - "Loading…" : "読み込み中...", - "Successfully saved" : "保存しました", - "File mime type" : "ファイルMIMEタイプ" + "Loading…" : "読み込み中..." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/ka_GE.js b/apps/workflowengine/l10n/ka_GE.js index 6852d7538d60d..f2060064f1c23 100644 --- a/apps/workflowengine/l10n/ka_GE.js +++ b/apps/workflowengine/l10n/ka_GE.js @@ -59,6 +59,7 @@ OC.L10N.register( "Check %s is invalid" : "შეამოწმეთ %s არასწორია", "Check #%s does not exist" : "შეამოწმეთ #%s არ არსებობს", "Workflow" : "შრომითი პროცესები", + "Files workflow engine" : "ფაილების სამუშაოს შესრულების ძრავა", "Open documentation" : "ღია დოკუმენტაცია", "Add rule group" : "ჯგუფის წესის დამატება", "Short rule description" : "წესის მოკლე აღწერა", @@ -66,8 +67,6 @@ OC.L10N.register( "Reset" : "საწყის მდოგმარეობაში დაბრუნება", "Save" : "შენახვა", "Saving…" : "მიმდინარეობს დამახსოვრება...", - "Loading…" : "იტვირთება...", - "Successfully saved" : "წარმატებით დამახსოვრდა", - "File mime type" : "ფაილის mime სახეობა" + "Loading…" : "იტვირთება..." }, "nplurals=1; plural=0;"); diff --git a/apps/workflowengine/l10n/ka_GE.json b/apps/workflowengine/l10n/ka_GE.json index 8233c4e5fea90..5cf10e819681d 100644 --- a/apps/workflowengine/l10n/ka_GE.json +++ b/apps/workflowengine/l10n/ka_GE.json @@ -57,6 +57,7 @@ "Check %s is invalid" : "შეამოწმეთ %s არასწორია", "Check #%s does not exist" : "შეამოწმეთ #%s არ არსებობს", "Workflow" : "შრომითი პროცესები", + "Files workflow engine" : "ფაილების სამუშაოს შესრულების ძრავა", "Open documentation" : "ღია დოკუმენტაცია", "Add rule group" : "ჯგუფის წესის დამატება", "Short rule description" : "წესის მოკლე აღწერა", @@ -64,8 +65,6 @@ "Reset" : "საწყის მდოგმარეობაში დაბრუნება", "Save" : "შენახვა", "Saving…" : "მიმდინარეობს დამახსოვრება...", - "Loading…" : "იტვირთება...", - "Successfully saved" : "წარმატებით დამახსოვრდა", - "File mime type" : "ფაილის mime სახეობა" + "Loading…" : "იტვირთება..." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/ko.js b/apps/workflowengine/l10n/ko.js index ab51b421bc28d..e1ad26ca13009 100644 --- a/apps/workflowengine/l10n/ko.js +++ b/apps/workflowengine/l10n/ko.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "초기화", "Save" : "저장", "Saving…" : "저장 중…", - "Loading…" : "불러오는 중…", - "Successfully saved" : "성공적으로 저장됨", - "File mime type" : "파일 MIME 형식" + "Loading…" : "불러오는 중…" }, "nplurals=1; plural=0;"); diff --git a/apps/workflowengine/l10n/ko.json b/apps/workflowengine/l10n/ko.json index f23a10c069028..0bf33319f0b14 100644 --- a/apps/workflowengine/l10n/ko.json +++ b/apps/workflowengine/l10n/ko.json @@ -64,8 +64,6 @@ "Reset" : "초기화", "Save" : "저장", "Saving…" : "저장 중…", - "Loading…" : "불러오는 중…", - "Successfully saved" : "성공적으로 저장됨", - "File mime type" : "파일 MIME 형식" + "Loading…" : "불러오는 중…" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/lt_LT.js b/apps/workflowengine/l10n/lt_LT.js index 6736062ee1db0..018745d964a8a 100644 --- a/apps/workflowengine/l10n/lt_LT.js +++ b/apps/workflowengine/l10n/lt_LT.js @@ -1,6 +1,7 @@ OC.L10N.register( "workflowengine", { + "Unable to retrieve the group list" : "Nepavyko nuskaityti grupių sąrašo", "Saved" : "Įrašyta", "Saving failed:" : "Įrašymas nepavyko:", "File MIME type" : "Failo MIME tipas", @@ -59,6 +60,7 @@ OC.L10N.register( "Check %s is invalid" : "Neteisingas %s", "Check #%s does not exist" : "#%s neegzistuoja", "Workflow" : "Darbo eiga", + "Files workflow engine" : "Darbo eigos su failais modulis", "Open documentation" : "Atverti dokumentaciją", "Add rule group" : "Pridėti taisyklių grupę", "Short rule description" : "Rodyti taisyklės aprašymą", @@ -66,8 +68,6 @@ OC.L10N.register( "Reset" : "Atstatyti", "Save" : "Įrašyti", "Saving…" : "Įrašoma…", - "Loading…" : "Įkeliama…", - "Successfully saved" : "Sėkmingai įrašyta", - "File mime type" : "Failo mime tipas" + "Loading…" : "Įkeliama…" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/workflowengine/l10n/lt_LT.json b/apps/workflowengine/l10n/lt_LT.json index 08f898d715397..4dc641183c6b4 100644 --- a/apps/workflowengine/l10n/lt_LT.json +++ b/apps/workflowengine/l10n/lt_LT.json @@ -1,4 +1,5 @@ { "translations": { + "Unable to retrieve the group list" : "Nepavyko nuskaityti grupių sąrašo", "Saved" : "Įrašyta", "Saving failed:" : "Įrašymas nepavyko:", "File MIME type" : "Failo MIME tipas", @@ -57,6 +58,7 @@ "Check %s is invalid" : "Neteisingas %s", "Check #%s does not exist" : "#%s neegzistuoja", "Workflow" : "Darbo eiga", + "Files workflow engine" : "Darbo eigos su failais modulis", "Open documentation" : "Atverti dokumentaciją", "Add rule group" : "Pridėti taisyklių grupę", "Short rule description" : "Rodyti taisyklės aprašymą", @@ -64,8 +66,6 @@ "Reset" : "Atstatyti", "Save" : "Įrašyti", "Saving…" : "Įrašoma…", - "Loading…" : "Įkeliama…", - "Successfully saved" : "Sėkmingai įrašyta", - "File mime type" : "Failo mime tipas" + "Loading…" : "Įkeliama…" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/lv.js b/apps/workflowengine/l10n/lv.js index 24cbf9478c003..01d92d143a378 100644 --- a/apps/workflowengine/l10n/lv.js +++ b/apps/workflowengine/l10n/lv.js @@ -3,13 +3,13 @@ OC.L10N.register( { "Saved" : "Saglabāts", "Saving failed:" : "Saglabāšana neizdevās:", - "File MIME type" : "Faila MIME tips", + "File MIME type" : "Datnes MIME tips", "is" : "ir", "is not" : "nav", "matches" : "atbilst", "does not match" : "neatbilst", "Example: {placeholder}" : "Piemērs: {placeholder}", - "File size (upload)" : "Faila lielums (augšupielādēt)", + "File size (upload)" : "Datnes lielums (augšupielādēt)", "less" : "mazāk", "less or equals" : "mazāks vai vienāds ar", "greater or equals" : "lielāks vai vienāds ar", @@ -31,7 +31,7 @@ OC.L10N.register( "Select timezone…" : "Izvēlieties laika joslu...", "Request URL" : "Pieprasījuma URL", "Predefined URLs" : "Standarta URLs", - "Files WebDAV" : "WebDAV faili", + "Files WebDAV" : "WebDAV datnes", "Request user agent" : "Nepieciešams lietotāja aģents", "Sync clients" : "Sync klients", "Android client" : "Android klients", @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Atiestatīt", "Save" : "Saglabāt", "Saving…" : "Saglabā...", - "Loading…" : "Ielādē …", - "Successfully saved" : "Veiksmīgi saglabāts", - "File mime type" : "Faila MIME tips" + "Loading…" : "Ielādē …" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/apps/workflowengine/l10n/lv.json b/apps/workflowengine/l10n/lv.json index f8b0e62b78b77..31f589674c2e6 100644 --- a/apps/workflowengine/l10n/lv.json +++ b/apps/workflowengine/l10n/lv.json @@ -1,13 +1,13 @@ { "translations": { "Saved" : "Saglabāts", "Saving failed:" : "Saglabāšana neizdevās:", - "File MIME type" : "Faila MIME tips", + "File MIME type" : "Datnes MIME tips", "is" : "ir", "is not" : "nav", "matches" : "atbilst", "does not match" : "neatbilst", "Example: {placeholder}" : "Piemērs: {placeholder}", - "File size (upload)" : "Faila lielums (augšupielādēt)", + "File size (upload)" : "Datnes lielums (augšupielādēt)", "less" : "mazāk", "less or equals" : "mazāks vai vienāds ar", "greater or equals" : "lielāks vai vienāds ar", @@ -29,7 +29,7 @@ "Select timezone…" : "Izvēlieties laika joslu...", "Request URL" : "Pieprasījuma URL", "Predefined URLs" : "Standarta URLs", - "Files WebDAV" : "WebDAV faili", + "Files WebDAV" : "WebDAV datnes", "Request user agent" : "Nepieciešams lietotāja aģents", "Sync clients" : "Sync klients", "Android client" : "Android klients", @@ -64,8 +64,6 @@ "Reset" : "Atiestatīt", "Save" : "Saglabāt", "Saving…" : "Saglabā...", - "Loading…" : "Ielādē …", - "Successfully saved" : "Veiksmīgi saglabāts", - "File mime type" : "Faila MIME tips" + "Loading…" : "Ielādē …" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/mn.js b/apps/workflowengine/l10n/mn.js index 6848919a6b7b6..7cec84ce7a770 100644 --- a/apps/workflowengine/l10n/mn.js +++ b/apps/workflowengine/l10n/mn.js @@ -59,8 +59,6 @@ OC.L10N.register( "Reset" : "тохируулах", "Save" : "хадгалах", "Saving…" : "хадгалж байна", - "Loading…" : "уншиж байна", - "Successfully saved" : "амжилттай хадгалагдлаа", - "File mime type" : "файлын mime төрөл" + "Loading…" : "уншиж байна" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/mn.json b/apps/workflowengine/l10n/mn.json index 01afb1e9dcb30..33e759bd8ccd6 100644 --- a/apps/workflowengine/l10n/mn.json +++ b/apps/workflowengine/l10n/mn.json @@ -57,8 +57,6 @@ "Reset" : "тохируулах", "Save" : "хадгалах", "Saving…" : "хадгалж байна", - "Loading…" : "уншиж байна", - "Successfully saved" : "амжилттай хадгалагдлаа", - "File mime type" : "файлын mime төрөл" + "Loading…" : "уншиж байна" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/nb.js b/apps/workflowengine/l10n/nb.js index ebfe15f000559..d8fcc3a7e0781 100644 --- a/apps/workflowengine/l10n/nb.js +++ b/apps/workflowengine/l10n/nb.js @@ -59,6 +59,7 @@ OC.L10N.register( "Check %s is invalid" : "Sjekk %s er ugyldig", "Check #%s does not exist" : "Sjekk #%s finnes ikke", "Workflow" : "Arbeidsflyt", + "Files workflow engine" : "Arbeidsflytmotor for filer", "Open documentation" : "Åpne dokumentasjonen", "Add rule group" : "Legg til regelgruppe", "Short rule description" : "Kort beskrivelse av regel", @@ -66,8 +67,6 @@ OC.L10N.register( "Reset" : "Tilbakestill", "Save" : "Lagre", "Saving…" : "Lagrer…", - "Loading…" : "Laster…", - "Successfully saved" : "Lagret", - "File mime type" : "Filens MIME-type" + "Loading…" : "Laster…" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/nb.json b/apps/workflowengine/l10n/nb.json index 78c87957f3db0..808df45cafd6b 100644 --- a/apps/workflowengine/l10n/nb.json +++ b/apps/workflowengine/l10n/nb.json @@ -57,6 +57,7 @@ "Check %s is invalid" : "Sjekk %s er ugyldig", "Check #%s does not exist" : "Sjekk #%s finnes ikke", "Workflow" : "Arbeidsflyt", + "Files workflow engine" : "Arbeidsflytmotor for filer", "Open documentation" : "Åpne dokumentasjonen", "Add rule group" : "Legg til regelgruppe", "Short rule description" : "Kort beskrivelse av regel", @@ -64,8 +65,6 @@ "Reset" : "Tilbakestill", "Save" : "Lagre", "Saving…" : "Lagrer…", - "Loading…" : "Laster…", - "Successfully saved" : "Lagret", - "File mime type" : "Filens MIME-type" + "Loading…" : "Laster…" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/nl.js b/apps/workflowengine/l10n/nl.js index 282f730dfc0bd..0215ec524734f 100644 --- a/apps/workflowengine/l10n/nl.js +++ b/apps/workflowengine/l10n/nl.js @@ -1,6 +1,7 @@ OC.L10N.register( "workflowengine", { + "Unable to retrieve the group list" : "Kan groepsoverzicht niet ophalen", "Saved" : "Bewaard", "Saving failed:" : "Opslaan mislukt:", "File MIME type" : "Mimetype bestand", @@ -58,7 +59,8 @@ OC.L10N.register( "Check %s does not exist" : "Controleer: %s bestaat niet", "Check %s is invalid" : "Controleer: %s is ongeldig", "Check #%s does not exist" : "Controleer: #%s bestaat niet", - "Workflow" : "Workflow", + "Workflow" : "Workflows", + "Files workflow engine" : "Betanden workflow engine", "Open documentation" : "Open documentatie", "Add rule group" : "Groepsrol toevoegen", "Short rule description" : "Korte rolbeschrijving", @@ -66,8 +68,6 @@ OC.L10N.register( "Reset" : "Reset", "Save" : "Opslaan", "Saving…" : "Opslaan...", - "Loading…" : "Laden...", - "Successfully saved" : "Succesvol opgeslagen", - "File mime type" : "Bestand mime type" + "Loading…" : "Laden..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/nl.json b/apps/workflowengine/l10n/nl.json index 0328c954c9eed..6d739bc8bf42e 100644 --- a/apps/workflowengine/l10n/nl.json +++ b/apps/workflowengine/l10n/nl.json @@ -1,4 +1,5 @@ { "translations": { + "Unable to retrieve the group list" : "Kan groepsoverzicht niet ophalen", "Saved" : "Bewaard", "Saving failed:" : "Opslaan mislukt:", "File MIME type" : "Mimetype bestand", @@ -56,7 +57,8 @@ "Check %s does not exist" : "Controleer: %s bestaat niet", "Check %s is invalid" : "Controleer: %s is ongeldig", "Check #%s does not exist" : "Controleer: #%s bestaat niet", - "Workflow" : "Workflow", + "Workflow" : "Workflows", + "Files workflow engine" : "Betanden workflow engine", "Open documentation" : "Open documentatie", "Add rule group" : "Groepsrol toevoegen", "Short rule description" : "Korte rolbeschrijving", @@ -64,8 +66,6 @@ "Reset" : "Reset", "Save" : "Opslaan", "Saving…" : "Opslaan...", - "Loading…" : "Laden...", - "Successfully saved" : "Succesvol opgeslagen", - "File mime type" : "Bestand mime type" + "Loading…" : "Laden..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/pl.js b/apps/workflowengine/l10n/pl.js index 31318cdb0ddd0..7da8effaecb6d 100644 --- a/apps/workflowengine/l10n/pl.js +++ b/apps/workflowengine/l10n/pl.js @@ -1,6 +1,7 @@ OC.L10N.register( "workflowengine", { + "Unable to retrieve the group list" : "Nie można pobrać listy grup", "Saved" : "Zapisano", "Saving failed:" : "Zapis się nie udał:", "File MIME type" : "Typy plików MIME", @@ -59,6 +60,7 @@ OC.L10N.register( "Check %s is invalid" : "Sprawdź, czy %s jest nieprawidłowy", "Check #%s does not exist" : "Sprawdź, czy #%s nie istnieje", "Workflow" : "Wpływ na pracę", + "Files workflow engine" : "Piliki silnika workflow", "Open documentation" : "Otwórz dokumentację", "Add rule group" : "Dodaj grupę reguł", "Short rule description" : "Krótki opis reguły", @@ -66,8 +68,6 @@ OC.L10N.register( "Reset" : "Zresetuj", "Save" : "Zapisz", "Saving…" : "Zapisywanie...", - "Loading…" : "Wczytywanie...", - "Successfully saved" : "Zapis się powiódł", - "File mime type" : "Typ MIME pliku" + "Loading…" : "Wczytywanie..." }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/workflowengine/l10n/pl.json b/apps/workflowengine/l10n/pl.json index 090dbad317b48..587a1f54ef6fd 100644 --- a/apps/workflowengine/l10n/pl.json +++ b/apps/workflowengine/l10n/pl.json @@ -1,4 +1,5 @@ { "translations": { + "Unable to retrieve the group list" : "Nie można pobrać listy grup", "Saved" : "Zapisano", "Saving failed:" : "Zapis się nie udał:", "File MIME type" : "Typy plików MIME", @@ -57,6 +58,7 @@ "Check %s is invalid" : "Sprawdź, czy %s jest nieprawidłowy", "Check #%s does not exist" : "Sprawdź, czy #%s nie istnieje", "Workflow" : "Wpływ na pracę", + "Files workflow engine" : "Piliki silnika workflow", "Open documentation" : "Otwórz dokumentację", "Add rule group" : "Dodaj grupę reguł", "Short rule description" : "Krótki opis reguły", @@ -64,8 +66,6 @@ "Reset" : "Zresetuj", "Save" : "Zapisz", "Saving…" : "Zapisywanie...", - "Loading…" : "Wczytywanie...", - "Successfully saved" : "Zapis się powiódł", - "File mime type" : "Typ MIME pliku" + "Loading…" : "Wczytywanie..." },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/pt_BR.js b/apps/workflowengine/l10n/pt_BR.js index 233b8a7ad3086..e6f5b05ed8c7b 100644 --- a/apps/workflowengine/l10n/pt_BR.js +++ b/apps/workflowengine/l10n/pt_BR.js @@ -1,6 +1,7 @@ OC.L10N.register( "workflowengine", { + "Unable to retrieve the group list" : "Impossível recuperar a lista do grupo", "Saved" : "Salvo", "Saving failed:" : "A gravação falhou:", "File MIME type" : "Tipo de arquivo MIME", @@ -59,6 +60,7 @@ OC.L10N.register( "Check %s is invalid" : "Verifique se %s é inválido", "Check #%s does not exist" : "Verifique se %s não existe", "Workflow" : "Fluxo de trabalho", + "Files workflow engine" : "Sistema de fluxo de trabalho de arquivos", "Open documentation" : "Abrir documentação", "Add rule group" : "Adicionar regra do grupo", "Short rule description" : "Descrição curta da regra", @@ -66,8 +68,6 @@ OC.L10N.register( "Reset" : "Redefinir", "Save" : "Salvar", "Saving…" : "Salvando...", - "Loading…" : "Carregando...", - "Successfully saved" : "Salvo", - "File mime type" : "Tipo de arquivo mime" + "Loading…" : "Carregando..." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/workflowengine/l10n/pt_BR.json b/apps/workflowengine/l10n/pt_BR.json index ac0272a739da2..3a5dd45540c8a 100644 --- a/apps/workflowengine/l10n/pt_BR.json +++ b/apps/workflowengine/l10n/pt_BR.json @@ -1,4 +1,5 @@ { "translations": { + "Unable to retrieve the group list" : "Impossível recuperar a lista do grupo", "Saved" : "Salvo", "Saving failed:" : "A gravação falhou:", "File MIME type" : "Tipo de arquivo MIME", @@ -57,6 +58,7 @@ "Check %s is invalid" : "Verifique se %s é inválido", "Check #%s does not exist" : "Verifique se %s não existe", "Workflow" : "Fluxo de trabalho", + "Files workflow engine" : "Sistema de fluxo de trabalho de arquivos", "Open documentation" : "Abrir documentação", "Add rule group" : "Adicionar regra do grupo", "Short rule description" : "Descrição curta da regra", @@ -64,8 +66,6 @@ "Reset" : "Redefinir", "Save" : "Salvar", "Saving…" : "Salvando...", - "Loading…" : "Carregando...", - "Successfully saved" : "Salvo", - "File mime type" : "Tipo de arquivo mime" + "Loading…" : "Carregando..." },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/ru.js b/apps/workflowengine/l10n/ru.js index 9ce6f638a1cd3..e66ccb92598ac 100644 --- a/apps/workflowengine/l10n/ru.js +++ b/apps/workflowengine/l10n/ru.js @@ -58,7 +58,8 @@ OC.L10N.register( "Check %s does not exist" : "Проверка %s не существует", "Check %s is invalid" : "Проверка %s неверна", "Check #%s does not exist" : "Проверка #%s не существует", - "Workflow" : "Рабочий процесс", + "Workflow" : "Обработка файлов", + "Files workflow engine" : "Механизм обработки файлов", "Open documentation" : "Открыть документацию", "Add rule group" : "Добавить группу правил", "Short rule description" : "Краткое описание правила", @@ -66,8 +67,6 @@ OC.L10N.register( "Reset" : "Сбросить", "Save" : "Сохранить", "Saving…" : "Сохранение...", - "Loading…" : "Загрузка...", - "Successfully saved" : "Успешно сохранено", - "File mime type" : "MIME тип файла" + "Loading…" : "Загрузка..." }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/apps/workflowengine/l10n/ru.json b/apps/workflowengine/l10n/ru.json index 1d58f02f0ae3b..cb5f32c259b9b 100644 --- a/apps/workflowengine/l10n/ru.json +++ b/apps/workflowengine/l10n/ru.json @@ -56,7 +56,8 @@ "Check %s does not exist" : "Проверка %s не существует", "Check %s is invalid" : "Проверка %s неверна", "Check #%s does not exist" : "Проверка #%s не существует", - "Workflow" : "Рабочий процесс", + "Workflow" : "Обработка файлов", + "Files workflow engine" : "Механизм обработки файлов", "Open documentation" : "Открыть документацию", "Add rule group" : "Добавить группу правил", "Short rule description" : "Краткое описание правила", @@ -64,8 +65,6 @@ "Reset" : "Сбросить", "Save" : "Сохранить", "Saving…" : "Сохранение...", - "Loading…" : "Загрузка...", - "Successfully saved" : "Успешно сохранено", - "File mime type" : "MIME тип файла" + "Loading…" : "Загрузка..." },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/sk.js b/apps/workflowengine/l10n/sk.js index b2f328c05941e..fd19128944b46 100644 --- a/apps/workflowengine/l10n/sk.js +++ b/apps/workflowengine/l10n/sk.js @@ -59,6 +59,7 @@ OC.L10N.register( "Check %s is invalid" : "Kontrola %s je neplatná", "Check #%s does not exist" : "Kontrola #%s neexistuje", "Workflow" : "Systém práce", + "Files workflow engine" : "Typ spôsobu práce súborov", "Open documentation" : "Otvoriť dokumentáciu", "Add rule group" : "Pridať skupinu pravidiel", "Short rule description" : "Zobraziť popis pravidla", @@ -66,8 +67,6 @@ OC.L10N.register( "Reset" : "Vynulovať", "Save" : "Uložiť", "Saving…" : "Ukladá sa...", - "Loading…" : "Načítava sa...", - "Successfully saved" : "Úspešne uložené", - "File mime type" : "Mime typ súboru" + "Loading…" : "Načítava sa..." }, "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"); diff --git a/apps/workflowengine/l10n/sk.json b/apps/workflowengine/l10n/sk.json index 3c5011e61cc66..8be52def1234a 100644 --- a/apps/workflowengine/l10n/sk.json +++ b/apps/workflowengine/l10n/sk.json @@ -57,6 +57,7 @@ "Check %s is invalid" : "Kontrola %s je neplatná", "Check #%s does not exist" : "Kontrola #%s neexistuje", "Workflow" : "Systém práce", + "Files workflow engine" : "Typ spôsobu práce súborov", "Open documentation" : "Otvoriť dokumentáciu", "Add rule group" : "Pridať skupinu pravidiel", "Short rule description" : "Zobraziť popis pravidla", @@ -64,8 +65,6 @@ "Reset" : "Vynulovať", "Save" : "Uložiť", "Saving…" : "Ukladá sa...", - "Loading…" : "Načítava sa...", - "Successfully saved" : "Úspešne uložené", - "File mime type" : "Mime typ súboru" + "Loading…" : "Načítava sa..." },"pluralForm" :"nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/sq.js b/apps/workflowengine/l10n/sq.js index ec8a0366aa87c..7fa1525c82e38 100644 --- a/apps/workflowengine/l10n/sq.js +++ b/apps/workflowengine/l10n/sq.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Rivendos", "Save" : "Ruaj", "Saving…" : "Duke u ruajtur...", - "Loading…" : "Po ngarkohet...", - "Successfully saved" : "U ruajt me sukses", - "File mime type" : "Tipi mime i skedarëve" + "Loading…" : "Po ngarkohet..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/sq.json b/apps/workflowengine/l10n/sq.json index e0af973e61a62..022d3aefda34e 100644 --- a/apps/workflowengine/l10n/sq.json +++ b/apps/workflowengine/l10n/sq.json @@ -64,8 +64,6 @@ "Reset" : "Rivendos", "Save" : "Ruaj", "Saving…" : "Duke u ruajtur...", - "Loading…" : "Po ngarkohet...", - "Successfully saved" : "U ruajt me sukses", - "File mime type" : "Tipi mime i skedarëve" + "Loading…" : "Po ngarkohet..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/sr.js b/apps/workflowengine/l10n/sr.js index 2a0c0118e16e5..130cc0cdaeaef 100644 --- a/apps/workflowengine/l10n/sr.js +++ b/apps/workflowengine/l10n/sr.js @@ -1,6 +1,7 @@ OC.L10N.register( "workflowengine", { + "Unable to retrieve the group list" : "Није могуће дохватити списак група", "Saved" : "Снимљено", "Saving failed:" : "Снимање није успело:", "File MIME type" : "MIME тип фајла", @@ -59,6 +60,7 @@ OC.L10N.register( "Check %s is invalid" : "Проверите да ли је %s исправно", "Check #%s does not exist" : "Проверите да ли #%s постоји", "Workflow" : "Процес рада", + "Files workflow engine" : "Датотеке за мотор процеса рада", "Open documentation" : "Отвори документацију", "Add rule group" : "Додај групу правила", "Short rule description" : "Кратки опис правила", @@ -66,8 +68,6 @@ OC.L10N.register( "Reset" : "Ресетуј", "Save" : "Сачувај", "Saving…" : "Чувам…", - "Loading…" : "Учитавање…", - "Successfully saved" : "Успешно сачувано", - "File mime type" : "MIME тип фајла" + "Loading…" : "Учитавање…" }, "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/apps/workflowengine/l10n/sr.json b/apps/workflowengine/l10n/sr.json index ea34207a608db..1caf1695ba486 100644 --- a/apps/workflowengine/l10n/sr.json +++ b/apps/workflowengine/l10n/sr.json @@ -1,4 +1,5 @@ { "translations": { + "Unable to retrieve the group list" : "Није могуће дохватити списак група", "Saved" : "Снимљено", "Saving failed:" : "Снимање није успело:", "File MIME type" : "MIME тип фајла", @@ -57,6 +58,7 @@ "Check %s is invalid" : "Проверите да ли је %s исправно", "Check #%s does not exist" : "Проверите да ли #%s постоји", "Workflow" : "Процес рада", + "Files workflow engine" : "Датотеке за мотор процеса рада", "Open documentation" : "Отвори документацију", "Add rule group" : "Додај групу правила", "Short rule description" : "Кратки опис правила", @@ -64,8 +66,6 @@ "Reset" : "Ресетуј", "Save" : "Сачувај", "Saving…" : "Чувам…", - "Loading…" : "Учитавање…", - "Successfully saved" : "Успешно сачувано", - "File mime type" : "MIME тип фајла" + "Loading…" : "Учитавање…" },"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);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/sv.js b/apps/workflowengine/l10n/sv.js index 9561df494082c..27c4f6a96e93a 100644 --- a/apps/workflowengine/l10n/sv.js +++ b/apps/workflowengine/l10n/sv.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "Återställ", "Save" : "Spara", "Saving…" : "Sparar...", - "Loading…" : "Laddar...", - "Successfully saved" : "Sparades framgångsrikt", - "File mime type" : "Filens \"mime\" typ" + "Loading…" : "Laddar..." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/workflowengine/l10n/sv.json b/apps/workflowengine/l10n/sv.json index 1b28ef2f7dcee..8827166bfc098 100644 --- a/apps/workflowengine/l10n/sv.json +++ b/apps/workflowengine/l10n/sv.json @@ -64,8 +64,6 @@ "Reset" : "Återställ", "Save" : "Spara", "Saving…" : "Sparar...", - "Loading…" : "Laddar...", - "Successfully saved" : "Sparades framgångsrikt", - "File mime type" : "Filens \"mime\" typ" + "Loading…" : "Laddar..." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/tr.js b/apps/workflowengine/l10n/tr.js index 64e4a2729519c..e41710f175faa 100644 --- a/apps/workflowengine/l10n/tr.js +++ b/apps/workflowengine/l10n/tr.js @@ -1,6 +1,7 @@ OC.L10N.register( "workflowengine", { + "Unable to retrieve the group list" : "Grup listesi alınamadı", "Saved" : "Kaydedildi", "Saving failed:" : "Kaydedilemedi:", "File MIME type" : "Dosya MIME türü", @@ -59,6 +60,7 @@ OC.L10N.register( "Check %s is invalid" : "%s denetimi geçersiz", "Check #%s does not exist" : "#%s denetimi bulunamadı", "Workflow" : "İş akışı", + "Files workflow engine" : "Dosya iş akışı motoru", "Open documentation" : "Belgeleri aç", "Add rule group" : "Kural grubu ekle", "Short rule description" : "Kısa kural açıklaması", @@ -66,8 +68,6 @@ OC.L10N.register( "Reset" : "Sıfırla", "Save" : "Kaydet", "Saving…" : "Kaydediliyor...", - "Loading…" : "Yükleniyor...", - "Successfully saved" : "Kaydedildi", - "File mime type" : "Dosya MIME türü" + "Loading…" : "Yükleniyor..." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/workflowengine/l10n/tr.json b/apps/workflowengine/l10n/tr.json index f6921e7b6250e..40f33f4cf13b7 100644 --- a/apps/workflowengine/l10n/tr.json +++ b/apps/workflowengine/l10n/tr.json @@ -1,4 +1,5 @@ { "translations": { + "Unable to retrieve the group list" : "Grup listesi alınamadı", "Saved" : "Kaydedildi", "Saving failed:" : "Kaydedilemedi:", "File MIME type" : "Dosya MIME türü", @@ -57,6 +58,7 @@ "Check %s is invalid" : "%s denetimi geçersiz", "Check #%s does not exist" : "#%s denetimi bulunamadı", "Workflow" : "İş akışı", + "Files workflow engine" : "Dosya iş akışı motoru", "Open documentation" : "Belgeleri aç", "Add rule group" : "Kural grubu ekle", "Short rule description" : "Kısa kural açıklaması", @@ -64,8 +66,6 @@ "Reset" : "Sıfırla", "Save" : "Kaydet", "Saving…" : "Kaydediliyor...", - "Loading…" : "Yükleniyor...", - "Successfully saved" : "Kaydedildi", - "File mime type" : "Dosya MIME türü" + "Loading…" : "Yükleniyor..." },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/zh_CN.js b/apps/workflowengine/l10n/zh_CN.js index 46a04f5378fac..0d56201cf52f6 100644 --- a/apps/workflowengine/l10n/zh_CN.js +++ b/apps/workflowengine/l10n/zh_CN.js @@ -59,6 +59,7 @@ OC.L10N.register( "Check %s is invalid" : "检查%s是不可用", "Check #%s does not exist" : "检查#%s是不存在", "Workflow" : "工作流", + "Files workflow engine" : "文件工作流引擎", "Open documentation" : "打开文档", "Add rule group" : "添加规则组", "Short rule description" : "短规则说明", @@ -66,8 +67,6 @@ OC.L10N.register( "Reset" : "重置", "Save" : "保存", "Saving…" : "保存中...", - "Loading…" : "加载中", - "Successfully saved" : "保存成功", - "File mime type" : "文件MIME类型" + "Loading…" : "加载中" }, "nplurals=1; plural=0;"); diff --git a/apps/workflowengine/l10n/zh_CN.json b/apps/workflowengine/l10n/zh_CN.json index 24e395c8492c6..e756bddee802e 100644 --- a/apps/workflowengine/l10n/zh_CN.json +++ b/apps/workflowengine/l10n/zh_CN.json @@ -57,6 +57,7 @@ "Check %s is invalid" : "检查%s是不可用", "Check #%s does not exist" : "检查#%s是不存在", "Workflow" : "工作流", + "Files workflow engine" : "文件工作流引擎", "Open documentation" : "打开文档", "Add rule group" : "添加规则组", "Short rule description" : "短规则说明", @@ -64,8 +65,6 @@ "Reset" : "重置", "Save" : "保存", "Saving…" : "保存中...", - "Loading…" : "加载中", - "Successfully saved" : "保存成功", - "File mime type" : "文件MIME类型" + "Loading…" : "加载中" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/apps/workflowengine/l10n/zh_TW.js b/apps/workflowengine/l10n/zh_TW.js index 82c4f6905f117..d05ab24bcaeee 100644 --- a/apps/workflowengine/l10n/zh_TW.js +++ b/apps/workflowengine/l10n/zh_TW.js @@ -66,8 +66,6 @@ OC.L10N.register( "Reset" : "重設", "Save" : "儲存", "Saving…" : "儲存中...", - "Loading…" : "載入中…", - "Successfully saved" : "成功保存", - "File mime type" : "檔案mime類型" + "Loading…" : "載入中…" }, "nplurals=1; plural=0;"); diff --git a/apps/workflowengine/l10n/zh_TW.json b/apps/workflowengine/l10n/zh_TW.json index 0b561b98d2808..1179e279f41ad 100644 --- a/apps/workflowengine/l10n/zh_TW.json +++ b/apps/workflowengine/l10n/zh_TW.json @@ -64,8 +64,6 @@ "Reset" : "重設", "Save" : "儲存", "Saving…" : "儲存中...", - "Loading…" : "載入中…", - "Successfully saved" : "成功保存", - "File mime type" : "檔案mime類型" + "Loading…" : "載入中…" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/build/files-checker.php b/build/files-checker.php index 20d8b4b5f3339..bdded803d9972 100644 --- a/build/files-checker.php +++ b/build/files-checker.php @@ -36,6 +36,7 @@ '.mailmap', '.scrutinizer.yml', '.tag', + '.tx', '.user.ini', '3rdparty', 'apps', @@ -62,7 +63,6 @@ 'index.html', 'index.php', 'issue_template.md', - 'l10n', 'lib', 'occ', 'ocs', diff --git a/build/integration/features/comments.feature b/build/integration/features/comments.feature index 135bb0165275c..0ee11bc987387 100644 --- a/build/integration/features/comments.feature +++ b/build/integration/features/comments.feature @@ -16,21 +16,21 @@ Feature: comments Scenario: Creating a comment on a shared file belonging to another user Given user "user0" exists - Given user "user1" exists + Given user "12345" exists Given User "user0" uploads file "data/textfile.txt" to "/myFileToComment.txt" Given As "user0" sending "POST" to "/apps/files_sharing/api/v1/shares" with | path | myFileToComment.txt | - | shareWith | user1 | + | shareWith | 12345 | | shareType | 0 | - When "user1" posts a comment with content "A comment from another user" on the file named "/myFileToComment.txt" it should return "201" - Then As "user1" load all the comments of the file named "/myFileToComment.txt" it should return "207" + When "12345" posts a comment with content "A comment from another user" on the file named "/myFileToComment.txt" it should return "201" + Then As "12345" load all the comments of the file named "/myFileToComment.txt" it should return "207" And the response should contain a property "oc:parentId" with value "0" And the response should contain a property "oc:childrenCount" with value "0" And the response should contain a property "oc:verb" with value "comment" And the response should contain a property "oc:actorType" with value "users" And the response should contain a property "oc:objectType" with value "files" And the response should contain a property "oc:message" with value "A comment from another user" - And the response should contain a property "oc:actorDisplayName" with value "user1" + And the response should contain a property "oc:actorDisplayName" with value "12345" And the response should contain only "1" comments Scenario: Creating a comment on a non-shared file belonging to another user @@ -206,4 +206,4 @@ Feature: comments And the response should contain a property "oc:message" with value "My first comment" And the response should contain a property "oc:actorDisplayName" with value "user1" And the response should contain only "1" comments - Then As "user0" edit the last created comment and set text to "My edited comment" it should return "403" \ No newline at end of file + Then As "user0" edit the last created comment and set text to "My edited comment" it should return "403" diff --git a/build/integration/features/tags.feature b/build/integration/features/tags.feature index 0c6cd06f9f9d9..3ef7ccb38b026 100644 --- a/build/integration/features/tags.feature +++ b/build/integration/features/tags.feature @@ -114,14 +114,14 @@ Feature: tags Scenario: Assigning a normal tag to a file shared by someone else as regular user should work Given user "user0" exists - Given user "user1" exists + Given user "12345" exists Given "admin" creates a "normal" tag with name "MySuperAwesomeTagName" Given user "user0" uploads file "data/textfile.txt" to "/myFileToTag.txt" Given As "user0" sending "POST" to "/apps/files_sharing/api/v1/shares" with | path | myFileToTag.txt | - | shareWith | user1 | + | shareWith | 12345 | | shareType | 0 | - When "user1" adds the tag "MySuperAwesomeTagName" to "/myFileToTag.txt" shared by "user0" + When "12345" adds the tag "MySuperAwesomeTagName" to "/myFileToTag.txt" shared by "user0" Then The response should have a status code "201" And "/myFileToTag.txt" shared by "user0" has the following tags |MySuperAwesomeTagName| diff --git a/build/l10nParseAppInfo.php b/build/l10nParseAppInfo.php deleted file mode 100644 index 74c040b333cc6..0000000000000 --- a/build/l10nParseAppInfo.php +++ /dev/null @@ -1,60 +0,0 @@ - - * - * @license GNU AGPL version 3 or any later version - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as - * published by the Free Software Foundation, either version 3 of the - * License, or (at your option) any later version. - * - * 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 - * along with this program. If not, see . - * - */ - -/** - * This little script parses the info.xml and extracts the app name as well - * as the navigation entry name from the XML and writes it into a file named - * specialAppInfoFakeDummyForL10nScript.php that is created and deleted during - * l10n string extraction - */ - -$fileName = getcwd() . '/appinfo/info.xml'; -$strings = []; - -if (!file_exists($fileName)) { - exit(); -} - -$xml = simplexml_load_file($fileName); - -if ($xml->name) { - $strings[] = $xml->name->__toString(); -} - -if ($xml->navigations) { - foreach ($xml->navigations as $navigation) { - $name = $navigation->navigation->name->__toString(); - if (!in_array($name, $strings)) { - $strings[] = $name; - } - } -} - -print_r($strings); - -$content = 't("' . $string . '");' . PHP_EOL; -} - -file_put_contents('specialAppInfoFakeDummyForL10nScript.php', $content); - diff --git a/core/Command/Db/Migrations/GenerateCommand.php b/core/Command/Db/Migrations/GenerateCommand.php index 8fbc1781d94c4..e37c51e85fbaf 100644 --- a/core/Command/Db/Migrations/GenerateCommand.php +++ b/core/Command/Db/Migrations/GenerateCommand.php @@ -39,7 +39,7 @@ class GenerateCommand extends Command { 'request->getRequestUri(), 0, strpos($this->request->getRequestUri(), '/login/flow')); } - $serverPath = $this->request->getServerProtocol() . "://" . $this->request->getServerHost() . $serverPostfix; + $protocol = $this->request->getServerProtocol(); + + if ($protocol !== "https") { + $xForwardedProto = $this->request->getHeader('X-Forwarded-Proto'); + $xForwardedSSL = $this->request->getHeader('X-Forwarded-Ssl'); + if ($xForwardedProto === 'https' || $xForwardedSSL === 'on') { + $protocol = 'https'; + } + } + + + $serverPath = $protocol . "://" . $this->request->getServerHost() . $serverPostfix; $redirectUri = 'nc://login/server:' . $serverPath . '&user:' . urlencode($loginName) . '&password:' . urlencode($token); } diff --git a/core/Controller/LoginController.php b/core/Controller/LoginController.php index e53095a7de7be..9b9c5bcd4eedb 100644 --- a/core/Controller/LoginController.php +++ b/core/Controller/LoginController.php @@ -256,13 +256,15 @@ public function tryLogin($user, $password, $redirect_url, $remember_login = fals $users = $this->userManager->getByEmail($user); // we only allow login by email if unique if (count($users) === 1) { + $previousUser = $user; $user = $users[0]->getUID(); - $loginResult = $this->userManager->checkPassword($user, $password); - } else { - $this->logger->warning('Login failed: \''. $user .'\' (Remote IP: \''. $this->request->getRemoteAddress(). '\')', ['app' => 'core']); + if($user !== $previousUser) { + $loginResult = $this->userManager->checkPassword($user, $password); + } } } if ($loginResult === false) { + $this->logger->warning('Login failed: \''. $user .'\' (Remote IP: \''. $this->request->getRemoteAddress(). '\')', ['app' => 'core']); // Read current user and append if possible - we need to return the unmodified user otherwise we will leak the login name $args = !is_null($user) ? ['user' => $originalUser] : []; if (!is_null($redirect_url)) { diff --git a/core/Migrations/Version13000Date20170705121758.php b/core/Migrations/Version13000Date20170705121758.php index 6f9c2d243f81d..9d8b373b6b994 100644 --- a/core/Migrations/Version13000Date20170705121758.php +++ b/core/Migrations/Version13000Date20170705121758.php @@ -23,21 +23,21 @@ namespace OC\Core\Migrations; -use Doctrine\DBAL\Schema\Schema; use Doctrine\DBAL\Types\Type; +use OCP\DB\ISchemaWrapper; use OCP\Migration\SimpleMigrationStep; use OCP\Migration\IOutput; class Version13000Date20170705121758 extends SimpleMigrationStep { /** * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - * @return null|Schema + * @return null|ISchemaWrapper * @since 13.0.0 */ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { - /** @var Schema $schema */ + /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); if (!$schema->hasTable('personal_sections')) { diff --git a/core/Migrations/Version13000Date20170718121200.php b/core/Migrations/Version13000Date20170718121200.php index e71debfcb4b30..139129eb60096 100644 --- a/core/Migrations/Version13000Date20170718121200.php +++ b/core/Migrations/Version13000Date20170718121200.php @@ -23,8 +23,8 @@ namespace OC\Core\Migrations; -use Doctrine\DBAL\Schema\Schema; use Doctrine\DBAL\Types\Type; +use OCP\DB\ISchemaWrapper; use OCP\Migration\SimpleMigrationStep; use OCP\Migration\IOutput; @@ -32,13 +32,13 @@ class Version13000Date20170718121200 extends SimpleMigrationStep { /** * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - * @return null|Schema + * @return null|ISchemaWrapper * @since 13.0.0 */ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { - /** @var Schema $schema */ + /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); if (!$schema->hasTable('appconfig')) { diff --git a/core/Migrations/Version13000Date20170814074715.php b/core/Migrations/Version13000Date20170814074715.php index 097db51984ebc..0eae4167fb6af 100644 --- a/core/Migrations/Version13000Date20170814074715.php +++ b/core/Migrations/Version13000Date20170814074715.php @@ -23,7 +23,7 @@ namespace OC\Core\Migrations; -use Doctrine\DBAL\Schema\Schema; +use OCP\DB\ISchemaWrapper; use OCP\Migration\SimpleMigrationStep; use OCP\Migration\IOutput; @@ -31,7 +31,7 @@ class Version13000Date20170814074715 extends SimpleMigrationStep { /** * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options * @since 13.0.0 */ @@ -40,13 +40,13 @@ public function preSchemaChange(IOutput $output, \Closure $schemaClosure, array /** * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - * @return null|Schema + * @return null|ISchemaWrapper * @since 13.0.0 */ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { - /** @var Schema $schema */ + /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); @@ -69,7 +69,7 @@ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $op /** * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options * @since 13.0.0 */ diff --git a/core/Migrations/Version13000Date20170919121250.php b/core/Migrations/Version13000Date20170919121250.php index 0857d6d5ceb9c..6bdd79cf6722b 100644 --- a/core/Migrations/Version13000Date20170919121250.php +++ b/core/Migrations/Version13000Date20170919121250.php @@ -23,7 +23,7 @@ */ namespace OC\Core\Migrations; -use Doctrine\DBAL\Schema\Schema; +use OCP\DB\ISchemaWrapper; use OCP\Migration\SimpleMigrationStep; use OCP\Migration\IOutput; @@ -34,7 +34,7 @@ class Version13000Date20170919121250 extends SimpleMigrationStep { /** * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options * @since 13.0.0 */ @@ -43,13 +43,13 @@ public function preSchemaChange(IOutput $output, \Closure $schemaClosure, array /** * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options - * @return null|Schema + * @return null|ISchemaWrapper * @since 13.0.0 */ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) { - /** @var Schema $schema */ + /** @var ISchemaWrapper $schema */ $schema = $schemaClosure(); $table = $schema->getTable('jobs'); @@ -115,7 +115,7 @@ public function changeSchema(IOutput $output, \Closure $schemaClosure, array $op /** * @param IOutput $output - * @param \Closure $schemaClosure The `\Closure` returns a `Schema` + * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper` * @param array $options * @since 13.0.0 */ diff --git a/core/Migrations/Version13000Date20170926101637.php b/core/Migrations/Version13000Date20170926101637.php index f51828e7a3341..088de9880209a 100644 --- a/core/Migrations/Version13000Date20170926101637.php +++ b/core/Migrations/Version13000Date20170926101637.php @@ -23,10 +23,7 @@ */ namespace OC\Core\Migrations; -use Doctrine\DBAL\Schema\Schema; use OCP\Migration\BigIntMigration; -use OCP\Migration\SimpleMigrationStep; -use OCP\Migration\IOutput; /** * Auto-generated migration step: Please modify to your needs! diff --git a/core/css/apps.scss b/core/css/apps.scss index 41eea3bb524c8..eda16deca2e04 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -118,7 +118,6 @@ kbd { } } - > a, > .app-navigation-entry-deleted { /* Ugly hack for overriding the main entry link */ padding-left: 44px !important; @@ -161,13 +160,14 @@ kbd { /* Second level nesting for lists */ > ul { - flex: 1 0 100%; - padding-left: 62px; - width: inherit; + flex: 0 1 auto; + padding-left: 44px; + width: 100%; transition: max-height 2000ms ease-in-out, opacity 250ms ease-in-out; max-height: 9999px; opacity: 1; + position: relative; > li { display: inline-flex; flex-wrap: wrap; @@ -183,19 +183,7 @@ kbd { /* align loader */ &.icon-loading-small:after { - left: -10px; - } - - /* Submenu fix for icon */ - > a[class*='icon-'], - > a[style*='background-image'], - .app-navigation-entry-bullet { - margin-left: -32px; /* 44px padding - 12px padding */ - } - - /* Submenu fix for bullet */ - > .app-navigation-entry-bullet { - left: -32px;/* 44px padding - 12px padding */ + left: 22px; /* 44px / 2 */ } } } @@ -210,6 +198,7 @@ kbd { &.icon-loading-small { > a, > .app-navigation-entry-bullet { + /* hide icon or bullet if loading state*/ background: none !important; } } @@ -222,15 +211,15 @@ kbd { justify-content: space-between; line-height: 44px; min-height: 44px; - padding: 0 12px; + padding: 0 12px 0 44px; overflow: hidden; box-sizing: border-box; white-space: nowrap; text-overflow: ellipsis; color: $color-main-text; opacity: .57; - flex: 1 1 0; - z-index: 100; /* above the bullet */ + flex: 1 1 0px; + z-index: 100; /* above the bullet to allow click*/ /* TODO: forbid using img as icon in menu? */ &:first-child img { margin-right: 11px; @@ -260,12 +249,6 @@ kbd { cursor: pointer; } - /* padding in case of icon or bullet */ - > a[class*='icon-'], - > a[style*='background-image'] { - padding-left: 44px; - } - /* popover fix the flex positionning of the li parent */ > .app-navigation-entry-menu { top: 44px; @@ -467,14 +450,14 @@ kbd { */ .app-navigation-entry-deleted { display: inline-flex; - padding-left: 12px; + padding-left: 44px; transform: translateX(250px); .app-navigation-entry-deleted-description { position: relative; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; - flex: 1 1 0; + flex: 1 1 0px; line-height: 44px; } .app-navigation-entry-deleted-button { @@ -498,6 +481,7 @@ kbd { opacity 250ms ease-in-out, z-index 250ms ease-in-out; position: absolute; + left: 0; background-color: $color-main-background; box-sizing: border-box; } @@ -1026,6 +1010,8 @@ kbd { object-fit: cover; user-select: none; cursor: pointer; + top: 50%; + margin-top: -20px; } .app-content-list-item-line-one, @@ -1036,7 +1022,7 @@ kbd { overflow: hidden; text-overflow: ellipsis; order: 1; - flex: 1 1 0; + flex: 1 1 0px; padding-right: 10px; cursor: pointer; } @@ -1044,7 +1030,8 @@ kbd { .app-content-list-item-line-two { opacity: .5; order: 3; - flex: 1 0 calc(100% - 24px); + flex: 1 0; + flex-basis: calc(100% - 24px); } .app-content-list-item-details { diff --git a/core/css/jquery-ui-fixes.scss b/core/css/jquery-ui-fixes.scss index 9dc75fc327450..0500e1b08c83c 100644 --- a/core/css/jquery-ui-fixes.scss +++ b/core/css/jquery-ui-fixes.scss @@ -11,6 +11,7 @@ .ui-widget-header { border: none; color: $color-main-text; + background-image: none; } .ui-widget-header a { color: $color-main-text; diff --git a/core/css/styles.scss b/core/css/styles.scss index 4b02041976ba5..73ef909df5e48 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -183,6 +183,7 @@ body { font-size: 1.2em; padding: 3px; padding-left: 25px; + padding-right: 20px; background: transparent url('../img/actions/search-white.svg?v=1') no-repeat 6px center; color: $color-primary-text; border: 0; @@ -1030,6 +1031,8 @@ code { font-weight: normal; color: nc-lighten($color-main-text, 33%); opacity: .8; + width: 26px; + padding: 2px; } tr:hover { background-color: inherit; @@ -1137,10 +1140,11 @@ code { flex-wrap: nowrap; justify-content: space-between; td { - display: block; - flex: 1 1; + flex: 1 1 auto; margin: 0; padding: 2px; + height: 26px; + width: 26px; display: flex; align-items: center; justify-content: center; diff --git a/core/css/systemtags.scss b/core/css/systemtags.scss index 76db389a6dc30..bffafe101e3f3 100644 --- a/core/css/systemtags.scss +++ b/core/css/systemtags.scss @@ -43,6 +43,7 @@ position: relative; input { display: inline-block; + height: 30px; width: calc(100% - 40px); } } diff --git a/core/fonts/OpenSans-Light.ttf b/core/fonts/OpenSans-Light.ttf new file mode 100644 index 0000000000000..0d381897da203 Binary files /dev/null and b/core/fonts/OpenSans-Light.ttf differ diff --git a/core/fonts/OpenSans-Semibold.ttf b/core/fonts/OpenSans-Semibold.ttf new file mode 100644 index 0000000000000..1a7679e3949fb Binary files /dev/null and b/core/fonts/OpenSans-Semibold.ttf differ diff --git a/core/js/lostpassword.js b/core/js/lostpassword.js index 8c77004744444..5f81a96cd4fe2 100644 --- a/core/js/lostpassword.js +++ b/core/js/lostpassword.js @@ -162,14 +162,7 @@ OC.Lostpassword = { resetDone : function(result){ var resetErrorMsg; if (result && result.status === 'success'){ - $.post( - OC.webroot + '/', - { - user : window.location.href.split('/').pop(), - password : $('#password').val() - }, - OC.Lostpassword.redirect - ); + OC.Lostpassword.redirect(); } else { if (result && result.msg){ resetErrorMsg = result.msg; diff --git a/core/js/sharedialogshareelistview.js b/core/js/sharedialogshareelistview.js index 30cbeff3c6472..8ec53810b5129 100644 --- a/core/js/sharedialogshareelistview.js +++ b/core/js/sharedialogshareelistview.js @@ -104,7 +104,7 @@ '' + '
' + ' ' + - ' ' + + ' ' + ' ' + '
' + '' + @@ -241,7 +241,7 @@ shareWithTitle: shareWithTitle, shareType: shareType, shareId: this.model.get('shares')[shareIndex].id, - modSeed: shareType !== OC.Share.SHARE_TYPE_USER, + modSeed: shareType !== OC.Share.SHARE_TYPE_USER && shareType !== OC.Share.SHARE_TYPE_CIRCLE, isRemoteShare: shareType === OC.Share.SHARE_TYPE_REMOTE, isMailShare: shareType === OC.Share.SHARE_TYPE_EMAIL, isCircleShare: shareType === OC.Share.SHARE_TYPE_CIRCLE, diff --git a/core/js/sharedialogview.js b/core/js/sharedialogview.js index 6b65e46b2547e..d2c6349014158 100644 --- a/core/js/sharedialogview.js +++ b/core/js/sharedialogview.js @@ -338,7 +338,7 @@ } var insert = $("