diff options
Diffstat (limited to 'apps/files_external')
143 files changed, 816 insertions, 953 deletions
diff --git a/apps/files_external/appinfo/routes.php b/apps/files_external/appinfo/routes.php index 39b15e2a956..5602e1c0d11 100644 --- a/apps/files_external/appinfo/routes.php +++ b/apps/files_external/appinfo/routes.php @@ -7,12 +7,9 @@ */ -$this->create('files_external_oauth1', 'apps/files_external/ajax/oauth1.php') - ->actionInclude('files_external/ajax/oauth1.php'); $this->create('files_external_oauth2', 'apps/files_external/ajax/oauth2.php') ->actionInclude('files_external/ajax/oauth2.php'); - $this->create('files_external_list_applicable', '/apps/files_external/applicable') ->actionInclude('files_external/ajax/applicable.php'); diff --git a/apps/files_external/composer/composer/autoload_classmap.php b/apps/files_external/composer/composer/autoload_classmap.php index 90f41f0e920..8ac551013bd 100644 --- a/apps/files_external/composer/composer/autoload_classmap.php +++ b/apps/files_external/composer/composer/autoload_classmap.php @@ -43,7 +43,6 @@ return array( 'OCA\\Files_External\\Lib\\Auth\\IUserProvided' => $baseDir . '/../lib/Lib/Auth/IUserProvided.php', 'OCA\\Files_External\\Lib\\Auth\\InvalidAuth' => $baseDir . '/../lib/Lib/Auth/InvalidAuth.php', 'OCA\\Files_External\\Lib\\Auth\\NullMechanism' => $baseDir . '/../lib/Lib/Auth/NullMechanism.php', - 'OCA\\Files_External\\Lib\\Auth\\OAuth1\\OAuth1' => $baseDir . '/../lib/Lib/Auth/OAuth1/OAuth1.php', 'OCA\\Files_External\\Lib\\Auth\\OAuth2\\OAuth2' => $baseDir . '/../lib/Lib/Auth/OAuth2/OAuth2.php', 'OCA\\Files_External\\Lib\\Auth\\OpenStack\\OpenStackV2' => $baseDir . '/../lib/Lib/Auth/OpenStack/OpenStackV2.php', 'OCA\\Files_External\\Lib\\Auth\\OpenStack\\OpenStackV3' => $baseDir . '/../lib/Lib/Auth/OpenStack/OpenStackV3.php', diff --git a/apps/files_external/composer/composer/autoload_static.php b/apps/files_external/composer/composer/autoload_static.php index 7b5eb5feabe..4468ce1b6bb 100644 --- a/apps/files_external/composer/composer/autoload_static.php +++ b/apps/files_external/composer/composer/autoload_static.php @@ -58,7 +58,6 @@ class ComposerStaticInitFiles_External 'OCA\\Files_External\\Lib\\Auth\\IUserProvided' => __DIR__ . '/..' . '/../lib/Lib/Auth/IUserProvided.php', 'OCA\\Files_External\\Lib\\Auth\\InvalidAuth' => __DIR__ . '/..' . '/../lib/Lib/Auth/InvalidAuth.php', 'OCA\\Files_External\\Lib\\Auth\\NullMechanism' => __DIR__ . '/..' . '/../lib/Lib/Auth/NullMechanism.php', - 'OCA\\Files_External\\Lib\\Auth\\OAuth1\\OAuth1' => __DIR__ . '/..' . '/../lib/Lib/Auth/OAuth1/OAuth1.php', 'OCA\\Files_External\\Lib\\Auth\\OAuth2\\OAuth2' => __DIR__ . '/..' . '/../lib/Lib/Auth/OAuth2/OAuth2.php', 'OCA\\Files_External\\Lib\\Auth\\OpenStack\\OpenStackV2' => __DIR__ . '/..' . '/../lib/Lib/Auth/OpenStack/OpenStackV2.php', 'OCA\\Files_External\\Lib\\Auth\\OpenStack\\OpenStackV3' => __DIR__ . '/..' . '/../lib/Lib/Auth/OpenStack/OpenStackV3.php', diff --git a/apps/files_external/js/oauth1.js b/apps/files_external/js/oauth1.js deleted file mode 100644 index 47e571a52c0..00000000000 --- a/apps/files_external/js/oauth1.js +++ /dev/null @@ -1,87 +0,0 @@ -/** - * SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH and Nextcloud contributors - * SPDX-FileCopyrightText: 2016 ownCloud, Inc. - * SPDX-License-Identifier: AGPL-3.0-only - */ -window.addEventListener('DOMContentLoaded', function() { - - function displayGranted($tr) { - $tr.find('.configuration input.auth-param').attr('disabled', 'disabled').addClass('disabled-success'); - } - - OCA.Files_External.Settings.mountConfig.whenSelectAuthMechanism(function($tr, authMechanism, scheme, onCompletion) { - if (authMechanism === 'oauth1::oauth1') { - var config = $tr.find('.configuration'); - config.append($(document.createElement('input')) - .addClass('button auth-param') - .attr('type', 'button') - .attr('value', t('files_external', 'Grant access')) - .attr('name', 'oauth1_grant') - ); - - onCompletion.then(function() { - var configured = $tr.find('[data-parameter="configured"]'); - if ($(configured).val() == 'true') { - displayGranted($tr); - } else { - var app_key = $tr.find('.configuration [data-parameter="app_key"]').val(); - var app_secret = $tr.find('.configuration [data-parameter="app_secret"]').val(); - if (app_key != '' && app_secret != '') { - var pos = window.location.search.indexOf('oauth_token') + 12; - var token = $tr.find('.configuration [data-parameter="token"]'); - if (pos != -1 && window.location.search.substr(pos, $(token).val().length) == $(token).val()) { - var token_secret = $tr.find('.configuration [data-parameter="token_secret"]'); - var statusSpan = $tr.find('.status span'); - statusSpan.removeClass(); - statusSpan.addClass('waiting'); - $.post(OC.filePath('files_external', 'ajax', 'oauth1.php'), { step: 2, app_key: app_key, app_secret: app_secret, request_token: $(token).val(), request_token_secret: $(token_secret).val() }, function(result) { - if (result && result.status == 'success') { - $(token).val(result.access_token); - $(token_secret).val(result.access_token_secret); - $(configured).val('true'); - OCA.Files_External.Settings.mountConfig.saveStorageConfig($tr, function(status) { - if (status) { - displayGranted($tr); - } - }); - } else { - OC.dialogs.alert(result.data.message, t('files_external', 'Error configuring OAuth1')); - } - }); - } - } - } - }); - } - }); - - $('#externalStorage').on('click', '[name="oauth1_grant"]', function(event) { - event.preventDefault(); - var tr = $(this).parent().parent(); - var app_key = $(this).parent().find('[data-parameter="app_key"]').val(); - var app_secret = $(this).parent().find('[data-parameter="app_secret"]').val(); - if (app_key != '' && app_secret != '') { - var configured = $(this).parent().find('[data-parameter="configured"]'); - var token = $(this).parent().find('[data-parameter="token"]'); - var token_secret = $(this).parent().find('[data-parameter="token_secret"]'); - $.post(OC.filePath('files_external', 'ajax', 'oauth1.php'), { step: 1, app_key: app_key, app_secret: app_secret, callback: location.protocol + '//' + location.host + location.pathname }, function(result) { - if (result && result.status == 'success') { - $(configured).val('false'); - $(token).val(result.data.request_token); - $(token_secret).val(result.data.request_token_secret); - OCA.Files_External.Settings.mountConfig.saveStorageConfig(tr, function() { - window.location = result.data.url; - }); - } else { - OC.dialogs.alert(result.data.message, t('files_external', 'Error configuring OAuth1')); - } - }); - } else { - OC.dialogs.alert( - t('files_external', 'Please provide a valid app key and secret.'), - t('files_external', 'Error configuring OAuth1') - ); - } - }); - -}); diff --git a/apps/files_external/l10n/ar.js b/apps/files_external/l10n/ar.js index aac10eca4be..893b19f791e 100644 --- a/apps/files_external/l10n/ar.js +++ b/apps/files_external/l10n/ar.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "منح إذن بالنفاذ", - "Error configuring OAuth1" : "خطأ في تكوين OAuth1", - "Please provide a valid app key and secret." : "يرجى توفير مفتاح للتطبيق وكلمة سر صالحين.", "Error configuring OAuth2" : "خطأ في تكوين OAuth2", "Generate keys" : "توليد المفاتيح", "Error generating key pair" : "خطأ في توليد زوج المفاتيح", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "المفتاح السّرّي", "Builtin" : "مُضمّن", "None" : "لا شيء", - "OAuth1" : "OAuth1", - "App key" : "مفتاح التطبيق", - "App secret" : "كلمة مرور التطبيق", "OAuth2" : "OAuth2", "Client ID" : "مُعرِّف العميل", "Client secret" : "كلمة مرور العميل", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "كُلَّ الأشخاص", "Advanced settings" : "إعدادات متقدمة", "Allow people to mount external storage" : "السماح للأشخاص بثبيت وحدات تخزين خارجية", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "بيانات تسجيل الدخول الشاملة تستخدم للتحقق من عدة وحدات تخزين خارجية لها نفس بيانات تسجيل الدخول." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "بيانات تسجيل الدخول الشاملة تستخدم للتحقق من عدة وحدات تخزين خارجية لها نفس بيانات تسجيل الدخول.", + "Error configuring OAuth1" : "خطأ في تكوين OAuth1", + "Please provide a valid app key and secret." : "يرجى توفير مفتاح للتطبيق وكلمة سر صالحين.", + "OAuth1" : "OAuth1", + "App key" : "مفتاح التطبيق", + "App secret" : "كلمة مرور التطبيق" }, "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_external/l10n/ar.json b/apps/files_external/l10n/ar.json index b9b92dd0047..7bde5fbf7e1 100644 --- a/apps/files_external/l10n/ar.json +++ b/apps/files_external/l10n/ar.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "منح إذن بالنفاذ", - "Error configuring OAuth1" : "خطأ في تكوين OAuth1", - "Please provide a valid app key and secret." : "يرجى توفير مفتاح للتطبيق وكلمة سر صالحين.", "Error configuring OAuth2" : "خطأ في تكوين OAuth2", "Generate keys" : "توليد المفاتيح", "Error generating key pair" : "خطأ في توليد زوج المفاتيح", @@ -24,9 +22,6 @@ "Secret key" : "المفتاح السّرّي", "Builtin" : "مُضمّن", "None" : "لا شيء", - "OAuth1" : "OAuth1", - "App key" : "مفتاح التطبيق", - "App secret" : "كلمة مرور التطبيق", "OAuth2" : "OAuth2", "Client ID" : "مُعرِّف العميل", "Client secret" : "كلمة مرور العميل", @@ -155,6 +150,11 @@ "All people" : "كُلَّ الأشخاص", "Advanced settings" : "إعدادات متقدمة", "Allow people to mount external storage" : "السماح للأشخاص بثبيت وحدات تخزين خارجية", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "بيانات تسجيل الدخول الشاملة تستخدم للتحقق من عدة وحدات تخزين خارجية لها نفس بيانات تسجيل الدخول." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "بيانات تسجيل الدخول الشاملة تستخدم للتحقق من عدة وحدات تخزين خارجية لها نفس بيانات تسجيل الدخول.", + "Error configuring OAuth1" : "خطأ في تكوين OAuth1", + "Please provide a valid app key and secret." : "يرجى توفير مفتاح للتطبيق وكلمة سر صالحين.", + "OAuth1" : "OAuth1", + "App key" : "مفتاح التطبيق", + "App secret" : "كلمة مرور التطبيق" },"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_external/l10n/ast.js b/apps/files_external/l10n/ast.js index 028fd7624fe..be7ed079e4d 100644 --- a/apps/files_external/l10n/ast.js +++ b/apps/files_external/l10n/ast.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder l'accesu", - "Error configuring OAuth1" : "Hebo un error al configurar l'OAuth1", - "Please provide a valid app key and secret." : "Forni una clave y un secretu d'aplicación válidos.", "Error configuring OAuth2" : "Hebo un error al configurar l'OAuth2", "Generate keys" : "Xenerar les claves", "Error generating key pair" : "Hebo un error al xenerar el par de claves", @@ -24,9 +22,6 @@ OC.L10N.register( "Secret key" : "Clave del secretu", "Builtin" : "Integrada", "None" : "Nada", - "OAuth1" : "OAuth1", - "App key" : "Clave d'aplicación", - "App secret" : "Secretu d'aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID de veceru", "Client secret" : "Secretu de veceru", @@ -144,6 +139,11 @@ OC.L10N.register( "All people" : "Toles persones", "Advanced settings" : "Configuración avanzada", "Allow people to mount external storage" : "Permitir a otros montar l'almacenamientu esternu", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Pues usar les credenciales globales p'autenticate en múltiples almacenamientos esternos que tengan les meses credenciales." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Pues usar les credenciales globales p'autenticate en múltiples almacenamientos esternos que tengan les meses credenciales.", + "Error configuring OAuth1" : "Hebo un error al configurar l'OAuth1", + "Please provide a valid app key and secret." : "Forni una clave y un secretu d'aplicación válidos.", + "OAuth1" : "OAuth1", + "App key" : "Clave d'aplicación", + "App secret" : "Secretu d'aplicación" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/ast.json b/apps/files_external/l10n/ast.json index fcb875fa69c..a77229c8c6a 100644 --- a/apps/files_external/l10n/ast.json +++ b/apps/files_external/l10n/ast.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder l'accesu", - "Error configuring OAuth1" : "Hebo un error al configurar l'OAuth1", - "Please provide a valid app key and secret." : "Forni una clave y un secretu d'aplicación válidos.", "Error configuring OAuth2" : "Hebo un error al configurar l'OAuth2", "Generate keys" : "Xenerar les claves", "Error generating key pair" : "Hebo un error al xenerar el par de claves", @@ -22,9 +20,6 @@ "Secret key" : "Clave del secretu", "Builtin" : "Integrada", "None" : "Nada", - "OAuth1" : "OAuth1", - "App key" : "Clave d'aplicación", - "App secret" : "Secretu d'aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID de veceru", "Client secret" : "Secretu de veceru", @@ -142,6 +137,11 @@ "All people" : "Toles persones", "Advanced settings" : "Configuración avanzada", "Allow people to mount external storage" : "Permitir a otros montar l'almacenamientu esternu", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Pues usar les credenciales globales p'autenticate en múltiples almacenamientos esternos que tengan les meses credenciales." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Pues usar les credenciales globales p'autenticate en múltiples almacenamientos esternos que tengan les meses credenciales.", + "Error configuring OAuth1" : "Hebo un error al configurar l'OAuth1", + "Please provide a valid app key and secret." : "Forni una clave y un secretu d'aplicación válidos.", + "OAuth1" : "OAuth1", + "App key" : "Clave d'aplicación", + "App secret" : "Secretu d'aplicación" },"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 index 673928a5048..3715372f7b2 100644 --- a/apps/files_external/l10n/bg.js +++ b/apps/files_external/l10n/bg.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Разреши достъпa", - "Error configuring OAuth1" : "Грешка при конфигурирането на OAuth1", - "Please provide a valid app key and secret." : "Моля да предоставете валиден ключ и тайна на приложението.", "Error configuring OAuth2" : "Грешка при конфигурирането на OAuth2", "Generate keys" : "Генериране на криптографски ключове", "Error generating key pair" : "Грешка при генериране на криптографски ключове", @@ -23,9 +21,6 @@ OC.L10N.register( "Secret key" : "Секретен ключ", "Builtin" : "Вграден", "None" : "Няма", - "OAuth1" : "OAuth1", - "App key" : " Ключ на приложение", - "App secret" : "Тайна на приложение", "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Тайна на клиент", @@ -118,6 +113,11 @@ OC.L10N.register( "Available for" : "Достъпно за", "Add storage" : "Добави хранилище", "Advanced settings" : "Допълнителни настройки", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Глобалните идентификационни данни могат да се използват за удостоверяване с множество външни хранилища, които имат едни и същи идентификационни данни." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Глобалните идентификационни данни могат да се използват за удостоверяване с множество външни хранилища, които имат едни и същи идентификационни данни.", + "Error configuring OAuth1" : "Грешка при конфигурирането на OAuth1", + "Please provide a valid app key and secret." : "Моля да предоставете валиден ключ и тайна на приложението.", + "OAuth1" : "OAuth1", + "App key" : " Ключ на приложение", + "App secret" : "Тайна на приложение" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/bg.json b/apps/files_external/l10n/bg.json index 90e7b871531..a68193cfed9 100644 --- a/apps/files_external/l10n/bg.json +++ b/apps/files_external/l10n/bg.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Разреши достъпa", - "Error configuring OAuth1" : "Грешка при конфигурирането на OAuth1", - "Please provide a valid app key and secret." : "Моля да предоставете валиден ключ и тайна на приложението.", "Error configuring OAuth2" : "Грешка при конфигурирането на OAuth2", "Generate keys" : "Генериране на криптографски ключове", "Error generating key pair" : "Грешка при генериране на криптографски ключове", @@ -21,9 +19,6 @@ "Secret key" : "Секретен ключ", "Builtin" : "Вграден", "None" : "Няма", - "OAuth1" : "OAuth1", - "App key" : " Ключ на приложение", - "App secret" : "Тайна на приложение", "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Тайна на клиент", @@ -116,6 +111,11 @@ "Available for" : "Достъпно за", "Add storage" : "Добави хранилище", "Advanced settings" : "Допълнителни настройки", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Глобалните идентификационни данни могат да се използват за удостоверяване с множество външни хранилища, които имат едни и същи идентификационни данни." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Глобалните идентификационни данни могат да се използват за удостоверяване с множество външни хранилища, които имат едни и същи идентификационни данни.", + "Error configuring OAuth1" : "Грешка при конфигурирането на OAuth1", + "Please provide a valid app key and secret." : "Моля да предоставете валиден ключ и тайна на приложението.", + "OAuth1" : "OAuth1", + "App key" : " Ключ на приложение", + "App secret" : "Тайна на приложение" },"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 14ffe344a08..57c98ac32a5 100644 --- a/apps/files_external/l10n/ca.js +++ b/apps/files_external/l10n/ca.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Concedeix accés", - "Error configuring OAuth1" : "S'ha produït un error en configurar l'OAuth1", - "Please provide a valid app key and secret." : "Proporcioneu una clau d'aplicació i un secret vàlids.", "Error configuring OAuth2" : "S'ha produït un error en configurar l'OAuth2", "Generate keys" : "Genera les claus", "Error generating key pair" : "S'ha produït un error en generar el parell de claus", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Clau secreta", "Builtin" : "Integrat", "None" : "Cap", - "OAuth1" : "OAuth1", - "App key" : "Clau d'aplicació", - "App secret" : "Secret d'aplicació", "OAuth2" : "OAuth2", "Client ID" : "ID del client", "Client secret" : "Secret del client", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Tothom", "Advanced settings" : "Paràmetres avançats", "Allow people to mount external storage" : "Permet que les persones muntin emmagatzematge extern", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Les credencials globals es poden utilitzar per a autenticar-se amb diversos emmagatzematges externs que tinguin les mateixes credencials." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Les credencials globals es poden utilitzar per a autenticar-se amb diversos emmagatzematges externs que tinguin les mateixes credencials.", + "Error configuring OAuth1" : "S'ha produït un error en configurar l'OAuth1", + "Please provide a valid app key and secret." : "Proporcioneu una clau d'aplicació i un secret vàlids.", + "OAuth1" : "OAuth1", + "App key" : "Clau d'aplicació", + "App secret" : "Secret d'aplicació" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/ca.json b/apps/files_external/l10n/ca.json index 4b4460e588f..7f24e45dab3 100644 --- a/apps/files_external/l10n/ca.json +++ b/apps/files_external/l10n/ca.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Concedeix accés", - "Error configuring OAuth1" : "S'ha produït un error en configurar l'OAuth1", - "Please provide a valid app key and secret." : "Proporcioneu una clau d'aplicació i un secret vàlids.", "Error configuring OAuth2" : "S'ha produït un error en configurar l'OAuth2", "Generate keys" : "Genera les claus", "Error generating key pair" : "S'ha produït un error en generar el parell de claus", @@ -24,9 +22,6 @@ "Secret key" : "Clau secreta", "Builtin" : "Integrat", "None" : "Cap", - "OAuth1" : "OAuth1", - "App key" : "Clau d'aplicació", - "App secret" : "Secret d'aplicació", "OAuth2" : "OAuth2", "Client ID" : "ID del client", "Client secret" : "Secret del client", @@ -155,6 +150,11 @@ "All people" : "Tothom", "Advanced settings" : "Paràmetres avançats", "Allow people to mount external storage" : "Permet que les persones muntin emmagatzematge extern", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Les credencials globals es poden utilitzar per a autenticar-se amb diversos emmagatzematges externs que tinguin les mateixes credencials." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Les credencials globals es poden utilitzar per a autenticar-se amb diversos emmagatzematges externs que tinguin les mateixes credencials.", + "Error configuring OAuth1" : "S'ha produït un error en configurar l'OAuth1", + "Please provide a valid app key and secret." : "Proporcioneu una clau d'aplicació i un secret vàlids.", + "OAuth1" : "OAuth1", + "App key" : "Clau d'aplicació", + "App secret" : "Secret d'aplicació" },"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 97dbe3a30a3..b9ff4205bed 100644 --- a/apps/files_external/l10n/cs.js +++ b/apps/files_external/l10n/cs.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Udělit přístup", - "Error configuring OAuth1" : "Chyba při nastavování OAuth1", - "Please provide a valid app key and secret." : "Zadejte platný klíč aplikace a tajné heslo.", "Error configuring OAuth2" : "Chyba při nastavování OAuth2", "Generate keys" : "Vytvořit klíče", "Error generating key pair" : "Chyba při vytváření páru klíčů", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Tajný klíč", "Builtin" : "Vestavěné", "None" : "Žádné", - "OAuth1" : "OAuth1", - "App key" : "Klíč aplikace", - "App secret" : "Tajemství aplikace", "OAuth2" : "OAuth2", "Client ID" : "Identif. klienta", "Client secret" : "Klientské tajemství", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Všichni lidé", "Advanced settings" : "Pokročilá nastavení", "Allow people to mount external storage" : "Povolit lidem připojovat externí úložiště", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globální přihlašovací údaje je možné použít pro ověření se vůči vícero externím úložištím, která mají stejné přihlašovací údaje." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globální přihlašovací údaje je možné použít pro ověření se vůči vícero externím úložištím, která mají stejné přihlašovací údaje.", + "Error configuring OAuth1" : "Chyba při nastavování OAuth1", + "Please provide a valid app key and secret." : "Zadejte platný klíč aplikace a tajné heslo.", + "OAuth1" : "OAuth1", + "App key" : "Klíč aplikace", + "App secret" : "Tajemství aplikace" }, "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"); diff --git a/apps/files_external/l10n/cs.json b/apps/files_external/l10n/cs.json index 1eefc8d9860..54a28c4f89d 100644 --- a/apps/files_external/l10n/cs.json +++ b/apps/files_external/l10n/cs.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Udělit přístup", - "Error configuring OAuth1" : "Chyba při nastavování OAuth1", - "Please provide a valid app key and secret." : "Zadejte platný klíč aplikace a tajné heslo.", "Error configuring OAuth2" : "Chyba při nastavování OAuth2", "Generate keys" : "Vytvořit klíče", "Error generating key pair" : "Chyba při vytváření páru klíčů", @@ -24,9 +22,6 @@ "Secret key" : "Tajný klíč", "Builtin" : "Vestavěné", "None" : "Žádné", - "OAuth1" : "OAuth1", - "App key" : "Klíč aplikace", - "App secret" : "Tajemství aplikace", "OAuth2" : "OAuth2", "Client ID" : "Identif. klienta", "Client secret" : "Klientské tajemství", @@ -155,6 +150,11 @@ "All people" : "Všichni lidé", "Advanced settings" : "Pokročilá nastavení", "Allow people to mount external storage" : "Povolit lidem připojovat externí úložiště", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globální přihlašovací údaje je možné použít pro ověření se vůči vícero externím úložištím, která mají stejné přihlašovací údaje." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globální přihlašovací údaje je možné použít pro ověření se vůči vícero externím úložištím, která mají stejné přihlašovací údaje.", + "Error configuring OAuth1" : "Chyba při nastavování OAuth1", + "Please provide a valid app key and secret." : "Zadejte platný klíč aplikace a tajné heslo.", + "OAuth1" : "OAuth1", + "App key" : "Klíč aplikace", + "App secret" : "Tajemství aplikace" },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;" }
\ No newline at end of file diff --git a/apps/files_external/l10n/da.js b/apps/files_external/l10n/da.js index 1715d84bca7..066ce7ee834 100644 --- a/apps/files_external/l10n/da.js +++ b/apps/files_external/l10n/da.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Godkend adgang", - "Error configuring OAuth1" : "Fejl under konfiguration af OAuth1", - "Please provide a valid app key and secret." : "Angiv venligst gyldig app-nøgle og -hemmelighed.", "Error configuring OAuth2" : "Fejl under konfiguration af OAuth2", "Generate keys" : "Opret nøgler.", "Error generating key pair" : "Fejl under oprettelse af nøglepar", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Hemmelig nøgle", "Builtin" : "Indbygget", "None" : "Ingen", - "OAuth1" : "OAuth1", - "App key" : "App-nøgle", - "App secret" : "App-hemmelighed", "OAuth2" : "OAuth2", "Client ID" : "Klient-ID", "Client secret" : "Klient hemmelighed", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Alle personer", "Advanced settings" : "Avancerede indstillinger", "Allow people to mount external storage" : "Tillad personer at montere eksternt lager", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale legitimationsoplysninger kan bruges til at godkende med flere eksterne lager, der har de samme legitimationsoplysninger." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale legitimationsoplysninger kan bruges til at godkende med flere eksterne lager, der har de samme legitimationsoplysninger.", + "Error configuring OAuth1" : "Fejl under konfiguration af OAuth1", + "Please provide a valid app key and secret." : "Angiv venligst gyldig app-nøgle og -hemmelighed.", + "OAuth1" : "OAuth1", + "App key" : "App-nøgle", + "App secret" : "App-hemmelighed" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/da.json b/apps/files_external/l10n/da.json index 16d59408129..9762e7dcb48 100644 --- a/apps/files_external/l10n/da.json +++ b/apps/files_external/l10n/da.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Godkend adgang", - "Error configuring OAuth1" : "Fejl under konfiguration af OAuth1", - "Please provide a valid app key and secret." : "Angiv venligst gyldig app-nøgle og -hemmelighed.", "Error configuring OAuth2" : "Fejl under konfiguration af OAuth2", "Generate keys" : "Opret nøgler.", "Error generating key pair" : "Fejl under oprettelse af nøglepar", @@ -24,9 +22,6 @@ "Secret key" : "Hemmelig nøgle", "Builtin" : "Indbygget", "None" : "Ingen", - "OAuth1" : "OAuth1", - "App key" : "App-nøgle", - "App secret" : "App-hemmelighed", "OAuth2" : "OAuth2", "Client ID" : "Klient-ID", "Client secret" : "Klient hemmelighed", @@ -155,6 +150,11 @@ "All people" : "Alle personer", "Advanced settings" : "Avancerede indstillinger", "Allow people to mount external storage" : "Tillad personer at montere eksternt lager", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale legitimationsoplysninger kan bruges til at godkende med flere eksterne lager, der har de samme legitimationsoplysninger." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale legitimationsoplysninger kan bruges til at godkende med flere eksterne lager, der har de samme legitimationsoplysninger.", + "Error configuring OAuth1" : "Fejl under konfiguration af OAuth1", + "Please provide a valid app key and secret." : "Angiv venligst gyldig app-nøgle og -hemmelighed.", + "OAuth1" : "OAuth1", + "App key" : "App-nøgle", + "App secret" : "App-hemmelighed" },"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 1ae634dfb0e..ec5ddc8f4aa 100644 --- a/apps/files_external/l10n/de.js +++ b/apps/files_external/l10n/de.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Zugriff gewähren", - "Error configuring OAuth1" : "Fehler beim Konfigurieren von OAuth1", - "Please provide a valid app key and secret." : "Bitte einen gültigen Anwendungsschlüssel (App-Key) mit Sicherheitsschlüssel (Secret) eingeben.", "Error configuring OAuth2" : "Fehler beim Konfigurieren von OAuth2", "Generate keys" : "Schlüssel erzeugen", "Error generating key pair" : "Fehler beim Erzeugen des Schlüsselpaares", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Geheimer Schlüssel", "Builtin" : "Eingebaut", "None" : "Keine", - "OAuth1" : "OAuth1", - "App key" : "App-Schlüssel", - "App secret" : "Geheime Zeichenkette der App", "OAuth2" : "OAuth2", "Client ID" : "Client-ID", "Client secret" : "Geheime Zeichenkette des Clients", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Alle Personen", "Advanced settings" : "Erweiterte Einstellungen", "Allow people to mount external storage" : "Personen erlauben, externen Speicher einzubinden", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale Anmeldeinformationen können zur Authentifizierung bei mehreren externen Speichern verwendet werden, die dieselben Anmeldeinformationen haben." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale Anmeldeinformationen können zur Authentifizierung bei mehreren externen Speichern verwendet werden, die dieselben Anmeldeinformationen haben.", + "Error configuring OAuth1" : "Fehler beim Konfigurieren von OAuth1", + "Please provide a valid app key and secret." : "Bitte einen gültigen Anwendungsschlüssel (App-Key) mit Sicherheitsschlüssel (Secret) eingeben.", + "OAuth1" : "OAuth1", + "App key" : "App-Schlüssel", + "App secret" : "Geheime Zeichenkette der App" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/de.json b/apps/files_external/l10n/de.json index 86d08fb5c73..a8787b43be2 100644 --- a/apps/files_external/l10n/de.json +++ b/apps/files_external/l10n/de.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Zugriff gewähren", - "Error configuring OAuth1" : "Fehler beim Konfigurieren von OAuth1", - "Please provide a valid app key and secret." : "Bitte einen gültigen Anwendungsschlüssel (App-Key) mit Sicherheitsschlüssel (Secret) eingeben.", "Error configuring OAuth2" : "Fehler beim Konfigurieren von OAuth2", "Generate keys" : "Schlüssel erzeugen", "Error generating key pair" : "Fehler beim Erzeugen des Schlüsselpaares", @@ -24,9 +22,6 @@ "Secret key" : "Geheimer Schlüssel", "Builtin" : "Eingebaut", "None" : "Keine", - "OAuth1" : "OAuth1", - "App key" : "App-Schlüssel", - "App secret" : "Geheime Zeichenkette der App", "OAuth2" : "OAuth2", "Client ID" : "Client-ID", "Client secret" : "Geheime Zeichenkette des Clients", @@ -155,6 +150,11 @@ "All people" : "Alle Personen", "Advanced settings" : "Erweiterte Einstellungen", "Allow people to mount external storage" : "Personen erlauben, externen Speicher einzubinden", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale Anmeldeinformationen können zur Authentifizierung bei mehreren externen Speichern verwendet werden, die dieselben Anmeldeinformationen haben." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale Anmeldeinformationen können zur Authentifizierung bei mehreren externen Speichern verwendet werden, die dieselben Anmeldeinformationen haben.", + "Error configuring OAuth1" : "Fehler beim Konfigurieren von OAuth1", + "Please provide a valid app key and secret." : "Bitte einen gültigen Anwendungsschlüssel (App-Key) mit Sicherheitsschlüssel (Secret) eingeben.", + "OAuth1" : "OAuth1", + "App key" : "App-Schlüssel", + "App secret" : "Geheime Zeichenkette der App" },"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 dfe6f0bc387..fde6e801e60 100644 --- a/apps/files_external/l10n/de_DE.js +++ b/apps/files_external/l10n/de_DE.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Zugriff gestatten", - "Error configuring OAuth1" : "Fehler beim Konfigurieren von OAuth1", - "Please provide a valid app key and secret." : "Bitte einen gültigen Anwendungsschlüssel (App-Key) mit Sicherheitsschlüssel (Secret) eingeben.", "Error configuring OAuth2" : "Fehler beim Konfigurieren von OAuth2", "Generate keys" : "Schlüssel erzeugen", "Error generating key pair" : "Fehler beim Erzeugen des Schlüsselpaares", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Geheimer Schlüssel", "Builtin" : "Eingebaut", "None" : "Keine", - "OAuth1" : "OAuth1", - "App key" : "App-Schlüssel", - "App secret" : "Geheime Zeichenkette der App", "OAuth2" : "OAuth2", "Client ID" : "Client-ID", "Client secret" : "Geheime Zeichenkette des Clients", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Alle Personen", "Advanced settings" : "Erweiterte Einstellungen", "Allow people to mount external storage" : "Personen erlauben, externen Speicher einzubinden", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale Anmeldeinformationen können zur Authentifizierung bei mehreren externen Speichern verwendet werden, die dieselben Anmeldeinformationen haben." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale Anmeldeinformationen können zur Authentifizierung bei mehreren externen Speichern verwendet werden, die dieselben Anmeldeinformationen haben.", + "Error configuring OAuth1" : "Fehler beim Konfigurieren von OAuth1", + "Please provide a valid app key and secret." : "Bitte einen gültigen Anwendungsschlüssel (App-Key) mit Sicherheitsschlüssel (Secret) eingeben.", + "OAuth1" : "OAuth1", + "App key" : "App-Schlüssel", + "App secret" : "Geheime Zeichenkette der App" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/de_DE.json b/apps/files_external/l10n/de_DE.json index e51c610c829..137b6a82ddd 100644 --- a/apps/files_external/l10n/de_DE.json +++ b/apps/files_external/l10n/de_DE.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Zugriff gestatten", - "Error configuring OAuth1" : "Fehler beim Konfigurieren von OAuth1", - "Please provide a valid app key and secret." : "Bitte einen gültigen Anwendungsschlüssel (App-Key) mit Sicherheitsschlüssel (Secret) eingeben.", "Error configuring OAuth2" : "Fehler beim Konfigurieren von OAuth2", "Generate keys" : "Schlüssel erzeugen", "Error generating key pair" : "Fehler beim Erzeugen des Schlüsselpaares", @@ -24,9 +22,6 @@ "Secret key" : "Geheimer Schlüssel", "Builtin" : "Eingebaut", "None" : "Keine", - "OAuth1" : "OAuth1", - "App key" : "App-Schlüssel", - "App secret" : "Geheime Zeichenkette der App", "OAuth2" : "OAuth2", "Client ID" : "Client-ID", "Client secret" : "Geheime Zeichenkette des Clients", @@ -155,6 +150,11 @@ "All people" : "Alle Personen", "Advanced settings" : "Erweiterte Einstellungen", "Allow people to mount external storage" : "Personen erlauben, externen Speicher einzubinden", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale Anmeldeinformationen können zur Authentifizierung bei mehreren externen Speichern verwendet werden, die dieselben Anmeldeinformationen haben." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale Anmeldeinformationen können zur Authentifizierung bei mehreren externen Speichern verwendet werden, die dieselben Anmeldeinformationen haben.", + "Error configuring OAuth1" : "Fehler beim Konfigurieren von OAuth1", + "Please provide a valid app key and secret." : "Bitte einen gültigen Anwendungsschlüssel (App-Key) mit Sicherheitsschlüssel (Secret) eingeben.", + "OAuth1" : "OAuth1", + "App key" : "App-Schlüssel", + "App secret" : "Geheime Zeichenkette der App" },"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 43df4bf9e29..0edbee1a36e 100644 --- a/apps/files_external/l10n/el.js +++ b/apps/files_external/l10n/el.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Παροχή πρόσβασης", - "Error configuring OAuth1" : "Σφάλμα ρύθμισης του OAuth1", - "Please provide a valid app key and secret." : "Παρακαλούμε δώστε έγκυρο κλειδί εφαρμογής και μυστικό.", "Error configuring OAuth2" : "Σφάλμα ρύθμισης του OAuth2", "Generate keys" : "Δημιουργία κλειδιών", "Error generating key pair" : "Σφάλμα κατά τη δημιουργία ζεύγους κλειδιών", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Μυστικό κλειδί", "Builtin" : "Builtin", "None" : "Τίποτα", - "OAuth1" : "OAuth1", - "App key" : "Κλειδί εφαρμογής", - "App secret" : "Μυστικό εφαρμογής", "OAuth2" : "OAuth2", "Client ID" : "ID πελάτη", "Client secret" : "Μυστικό πελάτη", @@ -111,6 +106,11 @@ OC.L10N.register( "Available for" : "Διαθέσιμο για", "Add storage" : "Προσθήκη αποθηκευτικού χώρου", "Advanced settings" : "Ρυθμίσεις για προχωρημένους", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Τα δημόσια διαπιστευτήρια μπορούν να χρησιμοποιηθούν για τον έλεγχο ταυτότητας με διάφορους εξωτερικούς χώρους αποθήκευσης με ίδια διαπιστευτήρια." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Τα δημόσια διαπιστευτήρια μπορούν να χρησιμοποιηθούν για τον έλεγχο ταυτότητας με διάφορους εξωτερικούς χώρους αποθήκευσης με ίδια διαπιστευτήρια.", + "Error configuring OAuth1" : "Σφάλμα ρύθμισης του OAuth1", + "Please provide a valid app key and secret." : "Παρακαλούμε δώστε έγκυρο κλειδί εφαρμογής και μυστικό.", + "OAuth1" : "OAuth1", + "App key" : "Κλειδί εφαρμογής", + "App secret" : "Μυστικό εφαρμογής" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/el.json b/apps/files_external/l10n/el.json index 0027ad81162..d0a1f419861 100644 --- a/apps/files_external/l10n/el.json +++ b/apps/files_external/l10n/el.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Παροχή πρόσβασης", - "Error configuring OAuth1" : "Σφάλμα ρύθμισης του OAuth1", - "Please provide a valid app key and secret." : "Παρακαλούμε δώστε έγκυρο κλειδί εφαρμογής και μυστικό.", "Error configuring OAuth2" : "Σφάλμα ρύθμισης του OAuth2", "Generate keys" : "Δημιουργία κλειδιών", "Error generating key pair" : "Σφάλμα κατά τη δημιουργία ζεύγους κλειδιών", @@ -20,9 +18,6 @@ "Secret key" : "Μυστικό κλειδί", "Builtin" : "Builtin", "None" : "Τίποτα", - "OAuth1" : "OAuth1", - "App key" : "Κλειδί εφαρμογής", - "App secret" : "Μυστικό εφαρμογής", "OAuth2" : "OAuth2", "Client ID" : "ID πελάτη", "Client secret" : "Μυστικό πελάτη", @@ -109,6 +104,11 @@ "Available for" : "Διαθέσιμο για", "Add storage" : "Προσθήκη αποθηκευτικού χώρου", "Advanced settings" : "Ρυθμίσεις για προχωρημένους", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Τα δημόσια διαπιστευτήρια μπορούν να χρησιμοποιηθούν για τον έλεγχο ταυτότητας με διάφορους εξωτερικούς χώρους αποθήκευσης με ίδια διαπιστευτήρια." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Τα δημόσια διαπιστευτήρια μπορούν να χρησιμοποιηθούν για τον έλεγχο ταυτότητας με διάφορους εξωτερικούς χώρους αποθήκευσης με ίδια διαπιστευτήρια.", + "Error configuring OAuth1" : "Σφάλμα ρύθμισης του OAuth1", + "Please provide a valid app key and secret." : "Παρακαλούμε δώστε έγκυρο κλειδί εφαρμογής και μυστικό.", + "OAuth1" : "OAuth1", + "App key" : "Κλειδί εφαρμογής", + "App secret" : "Μυστικό εφαρμογής" },"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 22ae96435f0..a00bba8a579 100644 --- a/apps/files_external/l10n/en_GB.js +++ b/apps/files_external/l10n/en_GB.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Grant access", - "Error configuring OAuth1" : "Error configuring OAuth1", - "Please provide a valid app key and secret." : "Please provide a valid app key and secret.", "Error configuring OAuth2" : "Error configuring OAuth2", "Generate keys" : "Generate keys", "Error generating key pair" : "Error generating key pair", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Secret key", "Builtin" : "Builtin", "None" : "None", - "OAuth1" : "OAuth1", - "App key" : "App key", - "App secret" : "App secret", "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Client secret", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "All people", "Advanced settings" : "Advanced settings", "Allow people to mount external storage" : "Allow people to mount external storage", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Global credentials can be used to authenticate with multiple external storages that have the same credentials." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Global credentials can be used to authenticate with multiple external storages that have the same credentials.", + "Error configuring OAuth1" : "Error configuring OAuth1", + "Please provide a valid app key and secret." : "Please provide a valid app key and secret.", + "OAuth1" : "OAuth1", + "App key" : "App key", + "App secret" : "App secret" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/en_GB.json b/apps/files_external/l10n/en_GB.json index 3e768b611fe..768380c4759 100644 --- a/apps/files_external/l10n/en_GB.json +++ b/apps/files_external/l10n/en_GB.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Grant access", - "Error configuring OAuth1" : "Error configuring OAuth1", - "Please provide a valid app key and secret." : "Please provide a valid app key and secret.", "Error configuring OAuth2" : "Error configuring OAuth2", "Generate keys" : "Generate keys", "Error generating key pair" : "Error generating key pair", @@ -24,9 +22,6 @@ "Secret key" : "Secret key", "Builtin" : "Builtin", "None" : "None", - "OAuth1" : "OAuth1", - "App key" : "App key", - "App secret" : "App secret", "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Client secret", @@ -155,6 +150,11 @@ "All people" : "All people", "Advanced settings" : "Advanced settings", "Allow people to mount external storage" : "Allow people to mount external storage", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Global credentials can be used to authenticate with multiple external storages that have the same credentials." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Global credentials can be used to authenticate with multiple external storages that have the same credentials.", + "Error configuring OAuth1" : "Error configuring OAuth1", + "Please provide a valid app key and secret." : "Please provide a valid app key and secret.", + "OAuth1" : "OAuth1", + "App key" : "App key", + "App secret" : "App secret" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/files_external/l10n/eo.js b/apps/files_external/l10n/eo.js index e6019d8c954..4735d0e901b 100644 --- a/apps/files_external/l10n/eo.js +++ b/apps/files_external/l10n/eo.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Doni alirpermeson", - "Error configuring OAuth1" : "Eraro dum agordo de OAuth1", - "Please provide a valid app key and secret." : "Bv. doni validan aplikaĵan ŝlosilon kaj sekreton.", "Error configuring OAuth2" : "Eraro dum agordo de OAuth2", "Generate keys" : "Generi ŝlosilojn", "Error generating key pair" : "Eraro dum generado de ŝlosila paro", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Sekreta ŝlosilo", "Builtin" : "Interne instalita", "None" : "Nenio", - "OAuth1" : "OAuth1", - "App key" : "Aplikaĵa ŝlosilo", - "App secret" : "Aplikaĵosekreto", "OAuth2" : "OAuth2", "Client ID" : "Klientidentigilo", "Client secret" : "Klientosekreto", @@ -109,6 +104,11 @@ OC.L10N.register( "Available for" : "Disponebla por", "Add storage" : "Aldoni konservejon", "Advanced settings" : "Altanivela agordo", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Ĝeneralaj akreditiloj utilas, kiam pluraj eksteraj konservejoj kunuzas la samajn akreditilojn." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Ĝeneralaj akreditiloj utilas, kiam pluraj eksteraj konservejoj kunuzas la samajn akreditilojn.", + "Error configuring OAuth1" : "Eraro dum agordo de OAuth1", + "Please provide a valid app key and secret." : "Bv. doni validan aplikaĵan ŝlosilon kaj sekreton.", + "OAuth1" : "OAuth1", + "App key" : "Aplikaĵa ŝlosilo", + "App secret" : "Aplikaĵosekreto" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/eo.json b/apps/files_external/l10n/eo.json index 4d75b90d13e..6c8ddd27dda 100644 --- a/apps/files_external/l10n/eo.json +++ b/apps/files_external/l10n/eo.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Doni alirpermeson", - "Error configuring OAuth1" : "Eraro dum agordo de OAuth1", - "Please provide a valid app key and secret." : "Bv. doni validan aplikaĵan ŝlosilon kaj sekreton.", "Error configuring OAuth2" : "Eraro dum agordo de OAuth2", "Generate keys" : "Generi ŝlosilojn", "Error generating key pair" : "Eraro dum generado de ŝlosila paro", @@ -20,9 +18,6 @@ "Secret key" : "Sekreta ŝlosilo", "Builtin" : "Interne instalita", "None" : "Nenio", - "OAuth1" : "OAuth1", - "App key" : "Aplikaĵa ŝlosilo", - "App secret" : "Aplikaĵosekreto", "OAuth2" : "OAuth2", "Client ID" : "Klientidentigilo", "Client secret" : "Klientosekreto", @@ -107,6 +102,11 @@ "Available for" : "Disponebla por", "Add storage" : "Aldoni konservejon", "Advanced settings" : "Altanivela agordo", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Ĝeneralaj akreditiloj utilas, kiam pluraj eksteraj konservejoj kunuzas la samajn akreditilojn." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Ĝeneralaj akreditiloj utilas, kiam pluraj eksteraj konservejoj kunuzas la samajn akreditilojn.", + "Error configuring OAuth1" : "Eraro dum agordo de OAuth1", + "Please provide a valid app key and secret." : "Bv. doni validan aplikaĵan ŝlosilon kaj sekreton.", + "OAuth1" : "OAuth1", + "App key" : "Aplikaĵa ŝlosilo", + "App secret" : "Aplikaĵosekreto" },"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 dc1b45c1386..b2cadf37609 100644 --- a/apps/files_external/l10n/es.js +++ b/apps/files_external/l10n/es.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor facilite una clave de app y una clave secreta válidas.", "Error configuring OAuth2" : "Error al configurar OAuth2", "Generate keys" : "Generar claves", "Error generating key pair" : "Error al generar el par de claves", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Clave secreta", "Builtin" : "Incorporado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "App principal", - "App secret" : "App secreta", "OAuth2" : "OAuth2", "Client ID" : "ID de Cliente", "Client secret" : "Cliente secreto", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Todas as persoas", "Advanced settings" : "Configuración avanzada", "Allow people to mount external storage" : "Permite que as persoas monten almacenamento externo", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Se pueden usar credenciales globales para autenticar con múltiples almacenamientos externos que tengan las mismas credenciales." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Se pueden usar credenciales globales para autenticar con múltiples almacenamientos externos que tengan las mismas credenciales.", + "Error configuring OAuth1" : "Error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor facilite una clave de app y una clave secreta válidas.", + "OAuth1" : "OAuth1", + "App key" : "App principal", + "App secret" : "App secreta" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es.json b/apps/files_external/l10n/es.json index 373fc18fc70..7b6305239de 100644 --- a/apps/files_external/l10n/es.json +++ b/apps/files_external/l10n/es.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor facilite una clave de app y una clave secreta válidas.", "Error configuring OAuth2" : "Error al configurar OAuth2", "Generate keys" : "Generar claves", "Error generating key pair" : "Error al generar el par de claves", @@ -24,9 +22,6 @@ "Secret key" : "Clave secreta", "Builtin" : "Incorporado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "App principal", - "App secret" : "App secreta", "OAuth2" : "OAuth2", "Client ID" : "ID de Cliente", "Client secret" : "Cliente secreto", @@ -155,6 +150,11 @@ "All people" : "Todas as persoas", "Advanced settings" : "Configuración avanzada", "Allow people to mount external storage" : "Permite que as persoas monten almacenamento externo", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Se pueden usar credenciales globales para autenticar con múltiples almacenamientos externos que tengan las mismas credenciales." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Se pueden usar credenciales globales para autenticar con múltiples almacenamientos externos que tengan las mismas credenciales.", + "Error configuring OAuth1" : "Error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor facilite una clave de app y una clave secreta válidas.", + "OAuth1" : "OAuth1", + "App key" : "App principal", + "App secret" : "App secreta" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 7e217a11038..7ca5616f326 100644 --- a/apps/files_external/l10n/es_419.js +++ b/apps/files_external/l10n/es_419.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -95,6 +90,11 @@ OC.L10N.register( "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es_419.json b/apps/files_external/l10n/es_419.json index aabde68318b..53757cab488 100644 --- a/apps/files_external/l10n/es_419.json +++ b/apps/files_external/l10n/es_419.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -20,9 +18,6 @@ "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -93,6 +88,11 @@ "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 937bdfff4ef..485e2a8b9d6 100644 --- a/apps/files_external/l10n/es_AR.js +++ b/apps/files_external/l10n/es_AR.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Favor de proporcionar una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -94,6 +89,11 @@ OC.L10N.register( "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Favor de proporcionar una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es_AR.json b/apps/files_external/l10n/es_AR.json index 7dc3ba7c42b..43acdc5ce04 100644 --- a/apps/files_external/l10n/es_AR.json +++ b/apps/files_external/l10n/es_AR.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Favor de proporcionar una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -20,9 +18,6 @@ "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -92,6 +87,11 @@ "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Favor de proporcionar una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 cacbf4041bc..a862a8b043e 100644 --- a/apps/files_external/l10n/es_CL.js +++ b/apps/files_external/l10n/es_CL.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -100,6 +95,11 @@ OC.L10N.register( "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es_CL.json b/apps/files_external/l10n/es_CL.json index 181047f890b..d1ce689c091 100644 --- a/apps/files_external/l10n/es_CL.json +++ b/apps/files_external/l10n/es_CL.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -20,9 +18,6 @@ "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -98,6 +93,11 @@ "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 cacbf4041bc..a862a8b043e 100644 --- a/apps/files_external/l10n/es_CO.js +++ b/apps/files_external/l10n/es_CO.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -100,6 +95,11 @@ OC.L10N.register( "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es_CO.json b/apps/files_external/l10n/es_CO.json index 181047f890b..d1ce689c091 100644 --- a/apps/files_external/l10n/es_CO.json +++ b/apps/files_external/l10n/es_CO.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -20,9 +18,6 @@ "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -98,6 +93,11 @@ "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 cacbf4041bc..a862a8b043e 100644 --- a/apps/files_external/l10n/es_CR.js +++ b/apps/files_external/l10n/es_CR.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -100,6 +95,11 @@ OC.L10N.register( "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es_CR.json b/apps/files_external/l10n/es_CR.json index 181047f890b..d1ce689c091 100644 --- a/apps/files_external/l10n/es_CR.json +++ b/apps/files_external/l10n/es_CR.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -20,9 +18,6 @@ "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -98,6 +93,11 @@ "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 cacbf4041bc..a862a8b043e 100644 --- a/apps/files_external/l10n/es_DO.js +++ b/apps/files_external/l10n/es_DO.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -100,6 +95,11 @@ OC.L10N.register( "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es_DO.json b/apps/files_external/l10n/es_DO.json index 181047f890b..d1ce689c091 100644 --- a/apps/files_external/l10n/es_DO.json +++ b/apps/files_external/l10n/es_DO.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -20,9 +18,6 @@ "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -98,6 +93,11 @@ "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 d5ecf67a6a9..f63fc7f07a3 100644 --- a/apps/files_external/l10n/es_EC.js +++ b/apps/files_external/l10n/es_EC.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -23,9 +21,6 @@ OC.L10N.register( "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -118,6 +113,11 @@ OC.L10N.register( "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", "Advanced settings" : "Configuraciones avanzadas", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Las credenciales globales se pueden usar para autenticarse con múltiples almacenamientos externos que tienen las mismas credenciales." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Las credenciales globales se pueden usar para autenticarse con múltiples almacenamientos externos que tienen las mismas credenciales.", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es_EC.json b/apps/files_external/l10n/es_EC.json index 4e5d6313614..66c964e6aa4 100644 --- a/apps/files_external/l10n/es_EC.json +++ b/apps/files_external/l10n/es_EC.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -21,9 +19,6 @@ "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -116,6 +111,11 @@ "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", "Advanced settings" : "Configuraciones avanzadas", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Las credenciales globales se pueden usar para autenticarse con múltiples almacenamientos externos que tienen las mismas credenciales." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Las credenciales globales se pueden usar para autenticarse con múltiples almacenamientos externos que tienen las mismas credenciales.", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 cacbf4041bc..a862a8b043e 100644 --- a/apps/files_external/l10n/es_GT.js +++ b/apps/files_external/l10n/es_GT.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -100,6 +95,11 @@ OC.L10N.register( "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es_GT.json b/apps/files_external/l10n/es_GT.json index 181047f890b..d1ce689c091 100644 --- a/apps/files_external/l10n/es_GT.json +++ b/apps/files_external/l10n/es_GT.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -20,9 +18,6 @@ "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -98,6 +93,11 @@ "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 8b24d0e473a..72b5fa1012b 100644 --- a/apps/files_external/l10n/es_HN.js +++ b/apps/files_external/l10n/es_HN.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -94,6 +89,11 @@ OC.L10N.register( "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es_HN.json b/apps/files_external/l10n/es_HN.json index e8e15126bab..35269693d32 100644 --- a/apps/files_external/l10n/es_HN.json +++ b/apps/files_external/l10n/es_HN.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -20,9 +18,6 @@ "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -92,6 +87,11 @@ "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 edc21f88d89..cf7213b14d1 100644 --- a/apps/files_external/l10n/es_MX.js +++ b/apps/files_external/l10n/es_MX.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -24,9 +22,6 @@ OC.L10N.register( "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -149,6 +144,11 @@ OC.L10N.register( "All people" : "Todas las personas", "Advanced settings" : "Configuraciones avanzadas", "Allow people to mount external storage" : "Permitir a los usuarios montar almacenamientos externos", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Las credenciales globales se pueden usar para autentificarse con múltiples almacenamientos externos que tienen las mismas credenciales." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Las credenciales globales se pueden usar para autentificarse con múltiples almacenamientos externos que tienen las mismas credenciales.", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es_MX.json b/apps/files_external/l10n/es_MX.json index 10adbf3a784..4b247a48bdd 100644 --- a/apps/files_external/l10n/es_MX.json +++ b/apps/files_external/l10n/es_MX.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -22,9 +20,6 @@ "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -147,6 +142,11 @@ "All people" : "Todas las personas", "Advanced settings" : "Configuraciones avanzadas", "Allow people to mount external storage" : "Permitir a los usuarios montar almacenamientos externos", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Las credenciales globales se pueden usar para autentificarse con múltiples almacenamientos externos que tienen las mismas credenciales." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Las credenciales globales se pueden usar para autentificarse con múltiples almacenamientos externos que tienen las mismas credenciales.", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 8b24d0e473a..72b5fa1012b 100644 --- a/apps/files_external/l10n/es_NI.js +++ b/apps/files_external/l10n/es_NI.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -94,6 +89,11 @@ OC.L10N.register( "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es_NI.json b/apps/files_external/l10n/es_NI.json index e8e15126bab..35269693d32 100644 --- a/apps/files_external/l10n/es_NI.json +++ b/apps/files_external/l10n/es_NI.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -20,9 +18,6 @@ "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -92,6 +87,11 @@ "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 8b24d0e473a..72b5fa1012b 100644 --- a/apps/files_external/l10n/es_PA.js +++ b/apps/files_external/l10n/es_PA.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -94,6 +89,11 @@ OC.L10N.register( "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es_PA.json b/apps/files_external/l10n/es_PA.json index e8e15126bab..35269693d32 100644 --- a/apps/files_external/l10n/es_PA.json +++ b/apps/files_external/l10n/es_PA.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -20,9 +18,6 @@ "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -92,6 +87,11 @@ "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 8b24d0e473a..72b5fa1012b 100644 --- a/apps/files_external/l10n/es_PE.js +++ b/apps/files_external/l10n/es_PE.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -94,6 +89,11 @@ OC.L10N.register( "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es_PE.json b/apps/files_external/l10n/es_PE.json index e8e15126bab..35269693d32 100644 --- a/apps/files_external/l10n/es_PE.json +++ b/apps/files_external/l10n/es_PE.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -20,9 +18,6 @@ "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -92,6 +87,11 @@ "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 8b24d0e473a..72b5fa1012b 100644 --- a/apps/files_external/l10n/es_PR.js +++ b/apps/files_external/l10n/es_PR.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -94,6 +89,11 @@ OC.L10N.register( "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es_PR.json b/apps/files_external/l10n/es_PR.json index e8e15126bab..35269693d32 100644 --- a/apps/files_external/l10n/es_PR.json +++ b/apps/files_external/l10n/es_PR.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -20,9 +18,6 @@ "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -92,6 +87,11 @@ "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 62f503fa7ba..60bd39324a8 100644 --- a/apps/files_external/l10n/es_PY.js +++ b/apps/files_external/l10n/es_PY.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -93,6 +88,11 @@ OC.L10N.register( "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es_PY.json b/apps/files_external/l10n/es_PY.json index 730e1ac709e..e10420ed371 100644 --- a/apps/files_external/l10n/es_PY.json +++ b/apps/files_external/l10n/es_PY.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -20,9 +18,6 @@ "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -91,6 +86,11 @@ "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 cacbf4041bc..a862a8b043e 100644 --- a/apps/files_external/l10n/es_SV.js +++ b/apps/files_external/l10n/es_SV.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -100,6 +95,11 @@ OC.L10N.register( "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es_SV.json b/apps/files_external/l10n/es_SV.json index 181047f890b..d1ce689c091 100644 --- a/apps/files_external/l10n/es_SV.json +++ b/apps/files_external/l10n/es_SV.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -20,9 +18,6 @@ "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -98,6 +93,11 @@ "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 8b24d0e473a..72b5fa1012b 100644 --- a/apps/files_external/l10n/es_UY.js +++ b/apps/files_external/l10n/es_UY.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -94,6 +89,11 @@ OC.L10N.register( "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/es_UY.json b/apps/files_external/l10n/es_UY.json index e8e15126bab..35269693d32 100644 --- a/apps/files_external/l10n/es_UY.json +++ b/apps/files_external/l10n/es_UY.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acceso", - "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", "Error configuring OAuth2" : "Se presentó un error al configurar OAuth2", "Generate keys" : "Generar llaves", "Error generating key pair" : "Se presentó un error al generar el juego de llaves", @@ -20,9 +18,6 @@ "Secret key" : "Llave secreta", "Builtin" : "Integrado", "None" : "Ninguno", - "OAuth1" : "OAuth1", - "App key" : "Llave de la aplicación", - "App secret" : "Secreto de la aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID del cliente", "Client secret" : "Secreto del cliente", @@ -92,6 +87,11 @@ "Configuration" : "Configuración", "Available for" : "Disponible para", "Add storage" : "Agregar almacenamiento", - "Advanced settings" : "Configuraciones avanzadas" + "Advanced settings" : "Configuraciones avanzadas", + "Error configuring OAuth1" : "Se presentó un error al configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor proporciona una llave de aplicación y secreto válidos.", + "OAuth1" : "OAuth1", + "App key" : "Llave de la aplicación", + "App secret" : "Secreto de la aplicación" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 9624cfcc025..1accac21323 100644 --- a/apps/files_external/l10n/et_EE.js +++ b/apps/files_external/l10n/et_EE.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Anna ligipääs", - "Error configuring OAuth1" : "Viga OAuth1 seadistamisel", - "Please provide a valid app key and secret." : "Palun sisesta rakenduse kehtiv võti ja saladus.", "Error configuring OAuth2" : "Viga OAuth2 seadistamisel", "Generate keys" : "Loo võtmed", "Error generating key pair" : "Viga võtmepaari loomisel", @@ -25,9 +23,6 @@ OC.L10N.register( "Secret key" : "Salavõti", "Builtin" : "Sisseehitatud", "None" : "Pole", - "OAuth1" : "OAuth1", - "App key" : "Rakenduse võti", - "App secret" : "Rakenduse salasõna", "OAuth2" : "OAuth2", "Client ID" : "Kliendi ID", "Client secret" : "Kliendi saladus", @@ -143,6 +138,11 @@ OC.L10N.register( "Add storage" : "Lisa andmehoidla", "All people" : "Kõik inimesed", "Advanced settings" : "Lisavalikud", - "Allow people to mount external storage" : "Luba kõigil haakida välist andmeruumi" + "Allow people to mount external storage" : "Luba kõigil haakida välist andmeruumi", + "Error configuring OAuth1" : "Viga OAuth1 seadistamisel", + "Please provide a valid app key and secret." : "Palun sisesta rakenduse kehtiv võti ja saladus.", + "OAuth1" : "OAuth1", + "App key" : "Rakenduse võti", + "App secret" : "Rakenduse salasõna" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/et_EE.json b/apps/files_external/l10n/et_EE.json index eed33193c14..fbba3791395 100644 --- a/apps/files_external/l10n/et_EE.json +++ b/apps/files_external/l10n/et_EE.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Anna ligipääs", - "Error configuring OAuth1" : "Viga OAuth1 seadistamisel", - "Please provide a valid app key and secret." : "Palun sisesta rakenduse kehtiv võti ja saladus.", "Error configuring OAuth2" : "Viga OAuth2 seadistamisel", "Generate keys" : "Loo võtmed", "Error generating key pair" : "Viga võtmepaari loomisel", @@ -23,9 +21,6 @@ "Secret key" : "Salavõti", "Builtin" : "Sisseehitatud", "None" : "Pole", - "OAuth1" : "OAuth1", - "App key" : "Rakenduse võti", - "App secret" : "Rakenduse salasõna", "OAuth2" : "OAuth2", "Client ID" : "Kliendi ID", "Client secret" : "Kliendi saladus", @@ -141,6 +136,11 @@ "Add storage" : "Lisa andmehoidla", "All people" : "Kõik inimesed", "Advanced settings" : "Lisavalikud", - "Allow people to mount external storage" : "Luba kõigil haakida välist andmeruumi" + "Allow people to mount external storage" : "Luba kõigil haakida välist andmeruumi", + "Error configuring OAuth1" : "Viga OAuth1 seadistamisel", + "Please provide a valid app key and secret." : "Palun sisesta rakenduse kehtiv võti ja saladus.", + "OAuth1" : "OAuth1", + "App key" : "Rakenduse võti", + "App secret" : "Rakenduse salasõna" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/files_external/l10n/eu.js b/apps/files_external/l10n/eu.js index f659dc4065c..663f7592b9c 100644 --- a/apps/files_external/l10n/eu.js +++ b/apps/files_external/l10n/eu.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Baimendu sarrera", - "Error configuring OAuth1" : "Errorea OAuth1 konfiguratzean", - "Please provide a valid app key and secret." : "Eman baliozko aplikazio-gakoa eta sekretua.", "Error configuring OAuth2" : "Errorea OAuth2 konfiguratzean", "Generate keys" : "Sortu gakoak", "Error generating key pair" : "Errorea gako bikotea sortzean", @@ -24,9 +22,6 @@ OC.L10N.register( "Secret key" : "Gako sekretua", "Builtin" : "Integratua", "None" : "Bat ere ez", - "OAuth1" : "OAuth1", - "App key" : "Aplikazio-gakoa", - "App secret" : "Aplikazio-sekretua", "OAuth2" : "OAuth2", "Client ID" : "Bezero ID", "Client secret" : "Bezeroaren sekretua", @@ -149,6 +144,11 @@ OC.L10N.register( "All people" : "Pertsona guztiak", "Advanced settings" : "Ezarpen aurreratuak", "Allow people to mount external storage" : "Baimendu pertsonek kanpoko biltegiratze zerbitzuak muntatzea", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Kredentzial globalak erabil daitezke kredentzial berdinak dituzten kanpoko hainbat biltegiratzerekin autentifikatzeko." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Kredentzial globalak erabil daitezke kredentzial berdinak dituzten kanpoko hainbat biltegiratzerekin autentifikatzeko.", + "Error configuring OAuth1" : "Errorea OAuth1 konfiguratzean", + "Please provide a valid app key and secret." : "Eman baliozko aplikazio-gakoa eta sekretua.", + "OAuth1" : "OAuth1", + "App key" : "Aplikazio-gakoa", + "App secret" : "Aplikazio-sekretua" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/eu.json b/apps/files_external/l10n/eu.json index 3a7c034d186..406683de6cc 100644 --- a/apps/files_external/l10n/eu.json +++ b/apps/files_external/l10n/eu.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Baimendu sarrera", - "Error configuring OAuth1" : "Errorea OAuth1 konfiguratzean", - "Please provide a valid app key and secret." : "Eman baliozko aplikazio-gakoa eta sekretua.", "Error configuring OAuth2" : "Errorea OAuth2 konfiguratzean", "Generate keys" : "Sortu gakoak", "Error generating key pair" : "Errorea gako bikotea sortzean", @@ -22,9 +20,6 @@ "Secret key" : "Gako sekretua", "Builtin" : "Integratua", "None" : "Bat ere ez", - "OAuth1" : "OAuth1", - "App key" : "Aplikazio-gakoa", - "App secret" : "Aplikazio-sekretua", "OAuth2" : "OAuth2", "Client ID" : "Bezero ID", "Client secret" : "Bezeroaren sekretua", @@ -147,6 +142,11 @@ "All people" : "Pertsona guztiak", "Advanced settings" : "Ezarpen aurreratuak", "Allow people to mount external storage" : "Baimendu pertsonek kanpoko biltegiratze zerbitzuak muntatzea", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Kredentzial globalak erabil daitezke kredentzial berdinak dituzten kanpoko hainbat biltegiratzerekin autentifikatzeko." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Kredentzial globalak erabil daitezke kredentzial berdinak dituzten kanpoko hainbat biltegiratzerekin autentifikatzeko.", + "Error configuring OAuth1" : "Errorea OAuth1 konfiguratzean", + "Please provide a valid app key and secret." : "Eman baliozko aplikazio-gakoa eta sekretua.", + "OAuth1" : "OAuth1", + "App key" : "Aplikazio-gakoa", + "App secret" : "Aplikazio-sekretua" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/files_external/l10n/fa.js b/apps/files_external/l10n/fa.js index 2e463f5946e..330a0997468 100644 --- a/apps/files_external/l10n/fa.js +++ b/apps/files_external/l10n/fa.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : " مجوز اعطا دسترسی", - "Error configuring OAuth1" : "خطا پیکربندی OAuth1", - "Please provide a valid app key and secret." : "لطفا یک کلید و رمز معتبر برای برنامه فرآهم کنید.", "Error configuring OAuth2" : "خطا پیکربندی OAuth2", "Generate keys" : "تولید کلید", "Error generating key pair" : "خطا در تولید جفت کلید", @@ -23,9 +21,6 @@ OC.L10N.register( "Secret key" : "کلید مخفی", "Builtin" : "ساخته شده", "None" : "هیچکدام", - "OAuth1" : "OAuth1", - "App key" : "کلید برنامه", - "App secret" : "کد برنامه", "OAuth2" : "OAuth2", "Client ID" : "شناسه مشتری", "Client secret" : "رمز مشتری", @@ -130,6 +125,11 @@ OC.L10N.register( "Available for" : "در دسترس برای", "Add storage" : "اضافه کردن حافظه", "Advanced settings" : "تنظیمات پیشرفته", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "از اعتبار جهانی می توان برای تأیید اعتبار با چندین انبار خارجی که دارای اعتبار یکسانی هستند استفاده کرد." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "از اعتبار جهانی می توان برای تأیید اعتبار با چندین انبار خارجی که دارای اعتبار یکسانی هستند استفاده کرد.", + "Error configuring OAuth1" : "خطا پیکربندی OAuth1", + "Please provide a valid app key and secret." : "لطفا یک کلید و رمز معتبر برای برنامه فرآهم کنید.", + "OAuth1" : "OAuth1", + "App key" : "کلید برنامه", + "App secret" : "کد برنامه" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/files_external/l10n/fa.json b/apps/files_external/l10n/fa.json index c64bb35ba17..2796bd6a34b 100644 --- a/apps/files_external/l10n/fa.json +++ b/apps/files_external/l10n/fa.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : " مجوز اعطا دسترسی", - "Error configuring OAuth1" : "خطا پیکربندی OAuth1", - "Please provide a valid app key and secret." : "لطفا یک کلید و رمز معتبر برای برنامه فرآهم کنید.", "Error configuring OAuth2" : "خطا پیکربندی OAuth2", "Generate keys" : "تولید کلید", "Error generating key pair" : "خطا در تولید جفت کلید", @@ -21,9 +19,6 @@ "Secret key" : "کلید مخفی", "Builtin" : "ساخته شده", "None" : "هیچکدام", - "OAuth1" : "OAuth1", - "App key" : "کلید برنامه", - "App secret" : "کد برنامه", "OAuth2" : "OAuth2", "Client ID" : "شناسه مشتری", "Client secret" : "رمز مشتری", @@ -128,6 +123,11 @@ "Available for" : "در دسترس برای", "Add storage" : "اضافه کردن حافظه", "Advanced settings" : "تنظیمات پیشرفته", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "از اعتبار جهانی می توان برای تأیید اعتبار با چندین انبار خارجی که دارای اعتبار یکسانی هستند استفاده کرد." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "از اعتبار جهانی می توان برای تأیید اعتبار با چندین انبار خارجی که دارای اعتبار یکسانی هستند استفاده کرد.", + "Error configuring OAuth1" : "خطا پیکربندی OAuth1", + "Please provide a valid app key and secret." : "لطفا یک کلید و رمز معتبر برای برنامه فرآهم کنید.", + "OAuth1" : "OAuth1", + "App key" : "کلید برنامه", + "App secret" : "کد برنامه" },"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 7a74b5e13a1..36928b64461 100644 --- a/apps/files_external/l10n/fi.js +++ b/apps/files_external/l10n/fi.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Salli pääsy", - "Error configuring OAuth1" : "Virhe OAuth1:n asetuksia tehdessä", - "Please provide a valid app key and secret." : "Sovellusavain ja salaus ovat virheelliset", "Error configuring OAuth2" : "Virhe OAuth2:n asetuksia tehdessä", "Generate keys" : "Luo avaimet", "Error generating key pair" : "Virhe luotaessa avainparia", @@ -24,9 +22,6 @@ OC.L10N.register( "Secret key" : "Salainen avain", "Builtin" : "Sisäänrakennettu", "None" : "Ei mitään", - "OAuth1" : "OAuth1", - "App key" : "Sovellusavain", - "App secret" : "Sovellussalaisuus", "OAuth2" : "OAuth2", "Client ID" : "Asiakkaan tunniste", "Client secret" : "Asiakassalaisuus", @@ -117,6 +112,11 @@ OC.L10N.register( "Add storage" : "Lisää tallennustila", "All people" : "Kaikki ihmiset", "Advanced settings" : "Lisäasetukset", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Yleisiä tunnistetietoja voidaan käyttää useisiin ulkoisiin tallennustiloihin tunnistautumiseen, joissa käytetään samoja tunnistetietoja." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Yleisiä tunnistetietoja voidaan käyttää useisiin ulkoisiin tallennustiloihin tunnistautumiseen, joissa käytetään samoja tunnistetietoja.", + "Error configuring OAuth1" : "Virhe OAuth1:n asetuksia tehdessä", + "Please provide a valid app key and secret." : "Sovellusavain ja salaus ovat virheelliset", + "OAuth1" : "OAuth1", + "App key" : "Sovellusavain", + "App secret" : "Sovellussalaisuus" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/fi.json b/apps/files_external/l10n/fi.json index 3e291f2f71c..08667506c51 100644 --- a/apps/files_external/l10n/fi.json +++ b/apps/files_external/l10n/fi.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Salli pääsy", - "Error configuring OAuth1" : "Virhe OAuth1:n asetuksia tehdessä", - "Please provide a valid app key and secret." : "Sovellusavain ja salaus ovat virheelliset", "Error configuring OAuth2" : "Virhe OAuth2:n asetuksia tehdessä", "Generate keys" : "Luo avaimet", "Error generating key pair" : "Virhe luotaessa avainparia", @@ -22,9 +20,6 @@ "Secret key" : "Salainen avain", "Builtin" : "Sisäänrakennettu", "None" : "Ei mitään", - "OAuth1" : "OAuth1", - "App key" : "Sovellusavain", - "App secret" : "Sovellussalaisuus", "OAuth2" : "OAuth2", "Client ID" : "Asiakkaan tunniste", "Client secret" : "Asiakassalaisuus", @@ -115,6 +110,11 @@ "Add storage" : "Lisää tallennustila", "All people" : "Kaikki ihmiset", "Advanced settings" : "Lisäasetukset", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Yleisiä tunnistetietoja voidaan käyttää useisiin ulkoisiin tallennustiloihin tunnistautumiseen, joissa käytetään samoja tunnistetietoja." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Yleisiä tunnistetietoja voidaan käyttää useisiin ulkoisiin tallennustiloihin tunnistautumiseen, joissa käytetään samoja tunnistetietoja.", + "Error configuring OAuth1" : "Virhe OAuth1:n asetuksia tehdessä", + "Please provide a valid app key and secret." : "Sovellusavain ja salaus ovat virheelliset", + "OAuth1" : "OAuth1", + "App key" : "Sovellusavain", + "App secret" : "Sovellussalaisuus" },"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 4fe61304c42..1ae5821553b 100644 --- a/apps/files_external/l10n/fr.js +++ b/apps/files_external/l10n/fr.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Autoriser l’accès", - "Error configuring OAuth1" : "Erreur lors de la configuration de OAuth1", - "Please provide a valid app key and secret." : "Veuillez fournir une clé d'application et un mot de passe valides.", "Error configuring OAuth2" : "Erreur lors de la configuration de OAuth2", "Generate keys" : "Générer des clés", "Error generating key pair" : "Erreur lors de la génération des clés", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Clé secrète", "Builtin" : "Intégré", "None" : "Aucun", - "OAuth1" : "OAuth1", - "App key" : "Clé d'application", - "App secret" : "Secret de l'application", "OAuth2" : "OAuth2", "Client ID" : "ID Client", "Client secret" : "Secret client", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Toutes les personnes", "Advanced settings" : "Paramètres avancés", "Allow people to mount external storage" : "Autoriser les personnes à monter des espaces de stockage externes", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Les identifiants globaux peuvent être utilisés pour s'authentifier auprès de multiples stockages externes qui ont les mêmes identifiants." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Les identifiants globaux peuvent être utilisés pour s'authentifier auprès de multiples stockages externes qui ont les mêmes identifiants.", + "Error configuring OAuth1" : "Erreur lors de la configuration de OAuth1", + "Please provide a valid app key and secret." : "Veuillez fournir une clé d'application et un mot de passe valides.", + "OAuth1" : "OAuth1", + "App key" : "Clé d'application", + "App secret" : "Secret de l'application" }, "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/fr.json b/apps/files_external/l10n/fr.json index d55040a70db..05f50b1be8a 100644 --- a/apps/files_external/l10n/fr.json +++ b/apps/files_external/l10n/fr.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Autoriser l’accès", - "Error configuring OAuth1" : "Erreur lors de la configuration de OAuth1", - "Please provide a valid app key and secret." : "Veuillez fournir une clé d'application et un mot de passe valides.", "Error configuring OAuth2" : "Erreur lors de la configuration de OAuth2", "Generate keys" : "Générer des clés", "Error generating key pair" : "Erreur lors de la génération des clés", @@ -24,9 +22,6 @@ "Secret key" : "Clé secrète", "Builtin" : "Intégré", "None" : "Aucun", - "OAuth1" : "OAuth1", - "App key" : "Clé d'application", - "App secret" : "Secret de l'application", "OAuth2" : "OAuth2", "Client ID" : "ID Client", "Client secret" : "Secret client", @@ -155,6 +150,11 @@ "All people" : "Toutes les personnes", "Advanced settings" : "Paramètres avancés", "Allow people to mount external storage" : "Autoriser les personnes à monter des espaces de stockage externes", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Les identifiants globaux peuvent être utilisés pour s'authentifier auprès de multiples stockages externes qui ont les mêmes identifiants." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Les identifiants globaux peuvent être utilisés pour s'authentifier auprès de multiples stockages externes qui ont les mêmes identifiants.", + "Error configuring OAuth1" : "Erreur lors de la configuration de OAuth1", + "Please provide a valid app key and secret." : "Veuillez fournir une clé d'application et un mot de passe valides.", + "OAuth1" : "OAuth1", + "App key" : "Clé d'application", + "App secret" : "Secret de l'application" },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/files_external/l10n/ga.js b/apps/files_external/l10n/ga.js index 8cba0d1292f..1ca1650e8bc 100644 --- a/apps/files_external/l10n/ga.js +++ b/apps/files_external/l10n/ga.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Deonaigh rochtain", - "Error configuring OAuth1" : "Earráid agus OAuth1 á chumrú", - "Please provide a valid app key and secret." : "Tabhair eochair feidhmchláir agus rún bailí le do thoil.", "Error configuring OAuth2" : "Earráid agus OAuth2 á chumrú", "Generate keys" : "Gin eochracha", "Error generating key pair" : "Earráid agus péire eochair á nginiúint", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Eochair rúnda", "Builtin" : "Tógtha", "None" : "aon cheann", - "OAuth1" : "OAuth1", - "App key" : "Eochair aip", - "App secret" : "Rúnda aip", "OAuth2" : "OAuth2", "Client ID" : "Aitheantas Cliant", "Client secret" : "Rún an chliaint", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Gach duine", "Advanced settings" : "Ardsocruithe", "Allow people to mount external storage" : "Lig do dhaoine stóráil sheachtrach a shuiteáil", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Is féidir dintiúir dhomhanda a úsáid chun fíordheimhniú a dhéanamh le stórais sheachtracha iolracha a bhfuil na dintiúir chéanna acu." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Is féidir dintiúir dhomhanda a úsáid chun fíordheimhniú a dhéanamh le stórais sheachtracha iolracha a bhfuil na dintiúir chéanna acu.", + "Error configuring OAuth1" : "Earráid agus OAuth1 á chumrú", + "Please provide a valid app key and secret." : "Tabhair eochair feidhmchláir agus rún bailí le do thoil.", + "OAuth1" : "OAuth1", + "App key" : "Eochair aip", + "App secret" : "Rúnda aip" }, "nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);"); diff --git a/apps/files_external/l10n/ga.json b/apps/files_external/l10n/ga.json index a56265d5d6e..c5ecde4bd56 100644 --- a/apps/files_external/l10n/ga.json +++ b/apps/files_external/l10n/ga.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Deonaigh rochtain", - "Error configuring OAuth1" : "Earráid agus OAuth1 á chumrú", - "Please provide a valid app key and secret." : "Tabhair eochair feidhmchláir agus rún bailí le do thoil.", "Error configuring OAuth2" : "Earráid agus OAuth2 á chumrú", "Generate keys" : "Gin eochracha", "Error generating key pair" : "Earráid agus péire eochair á nginiúint", @@ -24,9 +22,6 @@ "Secret key" : "Eochair rúnda", "Builtin" : "Tógtha", "None" : "aon cheann", - "OAuth1" : "OAuth1", - "App key" : "Eochair aip", - "App secret" : "Rúnda aip", "OAuth2" : "OAuth2", "Client ID" : "Aitheantas Cliant", "Client secret" : "Rún an chliaint", @@ -155,6 +150,11 @@ "All people" : "Gach duine", "Advanced settings" : "Ardsocruithe", "Allow people to mount external storage" : "Lig do dhaoine stóráil sheachtrach a shuiteáil", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Is féidir dintiúir dhomhanda a úsáid chun fíordheimhniú a dhéanamh le stórais sheachtracha iolracha a bhfuil na dintiúir chéanna acu." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Is féidir dintiúir dhomhanda a úsáid chun fíordheimhniú a dhéanamh le stórais sheachtracha iolracha a bhfuil na dintiúir chéanna acu.", + "Error configuring OAuth1" : "Earráid agus OAuth1 á chumrú", + "Please provide a valid app key and secret." : "Tabhair eochair feidhmchláir agus rún bailí le do thoil.", + "OAuth1" : "OAuth1", + "App key" : "Eochair aip", + "App secret" : "Rúnda aip" },"pluralForm" :"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);" }
\ No newline at end of file diff --git a/apps/files_external/l10n/gl.js b/apps/files_external/l10n/gl.js index 4f20f948002..5c333c23da2 100644 --- a/apps/files_external/l10n/gl.js +++ b/apps/files_external/l10n/gl.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Permitir o acceso", - "Error configuring OAuth1" : "Produciuse un erro ao configurar OAuth1", - "Please provide a valid app key and secret." : "Forneza unha chave de aplicación e o segredo", "Error configuring OAuth2" : "Produciuse un erro ao configurar OAuth2", "Generate keys" : "Xerar chaves", "Error generating key pair" : "Produciuse un erro ao xerar o par de chaves", @@ -24,9 +22,6 @@ OC.L10N.register( "Secret key" : "Chave secreta", "Builtin" : "Integrado", "None" : "Ningún", - "OAuth1" : "OAuth1", - "App key" : "Chave da aplicación", - "App secret" : "Segredo da aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID de cliente", "Client secret" : "Segredo do cliente", @@ -153,6 +148,11 @@ OC.L10N.register( "All people" : "Todas as persoas", "Advanced settings" : "Axustes avanzados", "Allow people to mount external storage" : "Permitirlle á xente montar almacenamento externo", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Poden empregarse credenciais globais para autenticar con múltiples almacenamentos externos que teñan as mesmas credenciais." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Poden empregarse credenciais globais para autenticar con múltiples almacenamentos externos que teñan as mesmas credenciais.", + "Error configuring OAuth1" : "Produciuse un erro ao configurar OAuth1", + "Please provide a valid app key and secret." : "Forneza unha chave de aplicación e o segredo", + "OAuth1" : "OAuth1", + "App key" : "Chave da aplicación", + "App secret" : "Segredo da aplicación" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/gl.json b/apps/files_external/l10n/gl.json index bfb0a59e352..c3bc32daef9 100644 --- a/apps/files_external/l10n/gl.json +++ b/apps/files_external/l10n/gl.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Permitir o acceso", - "Error configuring OAuth1" : "Produciuse un erro ao configurar OAuth1", - "Please provide a valid app key and secret." : "Forneza unha chave de aplicación e o segredo", "Error configuring OAuth2" : "Produciuse un erro ao configurar OAuth2", "Generate keys" : "Xerar chaves", "Error generating key pair" : "Produciuse un erro ao xerar o par de chaves", @@ -22,9 +20,6 @@ "Secret key" : "Chave secreta", "Builtin" : "Integrado", "None" : "Ningún", - "OAuth1" : "OAuth1", - "App key" : "Chave da aplicación", - "App secret" : "Segredo da aplicación", "OAuth2" : "OAuth2", "Client ID" : "ID de cliente", "Client secret" : "Segredo do cliente", @@ -151,6 +146,11 @@ "All people" : "Todas as persoas", "Advanced settings" : "Axustes avanzados", "Allow people to mount external storage" : "Permitirlle á xente montar almacenamento externo", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Poden empregarse credenciais globais para autenticar con múltiples almacenamentos externos que teñan as mesmas credenciais." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Poden empregarse credenciais globais para autenticar con múltiples almacenamentos externos que teñan as mesmas credenciais.", + "Error configuring OAuth1" : "Produciuse un erro ao configurar OAuth1", + "Please provide a valid app key and secret." : "Forneza unha chave de aplicación e o segredo", + "OAuth1" : "OAuth1", + "App key" : "Chave da aplicación", + "App secret" : "Segredo da aplicación" },"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 4e62d7a0bcb..5c5a7a71e5f 100644 --- a/apps/files_external/l10n/he.js +++ b/apps/files_external/l10n/he.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "הענקת גישה", - "Error configuring OAuth1" : "שגיאה בתצורת OAuth1", - "Please provide a valid app key and secret." : "יש לספק מפתח יישום וסוד תקניים.", "Error configuring OAuth2" : "שגיאה בתצורת OAuth2", "Generate keys" : "יצירת מפתחות", "Error generating key pair" : "שגיאה ביצירת זוג מפתחות", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "מפתח סודי", "Builtin" : "מובנה", "None" : "כלום", - "OAuth1" : "OAuth1", - "App key" : "מפתח יישום", - "App secret" : "סוד יישום", "OAuth2" : "OAuth2", "Client ID" : "זיהוי לקוח", "Client secret" : "סוד לקוח", @@ -110,6 +105,11 @@ OC.L10N.register( "Available for" : "זמין עבור", "Add storage" : "הוספת אחסון", "Advanced settings" : "הגדרות מתקדמות", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "ניתן להשתמש בפרטי גישה גלובליים עם מגוון אמצעי אחסון חיצוניים שיש להם את אותם פרטי הגישה." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "ניתן להשתמש בפרטי גישה גלובליים עם מגוון אמצעי אחסון חיצוניים שיש להם את אותם פרטי הגישה.", + "Error configuring OAuth1" : "שגיאה בתצורת OAuth1", + "Please provide a valid app key and secret." : "יש לספק מפתח יישום וסוד תקניים.", + "OAuth1" : "OAuth1", + "App key" : "מפתח יישום", + "App secret" : "סוד יישום" }, "nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;"); diff --git a/apps/files_external/l10n/he.json b/apps/files_external/l10n/he.json index d212ae851ba..fc280122848 100644 --- a/apps/files_external/l10n/he.json +++ b/apps/files_external/l10n/he.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "הענקת גישה", - "Error configuring OAuth1" : "שגיאה בתצורת OAuth1", - "Please provide a valid app key and secret." : "יש לספק מפתח יישום וסוד תקניים.", "Error configuring OAuth2" : "שגיאה בתצורת OAuth2", "Generate keys" : "יצירת מפתחות", "Error generating key pair" : "שגיאה ביצירת זוג מפתחות", @@ -20,9 +18,6 @@ "Secret key" : "מפתח סודי", "Builtin" : "מובנה", "None" : "כלום", - "OAuth1" : "OAuth1", - "App key" : "מפתח יישום", - "App secret" : "סוד יישום", "OAuth2" : "OAuth2", "Client ID" : "זיהוי לקוח", "Client secret" : "סוד לקוח", @@ -108,6 +103,11 @@ "Available for" : "זמין עבור", "Add storage" : "הוספת אחסון", "Advanced settings" : "הגדרות מתקדמות", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "ניתן להשתמש בפרטי גישה גלובליים עם מגוון אמצעי אחסון חיצוניים שיש להם את אותם פרטי הגישה." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "ניתן להשתמש בפרטי גישה גלובליים עם מגוון אמצעי אחסון חיצוניים שיש להם את אותם פרטי הגישה.", + "Error configuring OAuth1" : "שגיאה בתצורת OAuth1", + "Please provide a valid app key and secret." : "יש לספק מפתח יישום וסוד תקניים.", + "OAuth1" : "OAuth1", + "App key" : "מפתח יישום", + "App secret" : "סוד יישום" },"pluralForm" :"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;" }
\ No newline at end of file diff --git a/apps/files_external/l10n/hr.js b/apps/files_external/l10n/hr.js index ac63dbc4a41..25a33ce3562 100644 --- a/apps/files_external/l10n/hr.js +++ b/apps/files_external/l10n/hr.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Dodijeli pristup", - "Error configuring OAuth1" : "Pogreška pri konfiguriranju OAuth1", - "Please provide a valid app key and secret." : "Unesite važeći ključ aplikacije i tajnu.", "Error configuring OAuth2" : "Pogreška pri konfiguriranju OAuth2", "Generate keys" : "Generiraj ključeve", "Error generating key pair" : "Pogreška pri generiranju parova ključeva", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Tajni ključ", "Builtin" : "Ugrađen", "None" : "Nema", - "OAuth1" : "OAuth1", - "App key" : "Ključ aplikacije", - "App secret" : "Tajna aplikacije", "OAuth2" : "OAuth2", "Client ID" : "ID klijenta", "Client secret" : "Tajni ključ klijenta", @@ -112,6 +107,11 @@ OC.L10N.register( "Available for" : "Dostupno za", "Add storage" : "Dodaj pohranu", "Advanced settings" : "Napredne postavke", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globalne vjerodajnice mogu se upotrebljavati za provođenje autentifikacije na više vanjskih pohrana koje imaju iste vjerodajnice." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globalne vjerodajnice mogu se upotrebljavati za provođenje autentifikacije na više vanjskih pohrana koje imaju iste vjerodajnice.", + "Error configuring OAuth1" : "Pogreška pri konfiguriranju OAuth1", + "Please provide a valid app key and secret." : "Unesite važeći ključ aplikacije i tajnu.", + "OAuth1" : "OAuth1", + "App key" : "Ključ aplikacije", + "App secret" : "Tajna aplikacije" }, "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/hr.json b/apps/files_external/l10n/hr.json index b5d18017c63..91ac16f7852 100644 --- a/apps/files_external/l10n/hr.json +++ b/apps/files_external/l10n/hr.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Dodijeli pristup", - "Error configuring OAuth1" : "Pogreška pri konfiguriranju OAuth1", - "Please provide a valid app key and secret." : "Unesite važeći ključ aplikacije i tajnu.", "Error configuring OAuth2" : "Pogreška pri konfiguriranju OAuth2", "Generate keys" : "Generiraj ključeve", "Error generating key pair" : "Pogreška pri generiranju parova ključeva", @@ -20,9 +18,6 @@ "Secret key" : "Tajni ključ", "Builtin" : "Ugrađen", "None" : "Nema", - "OAuth1" : "OAuth1", - "App key" : "Ključ aplikacije", - "App secret" : "Tajna aplikacije", "OAuth2" : "OAuth2", "Client ID" : "ID klijenta", "Client secret" : "Tajni ključ klijenta", @@ -110,6 +105,11 @@ "Available for" : "Dostupno za", "Add storage" : "Dodaj pohranu", "Advanced settings" : "Napredne postavke", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globalne vjerodajnice mogu se upotrebljavati za provođenje autentifikacije na više vanjskih pohrana koje imaju iste vjerodajnice." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globalne vjerodajnice mogu se upotrebljavati za provođenje autentifikacije na više vanjskih pohrana koje imaju iste vjerodajnice.", + "Error configuring OAuth1" : "Pogreška pri konfiguriranju OAuth1", + "Please provide a valid app key and secret." : "Unesite važeći ključ aplikacije i tajnu.", + "OAuth1" : "OAuth1", + "App key" : "Ključ aplikacije", + "App secret" : "Tajna aplikacije" },"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/hu.js b/apps/files_external/l10n/hu.js index d5e59fa5d77..183b660a730 100644 --- a/apps/files_external/l10n/hu.js +++ b/apps/files_external/l10n/hu.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Hozzáférés megadása", - "Error configuring OAuth1" : "OAuth1 beállítási hiba", - "Please provide a valid app key and secret." : "Adjon meg egy érvényes alkalmazáskulcsot és titkot.", "Error configuring OAuth2" : "OAuth2 beállítási hiba", "Generate keys" : "Kulcsok előállítása", "Error generating key pair" : "Hiba történt a kulcspár előállítása során", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Titkos kulcs", "Builtin" : "Beépített", "None" : "Egyik sem", - "OAuth1" : "OAuth1", - "App key" : "Alkalmazáskulcs", - "App secret" : "Alkalmazás titka", "OAuth2" : "OAuth2", "Client ID" : "Kliensazonosító", "Client secret" : "Kliens titka", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Mindenki", "Advanced settings" : "Speciális beállítások", "Allow people to mount external storage" : "Külső tárolók csatolásának engedélyezése az emberek számára", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "A globális hitelesítő adatokkal azonos külső hitelesítő adatokkal rendelkező külső tárhelyek hitelesíthetők." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "A globális hitelesítő adatokkal azonos külső hitelesítő adatokkal rendelkező külső tárhelyek hitelesíthetők.", + "Error configuring OAuth1" : "OAuth1 beállítási hiba", + "Please provide a valid app key and secret." : "Adjon meg egy érvényes alkalmazáskulcsot és titkot.", + "OAuth1" : "OAuth1", + "App key" : "Alkalmazáskulcs", + "App secret" : "Alkalmazás titka" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/hu.json b/apps/files_external/l10n/hu.json index f87d4b601f9..c32c232a4a2 100644 --- a/apps/files_external/l10n/hu.json +++ b/apps/files_external/l10n/hu.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Hozzáférés megadása", - "Error configuring OAuth1" : "OAuth1 beállítási hiba", - "Please provide a valid app key and secret." : "Adjon meg egy érvényes alkalmazáskulcsot és titkot.", "Error configuring OAuth2" : "OAuth2 beállítási hiba", "Generate keys" : "Kulcsok előállítása", "Error generating key pair" : "Hiba történt a kulcspár előállítása során", @@ -24,9 +22,6 @@ "Secret key" : "Titkos kulcs", "Builtin" : "Beépített", "None" : "Egyik sem", - "OAuth1" : "OAuth1", - "App key" : "Alkalmazáskulcs", - "App secret" : "Alkalmazás titka", "OAuth2" : "OAuth2", "Client ID" : "Kliensazonosító", "Client secret" : "Kliens titka", @@ -155,6 +150,11 @@ "All people" : "Mindenki", "Advanced settings" : "Speciális beállítások", "Allow people to mount external storage" : "Külső tárolók csatolásának engedélyezése az emberek számára", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "A globális hitelesítő adatokkal azonos külső hitelesítő adatokkal rendelkező külső tárhelyek hitelesíthetők." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "A globális hitelesítő adatokkal azonos külső hitelesítő adatokkal rendelkező külső tárhelyek hitelesíthetők.", + "Error configuring OAuth1" : "OAuth1 beállítási hiba", + "Please provide a valid app key and secret." : "Adjon meg egy érvényes alkalmazáskulcsot és titkot.", + "OAuth1" : "OAuth1", + "App key" : "Alkalmazáskulcs", + "App secret" : "Alkalmazás titka" },"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 6029af1c288..e90c6093f60 100644 --- a/apps/files_external/l10n/id.js +++ b/apps/files_external/l10n/id.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Berikan hak akses", - "Error configuring OAuth1" : "Kesalahan mengkonfigurasi OAuth1", - "Please provide a valid app key and secret." : "Silakan berikan kunci dan kerahasiaan aplikasi yang benar.", "Error configuring OAuth2" : "Kesalahan mengkonfigurasi OAuth2", "Generate keys" : "Hasilkan kunci", "Error generating key pair" : "Kesalahan saat menghasilkan pasangan kunci", @@ -21,9 +19,6 @@ OC.L10N.register( "Secret key" : "Kunci rahasia", "Builtin" : "Internal", "None" : "Tidak ada", - "OAuth1" : "OAuth1", - "App key" : "Kunci Apl", - "App secret" : "Rahasia Apl", "OAuth2" : "OAuth2", "Client ID" : "ID Klien", "Client secret" : "Rahasia klien", @@ -94,6 +89,11 @@ OC.L10N.register( "Configuration" : "Konfigurasi", "Available for" : "Tersedia untuk", "Add storage" : "Tambahkan penyimpanan", - "Advanced settings" : "Pengaturan Lanjutan" + "Advanced settings" : "Pengaturan Lanjutan", + "Error configuring OAuth1" : "Kesalahan mengkonfigurasi OAuth1", + "Please provide a valid app key and secret." : "Silakan berikan kunci dan kerahasiaan aplikasi yang benar.", + "OAuth1" : "OAuth1", + "App key" : "Kunci Apl", + "App secret" : "Rahasia Apl" }, "nplurals=1; plural=0;"); diff --git a/apps/files_external/l10n/id.json b/apps/files_external/l10n/id.json index b4ac28d5fc4..2f73118a4fc 100644 --- a/apps/files_external/l10n/id.json +++ b/apps/files_external/l10n/id.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Berikan hak akses", - "Error configuring OAuth1" : "Kesalahan mengkonfigurasi OAuth1", - "Please provide a valid app key and secret." : "Silakan berikan kunci dan kerahasiaan aplikasi yang benar.", "Error configuring OAuth2" : "Kesalahan mengkonfigurasi OAuth2", "Generate keys" : "Hasilkan kunci", "Error generating key pair" : "Kesalahan saat menghasilkan pasangan kunci", @@ -19,9 +17,6 @@ "Secret key" : "Kunci rahasia", "Builtin" : "Internal", "None" : "Tidak ada", - "OAuth1" : "OAuth1", - "App key" : "Kunci Apl", - "App secret" : "Rahasia Apl", "OAuth2" : "OAuth2", "Client ID" : "ID Klien", "Client secret" : "Rahasia klien", @@ -92,6 +87,11 @@ "Configuration" : "Konfigurasi", "Available for" : "Tersedia untuk", "Add storage" : "Tambahkan penyimpanan", - "Advanced settings" : "Pengaturan Lanjutan" + "Advanced settings" : "Pengaturan Lanjutan", + "Error configuring OAuth1" : "Kesalahan mengkonfigurasi OAuth1", + "Please provide a valid app key and secret." : "Silakan berikan kunci dan kerahasiaan aplikasi yang benar.", + "OAuth1" : "OAuth1", + "App key" : "Kunci Apl", + "App secret" : "Rahasia Apl" },"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 2fe161c5566..a30f187accb 100644 --- a/apps/files_external/l10n/is.js +++ b/apps/files_external/l10n/is.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Veita aðgengi", - "Error configuring OAuth1" : "Villa við uppsetningu OAuth1", - "Please provide a valid app key and secret." : "Settu inn gildan forritslykil og leynilykil (secret).", "Error configuring OAuth2" : "Villa við uppsetningu OAuth2", "Generate keys" : "Útbúa lykla", "Error generating key pair" : "Villa við að útbúa nýtt lyklapar", @@ -24,9 +22,6 @@ OC.L10N.register( "Secret key" : "Leynilykill", "Builtin" : "Innbyggt", "None" : "Ekkert", - "OAuth1" : "OAuth1", - "App key" : "Lykill forrits", - "App secret" : "Leynilykill forrits", "OAuth2" : "OAuth2", "Client ID" : "Biðlaraauðkenni", "Client secret" : "Leynilykill biðlara", @@ -139,6 +134,11 @@ OC.L10N.register( "Add storage" : "Bæta við gagnahirslu", "All people" : "Allt fólk", "Advanced settings" : "Ítarlegri valkostir", - "Allow people to mount external storage" : "Leyfa notendum að tengja ytri gagnageymslur í skráakerfi" + "Allow people to mount external storage" : "Leyfa notendum að tengja ytri gagnageymslur í skráakerfi", + "Error configuring OAuth1" : "Villa við uppsetningu OAuth1", + "Please provide a valid app key and secret." : "Settu inn gildan forritslykil og leynilykil (secret).", + "OAuth1" : "OAuth1", + "App key" : "Lykill forrits", + "App secret" : "Leynilykill forrits" }, "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 a2b4a5657bf..ac67b5a14d5 100644 --- a/apps/files_external/l10n/is.json +++ b/apps/files_external/l10n/is.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Veita aðgengi", - "Error configuring OAuth1" : "Villa við uppsetningu OAuth1", - "Please provide a valid app key and secret." : "Settu inn gildan forritslykil og leynilykil (secret).", "Error configuring OAuth2" : "Villa við uppsetningu OAuth2", "Generate keys" : "Útbúa lykla", "Error generating key pair" : "Villa við að útbúa nýtt lyklapar", @@ -22,9 +20,6 @@ "Secret key" : "Leynilykill", "Builtin" : "Innbyggt", "None" : "Ekkert", - "OAuth1" : "OAuth1", - "App key" : "Lykill forrits", - "App secret" : "Leynilykill forrits", "OAuth2" : "OAuth2", "Client ID" : "Biðlaraauðkenni", "Client secret" : "Leynilykill biðlara", @@ -137,6 +132,11 @@ "Add storage" : "Bæta við gagnahirslu", "All people" : "Allt fólk", "Advanced settings" : "Ítarlegri valkostir", - "Allow people to mount external storage" : "Leyfa notendum að tengja ytri gagnageymslur í skráakerfi" + "Allow people to mount external storage" : "Leyfa notendum að tengja ytri gagnageymslur í skráakerfi", + "Error configuring OAuth1" : "Villa við uppsetningu OAuth1", + "Please provide a valid app key and secret." : "Settu inn gildan forritslykil og leynilykil (secret).", + "OAuth1" : "OAuth1", + "App key" : "Lykill forrits", + "App secret" : "Leynilykill forrits" },"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 8e4e075e211..ee3f5665599 100644 --- a/apps/files_external/l10n/it.js +++ b/apps/files_external/l10n/it.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Concedi l'accesso", - "Error configuring OAuth1" : "Errore di configurazione OAuth1", - "Please provide a valid app key and secret." : "Fornisci chiave e segreto dell'applicazione validi.", "Error configuring OAuth2" : "Errore di configurazione OAuth2", "Generate keys" : "Genera la chiavi", "Error generating key pair" : "Errore durante la generazione della coppia di chiavi", @@ -24,9 +22,6 @@ OC.L10N.register( "Secret key" : "Chiave segreta", "Builtin" : "Integrata", "None" : "Nessuno", - "OAuth1" : "OAuth1", - "App key" : "Chiave applicazione", - "App secret" : "Segreto applicazione", "OAuth2" : "OAuth2", "Client ID" : "ID client", "Client secret" : "Segreto del client", @@ -153,6 +148,11 @@ OC.L10N.register( "All people" : "Tutte le persone", "Advanced settings" : "Impostazioni avanzate", "Allow people to mount external storage" : "Consenti alle persone di montare archiviazioni esterne", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Le credenziali globali possono essere utilizzate anche per l'autenticazione con più archiviazioni esterne che hanno le stesse credenziali." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Le credenziali globali possono essere utilizzate anche per l'autenticazione con più archiviazioni esterne che hanno le stesse credenziali.", + "Error configuring OAuth1" : "Errore di configurazione OAuth1", + "Please provide a valid app key and secret." : "Fornisci chiave e segreto dell'applicazione validi.", + "OAuth1" : "OAuth1", + "App key" : "Chiave applicazione", + "App secret" : "Segreto applicazione" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/it.json b/apps/files_external/l10n/it.json index 6678b2d1307..4151e2b7364 100644 --- a/apps/files_external/l10n/it.json +++ b/apps/files_external/l10n/it.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Concedi l'accesso", - "Error configuring OAuth1" : "Errore di configurazione OAuth1", - "Please provide a valid app key and secret." : "Fornisci chiave e segreto dell'applicazione validi.", "Error configuring OAuth2" : "Errore di configurazione OAuth2", "Generate keys" : "Genera la chiavi", "Error generating key pair" : "Errore durante la generazione della coppia di chiavi", @@ -22,9 +20,6 @@ "Secret key" : "Chiave segreta", "Builtin" : "Integrata", "None" : "Nessuno", - "OAuth1" : "OAuth1", - "App key" : "Chiave applicazione", - "App secret" : "Segreto applicazione", "OAuth2" : "OAuth2", "Client ID" : "ID client", "Client secret" : "Segreto del client", @@ -151,6 +146,11 @@ "All people" : "Tutte le persone", "Advanced settings" : "Impostazioni avanzate", "Allow people to mount external storage" : "Consenti alle persone di montare archiviazioni esterne", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Le credenziali globali possono essere utilizzate anche per l'autenticazione con più archiviazioni esterne che hanno le stesse credenziali." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Le credenziali globali possono essere utilizzate anche per l'autenticazione con più archiviazioni esterne che hanno le stesse credenziali.", + "Error configuring OAuth1" : "Errore di configurazione OAuth1", + "Please provide a valid app key and secret." : "Fornisci chiave e segreto dell'applicazione validi.", + "OAuth1" : "OAuth1", + "App key" : "Chiave applicazione", + "App secret" : "Segreto applicazione" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/files_external/l10n/ja.js b/apps/files_external/l10n/ja.js index 59649049279..ed00130e01f 100644 --- a/apps/files_external/l10n/ja.js +++ b/apps/files_external/l10n/ja.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "アクセスを許可", - "Error configuring OAuth1" : "OAuth1設定エラー", - "Please provide a valid app key and secret." : "有効なアプリのキーとパスワードを入力してください。", "Error configuring OAuth2" : "OAuth2設定エラー", "Generate keys" : "キーを生成", "Error generating key pair" : "キーペアの生成エラー", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "シークレットキー", "Builtin" : "ビルトイン", "None" : "なし", - "OAuth1" : "OAuth1", - "App key" : "アプリキー", - "App secret" : "アプリシークレット", "OAuth2" : "OAuth2", "Client ID" : "クライアントID", "Client secret" : "クライアント秘密鍵", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "すべての人", "Advanced settings" : "詳細設定", "Allow people to mount external storage" : "ユーザーに外部ストレージの接続を許可する", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "グローバル資格情報を使用して、同じ資格情報を持つ複数の外部記憶装置で認証することができます。" + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "グローバル資格情報を使用して、同じ資格情報を持つ複数の外部記憶装置で認証することができます。", + "Error configuring OAuth1" : "OAuth1設定エラー", + "Please provide a valid app key and secret." : "有効なアプリのキーとパスワードを入力してください。", + "OAuth1" : "OAuth1", + "App key" : "アプリキー", + "App secret" : "アプリシークレット" }, "nplurals=1; plural=0;"); diff --git a/apps/files_external/l10n/ja.json b/apps/files_external/l10n/ja.json index 4f3482ba79d..510898a7f6a 100644 --- a/apps/files_external/l10n/ja.json +++ b/apps/files_external/l10n/ja.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "アクセスを許可", - "Error configuring OAuth1" : "OAuth1設定エラー", - "Please provide a valid app key and secret." : "有効なアプリのキーとパスワードを入力してください。", "Error configuring OAuth2" : "OAuth2設定エラー", "Generate keys" : "キーを生成", "Error generating key pair" : "キーペアの生成エラー", @@ -24,9 +22,6 @@ "Secret key" : "シークレットキー", "Builtin" : "ビルトイン", "None" : "なし", - "OAuth1" : "OAuth1", - "App key" : "アプリキー", - "App secret" : "アプリシークレット", "OAuth2" : "OAuth2", "Client ID" : "クライアントID", "Client secret" : "クライアント秘密鍵", @@ -155,6 +150,11 @@ "All people" : "すべての人", "Advanced settings" : "詳細設定", "Allow people to mount external storage" : "ユーザーに外部ストレージの接続を許可する", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "グローバル資格情報を使用して、同じ資格情報を持つ複数の外部記憶装置で認証することができます。" + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "グローバル資格情報を使用して、同じ資格情報を持つ複数の外部記憶装置で認証することができます。", + "Error configuring OAuth1" : "OAuth1設定エラー", + "Please provide a valid app key and secret." : "有効なアプリのキーとパスワードを入力してください。", + "OAuth1" : "OAuth1", + "App key" : "アプリキー", + "App secret" : "アプリシークレット" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/files_external/l10n/ka.js b/apps/files_external/l10n/ka.js index 75d325c6447..eea61ff5b90 100644 --- a/apps/files_external/l10n/ka.js +++ b/apps/files_external/l10n/ka.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Grant access", - "Error configuring OAuth1" : "Error configuring OAuth1", - "Please provide a valid app key and secret." : "Please provide a valid app key and secret.", "Error configuring OAuth2" : "Error configuring OAuth2", "Generate keys" : "Generate keys", "Error generating key pair" : "Error generating key pair", @@ -23,9 +21,6 @@ OC.L10N.register( "Secret key" : "Secret key", "Builtin" : "Builtin", "None" : "None", - "OAuth1" : "OAuth1", - "App key" : "App key", - "App secret" : "App secret", "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Client secret", @@ -132,6 +127,11 @@ OC.L10N.register( "Available for" : "Available for", "Add storage" : "Add storage", "Advanced settings" : "Advanced settings", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Global credentials can be used to authenticate with multiple external storages that have the same credentials." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Global credentials can be used to authenticate with multiple external storages that have the same credentials.", + "Error configuring OAuth1" : "Error configuring OAuth1", + "Please provide a valid app key and secret." : "Please provide a valid app key and secret.", + "OAuth1" : "OAuth1", + "App key" : "App key", + "App secret" : "App secret" }, "nplurals=2; plural=(n!=1);"); diff --git a/apps/files_external/l10n/ka.json b/apps/files_external/l10n/ka.json index 3ba6f431e35..fa67a3974e4 100644 --- a/apps/files_external/l10n/ka.json +++ b/apps/files_external/l10n/ka.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Grant access", - "Error configuring OAuth1" : "Error configuring OAuth1", - "Please provide a valid app key and secret." : "Please provide a valid app key and secret.", "Error configuring OAuth2" : "Error configuring OAuth2", "Generate keys" : "Generate keys", "Error generating key pair" : "Error generating key pair", @@ -21,9 +19,6 @@ "Secret key" : "Secret key", "Builtin" : "Builtin", "None" : "None", - "OAuth1" : "OAuth1", - "App key" : "App key", - "App secret" : "App secret", "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Client secret", @@ -130,6 +125,11 @@ "Available for" : "Available for", "Add storage" : "Add storage", "Advanced settings" : "Advanced settings", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Global credentials can be used to authenticate with multiple external storages that have the same credentials." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Global credentials can be used to authenticate with multiple external storages that have the same credentials.", + "Error configuring OAuth1" : "Error configuring OAuth1", + "Please provide a valid app key and secret." : "Please provide a valid app key and secret.", + "OAuth1" : "OAuth1", + "App key" : "App key", + "App secret" : "App secret" },"pluralForm" :"nplurals=2; plural=(n!=1);" }
\ 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 52ac8c78e88..d6371711106 100644 --- a/apps/files_external/l10n/ka_GE.js +++ b/apps/files_external/l10n/ka_GE.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "წვდომის მინიჭება", - "Error configuring OAuth1" : "OAuth1-ის კონფიგურირებისას წარმოიშვა შეცდომა", - "Please provide a valid app key and secret." : "გთხოვთ უზრუნველყოთ სწორი აპლიკაციის გასაღები და საიდუმლო.", "Error configuring OAuth2" : "OAuth2-ის კონფიგურირებისას წარმოიშვა შეცდომა", "Generate keys" : "გასაღებების გენერირება", "Error generating key pair" : "გასაღების წყვილის გენერირებისას წარმოიშვა შეცდომა", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "საიდუმლო გასაღები", "Builtin" : "ჩაშენებული", "None" : "არც ერთი", - "OAuth1" : "OAuth1", - "App key" : "აპლიკაციის გასაღები", - "App secret" : "აპლიკაციის საიდუმლო", "OAuth2" : "OAuth2", "Client ID" : "კლიენტის ID", "Client secret" : "კლიენტის საიდუმლო", @@ -101,6 +96,11 @@ OC.L10N.register( "Configuration" : "კონფიგურაცია", "Available for" : "ხელმისაწვდომია რომ", "Add storage" : "საცავის დამატება", - "Advanced settings" : "დამატებითი პარამეტრები" + "Advanced settings" : "დამატებითი პარამეტრები", + "Error configuring OAuth1" : "OAuth1-ის კონფიგურირებისას წარმოიშვა შეცდომა", + "Please provide a valid app key and secret." : "გთხოვთ უზრუნველყოთ სწორი აპლიკაციის გასაღები და საიდუმლო.", + "OAuth1" : "OAuth1", + "App key" : "აპლიკაციის გასაღები", + "App secret" : "აპლიკაციის საიდუმლო" }, "nplurals=2; plural=(n!=1);"); diff --git a/apps/files_external/l10n/ka_GE.json b/apps/files_external/l10n/ka_GE.json index 4782c116f06..32740ba5e28 100644 --- a/apps/files_external/l10n/ka_GE.json +++ b/apps/files_external/l10n/ka_GE.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "წვდომის მინიჭება", - "Error configuring OAuth1" : "OAuth1-ის კონფიგურირებისას წარმოიშვა შეცდომა", - "Please provide a valid app key and secret." : "გთხოვთ უზრუნველყოთ სწორი აპლიკაციის გასაღები და საიდუმლო.", "Error configuring OAuth2" : "OAuth2-ის კონფიგურირებისას წარმოიშვა შეცდომა", "Generate keys" : "გასაღებების გენერირება", "Error generating key pair" : "გასაღების წყვილის გენერირებისას წარმოიშვა შეცდომა", @@ -20,9 +18,6 @@ "Secret key" : "საიდუმლო გასაღები", "Builtin" : "ჩაშენებული", "None" : "არც ერთი", - "OAuth1" : "OAuth1", - "App key" : "აპლიკაციის გასაღები", - "App secret" : "აპლიკაციის საიდუმლო", "OAuth2" : "OAuth2", "Client ID" : "კლიენტის ID", "Client secret" : "კლიენტის საიდუმლო", @@ -99,6 +94,11 @@ "Configuration" : "კონფიგურაცია", "Available for" : "ხელმისაწვდომია რომ", "Add storage" : "საცავის დამატება", - "Advanced settings" : "დამატებითი პარამეტრები" + "Advanced settings" : "დამატებითი პარამეტრები", + "Error configuring OAuth1" : "OAuth1-ის კონფიგურირებისას წარმოიშვა შეცდომა", + "Please provide a valid app key and secret." : "გთხოვთ უზრუნველყოთ სწორი აპლიკაციის გასაღები და საიდუმლო.", + "OAuth1" : "OAuth1", + "App key" : "აპლიკაციის გასაღები", + "App secret" : "აპლიკაციის საიდუმლო" },"pluralForm" :"nplurals=2; plural=(n!=1);" }
\ No newline at end of file diff --git a/apps/files_external/l10n/ko.js b/apps/files_external/l10n/ko.js index 81bd09c8c1f..39b058565e3 100644 --- a/apps/files_external/l10n/ko.js +++ b/apps/files_external/l10n/ko.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "접근 권한 부여", - "Error configuring OAuth1" : "OAuth1 설정 오류", - "Please provide a valid app key and secret." : "올바른 앱 키와 비밀 값을 입력하십시오.", "Error configuring OAuth2" : "OAuth2 설정 오류", "Generate keys" : "키 생성", "Error generating key pair" : "키 쌍을 생성하는 중 오류 발생", @@ -24,9 +22,6 @@ OC.L10N.register( "Secret key" : "비밀 키", "Builtin" : "내장", "None" : "없음", - "OAuth1" : "OAuth1", - "App key" : "앱 키", - "App secret" : "앱 비밀 값", "OAuth2" : "OAuth2", "Client ID" : "클라이언트 ID", "Client secret" : "클라이언트 비밀 값", @@ -150,6 +145,11 @@ OC.L10N.register( "All people" : "모든 사용자", "Advanced settings" : "고급 설정", "Allow people to mount external storage" : "사용자가 외부 저장소를 마운트하도록 허용", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "전역 인증 정보를 사용하여 같은 인증 정보를 사용하는 여러 외부 저장소에 인증할 수 있습니다." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "전역 인증 정보를 사용하여 같은 인증 정보를 사용하는 여러 외부 저장소에 인증할 수 있습니다.", + "Error configuring OAuth1" : "OAuth1 설정 오류", + "Please provide a valid app key and secret." : "올바른 앱 키와 비밀 값을 입력하십시오.", + "OAuth1" : "OAuth1", + "App key" : "앱 키", + "App secret" : "앱 비밀 값" }, "nplurals=1; plural=0;"); diff --git a/apps/files_external/l10n/ko.json b/apps/files_external/l10n/ko.json index b6e16ed279f..05382556314 100644 --- a/apps/files_external/l10n/ko.json +++ b/apps/files_external/l10n/ko.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "접근 권한 부여", - "Error configuring OAuth1" : "OAuth1 설정 오류", - "Please provide a valid app key and secret." : "올바른 앱 키와 비밀 값을 입력하십시오.", "Error configuring OAuth2" : "OAuth2 설정 오류", "Generate keys" : "키 생성", "Error generating key pair" : "키 쌍을 생성하는 중 오류 발생", @@ -22,9 +20,6 @@ "Secret key" : "비밀 키", "Builtin" : "내장", "None" : "없음", - "OAuth1" : "OAuth1", - "App key" : "앱 키", - "App secret" : "앱 비밀 값", "OAuth2" : "OAuth2", "Client ID" : "클라이언트 ID", "Client secret" : "클라이언트 비밀 값", @@ -148,6 +143,11 @@ "All people" : "모든 사용자", "Advanced settings" : "고급 설정", "Allow people to mount external storage" : "사용자가 외부 저장소를 마운트하도록 허용", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "전역 인증 정보를 사용하여 같은 인증 정보를 사용하는 여러 외부 저장소에 인증할 수 있습니다." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "전역 인증 정보를 사용하여 같은 인증 정보를 사용하는 여러 외부 저장소에 인증할 수 있습니다.", + "Error configuring OAuth1" : "OAuth1 설정 오류", + "Please provide a valid app key and secret." : "올바른 앱 키와 비밀 값을 입력하십시오.", + "OAuth1" : "OAuth1", + "App key" : "앱 키", + "App secret" : "앱 비밀 값" },"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 de8064812df..dfda2c25671 100644 --- a/apps/files_external/l10n/lt_LT.js +++ b/apps/files_external/l10n/lt_LT.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Suteikti prieigą", - "Error configuring OAuth1" : "Klaida, konfigūruojant OAuth1", - "Please provide a valid app key and secret." : "Prašome naudoti teisingus trečiųjų šalių programinės įrangos identifikacijos numerį ir slaptažodį.", "Error configuring OAuth2" : "Klaida, konfigūruojant OAuth2", "Generate keys" : "Generuoti raktus", "Error generating key pair" : "Klaida generuojant raktų porą", @@ -21,9 +19,6 @@ OC.L10N.register( "Secret key" : "Slaptasis raktas", "Builtin" : "Įtaisytasis", "None" : "Nėra", - "OAuth1" : "OAuth1", - "App key" : "Trečiųjų šalių programinės įrangos identifikacijos raktas", - "App secret" : "Trečiųjų šalių programinės įrangos slaptažodis", "OAuth2" : "OAuth2", "Client ID" : "Kliento ID", "Client secret" : "Trečiųjų šalių programinės įrangos kliento identifikacijos raktas", @@ -106,6 +101,11 @@ OC.L10N.register( "Configuration" : "Konfigūracija", "Available for" : "Prieinamas", "Add storage" : "Pridėti saugyklą", - "Advanced settings" : "Išplėstiniai nustatymai" + "Advanced settings" : "Išplėstiniai nustatymai", + "Error configuring OAuth1" : "Klaida, konfigūruojant OAuth1", + "Please provide a valid app key and secret." : "Prašome naudoti teisingus trečiųjų šalių programinės įrangos identifikacijos numerį ir slaptažodį.", + "OAuth1" : "OAuth1", + "App key" : "Trečiųjų šalių programinės įrangos identifikacijos raktas", + "App secret" : "Trečiųjų šalių programinės įrangos slaptažodis" }, "nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"); diff --git a/apps/files_external/l10n/lt_LT.json b/apps/files_external/l10n/lt_LT.json index 6f4edbbde50..f448286c2a0 100644 --- a/apps/files_external/l10n/lt_LT.json +++ b/apps/files_external/l10n/lt_LT.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Suteikti prieigą", - "Error configuring OAuth1" : "Klaida, konfigūruojant OAuth1", - "Please provide a valid app key and secret." : "Prašome naudoti teisingus trečiųjų šalių programinės įrangos identifikacijos numerį ir slaptažodį.", "Error configuring OAuth2" : "Klaida, konfigūruojant OAuth2", "Generate keys" : "Generuoti raktus", "Error generating key pair" : "Klaida generuojant raktų porą", @@ -19,9 +17,6 @@ "Secret key" : "Slaptasis raktas", "Builtin" : "Įtaisytasis", "None" : "Nėra", - "OAuth1" : "OAuth1", - "App key" : "Trečiųjų šalių programinės įrangos identifikacijos raktas", - "App secret" : "Trečiųjų šalių programinės įrangos slaptažodis", "OAuth2" : "OAuth2", "Client ID" : "Kliento ID", "Client secret" : "Trečiųjų šalių programinės įrangos kliento identifikacijos raktas", @@ -104,6 +99,11 @@ "Configuration" : "Konfigūracija", "Available for" : "Prieinamas", "Add storage" : "Pridėti saugyklą", - "Advanced settings" : "Išplėstiniai nustatymai" + "Advanced settings" : "Išplėstiniai nustatymai", + "Error configuring OAuth1" : "Klaida, konfigūruojant OAuth1", + "Please provide a valid app key and secret." : "Prašome naudoti teisingus trečiųjų šalių programinės įrangos identifikacijos numerį ir slaptažodį.", + "OAuth1" : "OAuth1", + "App key" : "Trečiųjų šalių programinės įrangos identifikacijos raktas", + "App secret" : "Trečiųjų šalių programinės įrangos slaptažodis" },"pluralForm" :"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);" }
\ No newline at end of file diff --git a/apps/files_external/l10n/mk.js b/apps/files_external/l10n/mk.js index a41f84e471a..a0b0b96a451 100644 --- a/apps/files_external/l10n/mk.js +++ b/apps/files_external/l10n/mk.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Дозволи пристап", - "Error configuring OAuth1" : "Грешка во конфигурацијата на OAuth1", - "Please provide a valid app key and secret." : "Внесете валиден клуч на апликацијата и лозинка.", "Error configuring OAuth2" : "Грешка во конфигурацијата на OAuth2", "Generate keys" : "Генерирај клучеви", "Error generating key pair" : "Грешка при генерирање на клучеви", @@ -15,9 +13,6 @@ OC.L10N.register( "Secret key" : "Таен клуч", "Builtin" : "Вграден", "None" : "Ништо", - "OAuth1" : "OAuth1", - "App key" : "Клуч на апликацијата", - "App secret" : "Тајна на апликацијата", "OAuth2" : "OAuth2", "Client ID" : "Клиент ИД", "Client secret" : "Тајна на клиент", @@ -99,6 +94,11 @@ OC.L10N.register( "Available for" : "Достапно за", "Add storage" : "Додади складиште", "Advanced settings" : "Напредни параметри", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Глобалните акредитиви можат да се искористат за пристапување во повеќе надворешни складишта кој користат исти акредитиви." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Глобалните акредитиви можат да се искористат за пристапување во повеќе надворешни складишта кој користат исти акредитиви.", + "Error configuring OAuth1" : "Грешка во конфигурацијата на OAuth1", + "Please provide a valid app key and secret." : "Внесете валиден клуч на апликацијата и лозинка.", + "OAuth1" : "OAuth1", + "App key" : "Клуч на апликацијата", + "App secret" : "Тајна на апликацијата" }, "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"); diff --git a/apps/files_external/l10n/mk.json b/apps/files_external/l10n/mk.json index 413265d40c3..cb6f34cc0fe 100644 --- a/apps/files_external/l10n/mk.json +++ b/apps/files_external/l10n/mk.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Дозволи пристап", - "Error configuring OAuth1" : "Грешка во конфигурацијата на OAuth1", - "Please provide a valid app key and secret." : "Внесете валиден клуч на апликацијата и лозинка.", "Error configuring OAuth2" : "Грешка во конфигурацијата на OAuth2", "Generate keys" : "Генерирај клучеви", "Error generating key pair" : "Грешка при генерирање на клучеви", @@ -13,9 +11,6 @@ "Secret key" : "Таен клуч", "Builtin" : "Вграден", "None" : "Ништо", - "OAuth1" : "OAuth1", - "App key" : "Клуч на апликацијата", - "App secret" : "Тајна на апликацијата", "OAuth2" : "OAuth2", "Client ID" : "Клиент ИД", "Client secret" : "Тајна на клиент", @@ -97,6 +92,11 @@ "Available for" : "Достапно за", "Add storage" : "Додади складиште", "Advanced settings" : "Напредни параметри", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Глобалните акредитиви можат да се искористат за пристапување во повеќе надворешни складишта кој користат исти акредитиви." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Глобалните акредитиви можат да се искористат за пристапување во повеќе надворешни складишта кој користат исти акредитиви.", + "Error configuring OAuth1" : "Грешка во конфигурацијата на OAuth1", + "Please provide a valid app key and secret." : "Внесете валиден клуч на апликацијата и лозинка.", + "OAuth1" : "OAuth1", + "App key" : "Клуч на апликацијата", + "App secret" : "Тајна на апликацијата" },"pluralForm" :"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;" }
\ No newline at end of file diff --git a/apps/files_external/l10n/nb.js b/apps/files_external/l10n/nb.js index e3103c5816b..9bf05d11811 100644 --- a/apps/files_external/l10n/nb.js +++ b/apps/files_external/l10n/nb.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Gi tilgang", - "Error configuring OAuth1" : "Feil ved oppsett av OAuth1", - "Please provide a valid app key and secret." : "Oppgi gyldig appnøkkel og hemmelighet.", "Error configuring OAuth2" : "Feil ved oppsett av OAuth2", "Generate keys" : "Generer nøkler", "Error generating key pair" : "Feil ved nøkkelgenerering", @@ -24,9 +22,6 @@ OC.L10N.register( "Secret key" : "Hemmelig nøkkel", "Builtin" : "Innebygget", "None" : "Ingen", - "OAuth1" : "OAuth1", - "App key" : "App-nøkkel", - "App secret" : "App-hemmelighet", "OAuth2" : "OAuth2", "Client ID" : "Klient-ID", "Client secret" : "Klient-hemmelighet", @@ -144,6 +139,11 @@ OC.L10N.register( "All people" : "Alle personer", "Advanced settings" : "Avanserte innstillinger", "Allow people to mount external storage" : "Tillatt personer å montere ekstern lagring", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale påloggingsdetaljer kan brukes til å autentisere med flere eksterne lagringer som krever de samme påloggingsdetaljer." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale påloggingsdetaljer kan brukes til å autentisere med flere eksterne lagringer som krever de samme påloggingsdetaljer.", + "Error configuring OAuth1" : "Feil ved oppsett av OAuth1", + "Please provide a valid app key and secret." : "Oppgi gyldig appnøkkel og hemmelighet.", + "OAuth1" : "OAuth1", + "App key" : "App-nøkkel", + "App secret" : "App-hemmelighet" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/nb.json b/apps/files_external/l10n/nb.json index deda860896f..5b21075eb8b 100644 --- a/apps/files_external/l10n/nb.json +++ b/apps/files_external/l10n/nb.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Gi tilgang", - "Error configuring OAuth1" : "Feil ved oppsett av OAuth1", - "Please provide a valid app key and secret." : "Oppgi gyldig appnøkkel og hemmelighet.", "Error configuring OAuth2" : "Feil ved oppsett av OAuth2", "Generate keys" : "Generer nøkler", "Error generating key pair" : "Feil ved nøkkelgenerering", @@ -22,9 +20,6 @@ "Secret key" : "Hemmelig nøkkel", "Builtin" : "Innebygget", "None" : "Ingen", - "OAuth1" : "OAuth1", - "App key" : "App-nøkkel", - "App secret" : "App-hemmelighet", "OAuth2" : "OAuth2", "Client ID" : "Klient-ID", "Client secret" : "Klient-hemmelighet", @@ -142,6 +137,11 @@ "All people" : "Alle personer", "Advanced settings" : "Avanserte innstillinger", "Allow people to mount external storage" : "Tillatt personer å montere ekstern lagring", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale påloggingsdetaljer kan brukes til å autentisere med flere eksterne lagringer som krever de samme påloggingsdetaljer." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale påloggingsdetaljer kan brukes til å autentisere med flere eksterne lagringer som krever de samme påloggingsdetaljer.", + "Error configuring OAuth1" : "Feil ved oppsett av OAuth1", + "Please provide a valid app key and secret." : "Oppgi gyldig appnøkkel og hemmelighet.", + "OAuth1" : "OAuth1", + "App key" : "App-nøkkel", + "App secret" : "App-hemmelighet" },"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 467ab309566..51789ec380c 100644 --- a/apps/files_external/l10n/nl.js +++ b/apps/files_external/l10n/nl.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Toegang verlenen", - "Error configuring OAuth1" : "Fout bij configureren OAuth1", - "Please provide a valid app key and secret." : "Geef een geldige app sleutel en geheime sleutel op.", "Error configuring OAuth2" : "Fout bij configureren OAuth2", "Generate keys" : "Sleutels genereren", "Error generating key pair" : "Fout bij genereren sleutelpaar", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Geheime sleutel", "Builtin" : "Ingebouwd", "None" : "Geen", - "OAuth1" : "OAuth1", - "App key" : "App key", - "App secret" : "App secret", "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Client secret", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Iedereen", "Advanced settings" : "Geavanceerde instellingen", "Allow people to mount external storage" : "Toestaan dat mensen externe opslag aankoppelen", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale inloggegevens kunnen worden gebruikt met meerdere externe opslagsystemen met dezelfde inloggegevens." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale inloggegevens kunnen worden gebruikt met meerdere externe opslagsystemen met dezelfde inloggegevens.", + "Error configuring OAuth1" : "Fout bij configureren OAuth1", + "Please provide a valid app key and secret." : "Geef een geldige app sleutel en geheime sleutel op.", + "OAuth1" : "OAuth1", + "App key" : "App key", + "App secret" : "App secret" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/nl.json b/apps/files_external/l10n/nl.json index edfbb1ecdd0..5765903f6ee 100644 --- a/apps/files_external/l10n/nl.json +++ b/apps/files_external/l10n/nl.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Toegang verlenen", - "Error configuring OAuth1" : "Fout bij configureren OAuth1", - "Please provide a valid app key and secret." : "Geef een geldige app sleutel en geheime sleutel op.", "Error configuring OAuth2" : "Fout bij configureren OAuth2", "Generate keys" : "Sleutels genereren", "Error generating key pair" : "Fout bij genereren sleutelpaar", @@ -24,9 +22,6 @@ "Secret key" : "Geheime sleutel", "Builtin" : "Ingebouwd", "None" : "Geen", - "OAuth1" : "OAuth1", - "App key" : "App key", - "App secret" : "App secret", "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Client secret", @@ -155,6 +150,11 @@ "All people" : "Iedereen", "Advanced settings" : "Geavanceerde instellingen", "Allow people to mount external storage" : "Toestaan dat mensen externe opslag aankoppelen", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale inloggegevens kunnen worden gebruikt met meerdere externe opslagsystemen met dezelfde inloggegevens." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globale inloggegevens kunnen worden gebruikt met meerdere externe opslagsystemen met dezelfde inloggegevens.", + "Error configuring OAuth1" : "Fout bij configureren OAuth1", + "Please provide a valid app key and secret." : "Geef een geldige app sleutel en geheime sleutel op.", + "OAuth1" : "OAuth1", + "App key" : "App key", + "App secret" : "App secret" },"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 4d78e26f636..29c2f293533 100644 --- a/apps/files_external/l10n/pl.js +++ b/apps/files_external/l10n/pl.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Udziel dostępu", - "Error configuring OAuth1" : "Błąd konfiguracji OAuth1", - "Please provide a valid app key and secret." : "Podaj prawidłowy klucz aplikacji i tajny klucz.", "Error configuring OAuth2" : "Błąd konfiguracji OAuth2", "Generate keys" : "Wygeneruj klucze", "Error generating key pair" : "Błąd podczas generowania pary kluczy", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Tajny klucz", "Builtin" : "Wbudowane", "None" : "Nic", - "OAuth1" : "OAuth1", - "App key" : "Klucz aplikacji", - "App secret" : "Tajny klucz aplikacji", "OAuth2" : "OAuth2", "Client ID" : "ID klienta", "Client secret" : "Tajny klucz klienta", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Wszystkie osoby", "Advanced settings" : "Ustawienia zaawansowane", "Allow people to mount external storage" : "Zezwalaj innym na montowanie pamięci zewnętrznej", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globalne dane uwierzytelniające mogą być używane do uwierzytelniania z wieloma zewnętrznymi magazynami, o ile posiadają takie same dane uwierzytelniające." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globalne dane uwierzytelniające mogą być używane do uwierzytelniania z wieloma zewnętrznymi magazynami, o ile posiadają takie same dane uwierzytelniające.", + "Error configuring OAuth1" : "Błąd konfiguracji OAuth1", + "Please provide a valid app key and secret." : "Podaj prawidłowy klucz aplikacji i tajny klucz.", + "OAuth1" : "OAuth1", + "App key" : "Klucz aplikacji", + "App secret" : "Tajny klucz aplikacji" }, "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 7a8a611f27f..5e03e0fc0b6 100644 --- a/apps/files_external/l10n/pl.json +++ b/apps/files_external/l10n/pl.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Udziel dostępu", - "Error configuring OAuth1" : "Błąd konfiguracji OAuth1", - "Please provide a valid app key and secret." : "Podaj prawidłowy klucz aplikacji i tajny klucz.", "Error configuring OAuth2" : "Błąd konfiguracji OAuth2", "Generate keys" : "Wygeneruj klucze", "Error generating key pair" : "Błąd podczas generowania pary kluczy", @@ -24,9 +22,6 @@ "Secret key" : "Tajny klucz", "Builtin" : "Wbudowane", "None" : "Nic", - "OAuth1" : "OAuth1", - "App key" : "Klucz aplikacji", - "App secret" : "Tajny klucz aplikacji", "OAuth2" : "OAuth2", "Client ID" : "ID klienta", "Client secret" : "Tajny klucz klienta", @@ -155,6 +150,11 @@ "All people" : "Wszystkie osoby", "Advanced settings" : "Ustawienia zaawansowane", "Allow people to mount external storage" : "Zezwalaj innym na montowanie pamięci zewnętrznej", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globalne dane uwierzytelniające mogą być używane do uwierzytelniania z wieloma zewnętrznymi magazynami, o ile posiadają takie same dane uwierzytelniające." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globalne dane uwierzytelniające mogą być używane do uwierzytelniania z wieloma zewnętrznymi magazynami, o ile posiadają takie same dane uwierzytelniające.", + "Error configuring OAuth1" : "Błąd konfiguracji OAuth1", + "Please provide a valid app key and secret." : "Podaj prawidłowy klucz aplikacji i tajny klucz.", + "OAuth1" : "OAuth1", + "App key" : "Klucz aplikacji", + "App secret" : "Tajny klucz aplikacji" },"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 c1f7cff9a1d..82946a4347d 100644 --- a/apps/files_external/l10n/pt_BR.js +++ b/apps/files_external/l10n/pt_BR.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Garantir acesso", - "Error configuring OAuth1" : "Erro configurando OAuth1", - "Please provide a valid app key and secret." : "Por favor forneça uma chave de aplicativo e segurança válidos.", "Error configuring OAuth2" : "Erro configurando OAuth2", "Generate keys" : "Gerar chaves", "Error generating key pair" : "Erro ao gerar o par de chaves", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Chave secreta", "Builtin" : "integrado", "None" : "Nenhum", - "OAuth1" : "OAuth1", - "App key" : "Chave do aplicativo", - "App secret" : "Segredo do aplicativo", "OAuth2" : "OAuth2", "Client ID" : "ID do Cliente", "Client secret" : "Segredo do cliente", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Todas as pessoas", "Advanced settings" : "Configurações avançadas", "Allow people to mount external storage" : "Permitir que as pessoas montem armazenamento externo", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Credenciais globais podem ser usadas para autenticar com vários armazenamentos externos que possuem as mesmas credenciais." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Credenciais globais podem ser usadas para autenticar com vários armazenamentos externos que possuem as mesmas credenciais.", + "Error configuring OAuth1" : "Erro configurando OAuth1", + "Please provide a valid app key and secret." : "Por favor forneça uma chave de aplicativo e segurança válidos.", + "OAuth1" : "OAuth1", + "App key" : "Chave do aplicativo", + "App secret" : "Segredo do aplicativo" }, "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/pt_BR.json b/apps/files_external/l10n/pt_BR.json index d4110a66176..e9e9eb52208 100644 --- a/apps/files_external/l10n/pt_BR.json +++ b/apps/files_external/l10n/pt_BR.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Garantir acesso", - "Error configuring OAuth1" : "Erro configurando OAuth1", - "Please provide a valid app key and secret." : "Por favor forneça uma chave de aplicativo e segurança válidos.", "Error configuring OAuth2" : "Erro configurando OAuth2", "Generate keys" : "Gerar chaves", "Error generating key pair" : "Erro ao gerar o par de chaves", @@ -24,9 +22,6 @@ "Secret key" : "Chave secreta", "Builtin" : "integrado", "None" : "Nenhum", - "OAuth1" : "OAuth1", - "App key" : "Chave do aplicativo", - "App secret" : "Segredo do aplicativo", "OAuth2" : "OAuth2", "Client ID" : "ID do Cliente", "Client secret" : "Segredo do cliente", @@ -155,6 +150,11 @@ "All people" : "Todas as pessoas", "Advanced settings" : "Configurações avançadas", "Allow people to mount external storage" : "Permitir que as pessoas montem armazenamento externo", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Credenciais globais podem ser usadas para autenticar com vários armazenamentos externos que possuem as mesmas credenciais." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Credenciais globais podem ser usadas para autenticar com vários armazenamentos externos que possuem as mesmas credenciais.", + "Error configuring OAuth1" : "Erro configurando OAuth1", + "Please provide a valid app key and secret." : "Por favor forneça uma chave de aplicativo e segurança válidos.", + "OAuth1" : "OAuth1", + "App key" : "Chave do aplicativo", + "App secret" : "Segredo do aplicativo" },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ 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 59653e77eb7..bde520eb191 100644 --- a/apps/files_external/l10n/pt_PT.js +++ b/apps/files_external/l10n/pt_PT.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Conceder acesso", - "Error configuring OAuth1" : "Erro ao configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor, indique um código e segredo de app válidos.", "Error configuring OAuth2" : "Erro ao configurar OAuth2", "Generate keys" : "Gerar chaves", "Error generating key pair" : "Erro ao gerar chave par", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Código secreto", "Builtin" : "Integrado", "None" : "Nenhum", - "OAuth1" : "OAuth1", - "App key" : "Chave da App", - "App secret" : "Segredo da app", "OAuth2" : "OAuth2", "Client ID" : "Id. de Cliente", "Client secret" : "Segredo de cliente", @@ -98,6 +93,11 @@ OC.L10N.register( "Configuration" : "Configuração", "Available for" : "Disponível para ", "Add storage" : "Adicionar armazenamento", - "Advanced settings" : "Definições avançadas" + "Advanced settings" : "Definições avançadas", + "Error configuring OAuth1" : "Erro ao configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor, indique um código e segredo de app válidos.", + "OAuth1" : "OAuth1", + "App key" : "Chave da App", + "App secret" : "Segredo da app" }, "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/apps/files_external/l10n/pt_PT.json b/apps/files_external/l10n/pt_PT.json index fcf3c490ae2..4f334dd1643 100644 --- a/apps/files_external/l10n/pt_PT.json +++ b/apps/files_external/l10n/pt_PT.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Conceder acesso", - "Error configuring OAuth1" : "Erro ao configurar OAuth1", - "Please provide a valid app key and secret." : "Por favor, indique um código e segredo de app válidos.", "Error configuring OAuth2" : "Erro ao configurar OAuth2", "Generate keys" : "Gerar chaves", "Error generating key pair" : "Erro ao gerar chave par", @@ -20,9 +18,6 @@ "Secret key" : "Código secreto", "Builtin" : "Integrado", "None" : "Nenhum", - "OAuth1" : "OAuth1", - "App key" : "Chave da App", - "App secret" : "Segredo da app", "OAuth2" : "OAuth2", "Client ID" : "Id. de Cliente", "Client secret" : "Segredo de cliente", @@ -96,6 +91,11 @@ "Configuration" : "Configuração", "Available for" : "Disponível para ", "Add storage" : "Adicionar armazenamento", - "Advanced settings" : "Definições avançadas" + "Advanced settings" : "Definições avançadas", + "Error configuring OAuth1" : "Erro ao configurar OAuth1", + "Please provide a valid app key and secret." : "Por favor, indique um código e segredo de app válidos.", + "OAuth1" : "OAuth1", + "App key" : "Chave da App", + "App secret" : "Segredo da app" },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" }
\ No newline at end of file diff --git a/apps/files_external/l10n/ru.js b/apps/files_external/l10n/ru.js index e98198264b8..5a1f42a2396 100644 --- a/apps/files_external/l10n/ru.js +++ b/apps/files_external/l10n/ru.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Предоставить доступ", - "Error configuring OAuth1" : "Ошибка настройки OAuth1", - "Please provide a valid app key and secret." : "Укажите верные ключ и секрет приложения.", "Error configuring OAuth2" : "Ошибка настройки OAuth2", "Generate keys" : "Создать ключи", "Error generating key pair" : "Ошибка создания пары ключей", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Секретный ключ", "Builtin" : "Встроенный", "None" : "Отсутствует", - "OAuth1" : "OAuth1", - "App key" : "Ключ приложения", - "App secret" : "Секретный ключ ", "OAuth2" : "OAuth2", "Client ID" : "Идентификатор клиента", "Client secret" : "Клиентский ключ ", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Все люди", "Advanced settings" : "Расширенные настройки", "Allow people to mount external storage" : "Разрешить пользователям подключать внешнее хранилище", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Глобальные учетные данные могут использоваться для аутентификации с несколькими внешними хранилищами, которые имеют одинаковые учетные данные." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Глобальные учетные данные могут использоваться для аутентификации с несколькими внешними хранилищами, которые имеют одинаковые учетные данные.", + "Error configuring OAuth1" : "Ошибка настройки OAuth1", + "Please provide a valid app key and secret." : "Укажите верные ключ и секрет приложения.", + "OAuth1" : "OAuth1", + "App key" : "Ключ приложения", + "App secret" : "Секретный ключ " }, "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 a0260761245..16d4cfcbe60 100644 --- a/apps/files_external/l10n/ru.json +++ b/apps/files_external/l10n/ru.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Предоставить доступ", - "Error configuring OAuth1" : "Ошибка настройки OAuth1", - "Please provide a valid app key and secret." : "Укажите верные ключ и секрет приложения.", "Error configuring OAuth2" : "Ошибка настройки OAuth2", "Generate keys" : "Создать ключи", "Error generating key pair" : "Ошибка создания пары ключей", @@ -24,9 +22,6 @@ "Secret key" : "Секретный ключ", "Builtin" : "Встроенный", "None" : "Отсутствует", - "OAuth1" : "OAuth1", - "App key" : "Ключ приложения", - "App secret" : "Секретный ключ ", "OAuth2" : "OAuth2", "Client ID" : "Идентификатор клиента", "Client secret" : "Клиентский ключ ", @@ -155,6 +150,11 @@ "All people" : "Все люди", "Advanced settings" : "Расширенные настройки", "Allow people to mount external storage" : "Разрешить пользователям подключать внешнее хранилище", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Глобальные учетные данные могут использоваться для аутентификации с несколькими внешними хранилищами, которые имеют одинаковые учетные данные." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Глобальные учетные данные могут использоваться для аутентификации с несколькими внешними хранилищами, которые имеют одинаковые учетные данные.", + "Error configuring OAuth1" : "Ошибка настройки OAuth1", + "Please provide a valid app key and secret." : "Укажите верные ключ и секрет приложения.", + "OAuth1" : "OAuth1", + "App key" : "Ключ приложения", + "App secret" : "Секретный ключ " },"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/sc.js b/apps/files_external/l10n/sc.js index ffc47cf0ad6..b9fa13995b5 100644 --- a/apps/files_external/l10n/sc.js +++ b/apps/files_external/l10n/sc.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Permite s'atzessu", - "Error configuring OAuth1" : "Errore de cunfiguratzione OAuth1", - "Please provide a valid app key and secret." : "Fruni una crae bàlida e segreta.", "Error configuring OAuth2" : "Errore de cunfiguratzione OAuth2", "Generate keys" : "Gènera craes", "Error generating key pair" : "Errore creende sa croba de craes", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Crae segreta", "Builtin" : "Integrada", "None" : "Perunu", - "OAuth1" : "OAuth1", - "App key" : "Crae de s'aplicatzione", - "App secret" : "Segretu de s'aplicatzione", "OAuth2" : "OAuth2", "Client ID" : "ID cliente", "Client secret" : "Segretu de su cliente", @@ -113,6 +108,11 @@ OC.L10N.register( "Available for" : "A disponimentu pro", "Add storage" : "Agiunghe archiviatzione", "Advanced settings" : "Cunfiguratziones avantzadas", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Is credentziales globales si podent impreare puru pro s'autenticatzione cun prus archiviatziones de foras chi tenent is matessi credentziales." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Is credentziales globales si podent impreare puru pro s'autenticatzione cun prus archiviatziones de foras chi tenent is matessi credentziales.", + "Error configuring OAuth1" : "Errore de cunfiguratzione OAuth1", + "Please provide a valid app key and secret." : "Fruni una crae bàlida e segreta.", + "OAuth1" : "OAuth1", + "App key" : "Crae de s'aplicatzione", + "App secret" : "Segretu de s'aplicatzione" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/sc.json b/apps/files_external/l10n/sc.json index b695c50995e..f10b71eb40f 100644 --- a/apps/files_external/l10n/sc.json +++ b/apps/files_external/l10n/sc.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Permite s'atzessu", - "Error configuring OAuth1" : "Errore de cunfiguratzione OAuth1", - "Please provide a valid app key and secret." : "Fruni una crae bàlida e segreta.", "Error configuring OAuth2" : "Errore de cunfiguratzione OAuth2", "Generate keys" : "Gènera craes", "Error generating key pair" : "Errore creende sa croba de craes", @@ -20,9 +18,6 @@ "Secret key" : "Crae segreta", "Builtin" : "Integrada", "None" : "Perunu", - "OAuth1" : "OAuth1", - "App key" : "Crae de s'aplicatzione", - "App secret" : "Segretu de s'aplicatzione", "OAuth2" : "OAuth2", "Client ID" : "ID cliente", "Client secret" : "Segretu de su cliente", @@ -111,6 +106,11 @@ "Available for" : "A disponimentu pro", "Add storage" : "Agiunghe archiviatzione", "Advanced settings" : "Cunfiguratziones avantzadas", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Is credentziales globales si podent impreare puru pro s'autenticatzione cun prus archiviatziones de foras chi tenent is matessi credentziales." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Is credentziales globales si podent impreare puru pro s'autenticatzione cun prus archiviatziones de foras chi tenent is matessi credentziales.", + "Error configuring OAuth1" : "Errore de cunfiguratzione OAuth1", + "Please provide a valid app key and secret." : "Fruni una crae bàlida e segreta.", + "OAuth1" : "OAuth1", + "App key" : "Crae de s'aplicatzione", + "App secret" : "Segretu de s'aplicatzione" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/files_external/l10n/sk.js b/apps/files_external/l10n/sk.js index 5c0530cbfa2..f8c9608e833 100644 --- a/apps/files_external/l10n/sk.js +++ b/apps/files_external/l10n/sk.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Povoliť prístup", - "Error configuring OAuth1" : "Chyba konfigurovania OAuth1", - "Please provide a valid app key and secret." : "Zadajte prosím platný aplikačný kľúč a heslo (secret).", "Error configuring OAuth2" : "Chyba konfigurovania OAuth2", "Generate keys" : "Vytvoriť kľúče", "Error generating key pair" : "Chyba pri vytváraní dvojice kľúčov", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Tajný kľúč", "Builtin" : "Vstavaný", "None" : "Žiadny", - "OAuth1" : "OAuth1", - "App key" : "Kľúč aplikácie", - "App secret" : "Heslo aplikácie", "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Heslo klienta", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Všetci ľudia", "Advanced settings" : "Rozšírené nastavenia", "Allow people to mount external storage" : "Povoliť užívateľom pripojiť externé úložiská", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globálne prihlasovacie údaje je možné použiť pre overenie s viacerými externými úložiskami, ktoré majú rovnaké prihlasovacie údaje." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globálne prihlasovacie údaje je možné použiť pre overenie s viacerými externými úložiskami, ktoré majú rovnaké prihlasovacie údaje.", + "Error configuring OAuth1" : "Chyba konfigurovania OAuth1", + "Please provide a valid app key and secret." : "Zadajte prosím platný aplikačný kľúč a heslo (secret).", + "OAuth1" : "OAuth1", + "App key" : "Kľúč aplikácie", + "App secret" : "Heslo aplikácie" }, "nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"); diff --git a/apps/files_external/l10n/sk.json b/apps/files_external/l10n/sk.json index 3a7b5775e1b..fcacd8330d6 100644 --- a/apps/files_external/l10n/sk.json +++ b/apps/files_external/l10n/sk.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Povoliť prístup", - "Error configuring OAuth1" : "Chyba konfigurovania OAuth1", - "Please provide a valid app key and secret." : "Zadajte prosím platný aplikačný kľúč a heslo (secret).", "Error configuring OAuth2" : "Chyba konfigurovania OAuth2", "Generate keys" : "Vytvoriť kľúče", "Error generating key pair" : "Chyba pri vytváraní dvojice kľúčov", @@ -24,9 +22,6 @@ "Secret key" : "Tajný kľúč", "Builtin" : "Vstavaný", "None" : "Žiadny", - "OAuth1" : "OAuth1", - "App key" : "Kľúč aplikácie", - "App secret" : "Heslo aplikácie", "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Heslo klienta", @@ -155,6 +150,11 @@ "All people" : "Všetci ľudia", "Advanced settings" : "Rozšírené nastavenia", "Allow people to mount external storage" : "Povoliť užívateľom pripojiť externé úložiská", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globálne prihlasovacie údaje je možné použiť pre overenie s viacerými externými úložiskami, ktoré majú rovnaké prihlasovacie údaje." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globálne prihlasovacie údaje je možné použiť pre overenie s viacerými externými úložiskami, ktoré majú rovnaké prihlasovacie údaje.", + "Error configuring OAuth1" : "Chyba konfigurovania OAuth1", + "Please provide a valid app key and secret." : "Zadajte prosím platný aplikačný kľúč a heslo (secret).", + "OAuth1" : "OAuth1", + "App key" : "Kľúč aplikácie", + "App secret" : "Heslo aplikácie" },"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);" }
\ No newline at end of file diff --git a/apps/files_external/l10n/sl.js b/apps/files_external/l10n/sl.js index 7ceb9aff566..69a1566e54b 100644 --- a/apps/files_external/l10n/sl.js +++ b/apps/files_external/l10n/sl.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Odobri dostop", - "Error configuring OAuth1" : "Napaka nastavljanja OAuth1", - "Please provide a valid app key and secret." : "Vpisati je treba veljaven ključ programa in kodo PIN.", "Error configuring OAuth2" : "Napaka nastavljanja OAuth2", "Generate keys" : "Ustvari ključe", "Error generating key pair" : "Prišlo je do napake med ustvarjanjem para ključev", @@ -23,9 +21,6 @@ OC.L10N.register( "Secret key" : "Skrivni ključ", "Builtin" : "Vgrajeno", "None" : "Brez", - "OAuth1" : "OAuth1", - "App key" : "Programski ključ", - "App secret" : "Skrivni programski ključ", "OAuth2" : "OAuth2", "Client ID" : "ID odjemalca", "Client secret" : "Skrivni ključ odjemalca", @@ -122,6 +117,11 @@ OC.L10N.register( "Available for" : "Na voljo za", "Add storage" : "Dodaj shrambo", "Advanced settings" : "Napredne nastavitve", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Splošna poverila je mogoče uporabiti za overitev z več zunanjimi shrambami, ki uporabljajo enaka poverila." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Splošna poverila je mogoče uporabiti za overitev z več zunanjimi shrambami, ki uporabljajo enaka poverila.", + "Error configuring OAuth1" : "Napaka nastavljanja OAuth1", + "Please provide a valid app key and secret." : "Vpisati je treba veljaven ključ programa in kodo PIN.", + "OAuth1" : "OAuth1", + "App key" : "Programski ključ", + "App secret" : "Skrivni programski ključ" }, "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 0469e12da04..f389b797a4c 100644 --- a/apps/files_external/l10n/sl.json +++ b/apps/files_external/l10n/sl.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Odobri dostop", - "Error configuring OAuth1" : "Napaka nastavljanja OAuth1", - "Please provide a valid app key and secret." : "Vpisati je treba veljaven ključ programa in kodo PIN.", "Error configuring OAuth2" : "Napaka nastavljanja OAuth2", "Generate keys" : "Ustvari ključe", "Error generating key pair" : "Prišlo je do napake med ustvarjanjem para ključev", @@ -21,9 +19,6 @@ "Secret key" : "Skrivni ključ", "Builtin" : "Vgrajeno", "None" : "Brez", - "OAuth1" : "OAuth1", - "App key" : "Programski ključ", - "App secret" : "Skrivni programski ključ", "OAuth2" : "OAuth2", "Client ID" : "ID odjemalca", "Client secret" : "Skrivni ključ odjemalca", @@ -120,6 +115,11 @@ "Available for" : "Na voljo za", "Add storage" : "Dodaj shrambo", "Advanced settings" : "Napredne nastavitve", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Splošna poverila je mogoče uporabiti za overitev z več zunanjimi shrambami, ki uporabljajo enaka poverila." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Splošna poverila je mogoče uporabiti za overitev z več zunanjimi shrambami, ki uporabljajo enaka poverila.", + "Error configuring OAuth1" : "Napaka nastavljanja OAuth1", + "Please provide a valid app key and secret." : "Vpisati je treba veljaven ključ programa in kodo PIN.", + "OAuth1" : "OAuth1", + "App key" : "Programski ključ", + "App secret" : "Skrivni programski ključ" },"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 22e10a359c2..95e0d6c6196 100644 --- a/apps/files_external/l10n/sq.js +++ b/apps/files_external/l10n/sq.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Akordoji hyrje", - "Error configuring OAuth1" : "Gabim gjatë formësimit të OAuth1", - "Please provide a valid app key and secret." : "Ju lutemi jepni një kyç dhe një të fshehtë aplikacioni të vlefshme.", "Error configuring OAuth2" : "Gabim gjatë formësimit të OAuth2", "Generate keys" : "Prodho kyçe", "Error generating key pair" : "Gabim gjatë prodhimit të çiftit të kyçeve", @@ -22,9 +20,6 @@ OC.L10N.register( "Secret key" : "Kyç i fshehtë", "Builtin" : "I brendshëm", "None" : "Asnjë", - "OAuth1" : "OAuth1", - "App key" : "Kyç aplikacioni", - "App secret" : "E fshehtë aplikacioni", "OAuth2" : "OAuth2", "Client ID" : "ID klienti", "Client secret" : "E fshehtë klienti", @@ -94,6 +89,11 @@ OC.L10N.register( "Configuration" : "Formësim", "Available for" : "E gatshme për", "Add storage" : "Shtoni depozitë", - "Advanced settings" : "Rregullime të mëtejshme" + "Advanced settings" : "Rregullime të mëtejshme", + "Error configuring OAuth1" : "Gabim gjatë formësimit të OAuth1", + "Please provide a valid app key and secret." : "Ju lutemi jepni një kyç dhe një të fshehtë aplikacioni të vlefshme.", + "OAuth1" : "OAuth1", + "App key" : "Kyç aplikacioni", + "App secret" : "E fshehtë aplikacioni" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/sq.json b/apps/files_external/l10n/sq.json index ffd572d8984..c8479c25251 100644 --- a/apps/files_external/l10n/sq.json +++ b/apps/files_external/l10n/sq.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Akordoji hyrje", - "Error configuring OAuth1" : "Gabim gjatë formësimit të OAuth1", - "Please provide a valid app key and secret." : "Ju lutemi jepni një kyç dhe një të fshehtë aplikacioni të vlefshme.", "Error configuring OAuth2" : "Gabim gjatë formësimit të OAuth2", "Generate keys" : "Prodho kyçe", "Error generating key pair" : "Gabim gjatë prodhimit të çiftit të kyçeve", @@ -20,9 +18,6 @@ "Secret key" : "Kyç i fshehtë", "Builtin" : "I brendshëm", "None" : "Asnjë", - "OAuth1" : "OAuth1", - "App key" : "Kyç aplikacioni", - "App secret" : "E fshehtë aplikacioni", "OAuth2" : "OAuth2", "Client ID" : "ID klienti", "Client secret" : "E fshehtë klienti", @@ -92,6 +87,11 @@ "Configuration" : "Formësim", "Available for" : "E gatshme për", "Add storage" : "Shtoni depozitë", - "Advanced settings" : "Rregullime të mëtejshme" + "Advanced settings" : "Rregullime të mëtejshme", + "Error configuring OAuth1" : "Gabim gjatë formësimit të OAuth1", + "Please provide a valid app key and secret." : "Ju lutemi jepni një kyç dhe një të fshehtë aplikacioni të vlefshme.", + "OAuth1" : "OAuth1", + "App key" : "Kyç aplikacioni", + "App secret" : "E fshehtë aplikacioni" },"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 1ec21b8beb5..b65875c084d 100644 --- a/apps/files_external/l10n/sr.js +++ b/apps/files_external/l10n/sr.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Одобри приступ", - "Error configuring OAuth1" : "Грешка у подешавању OAuth1", - "Please provide a valid app key and secret." : "Наведите исправан апликативни кључ и тајну.", "Error configuring OAuth2" : "Грешка у подешавању OAuth2", "Generate keys" : "Генериши кључеве", "Error generating key pair" : "Грешка при генерисању пара кључева", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Тајни кључ ", "Builtin" : "Уграђено", "None" : "Ништа", - "OAuth1" : "OAuth1", - "App key" : "Кључ апликације", - "App secret" : "Тајна апликације", "OAuth2" : "OAuth2", "Client ID" : "ИД клијента", "Client secret" : "Тајна клијента", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Све особе", "Advanced settings" : "Напредне поставке", "Allow people to mount external storage" : "Дозволи људима да монтирају спољашња складишта", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Глобални акредитиви се могу користити за пријављивање на више спољних складишта које примају исте акредитиве." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Глобални акредитиви се могу користити за пријављивање на више спољних складишта које примају исте акредитиве.", + "Error configuring OAuth1" : "Грешка у подешавању OAuth1", + "Please provide a valid app key and secret." : "Наведите исправан апликативни кључ и тајну.", + "OAuth1" : "OAuth1", + "App key" : "Кључ апликације", + "App secret" : "Тајна апликације" }, "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 20f537713f8..3917d296846 100644 --- a/apps/files_external/l10n/sr.json +++ b/apps/files_external/l10n/sr.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Одобри приступ", - "Error configuring OAuth1" : "Грешка у подешавању OAuth1", - "Please provide a valid app key and secret." : "Наведите исправан апликативни кључ и тајну.", "Error configuring OAuth2" : "Грешка у подешавању OAuth2", "Generate keys" : "Генериши кључеве", "Error generating key pair" : "Грешка при генерисању пара кључева", @@ -24,9 +22,6 @@ "Secret key" : "Тајни кључ ", "Builtin" : "Уграђено", "None" : "Ништа", - "OAuth1" : "OAuth1", - "App key" : "Кључ апликације", - "App secret" : "Тајна апликације", "OAuth2" : "OAuth2", "Client ID" : "ИД клијента", "Client secret" : "Тајна клијента", @@ -155,6 +150,11 @@ "All people" : "Све особе", "Advanced settings" : "Напредне поставке", "Allow people to mount external storage" : "Дозволи људима да монтирају спољашња складишта", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Глобални акредитиви се могу користити за пријављивање на више спољних складишта које примају исте акредитиве." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Глобални акредитиви се могу користити за пријављивање на више спољних складишта које примају исте акредитиве.", + "Error configuring OAuth1" : "Грешка у подешавању OAuth1", + "Please provide a valid app key and secret." : "Наведите исправан апликативни кључ и тајну.", + "OAuth1" : "OAuth1", + "App key" : "Кључ апликације", + "App secret" : "Тајна апликације" },"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 5543dcea1fa..4c75412e50c 100644 --- a/apps/files_external/l10n/sv.js +++ b/apps/files_external/l10n/sv.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Bevilja åtkomst", - "Error configuring OAuth1" : "Misslyckades konfigurera OAuth1", - "Please provide a valid app key and secret." : "Ange en giltig applikationsnyckel och hemlig fras.", "Error configuring OAuth2" : "Misslyckades konfigurera OAuth2", "Generate keys" : "Generera nycklar", "Error generating key pair" : "Fel vid generering av nyckelpar", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Hemlig nyckel", "Builtin" : "Inbyggt", "None" : "Ingen", - "OAuth1" : "OAuth1", - "App key" : "Appnyckel", - "App secret" : "Apphemlighet", "OAuth2" : "OAuth2", "Client ID" : "Klient ID", "Client secret" : "Klienthemlighet", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Alla användare", "Advanced settings" : "Avancerade inställningar", "Allow people to mount external storage" : "Tillåt användare att montera extern lagring", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globala användaruppgifter kan användas för att autentisera med flera externa lagrings-instanser som använder samma användaruppgifter." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globala användaruppgifter kan användas för att autentisera med flera externa lagrings-instanser som använder samma användaruppgifter.", + "Error configuring OAuth1" : "Misslyckades konfigurera OAuth1", + "Please provide a valid app key and secret." : "Ange en giltig applikationsnyckel och hemlig fras.", + "OAuth1" : "OAuth1", + "App key" : "Appnyckel", + "App secret" : "Apphemlighet" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/sv.json b/apps/files_external/l10n/sv.json index 9d305164fec..5c5516bbe01 100644 --- a/apps/files_external/l10n/sv.json +++ b/apps/files_external/l10n/sv.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Bevilja åtkomst", - "Error configuring OAuth1" : "Misslyckades konfigurera OAuth1", - "Please provide a valid app key and secret." : "Ange en giltig applikationsnyckel och hemlig fras.", "Error configuring OAuth2" : "Misslyckades konfigurera OAuth2", "Generate keys" : "Generera nycklar", "Error generating key pair" : "Fel vid generering av nyckelpar", @@ -24,9 +22,6 @@ "Secret key" : "Hemlig nyckel", "Builtin" : "Inbyggt", "None" : "Ingen", - "OAuth1" : "OAuth1", - "App key" : "Appnyckel", - "App secret" : "Apphemlighet", "OAuth2" : "OAuth2", "Client ID" : "Klient ID", "Client secret" : "Klienthemlighet", @@ -155,6 +150,11 @@ "All people" : "Alla användare", "Advanced settings" : "Avancerade inställningar", "Allow people to mount external storage" : "Tillåt användare att montera extern lagring", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globala användaruppgifter kan användas för att autentisera med flera externa lagrings-instanser som använder samma användaruppgifter." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Globala användaruppgifter kan användas för att autentisera med flera externa lagrings-instanser som använder samma användaruppgifter.", + "Error configuring OAuth1" : "Misslyckades konfigurera OAuth1", + "Please provide a valid app key and secret." : "Ange en giltig applikationsnyckel och hemlig fras.", + "OAuth1" : "OAuth1", + "App key" : "Appnyckel", + "App secret" : "Apphemlighet" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/files_external/l10n/sw.js b/apps/files_external/l10n/sw.js index 253644ceb3e..37c8a3fcca8 100644 --- a/apps/files_external/l10n/sw.js +++ b/apps/files_external/l10n/sw.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Toa ufikiaji", - "Error configuring OAuth1" : "Hitilafu katika kusanidi OAuth1", - "Please provide a valid app key and secret." : "Tafadhali toa ufunguo halali wa programu na siri.", "Error configuring OAuth2" : "Hitilafu katika kusanidi OAuth2", "Generate keys" : "Tengeneza funguo", "Error generating key pair" : "Hitilafu katika kuzalisha jozi za funguo", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : " Ufunguo wa siri", "Builtin" : "Builtin", "None" : "Hakuna", - "OAuth1" : "OAuth1", - "App key" : "Kitufe cha programu", - "App secret" : "Siri ya programu", "OAuth2" : "OAuth2", "Client ID" : "Kitambulisho cha mteja", "Client secret" : "Siri ya mteja", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Watu wote", "Advanced settings" : "Mipangilio ya kiwangi cha juu", "Allow people to mount external storage" : "Ruhusu watu kupachika hifadhi ya nje", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Vitambulisho vya kimataifa vinaweza kutumika kuthibitisha kwa hifadhi nyingi za nje ambazo zina vitambulisho sawa." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Vitambulisho vya kimataifa vinaweza kutumika kuthibitisha kwa hifadhi nyingi za nje ambazo zina vitambulisho sawa.", + "Error configuring OAuth1" : "Hitilafu katika kusanidi OAuth1", + "Please provide a valid app key and secret." : "Tafadhali toa ufunguo halali wa programu na siri.", + "OAuth1" : "OAuth1", + "App key" : "Kitufe cha programu", + "App secret" : "Siri ya programu" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/sw.json b/apps/files_external/l10n/sw.json index 210c842ffcf..796898da75f 100644 --- a/apps/files_external/l10n/sw.json +++ b/apps/files_external/l10n/sw.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Toa ufikiaji", - "Error configuring OAuth1" : "Hitilafu katika kusanidi OAuth1", - "Please provide a valid app key and secret." : "Tafadhali toa ufunguo halali wa programu na siri.", "Error configuring OAuth2" : "Hitilafu katika kusanidi OAuth2", "Generate keys" : "Tengeneza funguo", "Error generating key pair" : "Hitilafu katika kuzalisha jozi za funguo", @@ -24,9 +22,6 @@ "Secret key" : " Ufunguo wa siri", "Builtin" : "Builtin", "None" : "Hakuna", - "OAuth1" : "OAuth1", - "App key" : "Kitufe cha programu", - "App secret" : "Siri ya programu", "OAuth2" : "OAuth2", "Client ID" : "Kitambulisho cha mteja", "Client secret" : "Siri ya mteja", @@ -155,6 +150,11 @@ "All people" : "Watu wote", "Advanced settings" : "Mipangilio ya kiwangi cha juu", "Allow people to mount external storage" : "Ruhusu watu kupachika hifadhi ya nje", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Vitambulisho vya kimataifa vinaweza kutumika kuthibitisha kwa hifadhi nyingi za nje ambazo zina vitambulisho sawa." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Vitambulisho vya kimataifa vinaweza kutumika kuthibitisha kwa hifadhi nyingi za nje ambazo zina vitambulisho sawa.", + "Error configuring OAuth1" : "Hitilafu katika kusanidi OAuth1", + "Please provide a valid app key and secret." : "Tafadhali toa ufunguo halali wa programu na siri.", + "OAuth1" : "OAuth1", + "App key" : "Kitufe cha programu", + "App secret" : "Siri ya programu" },"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 f05b15511aa..2892a876040 100644 --- a/apps/files_external/l10n/th.js +++ b/apps/files_external/l10n/th.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "อนุญาตให้เข้าถึง", - "Error configuring OAuth1" : "ข้อผิดพลาดในการกำหนดค่า OAuth1", - "Please provide a valid app key and secret." : "โปรดระบุคีย์และรหัสลับของแอปให้ถูกต้อง", "Error configuring OAuth2" : "ข้อผิดพลาดในการกำหนดค่า OAuth2", "Generate keys" : "สร้างคีย์", "Error generating key pair" : "ข้อผิดพลาดในการสร้างคู่ของคีย์", @@ -21,9 +19,6 @@ OC.L10N.register( "Secret key" : "คีย์ลับ", "Builtin" : "ในตัว", "None" : "ไม่มี", - "OAuth1" : "OAuth1", - "App key" : "คีย์แอป", - "App secret" : "ข้อมูลลับแอป", "OAuth2" : "OAuth2", "Client ID" : "รหัสไคลเอ็นต์", "Client secret" : "ข้อมูลลับไคลเอ็นต์", @@ -86,6 +81,11 @@ OC.L10N.register( "Configuration" : "การกำหนดค่า", "Available for" : "ใช้ได้สำหรับ", "Add storage" : "เพิ่มพื้นที่จัดเก็บข้อมูล", - "Advanced settings" : "การตั้งค่าขั้นสูง" + "Advanced settings" : "การตั้งค่าขั้นสูง", + "Error configuring OAuth1" : "ข้อผิดพลาดในการกำหนดค่า OAuth1", + "Please provide a valid app key and secret." : "โปรดระบุคีย์และรหัสลับของแอปให้ถูกต้อง", + "OAuth1" : "OAuth1", + "App key" : "คีย์แอป", + "App secret" : "ข้อมูลลับแอป" }, "nplurals=1; plural=0;"); diff --git a/apps/files_external/l10n/th.json b/apps/files_external/l10n/th.json index 7aca6aecbcb..fce0e67ca0e 100644 --- a/apps/files_external/l10n/th.json +++ b/apps/files_external/l10n/th.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "อนุญาตให้เข้าถึง", - "Error configuring OAuth1" : "ข้อผิดพลาดในการกำหนดค่า OAuth1", - "Please provide a valid app key and secret." : "โปรดระบุคีย์และรหัสลับของแอปให้ถูกต้อง", "Error configuring OAuth2" : "ข้อผิดพลาดในการกำหนดค่า OAuth2", "Generate keys" : "สร้างคีย์", "Error generating key pair" : "ข้อผิดพลาดในการสร้างคู่ของคีย์", @@ -19,9 +17,6 @@ "Secret key" : "คีย์ลับ", "Builtin" : "ในตัว", "None" : "ไม่มี", - "OAuth1" : "OAuth1", - "App key" : "คีย์แอป", - "App secret" : "ข้อมูลลับแอป", "OAuth2" : "OAuth2", "Client ID" : "รหัสไคลเอ็นต์", "Client secret" : "ข้อมูลลับไคลเอ็นต์", @@ -84,6 +79,11 @@ "Configuration" : "การกำหนดค่า", "Available for" : "ใช้ได้สำหรับ", "Add storage" : "เพิ่มพื้นที่จัดเก็บข้อมูล", - "Advanced settings" : "การตั้งค่าขั้นสูง" + "Advanced settings" : "การตั้งค่าขั้นสูง", + "Error configuring OAuth1" : "ข้อผิดพลาดในการกำหนดค่า OAuth1", + "Please provide a valid app key and secret." : "โปรดระบุคีย์และรหัสลับของแอปให้ถูกต้อง", + "OAuth1" : "OAuth1", + "App key" : "คีย์แอป", + "App secret" : "ข้อมูลลับแอป" },"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 f735d7b3668..c0ff5638635 100644 --- a/apps/files_external/l10n/tr.js +++ b/apps/files_external/l10n/tr.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Erişim ver", - "Error configuring OAuth1" : "OAuth1 yapılandırması sorunu", - "Please provide a valid app key and secret." : "Lütfen geçerli bir uygulama anahtarı ve parola yazın.", "Error configuring OAuth2" : "OAuth2 yapılandırması sorunu", "Generate keys" : "Anahtarları oluştur", "Error generating key pair" : "Anahtar çifti oluşturulurken sorun çıktı", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Gizli anahtar", "Builtin" : "Yerleşik", "None" : "Hiçbiri", - "OAuth1" : "OAuth1", - "App key" : "Uygulama anahtarı", - "App secret" : "Uygulama parolası", "OAuth2" : "OAuth2", "Client ID" : "İstemci kimliği", "Client secret" : "İstemci parolası", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Tüm kişiler", "Advanced settings" : "Gelişmiş ayarlar", "Allow people to mount external storage" : "Kişiler dış depolama bağlayabilsin", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Aynı kimlik doğrulama bilgilerini kullanan bir çok dış depolama aygıtına genel kimlik doğrulama bilgileri ile erişebilirsiniz." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Aynı kimlik doğrulama bilgilerini kullanan bir çok dış depolama aygıtına genel kimlik doğrulama bilgileri ile erişebilirsiniz.", + "Error configuring OAuth1" : "OAuth1 yapılandırması sorunu", + "Please provide a valid app key and secret." : "Lütfen geçerli bir uygulama anahtarı ve parola yazın.", + "OAuth1" : "OAuth1", + "App key" : "Uygulama anahtarı", + "App secret" : "Uygulama parolası" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/files_external/l10n/tr.json b/apps/files_external/l10n/tr.json index 1bdba9f1a4d..3fbec4d0823 100644 --- a/apps/files_external/l10n/tr.json +++ b/apps/files_external/l10n/tr.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Erişim ver", - "Error configuring OAuth1" : "OAuth1 yapılandırması sorunu", - "Please provide a valid app key and secret." : "Lütfen geçerli bir uygulama anahtarı ve parola yazın.", "Error configuring OAuth2" : "OAuth2 yapılandırması sorunu", "Generate keys" : "Anahtarları oluştur", "Error generating key pair" : "Anahtar çifti oluşturulurken sorun çıktı", @@ -24,9 +22,6 @@ "Secret key" : "Gizli anahtar", "Builtin" : "Yerleşik", "None" : "Hiçbiri", - "OAuth1" : "OAuth1", - "App key" : "Uygulama anahtarı", - "App secret" : "Uygulama parolası", "OAuth2" : "OAuth2", "Client ID" : "İstemci kimliği", "Client secret" : "İstemci parolası", @@ -155,6 +150,11 @@ "All people" : "Tüm kişiler", "Advanced settings" : "Gelişmiş ayarlar", "Allow people to mount external storage" : "Kişiler dış depolama bağlayabilsin", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Aynı kimlik doğrulama bilgilerini kullanan bir çok dış depolama aygıtına genel kimlik doğrulama bilgileri ile erişebilirsiniz." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Aynı kimlik doğrulama bilgilerini kullanan bir çok dış depolama aygıtına genel kimlik doğrulama bilgileri ile erişebilirsiniz.", + "Error configuring OAuth1" : "OAuth1 yapılandırması sorunu", + "Please provide a valid app key and secret." : "Lütfen geçerli bir uygulama anahtarı ve parola yazın.", + "OAuth1" : "OAuth1", + "App key" : "Uygulama anahtarı", + "App secret" : "Uygulama parolası" },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/apps/files_external/l10n/ug.js b/apps/files_external/l10n/ug.js index ca710581612..9270474a9a2 100644 --- a/apps/files_external/l10n/ug.js +++ b/apps/files_external/l10n/ug.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "زىيارەت قىلىش ھوقۇقى", - "Error configuring OAuth1" : "OAuth1 نى تەڭشەشتە خاتالىق", - "Please provide a valid app key and secret." : "ئۈنۈملۈك ئەپ ئاچقۇچى ۋە مەخپىي تەمىنلەڭ.", "Error configuring OAuth2" : "OAuth2 نى تەڭشەشتە خاتالىق", "Generate keys" : "ئاچقۇچ ھاسىل قىلىڭ", "Error generating key pair" : "ئاچقۇچ جۈپ ھاسىل قىلىشتا خاتالىق", @@ -24,9 +22,6 @@ OC.L10N.register( "Secret key" : "مەخپىي ئاچقۇچ", "Builtin" : "Builtin", "None" : "يوق", - "OAuth1" : "OAuth1", - "App key" : "ئەپ ئاچقۇچى", - "App secret" : "ئەپ مەخپىيىتى", "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Client secret", @@ -149,6 +144,11 @@ OC.L10N.register( "All people" : "بارلىق كىشىلەر", "Advanced settings" : "ئىلغار تەڭشەكلەر", "Allow people to mount external storage" : "كىشىلەرنىڭ سىرتقى ساقلىغۇچ ئورنىتىشىغا يول قويۇڭ", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "يەرشارى كىنىشكىسى ئوخشاش سالاھىيەتكە ئىگە كۆپ خىل تاشقى دۇكانلار بىلەن دەلىللەشكە ئىشلىتىلىدۇ." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "يەرشارى كىنىشكىسى ئوخشاش سالاھىيەتكە ئىگە كۆپ خىل تاشقى دۇكانلار بىلەن دەلىللەشكە ئىشلىتىلىدۇ.", + "Error configuring OAuth1" : "OAuth1 نى تەڭشەشتە خاتالىق", + "Please provide a valid app key and secret." : "ئۈنۈملۈك ئەپ ئاچقۇچى ۋە مەخپىي تەمىنلەڭ.", + "OAuth1" : "OAuth1", + "App key" : "ئەپ ئاچقۇچى", + "App secret" : "ئەپ مەخپىيىتى" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/files_external/l10n/ug.json b/apps/files_external/l10n/ug.json index 480cae5b8b3..e15bb1f6cbe 100644 --- a/apps/files_external/l10n/ug.json +++ b/apps/files_external/l10n/ug.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "زىيارەت قىلىش ھوقۇقى", - "Error configuring OAuth1" : "OAuth1 نى تەڭشەشتە خاتالىق", - "Please provide a valid app key and secret." : "ئۈنۈملۈك ئەپ ئاچقۇچى ۋە مەخپىي تەمىنلەڭ.", "Error configuring OAuth2" : "OAuth2 نى تەڭشەشتە خاتالىق", "Generate keys" : "ئاچقۇچ ھاسىل قىلىڭ", "Error generating key pair" : "ئاچقۇچ جۈپ ھاسىل قىلىشتا خاتالىق", @@ -22,9 +20,6 @@ "Secret key" : "مەخپىي ئاچقۇچ", "Builtin" : "Builtin", "None" : "يوق", - "OAuth1" : "OAuth1", - "App key" : "ئەپ ئاچقۇچى", - "App secret" : "ئەپ مەخپىيىتى", "OAuth2" : "OAuth2", "Client ID" : "Client ID", "Client secret" : "Client secret", @@ -147,6 +142,11 @@ "All people" : "بارلىق كىشىلەر", "Advanced settings" : "ئىلغار تەڭشەكلەر", "Allow people to mount external storage" : "كىشىلەرنىڭ سىرتقى ساقلىغۇچ ئورنىتىشىغا يول قويۇڭ", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "يەرشارى كىنىشكىسى ئوخشاش سالاھىيەتكە ئىگە كۆپ خىل تاشقى دۇكانلار بىلەن دەلىللەشكە ئىشلىتىلىدۇ." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "يەرشارى كىنىشكىسى ئوخشاش سالاھىيەتكە ئىگە كۆپ خىل تاشقى دۇكانلار بىلەن دەلىللەشكە ئىشلىتىلىدۇ.", + "Error configuring OAuth1" : "OAuth1 نى تەڭشەشتە خاتالىق", + "Please provide a valid app key and secret." : "ئۈنۈملۈك ئەپ ئاچقۇچى ۋە مەخپىي تەمىنلەڭ.", + "OAuth1" : "OAuth1", + "App key" : "ئەپ ئاچقۇچى", + "App secret" : "ئەپ مەخپىيىتى" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/files_external/l10n/uk.js b/apps/files_external/l10n/uk.js index 36ca4ecc62a..8a0cfadb10a 100644 --- a/apps/files_external/l10n/uk.js +++ b/apps/files_external/l10n/uk.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "Дозволити доступ", - "Error configuring OAuth1" : "Помилка з конфігуруванням OAuth1", - "Please provide a valid app key and secret." : "Будь ласка, надайте дійсний ключ застосунку та пароль.", "Error configuring OAuth2" : "Помилка налаштування OAuth2", "Generate keys" : "Створити ключі", "Error generating key pair" : "Помилка створення ключової пари", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Пароль", "Builtin" : "Вбудовано", "None" : "Жоден", - "OAuth1" : "OAuth1", - "App key" : "Ключ застосунку", - "App secret" : "Секретний ключ застосунку", "OAuth2" : "OAuth2", "Client ID" : "Ідентифікатор клієнта", "Client secret" : "Ключ клієнта", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "Всі користувачі", "Advanced settings" : "Розширені", "Allow people to mount external storage" : "Дозволити користувачам під'єднувати зовнішні сховища даних", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Універсальні облікові дані можна використовувати для авторизації з кількома зовнішніми сховищами, які мають тотодні облікові дані." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Універсальні облікові дані можна використовувати для авторизації з кількома зовнішніми сховищами, які мають тотодні облікові дані.", + "Error configuring OAuth1" : "Помилка з конфігуруванням OAuth1", + "Please provide a valid app key and secret." : "Будь ласка, надайте дійсний ключ застосунку та пароль.", + "OAuth1" : "OAuth1", + "App key" : "Ключ застосунку", + "App secret" : "Секретний ключ застосунку" }, "nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);"); diff --git a/apps/files_external/l10n/uk.json b/apps/files_external/l10n/uk.json index 6bed2dc94c7..e16942fd081 100644 --- a/apps/files_external/l10n/uk.json +++ b/apps/files_external/l10n/uk.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "Дозволити доступ", - "Error configuring OAuth1" : "Помилка з конфігуруванням OAuth1", - "Please provide a valid app key and secret." : "Будь ласка, надайте дійсний ключ застосунку та пароль.", "Error configuring OAuth2" : "Помилка налаштування OAuth2", "Generate keys" : "Створити ключі", "Error generating key pair" : "Помилка створення ключової пари", @@ -24,9 +22,6 @@ "Secret key" : "Пароль", "Builtin" : "Вбудовано", "None" : "Жоден", - "OAuth1" : "OAuth1", - "App key" : "Ключ застосунку", - "App secret" : "Секретний ключ застосунку", "OAuth2" : "OAuth2", "Client ID" : "Ідентифікатор клієнта", "Client secret" : "Ключ клієнта", @@ -155,6 +150,11 @@ "All people" : "Всі користувачі", "Advanced settings" : "Розширені", "Allow people to mount external storage" : "Дозволити користувачам під'єднувати зовнішні сховища даних", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Універсальні облікові дані можна використовувати для авторизації з кількома зовнішніми сховищами, які мають тотодні облікові дані." + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "Універсальні облікові дані можна використовувати для авторизації з кількома зовнішніми сховищами, які мають тотодні облікові дані.", + "Error configuring OAuth1" : "Помилка з конфігуруванням OAuth1", + "Please provide a valid app key and secret." : "Будь ласка, надайте дійсний ключ застосунку та пароль.", + "OAuth1" : "OAuth1", + "App key" : "Ключ застосунку", + "App secret" : "Секретний ключ застосунку" },"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (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/zh_CN.js b/apps/files_external/l10n/zh_CN.js index cb0b35bf001..d58a5186fc6 100644 --- a/apps/files_external/l10n/zh_CN.js +++ b/apps/files_external/l10n/zh_CN.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "授权", - "Error configuring OAuth1" : "OAuth1 配置错误", - "Please provide a valid app key and secret." : "请提供有效的 app key 和密钥。", "Error configuring OAuth2" : "OAuth2 配置错误", "Generate keys" : "生成密钥", "Error generating key pair" : "生成密钥对错误", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "Secret key", "Builtin" : "内置", "None" : "无", - "OAuth1" : "OAuth1", - "App key" : "App key", - "App secret" : "应用程序 secret", "OAuth2" : "OAuth2", "Client ID" : "客户端 ID", "Client secret" : "客户端 secret", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "所有用户", "Advanced settings" : "高级选项", "Allow people to mount external storage" : "允许用户挂载外部存储", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "全局凭据可用于使用具有相同凭据的多个外部存储进行身份验证。" + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "全局凭据可用于使用具有相同凭据的多个外部存储进行身份验证。", + "Error configuring OAuth1" : "OAuth1 配置错误", + "Please provide a valid app key and secret." : "请提供有效的 app key 和密钥。", + "OAuth1" : "OAuth1", + "App key" : "App key", + "App secret" : "应用程序 secret" }, "nplurals=1; plural=0;"); diff --git a/apps/files_external/l10n/zh_CN.json b/apps/files_external/l10n/zh_CN.json index 684a53cd1fa..ca85cae3649 100644 --- a/apps/files_external/l10n/zh_CN.json +++ b/apps/files_external/l10n/zh_CN.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "授权", - "Error configuring OAuth1" : "OAuth1 配置错误", - "Please provide a valid app key and secret." : "请提供有效的 app key 和密钥。", "Error configuring OAuth2" : "OAuth2 配置错误", "Generate keys" : "生成密钥", "Error generating key pair" : "生成密钥对错误", @@ -24,9 +22,6 @@ "Secret key" : "Secret key", "Builtin" : "内置", "None" : "无", - "OAuth1" : "OAuth1", - "App key" : "App key", - "App secret" : "应用程序 secret", "OAuth2" : "OAuth2", "Client ID" : "客户端 ID", "Client secret" : "客户端 secret", @@ -155,6 +150,11 @@ "All people" : "所有用户", "Advanced settings" : "高级选项", "Allow people to mount external storage" : "允许用户挂载外部存储", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "全局凭据可用于使用具有相同凭据的多个外部存储进行身份验证。" + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "全局凭据可用于使用具有相同凭据的多个外部存储进行身份验证。", + "Error configuring OAuth1" : "OAuth1 配置错误", + "Please provide a valid app key and secret." : "请提供有效的 app key 和密钥。", + "OAuth1" : "OAuth1", + "App key" : "App key", + "App secret" : "应用程序 secret" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/files_external/l10n/zh_HK.js b/apps/files_external/l10n/zh_HK.js index 0684ababc11..d685a2b5e53 100644 --- a/apps/files_external/l10n/zh_HK.js +++ b/apps/files_external/l10n/zh_HK.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "允許存取", - "Error configuring OAuth1" : "設定 OAuth1 時發生錯誤", - "Please provide a valid app key and secret." : "請提供有效的應用程式密鑰及密碼", "Error configuring OAuth2" : "設定 OAuth2 時發生錯誤", "Generate keys" : "產生密鑰", "Error generating key pair" : "產生密鑰對錯誤", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "私密密鑰", "Builtin" : "內建", "None" : "無", - "OAuth1" : "OAuth1", - "App key" : "App 密鑰", - "App secret" : "App 密碼", "OAuth2" : "OAuth2", "Client ID" : "客戶端ID", "Client secret" : "客戶端密碼", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "所有人仕", "Advanced settings" : "進階設定", "Allow people to mount external storage" : "允許人仕自行掛載外部儲存空間", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "全球身分驗證可用於驗證與有相同身分驗證的多個外部存儲器。" + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "全球身分驗證可用於驗證與有相同身分驗證的多個外部存儲器。", + "Error configuring OAuth1" : "設定 OAuth1 時發生錯誤", + "Please provide a valid app key and secret." : "請提供有效的應用程式密鑰及密碼", + "OAuth1" : "OAuth1", + "App key" : "App 密鑰", + "App secret" : "App 密碼" }, "nplurals=1; plural=0;"); diff --git a/apps/files_external/l10n/zh_HK.json b/apps/files_external/l10n/zh_HK.json index b74de154659..d39b6a25f42 100644 --- a/apps/files_external/l10n/zh_HK.json +++ b/apps/files_external/l10n/zh_HK.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "允許存取", - "Error configuring OAuth1" : "設定 OAuth1 時發生錯誤", - "Please provide a valid app key and secret." : "請提供有效的應用程式密鑰及密碼", "Error configuring OAuth2" : "設定 OAuth2 時發生錯誤", "Generate keys" : "產生密鑰", "Error generating key pair" : "產生密鑰對錯誤", @@ -24,9 +22,6 @@ "Secret key" : "私密密鑰", "Builtin" : "內建", "None" : "無", - "OAuth1" : "OAuth1", - "App key" : "App 密鑰", - "App secret" : "App 密碼", "OAuth2" : "OAuth2", "Client ID" : "客戶端ID", "Client secret" : "客戶端密碼", @@ -155,6 +150,11 @@ "All people" : "所有人仕", "Advanced settings" : "進階設定", "Allow people to mount external storage" : "允許人仕自行掛載外部儲存空間", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "全球身分驗證可用於驗證與有相同身分驗證的多個外部存儲器。" + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "全球身分驗證可用於驗證與有相同身分驗證的多個外部存儲器。", + "Error configuring OAuth1" : "設定 OAuth1 時發生錯誤", + "Please provide a valid app key and secret." : "請提供有效的應用程式密鑰及密碼", + "OAuth1" : "OAuth1", + "App key" : "App 密鑰", + "App secret" : "App 密碼" },"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 b843f152a31..60e9b0b5bce 100644 --- a/apps/files_external/l10n/zh_TW.js +++ b/apps/files_external/l10n/zh_TW.js @@ -2,8 +2,6 @@ OC.L10N.register( "files_external", { "Grant access" : "授予存取權", - "Error configuring OAuth1" : "設定 OAuth1 時發生錯誤", - "Please provide a valid app key and secret." : "請提供有效的應用程式金鑰及密碼。", "Error configuring OAuth2" : "設定 OAuth2 時發生錯誤", "Generate keys" : "生成金鑰", "Error generating key pair" : "生成金鑰對時發生錯誤", @@ -26,9 +24,6 @@ OC.L10N.register( "Secret key" : "私密金鑰", "Builtin" : "內建", "None" : "無", - "OAuth1" : "OAuth1", - "App key" : "應用程式金鑰", - "App secret" : "應用程式密鑰", "OAuth2" : "OAuth2", "Client ID" : "客戶端 ID", "Client secret" : "客戶端密碼", @@ -157,6 +152,11 @@ OC.L10N.register( "All people" : "所有使用者", "Advanced settings" : "進階設定", "Allow people to mount external storage" : "允許使用者自行掛載外部儲存空間", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "全域憑證可用於認證多個有相同憑證的外部儲存空間。" + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "全域憑證可用於認證多個有相同憑證的外部儲存空間。", + "Error configuring OAuth1" : "設定 OAuth1 時發生錯誤", + "Please provide a valid app key and secret." : "請提供有效的應用程式金鑰及密碼。", + "OAuth1" : "OAuth1", + "App key" : "應用程式金鑰", + "App secret" : "應用程式密鑰" }, "nplurals=1; plural=0;"); diff --git a/apps/files_external/l10n/zh_TW.json b/apps/files_external/l10n/zh_TW.json index 5421709785f..2c940437276 100644 --- a/apps/files_external/l10n/zh_TW.json +++ b/apps/files_external/l10n/zh_TW.json @@ -1,7 +1,5 @@ { "translations": { "Grant access" : "授予存取權", - "Error configuring OAuth1" : "設定 OAuth1 時發生錯誤", - "Please provide a valid app key and secret." : "請提供有效的應用程式金鑰及密碼。", "Error configuring OAuth2" : "設定 OAuth2 時發生錯誤", "Generate keys" : "生成金鑰", "Error generating key pair" : "生成金鑰對時發生錯誤", @@ -24,9 +22,6 @@ "Secret key" : "私密金鑰", "Builtin" : "內建", "None" : "無", - "OAuth1" : "OAuth1", - "App key" : "應用程式金鑰", - "App secret" : "應用程式密鑰", "OAuth2" : "OAuth2", "Client ID" : "客戶端 ID", "Client secret" : "客戶端密碼", @@ -155,6 +150,11 @@ "All people" : "所有使用者", "Advanced settings" : "進階設定", "Allow people to mount external storage" : "允許使用者自行掛載外部儲存空間", - "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "全域憑證可用於認證多個有相同憑證的外部儲存空間。" + "Global credentials can be used to authenticate with multiple external storages that have the same credentials." : "全域憑證可用於認證多個有相同憑證的外部儲存空間。", + "Error configuring OAuth1" : "設定 OAuth1 時發生錯誤", + "Please provide a valid app key and secret." : "請提供有效的應用程式金鑰及密碼。", + "OAuth1" : "OAuth1", + "App key" : "應用程式金鑰", + "App secret" : "應用程式密鑰" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/files_external/lib/AppInfo/Application.php b/apps/files_external/lib/AppInfo/Application.php index 3ded9f7cca0..a6c2aff947b 100644 --- a/apps/files_external/lib/AppInfo/Application.php +++ b/apps/files_external/lib/AppInfo/Application.php @@ -14,7 +14,6 @@ use OCA\Files_External\ConfigLexicon; use OCA\Files_External\Lib\Auth\AmazonS3\AccessKey; use OCA\Files_External\Lib\Auth\Builtin; use OCA\Files_External\Lib\Auth\NullMechanism; -use OCA\Files_External\Lib\Auth\OAuth1\OAuth1; use OCA\Files_External\Lib\Auth\OAuth2\OAuth2; use OCA\Files_External\Lib\Auth\OpenStack\OpenStackV2; use OCA\Files_External\Lib\Auth\OpenStack\OpenStackV3; @@ -136,9 +135,6 @@ class Application extends App implements IBackendProvider, IAuthMechanismProvide $container->get(GlobalAuth::class), $container->get(UserGlobalAuth::class), - // AuthMechanism::SCHEME_OAUTH1 mechanisms - $container->get(OAuth1::class), - // AuthMechanism::SCHEME_OAUTH2 mechanisms $container->get(OAuth2::class), diff --git a/apps/files_external/lib/Lib/Auth/AuthMechanism.php b/apps/files_external/lib/Lib/Auth/AuthMechanism.php index dfe4a74b1b2..7b0544100fb 100644 --- a/apps/files_external/lib/Lib/Auth/AuthMechanism.php +++ b/apps/files_external/lib/Lib/Auth/AuthMechanism.php @@ -40,7 +40,6 @@ class AuthMechanism implements \JsonSerializable, IIdentifier, IFrontendDefiniti public const SCHEME_NULL = 'null'; public const SCHEME_BUILTIN = 'builtin'; public const SCHEME_PASSWORD = 'password'; - public const SCHEME_OAUTH1 = 'oauth1'; public const SCHEME_OAUTH2 = 'oauth2'; public const SCHEME_PUBLICKEY = 'publickey'; public const SCHEME_OPENSTACK = 'openstack'; diff --git a/apps/files_external/lib/Lib/Auth/OAuth1/OAuth1.php b/apps/files_external/lib/Lib/Auth/OAuth1/OAuth1.php deleted file mode 100644 index 054c33f3b50..00000000000 --- a/apps/files_external/lib/Lib/Auth/OAuth1/OAuth1.php +++ /dev/null @@ -1,40 +0,0 @@ -<?php - -/** - * SPDX-FileCopyrightText: 2018-2024 Nextcloud GmbH and Nextcloud contributors - * SPDX-FileCopyrightText: 2016 ownCloud, Inc. - * SPDX-License-Identifier: AGPL-3.0-only - */ -namespace OCA\Files_External\Lib\Auth\OAuth1; - -use OCA\Files_External\Lib\Auth\AuthMechanism; -use OCA\Files_External\Lib\DefinitionParameter; -use OCP\IL10N; - -/** - * OAuth1 authentication - */ -class OAuth1 extends AuthMechanism { - public function __construct(IL10N $l) { - $this - ->setIdentifier('oauth1::oauth1') - ->setScheme(self::SCHEME_OAUTH1) - ->setText($l->t('OAuth1')) - ->addParameters([ - (new DefinitionParameter('configured', 'configured')) - ->setType(DefinitionParameter::VALUE_TEXT) - ->setFlag(DefinitionParameter::FLAG_HIDDEN), - new DefinitionParameter('app_key', $l->t('App key')), - (new DefinitionParameter('app_secret', $l->t('App secret'))) - ->setType(DefinitionParameter::VALUE_PASSWORD), - (new DefinitionParameter('token', 'token')) - ->setType(DefinitionParameter::VALUE_PASSWORD) - ->setFlag(DefinitionParameter::FLAG_HIDDEN), - (new DefinitionParameter('token_secret', 'token_secret')) - ->setType(DefinitionParameter::VALUE_PASSWORD) - ->setFlag(DefinitionParameter::FLAG_HIDDEN), - ]) - ->addCustomJs('oauth1') - ; - } -} |