diff options
Diffstat (limited to 'lib')
241 files changed, 3275 insertions, 183 deletions
diff --git a/lib/composer/composer/autoload_classmap.php b/lib/composer/composer/autoload_classmap.php index 36d9f0c8873..b644d420c84 100644 --- a/lib/composer/composer/autoload_classmap.php +++ b/lib/composer/composer/autoload_classmap.php @@ -365,6 +365,7 @@ return array( 'OCP\\LDAP\\ILDAPProviderFactory' => $baseDir . '/lib/public/LDAP/ILDAPProviderFactory.php', 'OCP\\Lock\\ILockingProvider' => $baseDir . '/lib/public/Lock/ILockingProvider.php', 'OCP\\Lock\\LockedException' => $baseDir . '/lib/public/Lock/LockedException.php', + 'OCP\\Lock\\ManuallyLockedException' => $baseDir . '/lib/public/Lock/ManuallyLockedException.php', 'OCP\\Lockdown\\ILockdownManager' => $baseDir . '/lib/public/Lockdown/ILockdownManager.php', 'OCP\\Log\\IFileBased' => $baseDir . '/lib/public/Log/IFileBased.php', 'OCP\\Log\\ILogFactory' => $baseDir . '/lib/public/Log/ILogFactory.php', @@ -425,6 +426,7 @@ return array( 'OCP\\Settings\\ISettings' => $baseDir . '/lib/public/Settings/ISettings.php', 'OCP\\Settings\\ISubAdminSettings' => $baseDir . '/lib/public/Settings/ISubAdminSettings.php', 'OCP\\Share' => $baseDir . '/lib/public/Share.php', + 'OCP\\Share\\Events\\ShareCreatedEvent' => $baseDir . '/lib/public/Share/Events/ShareCreatedEvent.php', 'OCP\\Share\\Exceptions\\GenericShareException' => $baseDir . '/lib/public/Share/Exceptions/GenericShareException.php', 'OCP\\Share\\Exceptions\\IllegalIDChangeException' => $baseDir . '/lib/public/Share/Exceptions/IllegalIDChangeException.php', 'OCP\\Share\\Exceptions\\ShareNotFound' => $baseDir . '/lib/public/Share/Exceptions/ShareNotFound.php', @@ -1152,6 +1154,7 @@ return array( 'OC\\Repair\\NC16\\ClearCollectionsAccessCache' => $baseDir . '/lib/private/Repair/NC16/ClearCollectionsAccessCache.php', 'OC\\Repair\\NC17\\SetEnterpriseLogo' => $baseDir . '/lib/private/Repair/NC17/SetEnterpriseLogo.php', 'OC\\Repair\\NC17\\SwitchUpdateChannel' => $baseDir . '/lib/private/Repair/NC17/SwitchUpdateChannel.php', + 'OC\\Repair\\NC18\\ResetGeneratedAvatarFlag' => $baseDir . '/lib/private/Repair/NC18/ResetGeneratedAvatarFlag.php', 'OC\\Repair\\OldGroupMembershipShares' => $baseDir . '/lib/private/Repair/OldGroupMembershipShares.php', 'OC\\Repair\\Owncloud\\DropAccountTermsTable' => $baseDir . '/lib/private/Repair/Owncloud/DropAccountTermsTable.php', 'OC\\Repair\\Owncloud\\SaveAccountsTableData' => $baseDir . '/lib/private/Repair/Owncloud/SaveAccountsTableData.php', diff --git a/lib/composer/composer/autoload_static.php b/lib/composer/composer/autoload_static.php index a2c28db3e60..a964fb904b2 100644 --- a/lib/composer/composer/autoload_static.php +++ b/lib/composer/composer/autoload_static.php @@ -394,6 +394,7 @@ class ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c 'OCP\\LDAP\\ILDAPProviderFactory' => __DIR__ . '/../../..' . '/lib/public/LDAP/ILDAPProviderFactory.php', 'OCP\\Lock\\ILockingProvider' => __DIR__ . '/../../..' . '/lib/public/Lock/ILockingProvider.php', 'OCP\\Lock\\LockedException' => __DIR__ . '/../../..' . '/lib/public/Lock/LockedException.php', + 'OCP\\Lock\\ManuallyLockedException' => __DIR__ . '/../../..' . '/lib/public/Lock/ManuallyLockedException.php', 'OCP\\Lockdown\\ILockdownManager' => __DIR__ . '/../../..' . '/lib/public/Lockdown/ILockdownManager.php', 'OCP\\Log\\IFileBased' => __DIR__ . '/../../..' . '/lib/public/Log/IFileBased.php', 'OCP\\Log\\ILogFactory' => __DIR__ . '/../../..' . '/lib/public/Log/ILogFactory.php', @@ -454,6 +455,7 @@ class ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c 'OCP\\Settings\\ISettings' => __DIR__ . '/../../..' . '/lib/public/Settings/ISettings.php', 'OCP\\Settings\\ISubAdminSettings' => __DIR__ . '/../../..' . '/lib/public/Settings/ISubAdminSettings.php', 'OCP\\Share' => __DIR__ . '/../../..' . '/lib/public/Share.php', + 'OCP\\Share\\Events\\ShareCreatedEvent' => __DIR__ . '/../../..' . '/lib/public/Share/Events/ShareCreatedEvent.php', 'OCP\\Share\\Exceptions\\GenericShareException' => __DIR__ . '/../../..' . '/lib/public/Share/Exceptions/GenericShareException.php', 'OCP\\Share\\Exceptions\\IllegalIDChangeException' => __DIR__ . '/../../..' . '/lib/public/Share/Exceptions/IllegalIDChangeException.php', 'OCP\\Share\\Exceptions\\ShareNotFound' => __DIR__ . '/../../..' . '/lib/public/Share/Exceptions/ShareNotFound.php', @@ -1181,6 +1183,7 @@ class ComposerStaticInit53792487c5a8370acc0b06b1a864ff4c 'OC\\Repair\\NC16\\ClearCollectionsAccessCache' => __DIR__ . '/../../..' . '/lib/private/Repair/NC16/ClearCollectionsAccessCache.php', 'OC\\Repair\\NC17\\SetEnterpriseLogo' => __DIR__ . '/../../..' . '/lib/private/Repair/NC17/SetEnterpriseLogo.php', 'OC\\Repair\\NC17\\SwitchUpdateChannel' => __DIR__ . '/../../..' . '/lib/private/Repair/NC17/SwitchUpdateChannel.php', + 'OC\\Repair\\NC18\\ResetGeneratedAvatarFlag' => __DIR__ . '/../../..' . '/lib/private/Repair/NC18/ResetGeneratedAvatarFlag.php', 'OC\\Repair\\OldGroupMembershipShares' => __DIR__ . '/../../..' . '/lib/private/Repair/OldGroupMembershipShares.php', 'OC\\Repair\\Owncloud\\DropAccountTermsTable' => __DIR__ . '/../../..' . '/lib/private/Repair/Owncloud/DropAccountTermsTable.php', 'OC\\Repair\\Owncloud\\SaveAccountsTableData' => __DIR__ . '/../../..' . '/lib/private/Repair/Owncloud/SaveAccountsTableData.php', diff --git a/lib/l10n/af.js b/lib/l10n/af.js index ed9146df452..9822113b845 100644 --- a/lib/l10n/af.js +++ b/lib/l10n/af.js @@ -1,6 +1,9 @@ OC.L10N.register( "lib", { + "Unknown filetype" : "Onbekende lêertipe", + "Invalid image" : "Ongeldige beeld", + "seconds ago" : "sekondes gelede", "__language_name__" : "Afrikaans", "Help" : "Hulp", "Apps" : "Toeps", @@ -9,8 +12,20 @@ OC.L10N.register( "Users" : "Gebruikers", "Unknown user" : "Onbekende gebruiker", "Security" : "Sekuriteit", + "Personal info" : "Persoonlike inligting", + "Open »%s«" : "Open »%s«", + "Sunday" : "Sondag", + "Monday" : "Maandag", + "Tuesday" : "Dinsdag", + "Wednesday" : "Woensdag", + "Thursday" : "Donderdag", + "Friday" : "Vrydag", + "Saturday" : "Saterdag", + "a safe home for all your data" : "’n veilige tuiste vir al u data", + "Storage is temporarily not available" : "Berging is tydelik nie beskikbaar nie", "Create" : "Skep", "Delete" : "Skrap", - "Share" : "Deel" + "Share" : "Deel", + "Unlimited" : "Onbeperkte" }, "nplurals=2; plural=(n != 1);"); diff --git a/lib/l10n/af.json b/lib/l10n/af.json index 99087245b35..853496f64c3 100644 --- a/lib/l10n/af.json +++ b/lib/l10n/af.json @@ -1,4 +1,7 @@ { "translations": { + "Unknown filetype" : "Onbekende lêertipe", + "Invalid image" : "Ongeldige beeld", + "seconds ago" : "sekondes gelede", "__language_name__" : "Afrikaans", "Help" : "Hulp", "Apps" : "Toeps", @@ -7,8 +10,20 @@ "Users" : "Gebruikers", "Unknown user" : "Onbekende gebruiker", "Security" : "Sekuriteit", + "Personal info" : "Persoonlike inligting", + "Open »%s«" : "Open »%s«", + "Sunday" : "Sondag", + "Monday" : "Maandag", + "Tuesday" : "Dinsdag", + "Wednesday" : "Woensdag", + "Thursday" : "Donderdag", + "Friday" : "Vrydag", + "Saturday" : "Saterdag", + "a safe home for all your data" : "’n veilige tuiste vir al u data", + "Storage is temporarily not available" : "Berging is tydelik nie beskikbaar nie", "Create" : "Skep", "Delete" : "Skrap", - "Share" : "Deel" + "Share" : "Deel", + "Unlimited" : "Onbeperkte" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/lib/l10n/ar.js b/lib/l10n/ar.js index 24763786526..ca64fd3f13f 100644 --- a/lib/l10n/ar.js +++ b/lib/l10n/ar.js @@ -124,7 +124,10 @@ OC.L10N.register( "Application is not enabled" : "التطبيق غير مفعّل", "Authentication error" : "لم يتم التأكد من الشخصية بنجاح", "Token expired. Please reload page." : "انتهت صلاحية الكلمة , يرجى اعادة تحميل الصفحة", + "Storage is temporarily not available" : "وحدة التخزين غير متوفرة", + "Create" : "إنشاء", "Delete" : "حذف", + "Share" : "شارك", "Unlimited" : "غير محدود", "Verifying" : "التحقق", "Verifying …" : "عملية التحقق جارية …", diff --git a/lib/l10n/ar.json b/lib/l10n/ar.json index 8fdd1816452..6c9c2624e74 100644 --- a/lib/l10n/ar.json +++ b/lib/l10n/ar.json @@ -122,7 +122,10 @@ "Application is not enabled" : "التطبيق غير مفعّل", "Authentication error" : "لم يتم التأكد من الشخصية بنجاح", "Token expired. Please reload page." : "انتهت صلاحية الكلمة , يرجى اعادة تحميل الصفحة", + "Storage is temporarily not available" : "وحدة التخزين غير متوفرة", + "Create" : "إنشاء", "Delete" : "حذف", + "Share" : "شارك", "Unlimited" : "غير محدود", "Verifying" : "التحقق", "Verifying …" : "عملية التحقق جارية …", diff --git a/lib/l10n/ast.js b/lib/l10n/ast.js index 56d5a5c004b..9db096c0a32 100644 --- a/lib/l10n/ast.js +++ b/lib/l10n/ast.js @@ -19,6 +19,7 @@ OC.L10N.register( "The command line tool %s could not be found" : "La ferramienta línea de comandu %s nun pudo alcontrase", "The library %s is not available." : "La librería %s nun ta disponible", "Following platforms are supported: %s" : "Les siguientes plataformes tan sofitaes: %s", + "Authentication" : "Autenticación", "Unknown filetype" : "Triba de ficheru desconocida", "Invalid image" : "Imaxe inválida", "Avatar image is not square" : "La imaxe del avatar nun ye cuadrada", @@ -41,12 +42,15 @@ OC.L10N.register( "__language_name__" : "Asturianu", "Help" : "Ayuda", "Apps" : "Aplicaciones", + "Settings" : "Settings", "Log out" : "Zarrar sesión", "Users" : "Usuarios", "Unknown user" : "Usuariu desconocíu", "Basic settings" : "Axustes básicos", + "Sharing" : "Compartiendo", "Security" : "Seguranza", "Additional settings" : "Axustes adicionales", + "Personal info" : "Información personal", "%s enter the database username and name." : "%s introducir el nome d'usuariu y el nome de la base de datos .", "%s enter the database username." : "%s introducir l'usuariu de la base de datos.", "%s enter the database name." : "%s introducir nome de la base de datos.", @@ -66,19 +70,36 @@ OC.L10N.register( "Sharing backend %s must implement the interface OCP\\Share_Backend" : "El motor compartíu %s tien d'implementar la interfaz OCP\\Share_Backend", "Sharing backend %s not found" : "Nun s'alcontró'l botón de compartición %s", "Sharing backend for %s not found" : "Nun s'alcontró'l botón de partición pa %s", + "Open »%s«" : "Abrir «%s»", "You are not allowed to share %s" : "Nun tienes permisu pa compartir %s", "Can’t increase permissions of %s" : "Nun pue aumentase los permisos de %s", "Files can’t be shared with delete permissions" : "Los ficheros nun puen compartise colos permisos de desaniciu", "Files can’t be shared with create permissions" : "Los ficheros nun puen compartise colos permisos de creación", "Expiration date is in the past" : "La data de caducidá ta nel pasáu.", "Can’t set expiration date more than %s days in the future" : "Nun pue afitase la data de caducidá más de %s díes nel futuru", + "Click the button below to open it." : "Primi'l botón d'embaxo p'abrilu.", "Could not find category \"%s\"" : "Nun pudo alcontrase la estaya \"%s.\"", "Sunday" : "Domingu", "Monday" : "Llunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Xueves", "Friday" : "Vienres", "Saturday" : "Sábadu", + "Sun." : "Dom.", "Mon." : "Llu.", + "Tue." : "Mar.", + "Wed." : "Mié.", + "Thu." : "Xue.", + "Fri." : "Vie.", "Sat." : "Sáb.", + "Su" : "Do", + "Mo" : "Ll", + "Tu" : "Ma", + "We" : "Mi", + "Th" : "Xu", + "Fr" : "Vi", + "Sa" : "Sá", "January" : "Xineru", "February" : "Febreru", "March" : "Marzu", @@ -98,6 +119,7 @@ OC.L10N.register( "May." : "May.", "Jun." : "Xun.", "Jul." : "Xnt.", + "Aug." : "Ago.", "Sep." : "Set.", "Oct." : "Och.", "Nov." : "Pay.", @@ -144,6 +166,14 @@ OC.L10N.register( "Storage connection error. %s" : "Fallu de conexón al almacenamientu. %s", "Storage is temporarily not available" : "L'almacenamientu ta temporalmente non disponible", "Storage connection timeout. %s" : "Tiempu escosao de conexón al almacenamientu. %s", + "Create" : "Crear", + "Change" : "Camudar", + "Delete" : "Desaniciar", + "Share" : "Share", + "Unlimited" : "Non llendáu", + "Verifying" : "Verificando", + "Verifying …" : "Verificando...", + "Verify" : "Verificar", "Sharing %s failed, because the backend does not allow shares from type %i" : "Compartir %s falló, por cuenta qu'el backend nun dexa acciones de tipu %i", "Sharing %s failed, because the file does not exist" : "Compartir %s falló, porque'l ficheru nun esiste", "Sharing %s failed, because you can not share with yourself" : "Compartir %s falló, porque nun puede compartise contigo mesmu", diff --git a/lib/l10n/ast.json b/lib/l10n/ast.json index c806536f652..1f7a55bbff4 100644 --- a/lib/l10n/ast.json +++ b/lib/l10n/ast.json @@ -17,6 +17,7 @@ "The command line tool %s could not be found" : "La ferramienta línea de comandu %s nun pudo alcontrase", "The library %s is not available." : "La librería %s nun ta disponible", "Following platforms are supported: %s" : "Les siguientes plataformes tan sofitaes: %s", + "Authentication" : "Autenticación", "Unknown filetype" : "Triba de ficheru desconocida", "Invalid image" : "Imaxe inválida", "Avatar image is not square" : "La imaxe del avatar nun ye cuadrada", @@ -39,12 +40,15 @@ "__language_name__" : "Asturianu", "Help" : "Ayuda", "Apps" : "Aplicaciones", + "Settings" : "Settings", "Log out" : "Zarrar sesión", "Users" : "Usuarios", "Unknown user" : "Usuariu desconocíu", "Basic settings" : "Axustes básicos", + "Sharing" : "Compartiendo", "Security" : "Seguranza", "Additional settings" : "Axustes adicionales", + "Personal info" : "Información personal", "%s enter the database username and name." : "%s introducir el nome d'usuariu y el nome de la base de datos .", "%s enter the database username." : "%s introducir l'usuariu de la base de datos.", "%s enter the database name." : "%s introducir nome de la base de datos.", @@ -64,19 +68,36 @@ "Sharing backend %s must implement the interface OCP\\Share_Backend" : "El motor compartíu %s tien d'implementar la interfaz OCP\\Share_Backend", "Sharing backend %s not found" : "Nun s'alcontró'l botón de compartición %s", "Sharing backend for %s not found" : "Nun s'alcontró'l botón de partición pa %s", + "Open »%s«" : "Abrir «%s»", "You are not allowed to share %s" : "Nun tienes permisu pa compartir %s", "Can’t increase permissions of %s" : "Nun pue aumentase los permisos de %s", "Files can’t be shared with delete permissions" : "Los ficheros nun puen compartise colos permisos de desaniciu", "Files can’t be shared with create permissions" : "Los ficheros nun puen compartise colos permisos de creación", "Expiration date is in the past" : "La data de caducidá ta nel pasáu.", "Can’t set expiration date more than %s days in the future" : "Nun pue afitase la data de caducidá más de %s díes nel futuru", + "Click the button below to open it." : "Primi'l botón d'embaxo p'abrilu.", "Could not find category \"%s\"" : "Nun pudo alcontrase la estaya \"%s.\"", "Sunday" : "Domingu", "Monday" : "Llunes", + "Tuesday" : "Martes", + "Wednesday" : "Miércoles", + "Thursday" : "Xueves", "Friday" : "Vienres", "Saturday" : "Sábadu", + "Sun." : "Dom.", "Mon." : "Llu.", + "Tue." : "Mar.", + "Wed." : "Mié.", + "Thu." : "Xue.", + "Fri." : "Vie.", "Sat." : "Sáb.", + "Su" : "Do", + "Mo" : "Ll", + "Tu" : "Ma", + "We" : "Mi", + "Th" : "Xu", + "Fr" : "Vi", + "Sa" : "Sá", "January" : "Xineru", "February" : "Febreru", "March" : "Marzu", @@ -96,6 +117,7 @@ "May." : "May.", "Jun." : "Xun.", "Jul." : "Xnt.", + "Aug." : "Ago.", "Sep." : "Set.", "Oct." : "Och.", "Nov." : "Pay.", @@ -142,6 +164,14 @@ "Storage connection error. %s" : "Fallu de conexón al almacenamientu. %s", "Storage is temporarily not available" : "L'almacenamientu ta temporalmente non disponible", "Storage connection timeout. %s" : "Tiempu escosao de conexón al almacenamientu. %s", + "Create" : "Crear", + "Change" : "Camudar", + "Delete" : "Desaniciar", + "Share" : "Share", + "Unlimited" : "Non llendáu", + "Verifying" : "Verificando", + "Verifying …" : "Verificando...", + "Verify" : "Verificar", "Sharing %s failed, because the backend does not allow shares from type %i" : "Compartir %s falló, por cuenta qu'el backend nun dexa acciones de tipu %i", "Sharing %s failed, because the file does not exist" : "Compartir %s falló, porque'l ficheru nun esiste", "Sharing %s failed, because you can not share with yourself" : "Compartir %s falló, porque nun puede compartise contigo mesmu", diff --git a/lib/l10n/az.js b/lib/l10n/az.js index b613410c818..1f9061a1e80 100644 --- a/lib/l10n/az.js +++ b/lib/l10n/az.js @@ -10,8 +10,12 @@ OC.L10N.register( "today" : "Bu gün", "seconds ago" : "saniyələr öncə", "__language_name__" : "Azərbaycan dili", + "Help" : "Kömək", + "Settings" : "Quraşdırmalar", "Users" : "İstifadəçilər", "Unknown user" : "Istifadəçi tanınmır ", + "Sharing" : "Paylaşılır", + "Personal info" : "Şəxsi məlumat", "%s enter the database username." : "Verilənlər bazası istifadəçi adını %s daxil et.", "%s enter the database name." : "Verilənlər bazası adını %s daxil et.", "Oracle connection could not be established" : "Oracle qoşulması alınmır", @@ -19,12 +23,54 @@ OC.L10N.register( "Set an admin username." : "İnzibatçı istifadəçi adını təyin et.", "Set an admin password." : "İnzibatçı şifrəsini təyin et.", "You are not allowed to share %s" : "%s-in yayimlanmasına sizə izin verilmir", + "Sunday" : "Bazar", + "Monday" : "Bazar ertəsi", + "Tuesday" : "Çərşənbə axşamı", + "Wednesday" : "Çərşənbə", + "Thursday" : "Cümə axşamı", + "Friday" : "Cümə", + "Saturday" : "Şənbə", + "Sun." : "Baz.", + "Mon." : "Ber.", + "Tue." : "Çax.", + "Wed." : "Çər.", + "Thu." : "Cax.", + "Fri." : "Cüm.", + "Sat." : "Şnb.", + "January" : "Yanvar", + "February" : "Fevral", + "March" : "Mart", + "April" : "Aprel", + "May" : "May", + "June" : "İyun", + "July" : "İyul", + "August" : "Avqust", + "September" : "Sentyabr", + "October" : "Oktyabr", + "November" : "Noyabr.", + "December" : "Dekabr", + "Jan." : "Yan.", + "Feb." : "Fev.", + "Mar." : "Mar.", + "Apr." : "Apr.", + "May." : "May.", + "Jun." : "İyn.", + "Jul." : "İyl.", + "Aug." : "Avq.", + "Sep." : "Sen.", + "Oct." : "Okt.", + "Nov." : "Noy.", + "Dec." : "Dek.", "A valid username must be provided" : "Düzgün istifadəçi adı daxil edilməlidir", "A valid password must be provided" : "Düzgün şifrə daxil edilməlidir", "Application is not enabled" : "Proqram təminatı aktiv edilməyib", "Authentication error" : "Təyinat metodikası", "Token expired. Please reload page." : "Token vaxtı bitib. Xahiş olunur səhifəni yenidən yükləyəsiniz.", "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Bu ola bilər ki, cache/accelerator such tərəfindən cağırılıb hansi ki, Zend OPcache və eAccelerator-da olduğu kimidir.", + "Create" : "Yarat", + "Delete" : "Sil", + "Share" : "Paylaş", + "Unlimited" : "Limitsiz", "Sharing %s failed, because the file does not exist" : "%s yayımlanmasında səhv baş verdi ona görə ki, fayl mövcud deyil." }, "nplurals=2; plural=(n != 1);"); diff --git a/lib/l10n/az.json b/lib/l10n/az.json index 46688f41a85..b2a93bf40db 100644 --- a/lib/l10n/az.json +++ b/lib/l10n/az.json @@ -8,8 +8,12 @@ "today" : "Bu gün", "seconds ago" : "saniyələr öncə", "__language_name__" : "Azərbaycan dili", + "Help" : "Kömək", + "Settings" : "Quraşdırmalar", "Users" : "İstifadəçilər", "Unknown user" : "Istifadəçi tanınmır ", + "Sharing" : "Paylaşılır", + "Personal info" : "Şəxsi məlumat", "%s enter the database username." : "Verilənlər bazası istifadəçi adını %s daxil et.", "%s enter the database name." : "Verilənlər bazası adını %s daxil et.", "Oracle connection could not be established" : "Oracle qoşulması alınmır", @@ -17,12 +21,54 @@ "Set an admin username." : "İnzibatçı istifadəçi adını təyin et.", "Set an admin password." : "İnzibatçı şifrəsini təyin et.", "You are not allowed to share %s" : "%s-in yayimlanmasına sizə izin verilmir", + "Sunday" : "Bazar", + "Monday" : "Bazar ertəsi", + "Tuesday" : "Çərşənbə axşamı", + "Wednesday" : "Çərşənbə", + "Thursday" : "Cümə axşamı", + "Friday" : "Cümə", + "Saturday" : "Şənbə", + "Sun." : "Baz.", + "Mon." : "Ber.", + "Tue." : "Çax.", + "Wed." : "Çər.", + "Thu." : "Cax.", + "Fri." : "Cüm.", + "Sat." : "Şnb.", + "January" : "Yanvar", + "February" : "Fevral", + "March" : "Mart", + "April" : "Aprel", + "May" : "May", + "June" : "İyun", + "July" : "İyul", + "August" : "Avqust", + "September" : "Sentyabr", + "October" : "Oktyabr", + "November" : "Noyabr.", + "December" : "Dekabr", + "Jan." : "Yan.", + "Feb." : "Fev.", + "Mar." : "Mar.", + "Apr." : "Apr.", + "May." : "May.", + "Jun." : "İyn.", + "Jul." : "İyl.", + "Aug." : "Avq.", + "Sep." : "Sen.", + "Oct." : "Okt.", + "Nov." : "Noy.", + "Dec." : "Dek.", "A valid username must be provided" : "Düzgün istifadəçi adı daxil edilməlidir", "A valid password must be provided" : "Düzgün şifrə daxil edilməlidir", "Application is not enabled" : "Proqram təminatı aktiv edilməyib", "Authentication error" : "Təyinat metodikası", "Token expired. Please reload page." : "Token vaxtı bitib. Xahiş olunur səhifəni yenidən yükləyəsiniz.", "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Bu ola bilər ki, cache/accelerator such tərəfindən cağırılıb hansi ki, Zend OPcache və eAccelerator-da olduğu kimidir.", + "Create" : "Yarat", + "Delete" : "Sil", + "Share" : "Paylaş", + "Unlimited" : "Limitsiz", "Sharing %s failed, because the file does not exist" : "%s yayımlanmasında səhv baş verdi ona görə ki, fayl mövcud deyil." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/lib/l10n/be.js b/lib/l10n/be.js index 0cf880a10c8..631dfdcefa5 100644 --- a/lib/l10n/be.js +++ b/lib/l10n/be.js @@ -1,6 +1,36 @@ OC.L10N.register( "lib", { - "__language_name__" : "Беларуская" + "__language_name__" : "Беларуская", + "Help" : "Help", + "Settings" : "Налады", + "Sunday" : "Нядзеля", + "Monday" : "Панядзелак", + "Tuesday" : "Аўторак", + "Wednesday" : "Серада", + "Thursday" : "Чацвер", + "Friday" : "Пятніца", + "Saturday" : "Субота", + "Sun." : "Няд.", + "Mon." : "Пн.", + "Tue." : "Аўт.", + "Wed." : "Ср.", + "Thu." : "Чац.", + "Fri." : "Пт.", + "Sat." : "Сб.", + "January" : "Студзень", + "February" : "Люты", + "March" : "Сакавік", + "April" : "Красавік", + "May" : "Май", + "June" : "Чэрвень", + "July" : "Ліпень", + "August" : "Жнівень", + "September" : "Верасень", + "October" : "Кастрычнік", + "November" : "Лістапад", + "December" : "Снежань", + "Delete" : "Delete", + "Share" : "Падзяліцца" }, "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/lib/l10n/be.json b/lib/l10n/be.json index 8b652412bc8..8ee8f63e2f4 100644 --- a/lib/l10n/be.json +++ b/lib/l10n/be.json @@ -1,4 +1,34 @@ { "translations": { - "__language_name__" : "Беларуская" + "__language_name__" : "Беларуская", + "Help" : "Help", + "Settings" : "Налады", + "Sunday" : "Нядзеля", + "Monday" : "Панядзелак", + "Tuesday" : "Аўторак", + "Wednesday" : "Серада", + "Thursday" : "Чацвер", + "Friday" : "Пятніца", + "Saturday" : "Субота", + "Sun." : "Няд.", + "Mon." : "Пн.", + "Tue." : "Аўт.", + "Wed." : "Ср.", + "Thu." : "Чац.", + "Fri." : "Пт.", + "Sat." : "Сб.", + "January" : "Студзень", + "February" : "Люты", + "March" : "Сакавік", + "April" : "Красавік", + "May" : "Май", + "June" : "Чэрвень", + "July" : "Ліпень", + "August" : "Жнівень", + "September" : "Верасень", + "October" : "Кастрычнік", + "November" : "Лістапад", + "December" : "Снежань", + "Delete" : "Delete", + "Share" : "Падзяліцца" },"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/lib/l10n/bg.js b/lib/l10n/bg.js index 1d6b1a761e9..ca386c5cf50 100644 --- a/lib/l10n/bg.js +++ b/lib/l10n/bg.js @@ -16,6 +16,7 @@ OC.L10N.register( "The command line tool %s could not be found" : "Конзолната команда %s не може да бъде намерена", "The library %s is not available." : "Библиотеката %s не е налична", "Following platforms are supported: %s" : "Поддържани са следните платформи: %s", + "Authentication" : "Удостоверяване", "Unknown filetype" : "Непознат тип файл", "Invalid image" : "Невалидно изображение.", "today" : "днес", @@ -62,6 +63,7 @@ OC.L10N.register( "Sharing backend %s must implement the interface OCP\\Share_Backend" : "Споделянето на сървърния %s трябва да поддържа OCP\\Share_Backend интерфейс.", "Sharing backend %s not found" : "Споделянето на сървърния %s не е открито.", "Sharing backend for %s not found" : "Споделянето на сървъра за %s не е открито.", + "Open »%s«" : "Отвори »%s«", "You are not allowed to share %s" : "Не ти е разрешено да споделяш %s.", "Can’t set expiration date more than %s days in the future" : "Неуспешно задаване на срок на валидност повече от %s дни в бъдещето", "%1$s shared »%2$s« with you" : "%1$s сподели »%2$s« с вас", @@ -137,14 +139,18 @@ OC.L10N.register( "Please upgrade your database version" : "Моля, обнови базата данни.", "Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Моля, променете правата за достъп на 0770, за да не може директорията да бъде видяна от други потребители.", "Could not obtain lock type %d on \"%s\"." : "Неуспешен опит за ексклузивен достъп от типa %d върху \"%s\".", + "Storage is temporarily not available" : "Временно хранилището не е налично", "Create" : "Създай", + "Change" : "Промени", "Delete" : "Изтриване", "Share" : "Споделяне", "Unlimited" : "Неограничено", + "Verify" : "Потвърждаване", "Sharing %s failed, because the backend does not allow shares from type %i" : "Неуспешно споделяне на %s , защото сървъра не позволява споделяне от тип $i.", "Sharing %s failed, because the file does not exist" : "Неуспешно споделяне на %s, защото файлът не съществува.", "You need to provide a password to create a public link, only protected links are allowed" : "Трябва да зададеш парола, за да създадеш общодостъпен линк за споделяне, само защитени с пароли линкове са разрешени.", "Sharing %s failed, because sharing with links is not allowed" : "Неуспешно споделяне на %s, защото споделянето посредством връзки не е разрешено.", + "Not allowed to create a federated share with the same user" : "Не е позволено създаване на федерално споделяне със същият потребител", "Cannot set expiration date. Shares cannot expire later than %s after they have been shared" : "Неуспешно задаване на срок на валидност. Споделянията не могат да изтичат по-късно от %s след като са били споделени", "Cannot set expiration date. Expiration date is in the past" : "Неуспешно задаване на срок на валидност. Датата на изтичане е в миналото", "Sharing %s failed, because resharing is not allowed" : "Неуспешно споделяне на %s, защото повторното споделяне е забранено", diff --git a/lib/l10n/bg.json b/lib/l10n/bg.json index 70021bc7ad5..75202f26635 100644 --- a/lib/l10n/bg.json +++ b/lib/l10n/bg.json @@ -14,6 +14,7 @@ "The command line tool %s could not be found" : "Конзолната команда %s не може да бъде намерена", "The library %s is not available." : "Библиотеката %s не е налична", "Following platforms are supported: %s" : "Поддържани са следните платформи: %s", + "Authentication" : "Удостоверяване", "Unknown filetype" : "Непознат тип файл", "Invalid image" : "Невалидно изображение.", "today" : "днес", @@ -60,6 +61,7 @@ "Sharing backend %s must implement the interface OCP\\Share_Backend" : "Споделянето на сървърния %s трябва да поддържа OCP\\Share_Backend интерфейс.", "Sharing backend %s not found" : "Споделянето на сървърния %s не е открито.", "Sharing backend for %s not found" : "Споделянето на сървъра за %s не е открито.", + "Open »%s«" : "Отвори »%s«", "You are not allowed to share %s" : "Не ти е разрешено да споделяш %s.", "Can’t set expiration date more than %s days in the future" : "Неуспешно задаване на срок на валидност повече от %s дни в бъдещето", "%1$s shared »%2$s« with you" : "%1$s сподели »%2$s« с вас", @@ -135,14 +137,18 @@ "Please upgrade your database version" : "Моля, обнови базата данни.", "Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Моля, променете правата за достъп на 0770, за да не може директорията да бъде видяна от други потребители.", "Could not obtain lock type %d on \"%s\"." : "Неуспешен опит за ексклузивен достъп от типa %d върху \"%s\".", + "Storage is temporarily not available" : "Временно хранилището не е налично", "Create" : "Създай", + "Change" : "Промени", "Delete" : "Изтриване", "Share" : "Споделяне", "Unlimited" : "Неограничено", + "Verify" : "Потвърждаване", "Sharing %s failed, because the backend does not allow shares from type %i" : "Неуспешно споделяне на %s , защото сървъра не позволява споделяне от тип $i.", "Sharing %s failed, because the file does not exist" : "Неуспешно споделяне на %s, защото файлът не съществува.", "You need to provide a password to create a public link, only protected links are allowed" : "Трябва да зададеш парола, за да създадеш общодостъпен линк за споделяне, само защитени с пароли линкове са разрешени.", "Sharing %s failed, because sharing with links is not allowed" : "Неуспешно споделяне на %s, защото споделянето посредством връзки не е разрешено.", + "Not allowed to create a federated share with the same user" : "Не е позволено създаване на федерално споделяне със същият потребител", "Cannot set expiration date. Shares cannot expire later than %s after they have been shared" : "Неуспешно задаване на срок на валидност. Споделянията не могат да изтичат по-късно от %s след като са били споделени", "Cannot set expiration date. Expiration date is in the past" : "Неуспешно задаване на срок на валидност. Датата на изтичане е в миналото", "Sharing %s failed, because resharing is not allowed" : "Неуспешно споделяне на %s, защото повторното споделяне е забранено", diff --git a/lib/l10n/bn_BD.js b/lib/l10n/bn_BD.js index 8767e4d8158..4ed93789300 100644 --- a/lib/l10n/bn_BD.js +++ b/lib/l10n/bn_BD.js @@ -13,13 +13,59 @@ OC.L10N.register( "last year" : "গত বছর", "seconds ago" : "সেকেন্ড পূর্বে", "__language_name__" : "বাংলা ভাষা", + "Help" : "সহায়িকা", "Apps" : "অ্যাপ", + "Settings" : "সেটিংস", + "Log out" : "প্রস্থান", "Users" : "ব্যবহারকারী", "Unknown user" : "অপরিচিত ব্যবহারকারী", + "Sharing" : "ভাগাভাগিরত", "You are not allowed to share %s" : "আপনি %s ভাগাভাগি করতে পারবেননা", + "Sunday" : "রবিবার", + "Monday" : "সোমবার", + "Tuesday" : "মঙ্গলবার", + "Wednesday" : "বুধবার", + "Thursday" : "বৃহস্পতিবার", + "Friday" : "শুক্রবার", + "Saturday" : "শনিবার", + "Sun." : "রবি.", + "Mon." : "সোম.", + "Tue." : "মঙ্গল.", + "Wed." : "বুধ.", + "Thu." : "বৃহঃ.", + "Fri." : "শুক্র.", + "Sat." : "শনি.", + "January" : "জানুয়ারি", + "February" : "ফেব্রুয়ারি", + "March" : "মার্চ", + "April" : "এপ্রিল", + "May" : "মে", + "June" : "জুন", + "July" : "জুলাই", + "August" : "অগাষ্ট", + "September" : "সেপ্টেম্বর", + "October" : "অক্টোবর", + "November" : "নভেম্বর", + "December" : "ডিসেম্বর", + "Jan." : "জানু.", + "Feb." : "ফেব্রু.", + "Mar." : "মার্চ.", + "Apr." : "এপ্রিল.", + "May." : "মে.", + "Jun." : "জুন.", + "Jul." : "জুলাই.", + "Aug." : "অগাস্ট.", + "Sep." : "সেপ্টে.", + "Oct." : "অক্টো.", + "Nov." : "নভে.", + "Dec." : "ডিসে.", "Application is not enabled" : "অ্যাপ্লিকেসনটি সক্রিয় নয়", "Authentication error" : "অনুমোদন ঘটিত সমস্যা", "Token expired. Please reload page." : "টোকেন মেয়াদোত্তীর্ণ। দয়া করে পৃষ্ঠাটি পূনরায় লোড করুন।", + "Create" : "তৈরী কর", + "Delete" : "মুছে", + "Share" : "ভাগাভাগি কর", + "Unlimited" : "অসীম", "Sharing %s failed, because the file does not exist" : "%s ভাগাভাগি ব্যার্থ, কারণ ফাইলটি নেই" }, "nplurals=2; plural=(n != 1);"); diff --git a/lib/l10n/bn_BD.json b/lib/l10n/bn_BD.json index 8fce438c116..cc6594cc366 100644 --- a/lib/l10n/bn_BD.json +++ b/lib/l10n/bn_BD.json @@ -11,13 +11,59 @@ "last year" : "গত বছর", "seconds ago" : "সেকেন্ড পূর্বে", "__language_name__" : "বাংলা ভাষা", + "Help" : "সহায়িকা", "Apps" : "অ্যাপ", + "Settings" : "সেটিংস", + "Log out" : "প্রস্থান", "Users" : "ব্যবহারকারী", "Unknown user" : "অপরিচিত ব্যবহারকারী", + "Sharing" : "ভাগাভাগিরত", "You are not allowed to share %s" : "আপনি %s ভাগাভাগি করতে পারবেননা", + "Sunday" : "রবিবার", + "Monday" : "সোমবার", + "Tuesday" : "মঙ্গলবার", + "Wednesday" : "বুধবার", + "Thursday" : "বৃহস্পতিবার", + "Friday" : "শুক্রবার", + "Saturday" : "শনিবার", + "Sun." : "রবি.", + "Mon." : "সোম.", + "Tue." : "মঙ্গল.", + "Wed." : "বুধ.", + "Thu." : "বৃহঃ.", + "Fri." : "শুক্র.", + "Sat." : "শনি.", + "January" : "জানুয়ারি", + "February" : "ফেব্রুয়ারি", + "March" : "মার্চ", + "April" : "এপ্রিল", + "May" : "মে", + "June" : "জুন", + "July" : "জুলাই", + "August" : "অগাষ্ট", + "September" : "সেপ্টেম্বর", + "October" : "অক্টোবর", + "November" : "নভেম্বর", + "December" : "ডিসেম্বর", + "Jan." : "জানু.", + "Feb." : "ফেব্রু.", + "Mar." : "মার্চ.", + "Apr." : "এপ্রিল.", + "May." : "মে.", + "Jun." : "জুন.", + "Jul." : "জুলাই.", + "Aug." : "অগাস্ট.", + "Sep." : "সেপ্টে.", + "Oct." : "অক্টো.", + "Nov." : "নভে.", + "Dec." : "ডিসে.", "Application is not enabled" : "অ্যাপ্লিকেসনটি সক্রিয় নয়", "Authentication error" : "অনুমোদন ঘটিত সমস্যা", "Token expired. Please reload page." : "টোকেন মেয়াদোত্তীর্ণ। দয়া করে পৃষ্ঠাটি পূনরায় লোড করুন।", + "Create" : "তৈরী কর", + "Delete" : "মুছে", + "Share" : "ভাগাভাগি কর", + "Unlimited" : "অসীম", "Sharing %s failed, because the file does not exist" : "%s ভাগাভাগি ব্যার্থ, কারণ ফাইলটি নেই" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/lib/l10n/br.js b/lib/l10n/br.js index 9a1873dbec9..aaa5ec2deb0 100644 --- a/lib/l10n/br.js +++ b/lib/l10n/br.js @@ -1,6 +1,10 @@ OC.L10N.register( "lib", { - "__language_name__" : "Brezhoneg" + "__language_name__" : "Brezhoneg", + "Help" : "Skoazell", + "Settings" : "Arventennoù", + "Open »%s«" : "Digeriñ »%s«", + "Delete" : "Dilemel" }, "nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"); diff --git a/lib/l10n/br.json b/lib/l10n/br.json index cbbd8244686..1a0f35c3cfc 100644 --- a/lib/l10n/br.json +++ b/lib/l10n/br.json @@ -1,4 +1,8 @@ { "translations": { - "__language_name__" : "Brezhoneg" + "__language_name__" : "Brezhoneg", + "Help" : "Skoazell", + "Settings" : "Arventennoù", + "Open »%s«" : "Digeriñ »%s«", + "Delete" : "Dilemel" },"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);" }
\ No newline at end of file diff --git a/lib/l10n/bs.js b/lib/l10n/bs.js index 3195417a9fd..9dd33c31a36 100644 --- a/lib/l10n/bs.js +++ b/lib/l10n/bs.js @@ -4,13 +4,59 @@ OC.L10N.register( "Unknown filetype" : "Nepoznat tip datoteke", "Invalid image" : "Nevažeća datoteka", "__language_name__" : "Bosanski jezik", + "Help" : "Pomoć", "Apps" : "Aplikacije", + "Settings" : "Podešavanje", + "Log out" : "Odjava", "Users" : "Korisnici", + "Sharing" : "Dijeljenje", "Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X nije podržan i %s na ovoj platformi neće raditi kako treba. Korištenje na vlastiti rizik!", "For the best results, please consider using a GNU/Linux server instead." : "Umjesto toga, za najbolje rezultate, molimo razmislite o mogućnosti korištenje GNU/Linux servera.", + "Sunday" : "Nedjelja", + "Monday" : "Ponedjeljak", + "Tuesday" : "Utorak", + "Wednesday" : "Srijeda", + "Thursday" : "Četvrtak", + "Friday" : "Petak", + "Saturday" : "Subota", + "Sun." : "Ned.", + "Mon." : "Pon.", + "Tue." : "Ut.", + "Wed." : "Sri.", + "Thu." : "Čet.", + "Fri." : "Pet.", + "Sat." : "Sub.", + "January" : "Januar", + "February" : "Februar", + "March" : "Mart", + "April" : "April", + "May" : "Maj", + "June" : "Juni", + "July" : "Juli", + "August" : "Avgust", + "September" : "Septembar", + "October" : "Oktobar", + "November" : "Novembar", + "December" : "Decembar", + "Jan." : "Jan.", + "Feb." : "Feb.", + "Mar." : "Mar.", + "Apr." : "Apr.", + "May." : "Maj.", + "Jun." : "Jun.", + "Jul." : "Jul.", + "Aug." : "Avg.", + "Sep." : "Sep.", + "Oct." : "Okt.", + "Nov." : "Nov.", + "Dec." : "Dec.", "A valid username must be provided" : "Nužno je navesti valjano korisničko ime", "A valid password must be provided" : "Nužno je navesti valjanu lozinku", "Authentication error" : "Grešna autentifikacije", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Uzrok tome je vjerojatno neki ubrzivač predmemorisanja kao što je Zend OPcache ili eAccelerator." + "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Uzrok tome je vjerojatno neki ubrzivač predmemorisanja kao što je Zend OPcache ili eAccelerator.", + "Create" : "Ustvari", + "Delete" : "Obriši", + "Share" : "Podjeli", + "Unlimited" : "Neograničeno" }, "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/lib/l10n/bs.json b/lib/l10n/bs.json index 2be7589a1a0..5d5c229a94a 100644 --- a/lib/l10n/bs.json +++ b/lib/l10n/bs.json @@ -2,13 +2,59 @@ "Unknown filetype" : "Nepoznat tip datoteke", "Invalid image" : "Nevažeća datoteka", "__language_name__" : "Bosanski jezik", + "Help" : "Pomoć", "Apps" : "Aplikacije", + "Settings" : "Podešavanje", + "Log out" : "Odjava", "Users" : "Korisnici", + "Sharing" : "Dijeljenje", "Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " : "Mac OS X nije podržan i %s na ovoj platformi neće raditi kako treba. Korištenje na vlastiti rizik!", "For the best results, please consider using a GNU/Linux server instead." : "Umjesto toga, za najbolje rezultate, molimo razmislite o mogućnosti korištenje GNU/Linux servera.", + "Sunday" : "Nedjelja", + "Monday" : "Ponedjeljak", + "Tuesday" : "Utorak", + "Wednesday" : "Srijeda", + "Thursday" : "Četvrtak", + "Friday" : "Petak", + "Saturday" : "Subota", + "Sun." : "Ned.", + "Mon." : "Pon.", + "Tue." : "Ut.", + "Wed." : "Sri.", + "Thu." : "Čet.", + "Fri." : "Pet.", + "Sat." : "Sub.", + "January" : "Januar", + "February" : "Februar", + "March" : "Mart", + "April" : "April", + "May" : "Maj", + "June" : "Juni", + "July" : "Juli", + "August" : "Avgust", + "September" : "Septembar", + "October" : "Oktobar", + "November" : "Novembar", + "December" : "Decembar", + "Jan." : "Jan.", + "Feb." : "Feb.", + "Mar." : "Mar.", + "Apr." : "Apr.", + "May." : "Maj.", + "Jun." : "Jun.", + "Jul." : "Jul.", + "Aug." : "Avg.", + "Sep." : "Sep.", + "Oct." : "Okt.", + "Nov." : "Nov.", + "Dec." : "Dec.", "A valid username must be provided" : "Nužno je navesti valjano korisničko ime", "A valid password must be provided" : "Nužno je navesti valjanu lozinku", "Authentication error" : "Grešna autentifikacije", - "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Uzrok tome je vjerojatno neki ubrzivač predmemorisanja kao što je Zend OPcache ili eAccelerator." + "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Uzrok tome je vjerojatno neki ubrzivač predmemorisanja kao što je Zend OPcache ili eAccelerator.", + "Create" : "Ustvari", + "Delete" : "Obriši", + "Share" : "Podjeli", + "Unlimited" : "Neograničeno" },"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/lib/l10n/ca.js b/lib/l10n/ca.js index 904b99e952a..e1b97ca3afe 100644 --- a/lib/l10n/ca.js +++ b/lib/l10n/ca.js @@ -113,7 +113,7 @@ OC.L10N.register( "%1$s shared »%2$s« with you and wants to add" : "%1$s us ha compartit »%2$s« i vol afegir", "»%s« added a note to a file shared with you" : "»%s« ha afegit una anotació a un fitxer amb qui teniu compartit", "Open »%s«" : "Obre »%s«", - "%1$s via %2$s" : "%1$s via %2$s", + "%1$s via %2$s" : "%1$s mitjançant %2$s", "You are not allowed to share %s" : "No se us permet compartir %s", "Can’t increase permissions of %s" : "No es poden augmentar els permisos de %s", "Files can’t be shared with delete permissions" : "No es poden compartir els fitxers amb permisos de supressió", diff --git a/lib/l10n/ca.json b/lib/l10n/ca.json index 5643bb6f8e9..e58bf9fc4c2 100644 --- a/lib/l10n/ca.json +++ b/lib/l10n/ca.json @@ -111,7 +111,7 @@ "%1$s shared »%2$s« with you and wants to add" : "%1$s us ha compartit »%2$s« i vol afegir", "»%s« added a note to a file shared with you" : "»%s« ha afegit una anotació a un fitxer amb qui teniu compartit", "Open »%s«" : "Obre »%s«", - "%1$s via %2$s" : "%1$s via %2$s", + "%1$s via %2$s" : "%1$s mitjançant %2$s", "You are not allowed to share %s" : "No se us permet compartir %s", "Can’t increase permissions of %s" : "No es poden augmentar els permisos de %s", "Files can’t be shared with delete permissions" : "No es poden compartir els fitxers amb permisos de supressió", diff --git a/lib/l10n/cs.js b/lib/l10n/cs.js index 499abcc9bf3..93bf6aa95e1 100644 --- a/lib/l10n/cs.js +++ b/lib/l10n/cs.js @@ -66,6 +66,7 @@ OC.L10N.register( "_%n minute ago_::_%n minutes ago_" : ["před %n minutou","před %n minutami","před %n minutami","před %n minutami"], "in a few seconds" : "během několika sekund", "seconds ago" : "před pár sekundami", + "Empty file" : "Prázdný soubor", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Modul s identifikátorem: %s neexistuje. Povolte ho v nastavení aplikací, nebo se obraťte na správce.", "File name is a reserved word" : "Název souboru je rezervované slovo", "File name contains at least one invalid character" : "Název souboru obsahuje nejméně jeden neplatný znak", @@ -88,7 +89,7 @@ OC.L10N.register( "Security" : "Zabezpečení", "Groupware" : "Software pro podporu spolupráce", "Additional settings" : "Další nastavení", - "Personal info" : "Osobní informace", + "Personal info" : "Osobní údaje", "Mobile & desktop" : "Mobilní a desktop", "%s enter the database username and name." : "%s zadejte databázové uživatelské jméno a jméno.", "%s enter the database username." : "Zadejte uživatelské jméno %s databáze.", diff --git a/lib/l10n/cs.json b/lib/l10n/cs.json index 41dd910e8fd..a5ee6a0a2db 100644 --- a/lib/l10n/cs.json +++ b/lib/l10n/cs.json @@ -64,6 +64,7 @@ "_%n minute ago_::_%n minutes ago_" : ["před %n minutou","před %n minutami","před %n minutami","před %n minutami"], "in a few seconds" : "během několika sekund", "seconds ago" : "před pár sekundami", + "Empty file" : "Prázdný soubor", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Modul s identifikátorem: %s neexistuje. Povolte ho v nastavení aplikací, nebo se obraťte na správce.", "File name is a reserved word" : "Název souboru je rezervované slovo", "File name contains at least one invalid character" : "Název souboru obsahuje nejméně jeden neplatný znak", @@ -86,7 +87,7 @@ "Security" : "Zabezpečení", "Groupware" : "Software pro podporu spolupráce", "Additional settings" : "Další nastavení", - "Personal info" : "Osobní informace", + "Personal info" : "Osobní údaje", "Mobile & desktop" : "Mobilní a desktop", "%s enter the database username and name." : "%s zadejte databázové uživatelské jméno a jméno.", "%s enter the database username." : "Zadejte uživatelské jméno %s databáze.", diff --git a/lib/l10n/cy_GB.js b/lib/l10n/cy_GB.js index 31291c97bd7..ca745e8f427 100644 --- a/lib/l10n/cy_GB.js +++ b/lib/l10n/cy_GB.js @@ -6,7 +6,10 @@ OC.L10N.register( "last month" : "mis diwethaf", "last year" : "y llynedd", "seconds ago" : "eiliad yn ôl", + "Help" : "Cymorth", "Apps" : "Pecynnau", + "Settings" : "Gosodiadau", + "Log out" : "Allgofnodi", "Users" : "Defnyddwyr", "%s enter the database username." : "%s rhowch enw defnyddiwr y gronfa ddata.", "%s enter the database name." : "%s rhowch enw'r gronfa ddata.", @@ -15,9 +18,51 @@ OC.L10N.register( "PostgreSQL username and/or password not valid" : "Enw a/neu gyfrinair PostgreSQL annilys", "Set an admin username." : "Creu enw defnyddiwr i'r gweinyddwr.", "Set an admin password." : "Gosod cyfrinair y gweinyddwr.", + "Open »%s«" : "Agor »%s«", "Could not find category \"%s\"" : "Methu canfod categori \"%s\"", + "Sunday" : "Sul", + "Monday" : "Llun", + "Tuesday" : "Mawrth", + "Wednesday" : "Mercher", + "Thursday" : "Iau", + "Friday" : "Gwener", + "Saturday" : "Sadwrn", + "Sun." : "Sul.", + "Mon." : "Llun.", + "Tue." : "Maw.", + "Wed." : "Mer.", + "Thu." : "Iau.", + "Fri." : "Gwe.", + "Sat." : "Sad.", + "January" : "Ionawr", + "February" : "Chwefror", + "March" : "Mawrth", + "April" : "Ebrill", + "May" : "Mai", + "June" : "Mehefin", + "July" : "Gorffennaf", + "August" : "Awst", + "September" : "Medi", + "October" : "Hydref", + "November" : "Tachwedd", + "December" : "Rhagfyr", + "Jan." : "Ion.", + "Feb." : "Chwe.", + "Mar." : "Maw.", + "Apr." : "Ebr.", + "May." : "Mai.", + "Jun." : "Meh.", + "Jul." : "Gor.", + "Aug." : "Aws.", + "Sep." : "Med.", + "Oct." : "Hyd.", + "Nov." : "Tach.", + "Dec." : "Rhag.", "Application is not enabled" : "Nid yw'r pecyn wedi'i alluogi", "Authentication error" : "Gwall dilysu", - "Token expired. Please reload page." : "Tocyn wedi dod i ben. Ail-lwythwch y dudalen." + "Token expired. Please reload page." : "Tocyn wedi dod i ben. Ail-lwythwch y dudalen.", + "Create" : "Creu", + "Delete" : "Dileu", + "Share" : "Rhannu" }, "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"); diff --git a/lib/l10n/cy_GB.json b/lib/l10n/cy_GB.json index 6e931922349..98ef08ef8a1 100644 --- a/lib/l10n/cy_GB.json +++ b/lib/l10n/cy_GB.json @@ -4,7 +4,10 @@ "last month" : "mis diwethaf", "last year" : "y llynedd", "seconds ago" : "eiliad yn ôl", + "Help" : "Cymorth", "Apps" : "Pecynnau", + "Settings" : "Gosodiadau", + "Log out" : "Allgofnodi", "Users" : "Defnyddwyr", "%s enter the database username." : "%s rhowch enw defnyddiwr y gronfa ddata.", "%s enter the database name." : "%s rhowch enw'r gronfa ddata.", @@ -13,9 +16,51 @@ "PostgreSQL username and/or password not valid" : "Enw a/neu gyfrinair PostgreSQL annilys", "Set an admin username." : "Creu enw defnyddiwr i'r gweinyddwr.", "Set an admin password." : "Gosod cyfrinair y gweinyddwr.", + "Open »%s«" : "Agor »%s«", "Could not find category \"%s\"" : "Methu canfod categori \"%s\"", + "Sunday" : "Sul", + "Monday" : "Llun", + "Tuesday" : "Mawrth", + "Wednesday" : "Mercher", + "Thursday" : "Iau", + "Friday" : "Gwener", + "Saturday" : "Sadwrn", + "Sun." : "Sul.", + "Mon." : "Llun.", + "Tue." : "Maw.", + "Wed." : "Mer.", + "Thu." : "Iau.", + "Fri." : "Gwe.", + "Sat." : "Sad.", + "January" : "Ionawr", + "February" : "Chwefror", + "March" : "Mawrth", + "April" : "Ebrill", + "May" : "Mai", + "June" : "Mehefin", + "July" : "Gorffennaf", + "August" : "Awst", + "September" : "Medi", + "October" : "Hydref", + "November" : "Tachwedd", + "December" : "Rhagfyr", + "Jan." : "Ion.", + "Feb." : "Chwe.", + "Mar." : "Maw.", + "Apr." : "Ebr.", + "May." : "Mai.", + "Jun." : "Meh.", + "Jul." : "Gor.", + "Aug." : "Aws.", + "Sep." : "Med.", + "Oct." : "Hyd.", + "Nov." : "Tach.", + "Dec." : "Rhag.", "Application is not enabled" : "Nid yw'r pecyn wedi'i alluogi", "Authentication error" : "Gwall dilysu", - "Token expired. Please reload page." : "Tocyn wedi dod i ben. Ail-lwythwch y dudalen." + "Token expired. Please reload page." : "Tocyn wedi dod i ben. Ail-lwythwch y dudalen.", + "Create" : "Creu", + "Delete" : "Dileu", + "Share" : "Rhannu" },"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;" }
\ No newline at end of file diff --git a/lib/l10n/da.js b/lib/l10n/da.js index 316afca4fbe..e76f0aac19e 100644 --- a/lib/l10n/da.js +++ b/lib/l10n/da.js @@ -19,6 +19,7 @@ OC.L10N.register( "Following platforms are supported: %s" : "Følgende platforme understøttes: %s", "Server version %s or higher is required." : "Du skal have server version %s eller nyere.", "Server version %s or lower is required." : "Du skal have server version %s eller ældre.", + "Authentication" : "Godkendelse", "Unknown filetype" : "Ukendt filtype", "Invalid image" : "Ugyldigt billede", "today" : "i dag", @@ -82,6 +83,7 @@ OC.L10N.register( "%1$s via %2$s" : "%1$s via %2$s", "You are not allowed to share %s" : "Du har ikke tilladelse til at dele %s", "Expiration date is in the past" : "Udløbsdatoen ligger tilbage i tid", + "Click the button below to open it." : "Klik på knappen nedenunder for at åbne.", "Could not find category \"%s\"" : "Kunne ikke finde kategorien \"%s\"", "Sunday" : "Søndag", "Monday" : "andag", @@ -162,7 +164,9 @@ OC.L10N.register( "Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Tilpas venligst rettigheder til 0770, så mappen ikke fremvises for andre brugere.", "Check the value of \"datadirectory\" in your configuration" : "Tjek værdien for \"databibliotek\" i din konfiguration", "Could not obtain lock type %d on \"%s\"." : "Kunne ikke opnå en låsetype %d på \"%s\".", + "Storage is temporarily not available" : "Lagerplads er midlertidigt ikke tilgængeligt", "Create" : "Opret", + "Change" : "Ændr", "Delete" : "Slet", "Share" : "Del", "Unlimited" : "Ubegrænset", diff --git a/lib/l10n/da.json b/lib/l10n/da.json index 78e9e011e5c..6b80459ce26 100644 --- a/lib/l10n/da.json +++ b/lib/l10n/da.json @@ -17,6 +17,7 @@ "Following platforms are supported: %s" : "Følgende platforme understøttes: %s", "Server version %s or higher is required." : "Du skal have server version %s eller nyere.", "Server version %s or lower is required." : "Du skal have server version %s eller ældre.", + "Authentication" : "Godkendelse", "Unknown filetype" : "Ukendt filtype", "Invalid image" : "Ugyldigt billede", "today" : "i dag", @@ -80,6 +81,7 @@ "%1$s via %2$s" : "%1$s via %2$s", "You are not allowed to share %s" : "Du har ikke tilladelse til at dele %s", "Expiration date is in the past" : "Udløbsdatoen ligger tilbage i tid", + "Click the button below to open it." : "Klik på knappen nedenunder for at åbne.", "Could not find category \"%s\"" : "Kunne ikke finde kategorien \"%s\"", "Sunday" : "Søndag", "Monday" : "andag", @@ -160,7 +162,9 @@ "Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Tilpas venligst rettigheder til 0770, så mappen ikke fremvises for andre brugere.", "Check the value of \"datadirectory\" in your configuration" : "Tjek værdien for \"databibliotek\" i din konfiguration", "Could not obtain lock type %d on \"%s\"." : "Kunne ikke opnå en låsetype %d på \"%s\".", + "Storage is temporarily not available" : "Lagerplads er midlertidigt ikke tilgængeligt", "Create" : "Opret", + "Change" : "Ændr", "Delete" : "Slet", "Share" : "Del", "Unlimited" : "Ubegrænset", diff --git a/lib/l10n/de.js b/lib/l10n/de.js index fbaa6a10bcb..92d19177977 100644 --- a/lib/l10n/de.js +++ b/lib/l10n/de.js @@ -66,6 +66,7 @@ OC.L10N.register( "_%n minute ago_::_%n minutes ago_" : ["Vor %n Minute","Vor %n Minuten"], "in a few seconds" : "in wenigen Sekunden", "seconds ago" : "Gerade eben", + "Empty file" : "Leere Datei", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Das Modul mit der ID: %s existiert nicht. Bitte die App in den App-Einstellungen aktivieren oder den Administrator kontaktieren.", "File name is a reserved word" : "Der Dateiname ist ein reserviertes Wort", "File name contains at least one invalid character" : "Der Dateiname enthält mindestens ein ungültiges Zeichen", diff --git a/lib/l10n/de.json b/lib/l10n/de.json index 1b086b32066..0becf609859 100644 --- a/lib/l10n/de.json +++ b/lib/l10n/de.json @@ -64,6 +64,7 @@ "_%n minute ago_::_%n minutes ago_" : ["Vor %n Minute","Vor %n Minuten"], "in a few seconds" : "in wenigen Sekunden", "seconds ago" : "Gerade eben", + "Empty file" : "Leere Datei", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Das Modul mit der ID: %s existiert nicht. Bitte die App in den App-Einstellungen aktivieren oder den Administrator kontaktieren.", "File name is a reserved word" : "Der Dateiname ist ein reserviertes Wort", "File name contains at least one invalid character" : "Der Dateiname enthält mindestens ein ungültiges Zeichen", diff --git a/lib/l10n/de_DE.js b/lib/l10n/de_DE.js index d0601fba95c..ea8d5276c36 100644 --- a/lib/l10n/de_DE.js +++ b/lib/l10n/de_DE.js @@ -66,6 +66,7 @@ OC.L10N.register( "_%n minute ago_::_%n minutes ago_" : ["Vor %n Minute","Vor %n Minuten"], "in a few seconds" : "in wenigen Sekunden", "seconds ago" : "Gerade eben", + "Empty file" : "Leere Datei", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Das Modul mit der ID: %s existiert nicht. Bitte aktivieren Sie es in Ihren Einstellungen oder kontaktieren Sie Ihren Administrator.", "File name is a reserved word" : "Der Dateiname ist ein reserviertes Wort", "File name contains at least one invalid character" : "Der Dateiname enthält mindestens ein ungültiges Zeichen", diff --git a/lib/l10n/de_DE.json b/lib/l10n/de_DE.json index 6c28942a36d..8d036a96b58 100644 --- a/lib/l10n/de_DE.json +++ b/lib/l10n/de_DE.json @@ -64,6 +64,7 @@ "_%n minute ago_::_%n minutes ago_" : ["Vor %n Minute","Vor %n Minuten"], "in a few seconds" : "in wenigen Sekunden", "seconds ago" : "Gerade eben", + "Empty file" : "Leere Datei", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Das Modul mit der ID: %s existiert nicht. Bitte aktivieren Sie es in Ihren Einstellungen oder kontaktieren Sie Ihren Administrator.", "File name is a reserved word" : "Der Dateiname ist ein reserviertes Wort", "File name contains at least one invalid character" : "Der Dateiname enthält mindestens ein ungültiges Zeichen", diff --git a/lib/l10n/el.js b/lib/l10n/el.js index 91128de1dc6..5f93841dfae 100644 --- a/lib/l10n/el.js +++ b/lib/l10n/el.js @@ -24,6 +24,7 @@ OC.L10N.register( "Following platforms are supported: %s" : "Οι ακόλουθες πλατφόρμες υποστηρίζονται: %s", "Server version %s or higher is required." : "Απαιτείται έκδοση διακομιστή %s ή νεότερη.", "Server version %s or lower is required." : "Απαιτείται έκδοση διακομιστή %s ή παλαιότερη.", + "Authentication" : "Πιστοποίηση", "Unknown filetype" : "Άγνωστος τύπος αρχείου", "Invalid image" : "Μη έγκυρη εικόνα", "Avatar image is not square" : "Η εικόνα του άβαταρ δεν είναι τετράγωνη", @@ -82,12 +83,15 @@ OC.L10N.register( "Sharing backend %s must implement the interface OCP\\Share_Backend" : "Το σύστημα διαμοιρασμού %s πρέπει να υλοποιεί την διεπαφή OCP\\Share_Backend", "Sharing backend %s not found" : "Το σύστημα διαμοιρασμού %s δεν βρέθηκε", "Sharing backend for %s not found" : "Το σύστημα διαμοιρασμού για το %s δεν βρέθηκε", + "Open »%s«" : "Άνοιγμα »%s«", + "%1$s via %2$s" : "%1$s μέσω %2$s", "You are not allowed to share %s" : "Δεν επιτρέπεται να διαμοιράσετε τον πόρο %s", "Can’t increase permissions of %s" : "Αδυναμία αύξησης των δικαιωμάτων του %s", "Files can’t be shared with delete permissions" : "Δεν μπορεί να γίνει διαμοιρασμός αρχείων με δικαιώματα διαγραφής", "Files can’t be shared with create permissions" : "Δεν μπορεί να γίνει διαμοιρασμός αρχείων με δικαιώματα δημιουργίας", "Expiration date is in the past" : "Η ημερομηνία λήξης είναι στο παρελθόν", "Can’t set expiration date more than %s days in the future" : "Δεν είναι δυνατό να τεθεί η ημερομηνία λήξης σε περισσότερες από %s ημέρες στο μέλλον", + "%1$s shared »%2$s« with you." : "%1$s διαμοιράστηκε »%2$s« με εσάς.", "Click the button below to open it." : "Κάντε κλικ στο παρακάτω κουμπί για να το ανοίξετε.", "The requested share does not exist anymore" : "Το διαμοιρασμένο που ζητήθηκε δεν υπάρχει πλέον", "Could not find category \"%s\"" : "Αδυναμία εύρεσης κατηγορίας \"%s\"", @@ -186,7 +190,9 @@ OC.L10N.register( "Storage is temporarily not available" : "Μη διαθέσιμος χώρος αποθήκευσης προσωρινά", "Storage connection timeout. %s" : "Λήξη χρονικού ορίου σύνδεσης με αποθηκευτικό χώρο.%s", "Create" : "Δημιουργία", + "Change" : "Αλλαγή", "Delete" : "Διαγραφή", + "Share" : "Κοινή χρήση", "Unlimited" : "Απεριόριστα", "Verifying" : "Γίνεται επαλήθευση", "Verifying …" : "Γίνεται επαλήθευση ...", @@ -194,6 +200,7 @@ OC.L10N.register( "Sharing %s failed, because the backend does not allow shares from type %i" : "Αποτυχία διαμοιρασμού %s, γιατί το σύστημα υποστήριξης δεν επιτρέπει κοινόχρηστα τύπου %i", "Sharing %s failed, because the file does not exist" : "Ο διαμοιρασμός του %s απέτυχε, γιατί το αρχείο δεν υπάρχει", "Sharing %s failed, because you can not share with yourself" : "Ο διαμοιρασμός του %s απέτυχε, γιατί δεν μπορείτε να διαμοιραστείτε με τον εαυτό σας.", + "Sharing %1$s failed, because this item is already shared with %2$s" : "Ο διαμοιρασμός του %1$s απέτυχε, γιατί το αντικείμενο είναι διαμοιρασμένο ήδη με τον χρήστη %2$s", "You need to provide a password to create a public link, only protected links are allowed" : "Πρέπει να εισάγετε έναν κωδικό για να δημιουργήσετε έναν δημόσιο σύνδεσμο. Μόνο προστατευμένοι σύνδεσμοι επιτρέπονται", "Sharing %s failed, because sharing with links is not allowed" : "Ο διαμοιρασμός του %s απέτυχε, γιατί δεν επιτρέπεται ο διαμοιρασμός με συνδέσμους", "Not allowed to create a federated share with the same user" : "Δεν επιτρέπεται η δημιουργία federated διαμοιρασμού με τον ίδιο χρήστη", diff --git a/lib/l10n/el.json b/lib/l10n/el.json index 7043264e475..53ae5f2bb21 100644 --- a/lib/l10n/el.json +++ b/lib/l10n/el.json @@ -22,6 +22,7 @@ "Following platforms are supported: %s" : "Οι ακόλουθες πλατφόρμες υποστηρίζονται: %s", "Server version %s or higher is required." : "Απαιτείται έκδοση διακομιστή %s ή νεότερη.", "Server version %s or lower is required." : "Απαιτείται έκδοση διακομιστή %s ή παλαιότερη.", + "Authentication" : "Πιστοποίηση", "Unknown filetype" : "Άγνωστος τύπος αρχείου", "Invalid image" : "Μη έγκυρη εικόνα", "Avatar image is not square" : "Η εικόνα του άβαταρ δεν είναι τετράγωνη", @@ -80,12 +81,15 @@ "Sharing backend %s must implement the interface OCP\\Share_Backend" : "Το σύστημα διαμοιρασμού %s πρέπει να υλοποιεί την διεπαφή OCP\\Share_Backend", "Sharing backend %s not found" : "Το σύστημα διαμοιρασμού %s δεν βρέθηκε", "Sharing backend for %s not found" : "Το σύστημα διαμοιρασμού για το %s δεν βρέθηκε", + "Open »%s«" : "Άνοιγμα »%s«", + "%1$s via %2$s" : "%1$s μέσω %2$s", "You are not allowed to share %s" : "Δεν επιτρέπεται να διαμοιράσετε τον πόρο %s", "Can’t increase permissions of %s" : "Αδυναμία αύξησης των δικαιωμάτων του %s", "Files can’t be shared with delete permissions" : "Δεν μπορεί να γίνει διαμοιρασμός αρχείων με δικαιώματα διαγραφής", "Files can’t be shared with create permissions" : "Δεν μπορεί να γίνει διαμοιρασμός αρχείων με δικαιώματα δημιουργίας", "Expiration date is in the past" : "Η ημερομηνία λήξης είναι στο παρελθόν", "Can’t set expiration date more than %s days in the future" : "Δεν είναι δυνατό να τεθεί η ημερομηνία λήξης σε περισσότερες από %s ημέρες στο μέλλον", + "%1$s shared »%2$s« with you." : "%1$s διαμοιράστηκε »%2$s« με εσάς.", "Click the button below to open it." : "Κάντε κλικ στο παρακάτω κουμπί για να το ανοίξετε.", "The requested share does not exist anymore" : "Το διαμοιρασμένο που ζητήθηκε δεν υπάρχει πλέον", "Could not find category \"%s\"" : "Αδυναμία εύρεσης κατηγορίας \"%s\"", @@ -184,7 +188,9 @@ "Storage is temporarily not available" : "Μη διαθέσιμος χώρος αποθήκευσης προσωρινά", "Storage connection timeout. %s" : "Λήξη χρονικού ορίου σύνδεσης με αποθηκευτικό χώρο.%s", "Create" : "Δημιουργία", + "Change" : "Αλλαγή", "Delete" : "Διαγραφή", + "Share" : "Κοινή χρήση", "Unlimited" : "Απεριόριστα", "Verifying" : "Γίνεται επαλήθευση", "Verifying …" : "Γίνεται επαλήθευση ...", @@ -192,6 +198,7 @@ "Sharing %s failed, because the backend does not allow shares from type %i" : "Αποτυχία διαμοιρασμού %s, γιατί το σύστημα υποστήριξης δεν επιτρέπει κοινόχρηστα τύπου %i", "Sharing %s failed, because the file does not exist" : "Ο διαμοιρασμός του %s απέτυχε, γιατί το αρχείο δεν υπάρχει", "Sharing %s failed, because you can not share with yourself" : "Ο διαμοιρασμός του %s απέτυχε, γιατί δεν μπορείτε να διαμοιραστείτε με τον εαυτό σας.", + "Sharing %1$s failed, because this item is already shared with %2$s" : "Ο διαμοιρασμός του %1$s απέτυχε, γιατί το αντικείμενο είναι διαμοιρασμένο ήδη με τον χρήστη %2$s", "You need to provide a password to create a public link, only protected links are allowed" : "Πρέπει να εισάγετε έναν κωδικό για να δημιουργήσετε έναν δημόσιο σύνδεσμο. Μόνο προστατευμένοι σύνδεσμοι επιτρέπονται", "Sharing %s failed, because sharing with links is not allowed" : "Ο διαμοιρασμός του %s απέτυχε, γιατί δεν επιτρέπεται ο διαμοιρασμός με συνδέσμους", "Not allowed to create a federated share with the same user" : "Δεν επιτρέπεται η δημιουργία federated διαμοιρασμού με τον ίδιο χρήστη", diff --git a/lib/l10n/en_GB.js b/lib/l10n/en_GB.js index 0e4d05225a7..0dc2a54c337 100644 --- a/lib/l10n/en_GB.js +++ b/lib/l10n/en_GB.js @@ -25,6 +25,7 @@ OC.L10N.register( "Server version %s or higher is required." : "Server version %s or higher is required.", "Server version %s or lower is required." : "Server version %s or lower is required.", "Logged in user must be an admin" : "Logged in user must be an admin", + "Authentication" : "Authentication", "Unknown filetype" : "Unknown filetype", "Invalid image" : "Invalid image", "Avatar image is not square" : "Avatar image is not square", diff --git a/lib/l10n/en_GB.json b/lib/l10n/en_GB.json index fbc4418a30d..ece35a25809 100644 --- a/lib/l10n/en_GB.json +++ b/lib/l10n/en_GB.json @@ -23,6 +23,7 @@ "Server version %s or higher is required." : "Server version %s or higher is required.", "Server version %s or lower is required." : "Server version %s or lower is required.", "Logged in user must be an admin" : "Logged in user must be an admin", + "Authentication" : "Authentication", "Unknown filetype" : "Unknown filetype", "Invalid image" : "Invalid image", "Avatar image is not square" : "Avatar image is not square", diff --git a/lib/l10n/es.js b/lib/l10n/es.js index fb6689fb9d5..45f6c3e8f28 100644 --- a/lib/l10n/es.js +++ b/lib/l10n/es.js @@ -66,6 +66,7 @@ OC.L10N.register( "_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos"], "in a few seconds" : "en unos segundos", "seconds ago" : "hace segundos", + "Empty file" : "Archivo vacío", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID %s no existe. Por favor, actívalo en la configuración de apps o contacta con tu administrador.", "File name is a reserved word" : "El nombre de archivo es una palabra reservada", "File name contains at least one invalid character" : "El nombre del archivo contiene al menos un carácter inválido", @@ -174,6 +175,7 @@ OC.L10N.register( "A valid username must be provided" : "Se debe proporcionar un nombre de usuario válido", "Username contains whitespace at the beginning or at the end" : "El nombre de usuario contiene espacios en blanco al principio o al final", "Username must not consist of dots only" : "El nombre de usuario no debe consistir solo de puntos", + "Username is invalid because files already exist for this user" : "El nombre de usuario es incorrecto debido a a que los archivos ya existen para este usuario", "A valid password must be provided" : "Se debe proporcionar una contraseña válida", "The username is already being used" : "El nombre de usuario ya está en uso", "Could not create user" : "No se ha podido crear el usuario", diff --git a/lib/l10n/es.json b/lib/l10n/es.json index 7df712d222b..d0264cca53f 100644 --- a/lib/l10n/es.json +++ b/lib/l10n/es.json @@ -64,6 +64,7 @@ "_%n minute ago_::_%n minutes ago_" : ["Hace %n minuto","Hace %n minutos"], "in a few seconds" : "en unos segundos", "seconds ago" : "hace segundos", + "Empty file" : "Archivo vacío", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "El módulo con ID %s no existe. Por favor, actívalo en la configuración de apps o contacta con tu administrador.", "File name is a reserved word" : "El nombre de archivo es una palabra reservada", "File name contains at least one invalid character" : "El nombre del archivo contiene al menos un carácter inválido", @@ -172,6 +173,7 @@ "A valid username must be provided" : "Se debe proporcionar un nombre de usuario válido", "Username contains whitespace at the beginning or at the end" : "El nombre de usuario contiene espacios en blanco al principio o al final", "Username must not consist of dots only" : "El nombre de usuario no debe consistir solo de puntos", + "Username is invalid because files already exist for this user" : "El nombre de usuario es incorrecto debido a a que los archivos ya existen para este usuario", "A valid password must be provided" : "Se debe proporcionar una contraseña válida", "The username is already being used" : "El nombre de usuario ya está en uso", "Could not create user" : "No se ha podido crear el usuario", diff --git a/lib/l10n/es_419.js b/lib/l10n/es_419.js index 5233e7e4bf3..ee6c94e32e4 100644 --- a/lib/l10n/es_419.js +++ b/lib/l10n/es_419.js @@ -24,6 +24,7 @@ OC.L10N.register( "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -192,6 +193,10 @@ OC.L10N.register( "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Borrar", + "Share" : "Compartir", "Unlimited" : "Ilimitado", "Verifying" : "Verficando", "Verifying …" : "Verficando ...", diff --git a/lib/l10n/es_419.json b/lib/l10n/es_419.json index 929963fb48f..f099a707cdb 100644 --- a/lib/l10n/es_419.json +++ b/lib/l10n/es_419.json @@ -22,6 +22,7 @@ "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -190,6 +191,10 @@ "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Borrar", + "Share" : "Compartir", "Unlimited" : "Ilimitado", "Verifying" : "Verficando", "Verifying …" : "Verficando ...", diff --git a/lib/l10n/es_AR.js b/lib/l10n/es_AR.js index bbaad943452..dc276d12f71 100644 --- a/lib/l10n/es_AR.js +++ b/lib/l10n/es_AR.js @@ -23,6 +23,7 @@ OC.L10N.register( "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -48,6 +49,7 @@ OC.L10N.register( "This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, favor de no contestarlo. ", "Help" : "Ayuda", "Apps" : "Aplicaciones", + "Settings" : "Ajustes", "Log out" : "Cerrar sesión", "Users" : "Usuarios", "Unknown user" : "Ususario desconocido", @@ -55,6 +57,7 @@ OC.L10N.register( "Sharing" : "Compartiendo", "Security" : "Seguridad", "Additional settings" : "Configuraciones adicionales", + "Personal info" : "Información Personal", "%s enter the database username and name." : "%s ingrese el nombre del usuario y nombre de la base de datos", "%s enter the database username." : "%s ingresar el nombre de usuario de la base de datos.", "%s enter the database name." : "%s ingresar el nombre de la base de datos", @@ -74,8 +77,10 @@ OC.L10N.register( "Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend", "Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ", "Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s", + "Open »%s«" : "Abrir »%s«", "You are not allowed to share %s" : "No tiene permitido compartir %s", "Expiration date is in the past" : "La fecha de expiración ya ha pasado", + "Click the button below to open it." : "Haga click en el botón de abajo para abrirlo.", "Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"", "Sunday" : "Domingo", "Monday" : "Lunes", @@ -170,6 +175,14 @@ OC.L10N.register( "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "Se agotó el tiempo de conexión del almacenamiento. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Eliminar", + "Share" : "Compartir", + "Unlimited" : "Ilimitado", + "Verifying" : "Verificando", + "Verifying …" : "Verificando ...", + "Verify" : "Verificar", "Sharing %s failed, because the backend does not allow shares from type %i" : "Se presentó una falla al compartir %s, porque el backend no permite elementos compartidos de tipo %i", "Sharing %s failed, because the file does not exist" : "Se presentó una falla al compartir %s porque el archivo no existe", "Sharing %s failed, because you can not share with yourself" : "Se presento una falla al compartir %s, porque no puede compartir con usted mismo", diff --git a/lib/l10n/es_AR.json b/lib/l10n/es_AR.json index 284cbbaf0b5..c86cbe732be 100644 --- a/lib/l10n/es_AR.json +++ b/lib/l10n/es_AR.json @@ -21,6 +21,7 @@ "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -46,6 +47,7 @@ "This is an automatically sent email, please do not reply." : "Este es un correo enviado automáticamente, favor de no contestarlo. ", "Help" : "Ayuda", "Apps" : "Aplicaciones", + "Settings" : "Ajustes", "Log out" : "Cerrar sesión", "Users" : "Usuarios", "Unknown user" : "Ususario desconocido", @@ -53,6 +55,7 @@ "Sharing" : "Compartiendo", "Security" : "Seguridad", "Additional settings" : "Configuraciones adicionales", + "Personal info" : "Información Personal", "%s enter the database username and name." : "%s ingrese el nombre del usuario y nombre de la base de datos", "%s enter the database username." : "%s ingresar el nombre de usuario de la base de datos.", "%s enter the database name." : "%s ingresar el nombre de la base de datos", @@ -72,8 +75,10 @@ "Sharing backend %s must implement the interface OCP\\Share_Backend" : "El backend %s que comparte debe implementar la interface OCP\\Share_Backend", "Sharing backend %s not found" : "No fue encontrado el Backend que comparte %s ", "Sharing backend for %s not found" : "No fue encontrado el Backend que comparte para %s", + "Open »%s«" : "Abrir »%s«", "You are not allowed to share %s" : "No tiene permitido compartir %s", "Expiration date is in the past" : "La fecha de expiración ya ha pasado", + "Click the button below to open it." : "Haga click en el botón de abajo para abrirlo.", "Could not find category \"%s\"" : "No fue posible encontrar la categoria \"%s\"", "Sunday" : "Domingo", "Monday" : "Lunes", @@ -168,6 +173,14 @@ "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "Se agotó el tiempo de conexión del almacenamiento. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Eliminar", + "Share" : "Compartir", + "Unlimited" : "Ilimitado", + "Verifying" : "Verificando", + "Verifying …" : "Verificando ...", + "Verify" : "Verificar", "Sharing %s failed, because the backend does not allow shares from type %i" : "Se presentó una falla al compartir %s, porque el backend no permite elementos compartidos de tipo %i", "Sharing %s failed, because the file does not exist" : "Se presentó una falla al compartir %s porque el archivo no existe", "Sharing %s failed, because you can not share with yourself" : "Se presento una falla al compartir %s, porque no puede compartir con usted mismo", diff --git a/lib/l10n/es_CL.js b/lib/l10n/es_CL.js index b711da2797d..e98cd6bf840 100644 --- a/lib/l10n/es_CL.js +++ b/lib/l10n/es_CL.js @@ -25,6 +25,7 @@ OC.L10N.register( "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", "Logged in user must be an admin" : "El usuario firmado debe ser un administrador", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", diff --git a/lib/l10n/es_CL.json b/lib/l10n/es_CL.json index c58e8e56952..f0bace6863e 100644 --- a/lib/l10n/es_CL.json +++ b/lib/l10n/es_CL.json @@ -23,6 +23,7 @@ "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", "Logged in user must be an admin" : "El usuario firmado debe ser un administrador", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", diff --git a/lib/l10n/es_CO.js b/lib/l10n/es_CO.js index da72e3090ec..9881e45591f 100644 --- a/lib/l10n/es_CO.js +++ b/lib/l10n/es_CO.js @@ -25,6 +25,7 @@ OC.L10N.register( "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", "Logged in user must be an admin" : "El usuario firmado debe ser un administrador", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", diff --git a/lib/l10n/es_CO.json b/lib/l10n/es_CO.json index db398beea75..91c8e976b08 100644 --- a/lib/l10n/es_CO.json +++ b/lib/l10n/es_CO.json @@ -23,6 +23,7 @@ "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", "Logged in user must be an admin" : "El usuario firmado debe ser un administrador", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", diff --git a/lib/l10n/es_CR.js b/lib/l10n/es_CR.js index faea2789541..094de51e3ea 100644 --- a/lib/l10n/es_CR.js +++ b/lib/l10n/es_CR.js @@ -25,6 +25,7 @@ OC.L10N.register( "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", "Logged in user must be an admin" : "El usuario firmado debe ser un administrador", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", diff --git a/lib/l10n/es_CR.json b/lib/l10n/es_CR.json index 0a6cfaa32da..b53b8210b17 100644 --- a/lib/l10n/es_CR.json +++ b/lib/l10n/es_CR.json @@ -23,6 +23,7 @@ "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", "Logged in user must be an admin" : "El usuario firmado debe ser un administrador", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", diff --git a/lib/l10n/es_DO.js b/lib/l10n/es_DO.js index 3af37f5c851..46c380edee7 100644 --- a/lib/l10n/es_DO.js +++ b/lib/l10n/es_DO.js @@ -25,6 +25,7 @@ OC.L10N.register( "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", "Logged in user must be an admin" : "El usuario firmado debe ser un administrador", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", diff --git a/lib/l10n/es_DO.json b/lib/l10n/es_DO.json index 35a875c0fce..8577cd82b39 100644 --- a/lib/l10n/es_DO.json +++ b/lib/l10n/es_DO.json @@ -23,6 +23,7 @@ "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", "Logged in user must be an admin" : "El usuario firmado debe ser un administrador", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", diff --git a/lib/l10n/es_EC.js b/lib/l10n/es_EC.js index c4a1693131b..7b35aa43b43 100644 --- a/lib/l10n/es_EC.js +++ b/lib/l10n/es_EC.js @@ -25,6 +25,7 @@ OC.L10N.register( "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", "Logged in user must be an admin" : "El usuario firmado debe ser un administrador", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", diff --git a/lib/l10n/es_EC.json b/lib/l10n/es_EC.json index 1369378370b..4e29f01517c 100644 --- a/lib/l10n/es_EC.json +++ b/lib/l10n/es_EC.json @@ -23,6 +23,7 @@ "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", "Logged in user must be an admin" : "El usuario firmado debe ser un administrador", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", diff --git a/lib/l10n/es_GT.js b/lib/l10n/es_GT.js index d33ad218748..37603d17f29 100644 --- a/lib/l10n/es_GT.js +++ b/lib/l10n/es_GT.js @@ -25,6 +25,7 @@ OC.L10N.register( "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", "Logged in user must be an admin" : "El usuario firmado debe ser un administrador", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", diff --git a/lib/l10n/es_GT.json b/lib/l10n/es_GT.json index 87fcb8bc85c..410264e94a0 100644 --- a/lib/l10n/es_GT.json +++ b/lib/l10n/es_GT.json @@ -23,6 +23,7 @@ "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", "Logged in user must be an admin" : "El usuario firmado debe ser un administrador", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", diff --git a/lib/l10n/es_HN.js b/lib/l10n/es_HN.js index 4211186ae40..fbd51176b65 100644 --- a/lib/l10n/es_HN.js +++ b/lib/l10n/es_HN.js @@ -24,6 +24,7 @@ OC.L10N.register( "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -191,6 +192,10 @@ OC.L10N.register( "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Borrar", + "Share" : "Compartir", "Unlimited" : "Ilimitado", "Verifying" : "Verficando", "Verifying …" : "Verficando ...", diff --git a/lib/l10n/es_HN.json b/lib/l10n/es_HN.json index c760c0482e5..59ef76894e7 100644 --- a/lib/l10n/es_HN.json +++ b/lib/l10n/es_HN.json @@ -22,6 +22,7 @@ "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -189,6 +190,10 @@ "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Borrar", + "Share" : "Compartir", "Unlimited" : "Ilimitado", "Verifying" : "Verficando", "Verifying …" : "Verficando ...", diff --git a/lib/l10n/es_MX.js b/lib/l10n/es_MX.js index 2e7ad595049..29d956eccae 100644 --- a/lib/l10n/es_MX.js +++ b/lib/l10n/es_MX.js @@ -25,6 +25,7 @@ OC.L10N.register( "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", "Logged in user must be an admin" : "El usuario firmado debe ser un administrador", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", diff --git a/lib/l10n/es_MX.json b/lib/l10n/es_MX.json index 2d04788c2e8..55d8553e984 100644 --- a/lib/l10n/es_MX.json +++ b/lib/l10n/es_MX.json @@ -23,6 +23,7 @@ "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", "Logged in user must be an admin" : "El usuario firmado debe ser un administrador", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", diff --git a/lib/l10n/es_NI.js b/lib/l10n/es_NI.js index d3d7939bfc8..821563e5952 100644 --- a/lib/l10n/es_NI.js +++ b/lib/l10n/es_NI.js @@ -24,6 +24,7 @@ OC.L10N.register( "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -191,6 +192,10 @@ OC.L10N.register( "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Borrar", + "Share" : "Compartir", "Unlimited" : "Ilimitado", "Verifying" : "Verficando", "Verifying …" : "Verficando ...", diff --git a/lib/l10n/es_NI.json b/lib/l10n/es_NI.json index 6c81087fdd1..5e58b5b521b 100644 --- a/lib/l10n/es_NI.json +++ b/lib/l10n/es_NI.json @@ -22,6 +22,7 @@ "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -189,6 +190,10 @@ "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Borrar", + "Share" : "Compartir", "Unlimited" : "Ilimitado", "Verifying" : "Verficando", "Verifying …" : "Verficando ...", diff --git a/lib/l10n/es_PA.js b/lib/l10n/es_PA.js index 3f332505fe3..2a224d09464 100644 --- a/lib/l10n/es_PA.js +++ b/lib/l10n/es_PA.js @@ -24,6 +24,7 @@ OC.L10N.register( "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -191,6 +192,10 @@ OC.L10N.register( "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Borrar", + "Share" : "Compartir", "Unlimited" : "Ilimitado", "Verifying" : "Verficando", "Verifying …" : "Verficando ...", diff --git a/lib/l10n/es_PA.json b/lib/l10n/es_PA.json index a228a557a02..0acb1a9b4be 100644 --- a/lib/l10n/es_PA.json +++ b/lib/l10n/es_PA.json @@ -22,6 +22,7 @@ "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -189,6 +190,10 @@ "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Borrar", + "Share" : "Compartir", "Unlimited" : "Ilimitado", "Verifying" : "Verficando", "Verifying …" : "Verficando ...", diff --git a/lib/l10n/es_PE.js b/lib/l10n/es_PE.js index e3dc3b5de88..688c4b5c1eb 100644 --- a/lib/l10n/es_PE.js +++ b/lib/l10n/es_PE.js @@ -24,6 +24,7 @@ OC.L10N.register( "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -191,6 +192,10 @@ OC.L10N.register( "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Borrar", + "Share" : "Compartir", "Unlimited" : "Ilimitado", "Verifying" : "Verficando", "Verifying …" : "Verficando ...", diff --git a/lib/l10n/es_PE.json b/lib/l10n/es_PE.json index 4c527b8fa3e..e6863268236 100644 --- a/lib/l10n/es_PE.json +++ b/lib/l10n/es_PE.json @@ -22,6 +22,7 @@ "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -189,6 +190,10 @@ "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Borrar", + "Share" : "Compartir", "Unlimited" : "Ilimitado", "Verifying" : "Verficando", "Verifying …" : "Verficando ...", diff --git a/lib/l10n/es_PR.js b/lib/l10n/es_PR.js index 90026b5acd4..0458fa9b8b6 100644 --- a/lib/l10n/es_PR.js +++ b/lib/l10n/es_PR.js @@ -24,6 +24,7 @@ OC.L10N.register( "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -191,6 +192,10 @@ OC.L10N.register( "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Borrar", + "Share" : "Compartir", "Unlimited" : "Ilimitado", "Verifying" : "Verficando", "Verifying …" : "Verficando ...", diff --git a/lib/l10n/es_PR.json b/lib/l10n/es_PR.json index 4a2f8d9413d..1ad7168ad46 100644 --- a/lib/l10n/es_PR.json +++ b/lib/l10n/es_PR.json @@ -22,6 +22,7 @@ "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -189,6 +190,10 @@ "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Borrar", + "Share" : "Compartir", "Unlimited" : "Ilimitado", "Verifying" : "Verficando", "Verifying …" : "Verficando ...", diff --git a/lib/l10n/es_PY.js b/lib/l10n/es_PY.js index 1c097adebaa..3a9eebafa2f 100644 --- a/lib/l10n/es_PY.js +++ b/lib/l10n/es_PY.js @@ -24,6 +24,7 @@ OC.L10N.register( "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -191,6 +192,10 @@ OC.L10N.register( "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Borrar", + "Share" : "Compartir", "Unlimited" : "Ilimitado", "Verifying" : "Verficando", "Verifying …" : "Verficando ...", diff --git a/lib/l10n/es_PY.json b/lib/l10n/es_PY.json index a430e4cde20..8adb438def7 100644 --- a/lib/l10n/es_PY.json +++ b/lib/l10n/es_PY.json @@ -22,6 +22,7 @@ "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -189,6 +190,10 @@ "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Borrar", + "Share" : "Compartir", "Unlimited" : "Ilimitado", "Verifying" : "Verficando", "Verifying …" : "Verficando ...", diff --git a/lib/l10n/es_SV.js b/lib/l10n/es_SV.js index 66870e50e6e..e6741881b09 100644 --- a/lib/l10n/es_SV.js +++ b/lib/l10n/es_SV.js @@ -25,6 +25,7 @@ OC.L10N.register( "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", "Logged in user must be an admin" : "El usuario firmado debe ser un administrador", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", diff --git a/lib/l10n/es_SV.json b/lib/l10n/es_SV.json index 7709b181e82..7ce0153ff04 100644 --- a/lib/l10n/es_SV.json +++ b/lib/l10n/es_SV.json @@ -23,6 +23,7 @@ "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", "Logged in user must be an admin" : "El usuario firmado debe ser un administrador", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", diff --git a/lib/l10n/es_UY.js b/lib/l10n/es_UY.js index e2e6b13cc2b..aa059654bd7 100644 --- a/lib/l10n/es_UY.js +++ b/lib/l10n/es_UY.js @@ -24,6 +24,7 @@ OC.L10N.register( "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -191,6 +192,10 @@ OC.L10N.register( "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Borrar", + "Share" : "Compartir", "Unlimited" : "Ilimitado", "Verifying" : "Verficando", "Verifying …" : "Verficando ...", diff --git a/lib/l10n/es_UY.json b/lib/l10n/es_UY.json index 31865dc8903..0ed6a1b2dc4 100644 --- a/lib/l10n/es_UY.json +++ b/lib/l10n/es_UY.json @@ -22,6 +22,7 @@ "Following platforms are supported: %s" : "Las siguientes plataformas están soportadas: %s", "Server version %s or higher is required." : "Se requiere la versión del servidor %s o superior. ", "Server version %s or lower is required." : "La versión del servidor %s o inferior es requerdia. ", + "Authentication" : "Autenticación", "Unknown filetype" : "Tipo de archivo desconocido", "Invalid image" : "Imagen inválida", "Avatar image is not square" : "La imagen del avatar no es un cuadrado", @@ -189,6 +190,10 @@ "Storage connection error. %s" : "Se presentó un error con la conexión al almacenamiento. %s", "Storage is temporarily not available" : "El almacenamieto se encuentra temporalmente no disponible", "Storage connection timeout. %s" : "El tiempo de la conexión del almacenamiento se agotó. %s", + "Create" : "Crear", + "Change" : "Cambiar", + "Delete" : "Borrar", + "Share" : "Compartir", "Unlimited" : "Ilimitado", "Verifying" : "Verficando", "Verifying …" : "Verficando ...", diff --git a/lib/l10n/et_EE.js b/lib/l10n/et_EE.js index 0ba8fe317d3..092e9aaa8bb 100644 --- a/lib/l10n/et_EE.js +++ b/lib/l10n/et_EE.js @@ -18,6 +18,7 @@ OC.L10N.register( "Following platforms are supported: %s" : "Toetatud on järgnevad platformid: %s", "Server version %s or higher is required." : "Serveri versioon %s või kõrgem on nõutav.", "Server version %s or lower is required." : "Serveri versioon %s või madalam on nõutav.", + "Authentication" : "Autentimine", "Unknown filetype" : "Tundmatu failitüüp", "Invalid image" : "Vigane pilt", "Avatar image is not square" : "Avatari pilt pole ruut", @@ -151,6 +152,10 @@ OC.L10N.register( "Please upgrade your database version" : "Palun uuenda oma andmebaasi versiooni", "Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Palun muuda kataloogi õigused 0770-ks, et kataloogi sisu poleks teistele kasutajatele nähtav", "Could not obtain lock type %d on \"%s\"." : "Ei suutnud hankida %d tüüpi lukustust \"%s\".", + "Storage is temporarily not available" : "Salvestusruum pole ajutiselt kättesaadav", + "Create" : "Loo", + "Delete" : "Kustuta", + "Share" : "Jaga", "Unlimited" : "Piiramatult", "Verifying" : "Kontrollin", "Verifying …" : "Kontrollin ...", diff --git a/lib/l10n/et_EE.json b/lib/l10n/et_EE.json index 5aab6554b54..56abb51260e 100644 --- a/lib/l10n/et_EE.json +++ b/lib/l10n/et_EE.json @@ -16,6 +16,7 @@ "Following platforms are supported: %s" : "Toetatud on järgnevad platformid: %s", "Server version %s or higher is required." : "Serveri versioon %s või kõrgem on nõutav.", "Server version %s or lower is required." : "Serveri versioon %s või madalam on nõutav.", + "Authentication" : "Autentimine", "Unknown filetype" : "Tundmatu failitüüp", "Invalid image" : "Vigane pilt", "Avatar image is not square" : "Avatari pilt pole ruut", @@ -149,6 +150,10 @@ "Please upgrade your database version" : "Palun uuenda oma andmebaasi versiooni", "Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Palun muuda kataloogi õigused 0770-ks, et kataloogi sisu poleks teistele kasutajatele nähtav", "Could not obtain lock type %d on \"%s\"." : "Ei suutnud hankida %d tüüpi lukustust \"%s\".", + "Storage is temporarily not available" : "Salvestusruum pole ajutiselt kättesaadav", + "Create" : "Loo", + "Delete" : "Kustuta", + "Share" : "Jaga", "Unlimited" : "Piiramatult", "Verifying" : "Kontrollin", "Verifying …" : "Kontrollin ...", diff --git a/lib/l10n/eu.js b/lib/l10n/eu.js index b6e89203e95..605d1b6dee1 100644 --- a/lib/l10n/eu.js +++ b/lib/l10n/eu.js @@ -49,12 +49,14 @@ OC.L10N.register( "Help" : "Laguntza", "Apps" : "Aplikazioak", "Settings" : "Ezarpenak", + "Log out" : "Amaitu saioa", "Users" : "Erabiltzaileak", "Unknown user" : "Erabiltzaile ezezaguna", "Basic settings" : "Oinarrizko ezarpenak", "Sharing" : "Partekatze", "Security" : "Segurtasuna", "Additional settings" : "Ezarpen gehiago", + "Personal info" : "Informazio pertsonala", "Mobile & desktop" : "Mugikorra eta mahaigaina", "%s enter the database username and name." : "%s sartu datu-basearen erabiltzaile-izena eta izena.", "%s enter the database username." : "%s sartu datu basearen erabiltzaile izena.", @@ -69,12 +71,14 @@ OC.L10N.register( "Set an admin username." : "Ezarri administraziorako erabiltzaile izena.", "Set an admin password." : "Ezarri administraziorako pasahitza.", "Can't create or write into the data directory %s" : "Ezin da %s datu karpeta sortu edo bertan idatzi ", + "Invalid Federated Cloud ID" : "Federatutako Hodei ID ezegokia", "Sharing backend %s must implement the interface OCP\\Share_Backend" : "%s elkarbanaketa motorra OCP\\Share_Backend interfazea inplementatu behar du ", "Sharing backend %s not found" : "Ez da %s elkarbanaketa motorra aurkitu", "Sharing backend for %s not found" : "Ez da %srako elkarbanaketa motorrik aurkitu", "Open »%s«" : "Ireki »%s«", "You are not allowed to share %s" : "Ez zadue %s elkarbanatzeko baimendua", "Expiration date is in the past" : "Iraungitze-data iraganean dago", + "Click the button below to open it." : "Egin klik beheko botoian hura irekitzeko", "Could not find category \"%s\"" : "Ezin da \"%s\" kategoria aurkitu", "Sunday" : "Igandea", "Monday" : "Astelehena", @@ -127,6 +131,7 @@ OC.L10N.register( "Could not create user" : "Ezin izan da erabiltzailea sortu", "User disabled" : "Erabiltzaile desgaituta", "Login canceled by app" : "Aplikazioa saioa bertan behera utzi du", + "a safe home for all your data" : "zure datu guztientzako toki segurua", "File is currently busy, please try again later" : "Fitxategia lanpetuta dago, saiatu berriro geroago", "Can't read file" : "Ezin da fitxategia irakurri", "Application is not enabled" : "Aplikazioa ez dago gaituta", @@ -142,6 +147,7 @@ OC.L10N.register( "Adjusting this setting in php.ini will make Nextcloud run again" : "Ezarpen hau php.ini fitxategian doitzen bada, Nextcloud berriro exekutatuko da", "libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 2.7.0 bertsioa edo berriagoa behar da. Orain %s dago instalatuta.", "To fix this issue update your libxml2 version and restart your web server." : "Arazo hori konpontzeko, eguneratu zure libxml2 bertsioa eta berrabiarazi web zerbitzaria.", + "PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP lerro bakarreko blokeak mozteko konfiguratua dagoela dirudi. Oinarrizko app batzuk eskuraezin bihurtuko dira.", "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Hau ziur aski cache/accelerator batek eragin du, hala nola Zend OPcache edo eAccelerator.", "PHP modules have been installed, but they are still listed as missing?" : "PHP moduluak instalatu dira, baina oraindik faltan bezala markatuta daude?", "Please ask your server administrator to restart the web server." : "Mesedez eskatu zerbitzariaren kudeatzaileari web zerbitzaria berrabiarazteko.", @@ -150,17 +156,20 @@ OC.L10N.register( "Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Mesedez aldatu baimenak 0770ra beste erabiltzaileek karpetan sartu ezin izateko.", "Could not obtain lock type %d on \"%s\"." : "Ezin da lortu sarraia mota %d \"%s\"-an.", "Storage connection error. %s" : "Biltegiratze-konexioaren errorea. %s", + "Storage is temporarily not available" : "Biltegia ez dago erabilgarri aldi baterako", "Create" : "Sortu", "Change" : "Aldatu", "Delete" : "Ezabatu", "Share" : "Partekatu", "Unlimited" : "Mugagabea", "Verifying" : "Egiaztatzen", + "Verifying …" : "Egiaztatzen...", "Verify" : "Egiaztatu", "Sharing %s failed, because the backend does not allow shares from type %i" : "%s partekatzeak huts egin du, motorrak %i motako partekatzeak baimentzen ez dituelako", "Sharing %s failed, because the file does not exist" : "%s elkarbanatzeak huts egin du, fitxategia ez delako existitzen", "You need to provide a password to create a public link, only protected links are allowed" : "Lotura publiko bat sortzeko pasahitza idatzi behar duzu, bakarrik babestutako loturak baimenduta daude", "Sharing %s failed, because sharing with links is not allowed" : "%s elkarbanatzeak huts egin du, lotura bidezko elkarbanatzea baimendua ez dagoelako", + "Not allowed to create a federated share with the same user" : "Ezin da erabiltzaile berdinarekin federatutako partekatzea sortu.", "Cannot set expiration date. Shares cannot expire later than %s after they have been shared" : "Ezin izan da iraungitze-data ezarri. Partekatzeak ezin dira partekatu eta %s baino beranduago iraungi.", "Cannot set expiration date. Expiration date is in the past" : "Ezin izan da iraungitze data ezarri. Iraungitze data iraganean dago.", "Sharing %s failed, because resharing is not allowed" : "%s elkarbanatzeak huts egin du, ber-elkarbanatzea baimenduta ez dagoelako", diff --git a/lib/l10n/eu.json b/lib/l10n/eu.json index 1e51d1bce63..b1c6f648540 100644 --- a/lib/l10n/eu.json +++ b/lib/l10n/eu.json @@ -47,12 +47,14 @@ "Help" : "Laguntza", "Apps" : "Aplikazioak", "Settings" : "Ezarpenak", + "Log out" : "Amaitu saioa", "Users" : "Erabiltzaileak", "Unknown user" : "Erabiltzaile ezezaguna", "Basic settings" : "Oinarrizko ezarpenak", "Sharing" : "Partekatze", "Security" : "Segurtasuna", "Additional settings" : "Ezarpen gehiago", + "Personal info" : "Informazio pertsonala", "Mobile & desktop" : "Mugikorra eta mahaigaina", "%s enter the database username and name." : "%s sartu datu-basearen erabiltzaile-izena eta izena.", "%s enter the database username." : "%s sartu datu basearen erabiltzaile izena.", @@ -67,12 +69,14 @@ "Set an admin username." : "Ezarri administraziorako erabiltzaile izena.", "Set an admin password." : "Ezarri administraziorako pasahitza.", "Can't create or write into the data directory %s" : "Ezin da %s datu karpeta sortu edo bertan idatzi ", + "Invalid Federated Cloud ID" : "Federatutako Hodei ID ezegokia", "Sharing backend %s must implement the interface OCP\\Share_Backend" : "%s elkarbanaketa motorra OCP\\Share_Backend interfazea inplementatu behar du ", "Sharing backend %s not found" : "Ez da %s elkarbanaketa motorra aurkitu", "Sharing backend for %s not found" : "Ez da %srako elkarbanaketa motorrik aurkitu", "Open »%s«" : "Ireki »%s«", "You are not allowed to share %s" : "Ez zadue %s elkarbanatzeko baimendua", "Expiration date is in the past" : "Iraungitze-data iraganean dago", + "Click the button below to open it." : "Egin klik beheko botoian hura irekitzeko", "Could not find category \"%s\"" : "Ezin da \"%s\" kategoria aurkitu", "Sunday" : "Igandea", "Monday" : "Astelehena", @@ -125,6 +129,7 @@ "Could not create user" : "Ezin izan da erabiltzailea sortu", "User disabled" : "Erabiltzaile desgaituta", "Login canceled by app" : "Aplikazioa saioa bertan behera utzi du", + "a safe home for all your data" : "zure datu guztientzako toki segurua", "File is currently busy, please try again later" : "Fitxategia lanpetuta dago, saiatu berriro geroago", "Can't read file" : "Ezin da fitxategia irakurri", "Application is not enabled" : "Aplikazioa ez dago gaituta", @@ -140,6 +145,7 @@ "Adjusting this setting in php.ini will make Nextcloud run again" : "Ezarpen hau php.ini fitxategian doitzen bada, Nextcloud berriro exekutatuko da", "libxml2 2.7.0 is at least required. Currently %s is installed." : "libxml2 2.7.0 bertsioa edo berriagoa behar da. Orain %s dago instalatuta.", "To fix this issue update your libxml2 version and restart your web server." : "Arazo hori konpontzeko, eguneratu zure libxml2 bertsioa eta berrabiarazi web zerbitzaria.", + "PHP is apparently set up to strip inline doc blocks. This will make several core apps inaccessible." : "PHP lerro bakarreko blokeak mozteko konfiguratua dagoela dirudi. Oinarrizko app batzuk eskuraezin bihurtuko dira.", "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Hau ziur aski cache/accelerator batek eragin du, hala nola Zend OPcache edo eAccelerator.", "PHP modules have been installed, but they are still listed as missing?" : "PHP moduluak instalatu dira, baina oraindik faltan bezala markatuta daude?", "Please ask your server administrator to restart the web server." : "Mesedez eskatu zerbitzariaren kudeatzaileari web zerbitzaria berrabiarazteko.", @@ -148,17 +154,20 @@ "Please change the permissions to 0770 so that the directory cannot be listed by other users." : "Mesedez aldatu baimenak 0770ra beste erabiltzaileek karpetan sartu ezin izateko.", "Could not obtain lock type %d on \"%s\"." : "Ezin da lortu sarraia mota %d \"%s\"-an.", "Storage connection error. %s" : "Biltegiratze-konexioaren errorea. %s", + "Storage is temporarily not available" : "Biltegia ez dago erabilgarri aldi baterako", "Create" : "Sortu", "Change" : "Aldatu", "Delete" : "Ezabatu", "Share" : "Partekatu", "Unlimited" : "Mugagabea", "Verifying" : "Egiaztatzen", + "Verifying …" : "Egiaztatzen...", "Verify" : "Egiaztatu", "Sharing %s failed, because the backend does not allow shares from type %i" : "%s partekatzeak huts egin du, motorrak %i motako partekatzeak baimentzen ez dituelako", "Sharing %s failed, because the file does not exist" : "%s elkarbanatzeak huts egin du, fitxategia ez delako existitzen", "You need to provide a password to create a public link, only protected links are allowed" : "Lotura publiko bat sortzeko pasahitza idatzi behar duzu, bakarrik babestutako loturak baimenduta daude", "Sharing %s failed, because sharing with links is not allowed" : "%s elkarbanatzeak huts egin du, lotura bidezko elkarbanatzea baimendua ez dagoelako", + "Not allowed to create a federated share with the same user" : "Ezin da erabiltzaile berdinarekin federatutako partekatzea sortu.", "Cannot set expiration date. Shares cannot expire later than %s after they have been shared" : "Ezin izan da iraungitze-data ezarri. Partekatzeak ezin dira partekatu eta %s baino beranduago iraungi.", "Cannot set expiration date. Expiration date is in the past" : "Ezin izan da iraungitze data ezarri. Iraungitze data iraganean dago.", "Sharing %s failed, because resharing is not allowed" : "%s elkarbanatzeak huts egin du, ber-elkarbanatzea baimenduta ez dagoelako", diff --git a/lib/l10n/fa.js b/lib/l10n/fa.js index 0ca28d50168..4336008d0db 100644 --- a/lib/l10n/fa.js +++ b/lib/l10n/fa.js @@ -8,6 +8,7 @@ OC.L10N.register( "Following databases are supported: %s" : "پایگاهداده های ذکر شده مورد نیاز است: %s", "The command line tool %s could not be found" : "ابزار کامندلاین %s پیدا نشد", "The library %s is not available." : "کتابخانهی %s در دسترس نیست.", + "Authentication" : "احراز هویت", "Unknown filetype" : "نوع فایل ناشناخته", "Invalid image" : "عکس نامعتبر", "today" : "امروز", @@ -25,9 +26,14 @@ OC.L10N.register( "File name is too long" : "نام فایل خیلی بزرگ است", "Empty filename is not allowed" : "نام فایل نمیتواند خالی باشد", "__language_name__" : "فارسى", + "Help" : "کمک", "Apps" : " برنامه ها", + "Settings" : "تنظیمات", + "Log out" : "خروج", "Users" : "کاربران", "Unknown user" : "کاربر نامعلوم", + "Sharing" : "اشتراک گذاری", + "Personal info" : "مشخصات شخصی", "%s enter the database username." : "%s نام کاربری پایگاه داده را وارد نمایید.", "%s enter the database name." : "%s نام پایگاه داده را وارد نمایید.", "%s you may not use dots in the database name" : "%s شما نباید از نقطه در نام پایگاه داده استفاده نمایید.", @@ -37,6 +43,51 @@ OC.L10N.register( "Set an admin username." : "یک نام کاربری برای مدیر تنظیم نمایید.", "Set an admin password." : "یک رمزعبور برای مدیر تنظیم نمایید.", "Could not find category \"%s\"" : "دسته بندی %s یافت نشد", + "Sunday" : "یکشنبه", + "Monday" : "دوشنبه", + "Tuesday" : "سه شنبه", + "Wednesday" : "چهارشنبه", + "Thursday" : "پنجشنبه", + "Friday" : "جمعه", + "Saturday" : "شنبه", + "Sun." : "یکشنبه", + "Mon." : "دوشنبه", + "Tue." : "سه شنبه", + "Wed." : "چهارشنبه", + "Thu." : "پنج شنبه", + "Fri." : "جمعه", + "Sat." : "شنبه", + "Su" : "یکشنبه", + "Mo" : "دوشنبه", + "Tu" : "سهشنبه", + "We" : "چهارشنبه", + "Th" : "پنجشنبه", + "Fr" : "جمعه", + "Sa" : "شنبه", + "January" : "ژانویه", + "February" : "فبریه", + "March" : "مارس", + "April" : "آوریل", + "May" : "می", + "June" : "ژوئن", + "July" : "جولای", + "August" : "آگوست", + "September" : "سپتامبر", + "October" : "اکتبر", + "November" : "نوامبر", + "December" : "دسامبر", + "Jan." : "ژانویه", + "Feb." : "فوریه", + "Mar." : "مارچ", + "Apr." : "آوریل", + "May." : "می", + "Jun." : "ژوئن", + "Jul." : "جولای", + "Aug." : "آگوست", + "Sep." : "سپتامبر", + "Oct." : "اکتبر", + "Nov." : "نوامبر", + "Dec." : "دسامبر", "A valid username must be provided" : "نام کاربری صحیح باید وارد شود", "A valid password must be provided" : "رمز عبور صحیح باید وارد شود", "The username is already being used" : "نامکاربری قبلا استفاده شده است", @@ -50,6 +101,10 @@ OC.L10N.register( "Please ask your server administrator to install the module." : "لطفا از مدیر سیستم بخواهید تا ماژول را نصب کند.", "PHP module %s not installed." : "ماژول PHP %s نصب نشده است.", "PostgreSQL >= 9 required" : "PostgreSQL >= 9 نیاز است", - "Please upgrade your database version" : "لطفا نسخهی پایگاهدادهی خود را بروز کنید" + "Please upgrade your database version" : "لطفا نسخهی پایگاهدادهی خود را بروز کنید", + "Create" : "ایجاد کردن", + "Delete" : "حذف", + "Share" : "همرسانی", + "Unlimited" : "نامحدود" }, "nplurals=2; plural=(n > 1);"); diff --git a/lib/l10n/fa.json b/lib/l10n/fa.json index 1f2b60c9d67..fbbd7c82ffa 100644 --- a/lib/l10n/fa.json +++ b/lib/l10n/fa.json @@ -6,6 +6,7 @@ "Following databases are supported: %s" : "پایگاهداده های ذکر شده مورد نیاز است: %s", "The command line tool %s could not be found" : "ابزار کامندلاین %s پیدا نشد", "The library %s is not available." : "کتابخانهی %s در دسترس نیست.", + "Authentication" : "احراز هویت", "Unknown filetype" : "نوع فایل ناشناخته", "Invalid image" : "عکس نامعتبر", "today" : "امروز", @@ -23,9 +24,14 @@ "File name is too long" : "نام فایل خیلی بزرگ است", "Empty filename is not allowed" : "نام فایل نمیتواند خالی باشد", "__language_name__" : "فارسى", + "Help" : "کمک", "Apps" : " برنامه ها", + "Settings" : "تنظیمات", + "Log out" : "خروج", "Users" : "کاربران", "Unknown user" : "کاربر نامعلوم", + "Sharing" : "اشتراک گذاری", + "Personal info" : "مشخصات شخصی", "%s enter the database username." : "%s نام کاربری پایگاه داده را وارد نمایید.", "%s enter the database name." : "%s نام پایگاه داده را وارد نمایید.", "%s you may not use dots in the database name" : "%s شما نباید از نقطه در نام پایگاه داده استفاده نمایید.", @@ -35,6 +41,51 @@ "Set an admin username." : "یک نام کاربری برای مدیر تنظیم نمایید.", "Set an admin password." : "یک رمزعبور برای مدیر تنظیم نمایید.", "Could not find category \"%s\"" : "دسته بندی %s یافت نشد", + "Sunday" : "یکشنبه", + "Monday" : "دوشنبه", + "Tuesday" : "سه شنبه", + "Wednesday" : "چهارشنبه", + "Thursday" : "پنجشنبه", + "Friday" : "جمعه", + "Saturday" : "شنبه", + "Sun." : "یکشنبه", + "Mon." : "دوشنبه", + "Tue." : "سه شنبه", + "Wed." : "چهارشنبه", + "Thu." : "پنج شنبه", + "Fri." : "جمعه", + "Sat." : "شنبه", + "Su" : "یکشنبه", + "Mo" : "دوشنبه", + "Tu" : "سهشنبه", + "We" : "چهارشنبه", + "Th" : "پنجشنبه", + "Fr" : "جمعه", + "Sa" : "شنبه", + "January" : "ژانویه", + "February" : "فبریه", + "March" : "مارس", + "April" : "آوریل", + "May" : "می", + "June" : "ژوئن", + "July" : "جولای", + "August" : "آگوست", + "September" : "سپتامبر", + "October" : "اکتبر", + "November" : "نوامبر", + "December" : "دسامبر", + "Jan." : "ژانویه", + "Feb." : "فوریه", + "Mar." : "مارچ", + "Apr." : "آوریل", + "May." : "می", + "Jun." : "ژوئن", + "Jul." : "جولای", + "Aug." : "آگوست", + "Sep." : "سپتامبر", + "Oct." : "اکتبر", + "Nov." : "نوامبر", + "Dec." : "دسامبر", "A valid username must be provided" : "نام کاربری صحیح باید وارد شود", "A valid password must be provided" : "رمز عبور صحیح باید وارد شود", "The username is already being used" : "نامکاربری قبلا استفاده شده است", @@ -48,6 +99,10 @@ "Please ask your server administrator to install the module." : "لطفا از مدیر سیستم بخواهید تا ماژول را نصب کند.", "PHP module %s not installed." : "ماژول PHP %s نصب نشده است.", "PostgreSQL >= 9 required" : "PostgreSQL >= 9 نیاز است", - "Please upgrade your database version" : "لطفا نسخهی پایگاهدادهی خود را بروز کنید" + "Please upgrade your database version" : "لطفا نسخهی پایگاهدادهی خود را بروز کنید", + "Create" : "ایجاد کردن", + "Delete" : "حذف", + "Share" : "همرسانی", + "Unlimited" : "نامحدود" },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/lib/l10n/fi.js b/lib/l10n/fi.js index 9cb94f725d1..ba3d4de457c 100644 --- a/lib/l10n/fi.js +++ b/lib/l10n/fi.js @@ -20,6 +20,7 @@ OC.L10N.register( "Server version %s or higher is required." : "Palvelinversio %s tai sitä uudempi vaaditaan.", "Server version %s or lower is required." : "Palvelinversio %s tai alhaisempi vaaditaan.", "Logged in user must be an admin" : "Sisäänkirjautuneen käyttäjän tulee olla ylläpitäjä", + "Authentication" : "Tunnistautuminen", "Unknown filetype" : "Tuntematon tiedostotyyppi", "Invalid image" : "Virheellinen kuva", "Avatar image is not square" : "Avatar-kuva ei ole neliö", diff --git a/lib/l10n/fi.json b/lib/l10n/fi.json index 48ba8e0ee6b..301019f7ad4 100644 --- a/lib/l10n/fi.json +++ b/lib/l10n/fi.json @@ -18,6 +18,7 @@ "Server version %s or higher is required." : "Palvelinversio %s tai sitä uudempi vaaditaan.", "Server version %s or lower is required." : "Palvelinversio %s tai alhaisempi vaaditaan.", "Logged in user must be an admin" : "Sisäänkirjautuneen käyttäjän tulee olla ylläpitäjä", + "Authentication" : "Tunnistautuminen", "Unknown filetype" : "Tuntematon tiedostotyyppi", "Invalid image" : "Virheellinen kuva", "Avatar image is not square" : "Avatar-kuva ei ole neliö", diff --git a/lib/l10n/fo.js b/lib/l10n/fo.js new file mode 100644 index 00000000000..f5d041dd35f --- /dev/null +++ b/lib/l10n/fo.js @@ -0,0 +1,9 @@ +OC.L10N.register( + "lib", + { + "Security" : "Trygd", + "Authentication error" : "Samgildis feilur", + "Delete" : "Strika", + "Unlimited" : "Óavmarkað" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/lib/l10n/fo.json b/lib/l10n/fo.json new file mode 100644 index 00000000000..76f19bb7854 --- /dev/null +++ b/lib/l10n/fo.json @@ -0,0 +1,7 @@ +{ "translations": { + "Security" : "Trygd", + "Authentication error" : "Samgildis feilur", + "Delete" : "Strika", + "Unlimited" : "Óavmarkað" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +}
\ No newline at end of file diff --git a/lib/l10n/fr.js b/lib/l10n/fr.js index c3974298016..f9e67fefe68 100644 --- a/lib/l10n/fr.js +++ b/lib/l10n/fr.js @@ -66,6 +66,7 @@ OC.L10N.register( "_%n minute ago_::_%n minutes ago_" : ["il y a %n minute","il y a %n minutes"], "in a few seconds" : "dans quelques secondes", "seconds ago" : "il y a quelques secondes", + "Empty file" : "Fichier vide", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Le module avec l'ID: %s n'existe pas. Merci de l'activer dans les paramètres d'applications ou de contacter votre administrateur.", "File name is a reserved word" : "Ce nom de fichier est un mot réservé", "File name contains at least one invalid character" : "Le nom de fichier contient un (des) caractère(s) non valide(s)", diff --git a/lib/l10n/fr.json b/lib/l10n/fr.json index e92054b24e6..c3e778859de 100644 --- a/lib/l10n/fr.json +++ b/lib/l10n/fr.json @@ -64,6 +64,7 @@ "_%n minute ago_::_%n minutes ago_" : ["il y a %n minute","il y a %n minutes"], "in a few seconds" : "dans quelques secondes", "seconds ago" : "il y a quelques secondes", + "Empty file" : "Fichier vide", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Le module avec l'ID: %s n'existe pas. Merci de l'activer dans les paramètres d'applications ou de contacter votre administrateur.", "File name is a reserved word" : "Ce nom de fichier est un mot réservé", "File name contains at least one invalid character" : "Le nom de fichier contient un (des) caractère(s) non valide(s)", diff --git a/lib/l10n/gl.js b/lib/l10n/gl.js index 21edaf5f2fc..351c51a9956 100644 --- a/lib/l10n/gl.js +++ b/lib/l10n/gl.js @@ -66,6 +66,7 @@ OC.L10N.register( "_%n minute ago_::_%n minutes ago_" : ["hai %n minuto","hai %n minutos"], "in a few seconds" : "en poucos segundos", "seconds ago" : "segundos atrás", + "Empty file" : "Ficheiro baleiro", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Non existe o módulo co ID: %s. Actíveo nos axustes das aplicacións ou contacte co administrador.", "File name is a reserved word" : "O nome de ficheiro é unha palabra reservada", "File name contains at least one invalid character" : "O nome de ficheiro contén algún carácter incorrecto", diff --git a/lib/l10n/gl.json b/lib/l10n/gl.json index 7d2f1c973d9..73fbbec900b 100644 --- a/lib/l10n/gl.json +++ b/lib/l10n/gl.json @@ -64,6 +64,7 @@ "_%n minute ago_::_%n minutes ago_" : ["hai %n minuto","hai %n minutos"], "in a few seconds" : "en poucos segundos", "seconds ago" : "segundos atrás", + "Empty file" : "Ficheiro baleiro", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Non existe o módulo co ID: %s. Actíveo nos axustes das aplicacións ou contacte co administrador.", "File name is a reserved word" : "O nome de ficheiro é unha palabra reservada", "File name contains at least one invalid character" : "O nome de ficheiro contén algún carácter incorrecto", diff --git a/lib/l10n/he.js b/lib/l10n/he.js index 7c3d81a9c38..70f1ccd0f3b 100644 --- a/lib/l10n/he.js +++ b/lib/l10n/he.js @@ -25,6 +25,7 @@ OC.L10N.register( "Server version %s or higher is required." : "נדרשת גרסה שרת %s ומעלה.", "Server version %s or lower is required." : "נדרשת גרסה שרת %s ומטה.", "Logged in user must be an admin" : "על המשתמש שנכנס להיות מנהל", + "Authentication" : "אימות", "Unknown filetype" : "סוג קובץ לא מוכר", "Invalid image" : "תמונה לא חוקית", "Avatar image is not square" : "התמונה המייצגת אינה מרובעת", diff --git a/lib/l10n/he.json b/lib/l10n/he.json index b4c07d92fd7..a6c8bf052f9 100644 --- a/lib/l10n/he.json +++ b/lib/l10n/he.json @@ -23,6 +23,7 @@ "Server version %s or higher is required." : "נדרשת גרסה שרת %s ומעלה.", "Server version %s or lower is required." : "נדרשת גרסה שרת %s ומטה.", "Logged in user must be an admin" : "על המשתמש שנכנס להיות מנהל", + "Authentication" : "אימות", "Unknown filetype" : "סוג קובץ לא מוכר", "Invalid image" : "תמונה לא חוקית", "Avatar image is not square" : "התמונה המייצגת אינה מרובעת", diff --git a/lib/l10n/hu.js b/lib/l10n/hu.js index 7208d92789d..31e8a19761b 100644 --- a/lib/l10n/hu.js +++ b/lib/l10n/hu.js @@ -29,6 +29,7 @@ OC.L10N.register( "Server version %s or higher is required." : "%s vagy újabb szerver verzió szükséges.", "Server version %s or lower is required." : "%s vagy régebbi szerver verzió szükséges.", "Logged in user must be an admin" : "A bejelentkezett felhasználónak rendszergazdának kell lennie", + "Authentication" : "Hitelesítés", "Unknown filetype" : "Ismeretlen fájl típus", "Invalid image" : "Hibás kép", "Avatar image is not square" : "Az avatár kép nem négyzetes.", diff --git a/lib/l10n/hu.json b/lib/l10n/hu.json index 38f72d2ac92..1d4cf399e84 100644 --- a/lib/l10n/hu.json +++ b/lib/l10n/hu.json @@ -27,6 +27,7 @@ "Server version %s or higher is required." : "%s vagy újabb szerver verzió szükséges.", "Server version %s or lower is required." : "%s vagy régebbi szerver verzió szükséges.", "Logged in user must be an admin" : "A bejelentkezett felhasználónak rendszergazdának kell lennie", + "Authentication" : "Hitelesítés", "Unknown filetype" : "Ismeretlen fájl típus", "Invalid image" : "Hibás kép", "Avatar image is not square" : "Az avatár kép nem négyzetes.", diff --git a/lib/l10n/hy.js b/lib/l10n/hy.js index e23c4d99ad6..2f1bfb4b0db 100644 --- a/lib/l10n/hy.js +++ b/lib/l10n/hy.js @@ -4,6 +4,57 @@ OC.L10N.register( "today" : "այսօր", "seconds ago" : "վրկ. առաջ", "File name contains at least one invalid character" : "Ֆայլի անունը առնվազն մի անվավեր նիշ է պարունակում", - "__language_name__" : "Հայերեն" + "__language_name__" : "Հայերեն", + "Help" : "Օգնություն", + "Settings" : "կարգավորումներ", + "Log out" : "Դուրս գալ", + "Sunday" : "Կիրակի", + "Monday" : "Երկուշաբթի", + "Tuesday" : "Երեքշաբթի", + "Wednesday" : "Չորեքշաբթի", + "Thursday" : "Հինգշաբթի", + "Friday" : "Ուրբաթ", + "Saturday" : "Շաբաթ", + "Sun." : "Կիր.", + "Mon." : "Երկ.", + "Tue." : "Երք.", + "Wed." : "Չոր.", + "Thu." : "Հնգ.", + "Fri." : "Ուրբ.", + "Sat." : "Շաբ.", + "Su" : "Կիր", + "Mo" : "Երկ", + "Tu" : "Երք", + "We" : "Չոր", + "Th" : "Հնգ", + "Fr" : "Ուրբ", + "Sa" : "Շաբ", + "January" : "Հունվար", + "February" : "Փետրվար", + "March" : "Մարտ", + "April" : "Ապրիլ", + "May" : "Մայիս", + "June" : "Հունիս", + "July" : "Հուլիս", + "August" : "Օգոստոս", + "September" : "Սեպտեմբեր", + "October" : "Հոկտեմբեր", + "November" : "Նոյեմբեր", + "December" : "Դեկտեմբեր", + "Jan." : "Հնվ.", + "Feb." : "Փտվ.", + "Mar." : "Մրտ.", + "Apr." : "Ապր.", + "May." : "Մյս.", + "Jun." : "Հնս.", + "Jul." : "Հլս.", + "Aug." : "Օգս.", + "Sep." : "Սեպ.", + "Oct." : "Հոկ.", + "Nov." : "Նոյ.", + "Dec." : "Դեկ.", + "Create" : "Ստեղծել", + "Delete" : "հեռացնել", + "Share" : "Կիսվել" }, "nplurals=2; plural=(n != 1);"); diff --git a/lib/l10n/hy.json b/lib/l10n/hy.json index 5d34089f62f..8e096128ff6 100644 --- a/lib/l10n/hy.json +++ b/lib/l10n/hy.json @@ -2,6 +2,57 @@ "today" : "այսօր", "seconds ago" : "վրկ. առաջ", "File name contains at least one invalid character" : "Ֆայլի անունը առնվազն մի անվավեր նիշ է պարունակում", - "__language_name__" : "Հայերեն" + "__language_name__" : "Հայերեն", + "Help" : "Օգնություն", + "Settings" : "կարգավորումներ", + "Log out" : "Դուրս գալ", + "Sunday" : "Կիրակի", + "Monday" : "Երկուշաբթի", + "Tuesday" : "Երեքշաբթի", + "Wednesday" : "Չորեքշաբթի", + "Thursday" : "Հինգշաբթի", + "Friday" : "Ուրբաթ", + "Saturday" : "Շաբաթ", + "Sun." : "Կիր.", + "Mon." : "Երկ.", + "Tue." : "Երք.", + "Wed." : "Չոր.", + "Thu." : "Հնգ.", + "Fri." : "Ուրբ.", + "Sat." : "Շաբ.", + "Su" : "Կիր", + "Mo" : "Երկ", + "Tu" : "Երք", + "We" : "Չոր", + "Th" : "Հնգ", + "Fr" : "Ուրբ", + "Sa" : "Շաբ", + "January" : "Հունվար", + "February" : "Փետրվար", + "March" : "Մարտ", + "April" : "Ապրիլ", + "May" : "Մայիս", + "June" : "Հունիս", + "July" : "Հուլիս", + "August" : "Օգոստոս", + "September" : "Սեպտեմբեր", + "October" : "Հոկտեմբեր", + "November" : "Նոյեմբեր", + "December" : "Դեկտեմբեր", + "Jan." : "Հնվ.", + "Feb." : "Փտվ.", + "Mar." : "Մրտ.", + "Apr." : "Ապր.", + "May." : "Մյս.", + "Jun." : "Հնս.", + "Jul." : "Հլս.", + "Aug." : "Օգս.", + "Sep." : "Սեպ.", + "Oct." : "Հոկ.", + "Nov." : "Նոյ.", + "Dec." : "Դեկ.", + "Create" : "Ստեղծել", + "Delete" : "հեռացնել", + "Share" : "Կիսվել" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/lib/l10n/ia.js b/lib/l10n/ia.js index e8c4a258aaa..6c30711fe7d 100644 --- a/lib/l10n/ia.js +++ b/lib/l10n/ia.js @@ -1,6 +1,72 @@ OC.L10N.register( "lib", { - "__language_name__" : "Interlingua de IALA" + "Authentication" : "Authentication", + "Unknown filetype" : "Typo de file incognite", + "Invalid image" : "Imagine invalide", + "seconds ago" : "secundas passate", + "__language_name__" : "Interlingua de IALA", + "Help" : "Adjuta", + "Settings" : "Configurationes", + "Log out" : "Clauder session", + "Users" : "Usatores", + "Unknown user" : "Usator incognite", + "Sharing" : "Compartente", + "Personal info" : "Information personal", + "Invalid Federated Cloud ID" : "ID del Nube Federate", + "Sunday" : "Dominica", + "Monday" : "Lunedi", + "Tuesday" : "Martedi", + "Wednesday" : "Mercuridi", + "Thursday" : "Jovedi", + "Friday" : "Venerdi", + "Saturday" : "Sabbato", + "Sun." : "Dom.", + "Mon." : "Lun.", + "Tue." : "Mar.", + "Wed." : "Mer.", + "Thu." : "Jov.", + "Fri." : "Ven.", + "Sat." : "Sab.", + "Su" : "Do", + "Mo" : "Lu", + "Tu" : "Ma", + "We" : "Me", + "Th" : "Jo", + "Fr" : "Ve", + "Sa" : "Sa", + "January" : "Januario", + "February" : "Februario", + "March" : "Martio", + "April" : "April", + "May" : "Maio", + "June" : "Junio", + "July" : "Julio", + "August" : "Augusto", + "September" : "Septembre", + "October" : "Octobre", + "November" : "Novembre", + "December" : "Decembre", + "Jan." : "Jan.", + "Feb." : "Feb.", + "Mar." : "Mar.", + "Apr." : "Apr.", + "May." : "Mai.", + "Jun." : "Jun.", + "Jul." : "Jul.", + "Aug." : "Aug.", + "Sep." : "Sep.", + "Oct." : "Oct.", + "Nov." : "Nov.", + "Dec." : "Dec.", + "A valid username must be provided" : "Un nomine de usator valide debe esser providite", + "A valid password must be provided" : "Un contrasigno valide debe esser providite", + "Authentication error" : "Error in authentication", + "Storage is temporarily not available" : "Immagazinage es provisorimente non disponibile", + "Create" : "Crear", + "Delete" : "Deler", + "Share" : "Compartir", + "Unlimited" : "Ilimitate", + "Not allowed to create a federated share with the same user" : "Il non es permittite crear le Compartir Federate con le mesme usator." }, "nplurals=2; plural=(n != 1);"); diff --git a/lib/l10n/ia.json b/lib/l10n/ia.json index 8ecec87ba44..c962ee58c06 100644 --- a/lib/l10n/ia.json +++ b/lib/l10n/ia.json @@ -1,4 +1,70 @@ { "translations": { - "__language_name__" : "Interlingua de IALA" + "Authentication" : "Authentication", + "Unknown filetype" : "Typo de file incognite", + "Invalid image" : "Imagine invalide", + "seconds ago" : "secundas passate", + "__language_name__" : "Interlingua de IALA", + "Help" : "Adjuta", + "Settings" : "Configurationes", + "Log out" : "Clauder session", + "Users" : "Usatores", + "Unknown user" : "Usator incognite", + "Sharing" : "Compartente", + "Personal info" : "Information personal", + "Invalid Federated Cloud ID" : "ID del Nube Federate", + "Sunday" : "Dominica", + "Monday" : "Lunedi", + "Tuesday" : "Martedi", + "Wednesday" : "Mercuridi", + "Thursday" : "Jovedi", + "Friday" : "Venerdi", + "Saturday" : "Sabbato", + "Sun." : "Dom.", + "Mon." : "Lun.", + "Tue." : "Mar.", + "Wed." : "Mer.", + "Thu." : "Jov.", + "Fri." : "Ven.", + "Sat." : "Sab.", + "Su" : "Do", + "Mo" : "Lu", + "Tu" : "Ma", + "We" : "Me", + "Th" : "Jo", + "Fr" : "Ve", + "Sa" : "Sa", + "January" : "Januario", + "February" : "Februario", + "March" : "Martio", + "April" : "April", + "May" : "Maio", + "June" : "Junio", + "July" : "Julio", + "August" : "Augusto", + "September" : "Septembre", + "October" : "Octobre", + "November" : "Novembre", + "December" : "Decembre", + "Jan." : "Jan.", + "Feb." : "Feb.", + "Mar." : "Mar.", + "Apr." : "Apr.", + "May." : "Mai.", + "Jun." : "Jun.", + "Jul." : "Jul.", + "Aug." : "Aug.", + "Sep." : "Sep.", + "Oct." : "Oct.", + "Nov." : "Nov.", + "Dec." : "Dec.", + "A valid username must be provided" : "Un nomine de usator valide debe esser providite", + "A valid password must be provided" : "Un contrasigno valide debe esser providite", + "Authentication error" : "Error in authentication", + "Storage is temporarily not available" : "Immagazinage es provisorimente non disponibile", + "Create" : "Crear", + "Delete" : "Deler", + "Share" : "Compartir", + "Unlimited" : "Ilimitate", + "Not allowed to create a federated share with the same user" : "Il non es permittite crear le Compartir Federate con le mesme usator." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/lib/l10n/id.js b/lib/l10n/id.js index d389647d3e5..0a2f182d074 100644 --- a/lib/l10n/id.js +++ b/lib/l10n/id.js @@ -15,6 +15,7 @@ OC.L10N.register( "Following platforms are supported: %s" : "Berikut adalah platform yang didukung: %s", "Server version %s or higher is required." : "Server versi %s atau yang lebih tinggi diperlukan.", "Server version %s or lower is required." : "Server versi %s atau yang lebih rendah diperlukan.", + "Authentication" : "Otentikasi", "Unknown filetype" : "Tipe berkas tak dikenal", "Invalid image" : "Gambar tidak sah", "today" : "hari ini", @@ -37,9 +38,13 @@ OC.L10N.register( "__language_name__" : "Bahasa Indonesia", "Help" : "Bantuan", "Apps" : "aplikasi", + "Settings" : "Setelan", "Log out" : "Keluar", "Users" : "Pengguna", "Unknown user" : "Pengguna tidak dikenal", + "Sharing" : "Berbagi", + "Security" : "Keamanan", + "Personal info" : "Info pribadi", "%s enter the database username and name." : "%s masukkan nama pengguna database dan nama database.", "%s enter the database username." : "%s masukkan nama pengguna basis data.", "%s enter the database name." : "%s masukkan nama basis data.", @@ -58,9 +63,55 @@ OC.L10N.register( "Sharing backend %s must implement the interface OCP\\Share_Backend" : "Backend berbagi %s harus mengimplementasi antarmuka OCP\\Share_Backend", "Sharing backend %s not found" : "Backend berbagi %s tidak ditemukan", "Sharing backend for %s not found" : "Backend berbagi untuk %s tidak ditemukan", + "Open »%s«" : "Buka »%s«", "You are not allowed to share %s" : "Anda tidak diizinkan untuk membagikan %s", "Expiration date is in the past" : "Tanggal kedaluwarsa sudah lewat", "Could not find category \"%s\"" : "Tidak menemukan kategori \"%s\"", + "Sunday" : "Minggu", + "Monday" : "Senin", + "Tuesday" : "Selasa", + "Wednesday" : "Rabu", + "Thursday" : "Kamis", + "Friday" : "Jumat", + "Saturday" : "Sabtu", + "Sun." : "Min.", + "Mon." : "Sen.", + "Tue." : "Sel.", + "Wed." : "Rab.", + "Thu." : "Kam.", + "Fri." : "Jum.", + "Sat." : "Sab.", + "Su" : "Min", + "Mo" : "Sen", + "Tu" : "Sel", + "We" : "Rab", + "Th" : "Kam", + "Fr" : "Jum", + "Sa" : "Sab", + "January" : "Januari", + "February" : "Februari", + "March" : "Maret", + "April" : "April", + "May" : "Mei", + "June" : "Juni", + "July" : "Juli", + "August" : "Agustus", + "September" : "September", + "October" : "Oktober", + "November" : "November", + "December" : "Desember", + "Jan." : "Jan.", + "Feb." : "Feb.", + "Mar." : "Mar.", + "Apr." : "Apr.", + "May." : "Mei", + "Jun." : "Jun.", + "Jul." : "Jul.", + "Aug." : "Agu.", + "Sep." : "Sep.", + "Oct." : "Okt.", + "Nov." : "Nov.", + "Dec." : "Des.", "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-'\"" : "Hanya karakter ini yang diizinkan dalam nama pengguna: \"a-z\", \"A-Z\", \"0-9\", dan \"_.@-'\"", "A valid username must be provided" : "Tuliskan nama pengguna yang valid", "Username contains whitespace at the beginning or at the end" : "Nama pengguna mengandung spasi di depan atau di belakang.", @@ -100,6 +151,12 @@ OC.L10N.register( "Storage incomplete configuration. %s" : "Konfigurasi penyimpanan tidak terselesaikan. %s", "Storage connection error. %s" : "Koneksi penyimpanan bermasalah. %s", "Storage connection timeout. %s" : "Koneksi penyimpanan waktu-habis. %s", + "Create" : "Buat", + "Delete" : "Hapus", + "Share" : "Bagikan", + "Unlimited" : "Tak terbatas", + "Verifying …" : "Sedang memferivikasi …", + "Verify" : "Verifikasi", "Sharing %s failed, because the backend does not allow shares from type %i" : "Gagal berbagi %s, karena backend tidak mengizinkan berbagi dengan tipe %i", "Sharing %s failed, because the file does not exist" : "Gagal membagikan %s, karena berkas tidak ada", "Sharing %s failed, because you can not share with yourself" : "Berbagi %s gagal, karena Anda tidak dapat berbagi dengan diri sendiri", diff --git a/lib/l10n/id.json b/lib/l10n/id.json index cd44340029a..dab95c7e956 100644 --- a/lib/l10n/id.json +++ b/lib/l10n/id.json @@ -13,6 +13,7 @@ "Following platforms are supported: %s" : "Berikut adalah platform yang didukung: %s", "Server version %s or higher is required." : "Server versi %s atau yang lebih tinggi diperlukan.", "Server version %s or lower is required." : "Server versi %s atau yang lebih rendah diperlukan.", + "Authentication" : "Otentikasi", "Unknown filetype" : "Tipe berkas tak dikenal", "Invalid image" : "Gambar tidak sah", "today" : "hari ini", @@ -35,9 +36,13 @@ "__language_name__" : "Bahasa Indonesia", "Help" : "Bantuan", "Apps" : "aplikasi", + "Settings" : "Setelan", "Log out" : "Keluar", "Users" : "Pengguna", "Unknown user" : "Pengguna tidak dikenal", + "Sharing" : "Berbagi", + "Security" : "Keamanan", + "Personal info" : "Info pribadi", "%s enter the database username and name." : "%s masukkan nama pengguna database dan nama database.", "%s enter the database username." : "%s masukkan nama pengguna basis data.", "%s enter the database name." : "%s masukkan nama basis data.", @@ -56,9 +61,55 @@ "Sharing backend %s must implement the interface OCP\\Share_Backend" : "Backend berbagi %s harus mengimplementasi antarmuka OCP\\Share_Backend", "Sharing backend %s not found" : "Backend berbagi %s tidak ditemukan", "Sharing backend for %s not found" : "Backend berbagi untuk %s tidak ditemukan", + "Open »%s«" : "Buka »%s«", "You are not allowed to share %s" : "Anda tidak diizinkan untuk membagikan %s", "Expiration date is in the past" : "Tanggal kedaluwarsa sudah lewat", "Could not find category \"%s\"" : "Tidak menemukan kategori \"%s\"", + "Sunday" : "Minggu", + "Monday" : "Senin", + "Tuesday" : "Selasa", + "Wednesday" : "Rabu", + "Thursday" : "Kamis", + "Friday" : "Jumat", + "Saturday" : "Sabtu", + "Sun." : "Min.", + "Mon." : "Sen.", + "Tue." : "Sel.", + "Wed." : "Rab.", + "Thu." : "Kam.", + "Fri." : "Jum.", + "Sat." : "Sab.", + "Su" : "Min", + "Mo" : "Sen", + "Tu" : "Sel", + "We" : "Rab", + "Th" : "Kam", + "Fr" : "Jum", + "Sa" : "Sab", + "January" : "Januari", + "February" : "Februari", + "March" : "Maret", + "April" : "April", + "May" : "Mei", + "June" : "Juni", + "July" : "Juli", + "August" : "Agustus", + "September" : "September", + "October" : "Oktober", + "November" : "November", + "December" : "Desember", + "Jan." : "Jan.", + "Feb." : "Feb.", + "Mar." : "Mar.", + "Apr." : "Apr.", + "May." : "Mei", + "Jun." : "Jun.", + "Jul." : "Jul.", + "Aug." : "Agu.", + "Sep." : "Sep.", + "Oct." : "Okt.", + "Nov." : "Nov.", + "Dec." : "Des.", "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-'\"" : "Hanya karakter ini yang diizinkan dalam nama pengguna: \"a-z\", \"A-Z\", \"0-9\", dan \"_.@-'\"", "A valid username must be provided" : "Tuliskan nama pengguna yang valid", "Username contains whitespace at the beginning or at the end" : "Nama pengguna mengandung spasi di depan atau di belakang.", @@ -98,6 +149,12 @@ "Storage incomplete configuration. %s" : "Konfigurasi penyimpanan tidak terselesaikan. %s", "Storage connection error. %s" : "Koneksi penyimpanan bermasalah. %s", "Storage connection timeout. %s" : "Koneksi penyimpanan waktu-habis. %s", + "Create" : "Buat", + "Delete" : "Hapus", + "Share" : "Bagikan", + "Unlimited" : "Tak terbatas", + "Verifying …" : "Sedang memferivikasi …", + "Verify" : "Verifikasi", "Sharing %s failed, because the backend does not allow shares from type %i" : "Gagal berbagi %s, karena backend tidak mengizinkan berbagi dengan tipe %i", "Sharing %s failed, because the file does not exist" : "Gagal membagikan %s, karena berkas tidak ada", "Sharing %s failed, because you can not share with yourself" : "Berbagi %s gagal, karena Anda tidak dapat berbagi dengan diri sendiri", diff --git a/lib/l10n/it.js b/lib/l10n/it.js index fcce2ff2201..c0996cadac5 100644 --- a/lib/l10n/it.js +++ b/lib/l10n/it.js @@ -66,6 +66,7 @@ OC.L10N.register( "_%n minute ago_::_%n minutes ago_" : ["%n minuto fa","%n minuti fa"], "in a few seconds" : "tra pochi secondi", "seconds ago" : "secondi fa", + "Empty file" : "File vuoto", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Il modulo con ID: %s non esiste. Abilitalo nelle impostazioni delle applicazioni o contatta il tuo amministratore.", "File name is a reserved word" : "Il nome del file è una parola riservata", "File name contains at least one invalid character" : "Il nome del file contiene almeno un carattere non valido", diff --git a/lib/l10n/it.json b/lib/l10n/it.json index 3728aefbc18..dc53fccff9f 100644 --- a/lib/l10n/it.json +++ b/lib/l10n/it.json @@ -64,6 +64,7 @@ "_%n minute ago_::_%n minutes ago_" : ["%n minuto fa","%n minuti fa"], "in a few seconds" : "tra pochi secondi", "seconds ago" : "secondi fa", + "Empty file" : "File vuoto", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Il modulo con ID: %s non esiste. Abilitalo nelle impostazioni delle applicazioni o contatta il tuo amministratore.", "File name is a reserved word" : "Il nome del file è una parola riservata", "File name contains at least one invalid character" : "Il nome del file contiene almeno un carattere non valido", diff --git a/lib/l10n/ja.js b/lib/l10n/ja.js index 166de7bf650..9b6c65dd3b5 100644 --- a/lib/l10n/ja.js +++ b/lib/l10n/ja.js @@ -109,6 +109,7 @@ OC.L10N.register( "Sharing backend %s must implement the interface OCP\\Share_Backend" : "%s のバックエンドの共有には、OCP\\Share_Backend インターフェースを実装しなければなりません。", "Sharing backend %s not found" : "共有バックエンド %s が見つかりません", "Sharing backend for %s not found" : "%s のための共有バックエンドが見つかりません", + "%1$s shared »%2$s« with you and wants to add:" : "%1$s さんが »%2$s« にノートを追加しました。", "%1$s shared »%2$s« with you and wants to add" : "%1$s shared »%2$s« with you and wants to add", "»%s« added a note to a file shared with you" : "»%s« があなたと共有しているファイルにノートを追加しました。 ", "Open »%s«" : "»%s«を開く", diff --git a/lib/l10n/ja.json b/lib/l10n/ja.json index fc7a7ff00cb..25da6d9dd4a 100644 --- a/lib/l10n/ja.json +++ b/lib/l10n/ja.json @@ -107,6 +107,7 @@ "Sharing backend %s must implement the interface OCP\\Share_Backend" : "%s のバックエンドの共有には、OCP\\Share_Backend インターフェースを実装しなければなりません。", "Sharing backend %s not found" : "共有バックエンド %s が見つかりません", "Sharing backend for %s not found" : "%s のための共有バックエンドが見つかりません", + "%1$s shared »%2$s« with you and wants to add:" : "%1$s さんが »%2$s« にノートを追加しました。", "%1$s shared »%2$s« with you and wants to add" : "%1$s shared »%2$s« with you and wants to add", "»%s« added a note to a file shared with you" : "»%s« があなたと共有しているファイルにノートを追加しました。 ", "Open »%s«" : "»%s«を開く", diff --git a/lib/l10n/ka_GE.js b/lib/l10n/ka_GE.js index c3514b2516a..7e37fa04a42 100644 --- a/lib/l10n/ka_GE.js +++ b/lib/l10n/ka_GE.js @@ -25,6 +25,7 @@ OC.L10N.register( "Server version %s or higher is required." : "საჭიროა სერვერი ვერსიით %s ან მეტი.", "Server version %s or lower is required." : "საჭიროა სერვერი ვერსიით %s ან ნაკლები.", "Logged in user must be an admin" : "ავტორიზირებული მომხმარებელი უნდა იყოს ადმინისტრატორი", + "Authentication" : "აუტენტიფიკაცია", "Unknown filetype" : "ამოუცნობი ფაილის ტიპი", "Invalid image" : "არასწორი სურათი", "Avatar image is not square" : "ავატარის სურათი არაა კვადრატი", diff --git a/lib/l10n/ka_GE.json b/lib/l10n/ka_GE.json index f07bab914b4..02dd4dc7b53 100644 --- a/lib/l10n/ka_GE.json +++ b/lib/l10n/ka_GE.json @@ -23,6 +23,7 @@ "Server version %s or higher is required." : "საჭიროა სერვერი ვერსიით %s ან მეტი.", "Server version %s or lower is required." : "საჭიროა სერვერი ვერსიით %s ან ნაკლები.", "Logged in user must be an admin" : "ავტორიზირებული მომხმარებელი უნდა იყოს ადმინისტრატორი", + "Authentication" : "აუტენტიფიკაცია", "Unknown filetype" : "ამოუცნობი ფაილის ტიპი", "Invalid image" : "არასწორი სურათი", "Avatar image is not square" : "ავატარის სურათი არაა კვადრატი", diff --git a/lib/l10n/kab.js b/lib/l10n/kab.js new file mode 100644 index 00000000000..b266c9630b3 --- /dev/null +++ b/lib/l10n/kab.js @@ -0,0 +1,6 @@ +OC.L10N.register( + "lib", + { + "Settings" : "Iɣewwaṛen" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/lib/l10n/kab.json b/lib/l10n/kab.json new file mode 100644 index 00000000000..22b4279ca2b --- /dev/null +++ b/lib/l10n/kab.json @@ -0,0 +1,4 @@ +{ "translations": { + "Settings" : "Iɣewwaṛen" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +}
\ No newline at end of file diff --git a/lib/l10n/km.js b/lib/l10n/km.js index 2c2ac17ab41..f3eec370015 100644 --- a/lib/l10n/km.js +++ b/lib/l10n/km.js @@ -12,9 +12,13 @@ OC.L10N.register( "_%n minute ago_::_%n minutes ago_" : ["%n នាទីមុន"], "seconds ago" : "វិនាទីមុន", "__language_name__" : "ភាសាខ្មែរ", + "Help" : "ជំនួយ", "Apps" : "កម្មវិធី", + "Settings" : "ការកំណត់", + "Log out" : "ចាកចេញ", "Users" : "អ្នកប្រើ", "Unknown user" : "មិនស្គាល់អ្នកប្រើប្រាស់", + "Sharing" : "ការចែករំលែក", "%s enter the database username." : "%s វាយបញ្ចូលឈ្មោះអ្នកប្រើមូលដ្ឋានទិន្នន័យ។", "%s enter the database name." : "%s វាយបញ្ចូលឈ្មោះមូលដ្ឋានទិន្នន័យ។", "%s you may not use dots in the database name" : "%s អ្នកអាចមិនប្រើសញ្ញាចុចនៅក្នុងឈ្មោះមូលដ្ឋានទិន្នន័យ", @@ -23,9 +27,51 @@ OC.L10N.register( "Set an admin username." : "កំណត់ឈ្មោះអ្នកគ្រប់គ្រង។", "Set an admin password." : "កំណត់ពាក្យសម្ងាត់អ្នកគ្រប់គ្រង។", "Could not find category \"%s\"" : "រកមិនឃើញចំណាត់ក្រុម \"%s\"", + "Sunday" : "ថ្ងៃអាទិត្យ", + "Monday" : "ថ្ងៃចន្ទ", + "Tuesday" : "ថ្ងៃអង្គារ", + "Wednesday" : "ថ្ងៃពុធ", + "Thursday" : "ថ្ងៃព្រហស្បតិ៍", + "Friday" : "ថ្ងៃសុក្រ", + "Saturday" : "ថ្ងៃសៅរ៍", + "Sun." : "អាទិត្យ", + "Mon." : "ចន្ទ", + "Tue." : "អង្គារ", + "Wed." : "ពុធ", + "Thu." : "ព្រហ.", + "Fri." : "សុក្រ", + "Sat." : "សៅរ៍", + "January" : "ខែមករា", + "February" : "ខែកុម្ភៈ", + "March" : "ខែមីនា", + "April" : "ខែមេសា", + "May" : "ខែឧសភា", + "June" : "ខែមិថុនា", + "July" : "ខែកក្កដា", + "August" : "ខែសីហា", + "September" : "ខែកញ្ញា", + "October" : "ខែតុលា", + "November" : "ខែវិច្ឆិកា", + "December" : "ខែធ្នូ", + "Jan." : "មករា", + "Feb." : "កុម្ភៈ", + "Mar." : "មីនា", + "Apr." : "មេសា", + "May." : "ឧសភា", + "Jun." : "មិថុនា", + "Jul." : "កក្កដា", + "Aug." : "សីហា", + "Sep." : "កញ្ញា", + "Oct." : "តុលា", + "Nov." : "វិច្ឆិកា", + "Dec." : "ធ្នូ", "A valid username must be provided" : "ត្រូវផ្ដល់ឈ្មោះអ្នកប្រើឲ្យបានត្រឹមត្រូវ", "A valid password must be provided" : "ត្រូវផ្ដល់ពាក្យសម្ងាត់ឲ្យបានត្រឹមត្រូវ", "Application is not enabled" : "មិនបានបើកកម្មវិធី", - "Authentication error" : "កំហុសការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវ" + "Authentication error" : "កំហុសការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវ", + "Create" : "បង្កើត", + "Delete" : "លុប", + "Share" : "ចែករំលែក", + "Unlimited" : "មិនកំណត់" }, "nplurals=1; plural=0;"); diff --git a/lib/l10n/km.json b/lib/l10n/km.json index fe796ace7ad..b1db3c48e2d 100644 --- a/lib/l10n/km.json +++ b/lib/l10n/km.json @@ -10,9 +10,13 @@ "_%n minute ago_::_%n minutes ago_" : ["%n នាទីមុន"], "seconds ago" : "វិនាទីមុន", "__language_name__" : "ភាសាខ្មែរ", + "Help" : "ជំនួយ", "Apps" : "កម្មវិធី", + "Settings" : "ការកំណត់", + "Log out" : "ចាកចេញ", "Users" : "អ្នកប្រើ", "Unknown user" : "មិនស្គាល់អ្នកប្រើប្រាស់", + "Sharing" : "ការចែករំលែក", "%s enter the database username." : "%s វាយបញ្ចូលឈ្មោះអ្នកប្រើមូលដ្ឋានទិន្នន័យ។", "%s enter the database name." : "%s វាយបញ្ចូលឈ្មោះមូលដ្ឋានទិន្នន័យ។", "%s you may not use dots in the database name" : "%s អ្នកអាចមិនប្រើសញ្ញាចុចនៅក្នុងឈ្មោះមូលដ្ឋានទិន្នន័យ", @@ -21,9 +25,51 @@ "Set an admin username." : "កំណត់ឈ្មោះអ្នកគ្រប់គ្រង។", "Set an admin password." : "កំណត់ពាក្យសម្ងាត់អ្នកគ្រប់គ្រង។", "Could not find category \"%s\"" : "រកមិនឃើញចំណាត់ក្រុម \"%s\"", + "Sunday" : "ថ្ងៃអាទិត្យ", + "Monday" : "ថ្ងៃចន្ទ", + "Tuesday" : "ថ្ងៃអង្គារ", + "Wednesday" : "ថ្ងៃពុធ", + "Thursday" : "ថ្ងៃព្រហស្បតិ៍", + "Friday" : "ថ្ងៃសុក្រ", + "Saturday" : "ថ្ងៃសៅរ៍", + "Sun." : "អាទិត្យ", + "Mon." : "ចន្ទ", + "Tue." : "អង្គារ", + "Wed." : "ពុធ", + "Thu." : "ព្រហ.", + "Fri." : "សុក្រ", + "Sat." : "សៅរ៍", + "January" : "ខែមករា", + "February" : "ខែកុម្ភៈ", + "March" : "ខែមីនា", + "April" : "ខែមេសា", + "May" : "ខែឧសភា", + "June" : "ខែមិថុនា", + "July" : "ខែកក្កដា", + "August" : "ខែសីហា", + "September" : "ខែកញ្ញា", + "October" : "ខែតុលា", + "November" : "ខែវិច្ឆិកា", + "December" : "ខែធ្នូ", + "Jan." : "មករា", + "Feb." : "កុម្ភៈ", + "Mar." : "មីនា", + "Apr." : "មេសា", + "May." : "ឧសភា", + "Jun." : "មិថុនា", + "Jul." : "កក្កដា", + "Aug." : "សីហា", + "Sep." : "កញ្ញា", + "Oct." : "តុលា", + "Nov." : "វិច្ឆិកា", + "Dec." : "ធ្នូ", "A valid username must be provided" : "ត្រូវផ្ដល់ឈ្មោះអ្នកប្រើឲ្យបានត្រឹមត្រូវ", "A valid password must be provided" : "ត្រូវផ្ដល់ពាក្យសម្ងាត់ឲ្យបានត្រឹមត្រូវ", "Application is not enabled" : "មិនបានបើកកម្មវិធី", - "Authentication error" : "កំហុសការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវ" + "Authentication error" : "កំហុសការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវ", + "Create" : "បង្កើត", + "Delete" : "លុប", + "Share" : "ចែករំលែក", + "Unlimited" : "មិនកំណត់" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/lib/l10n/kn.js b/lib/l10n/kn.js index 11c44964af9..d5c6eec0dc0 100644 --- a/lib/l10n/kn.js +++ b/lib/l10n/kn.js @@ -4,10 +4,36 @@ OC.L10N.register( "Unknown filetype" : "ಅಪರಿಚಿತ ಕಡತ ಮಾದರಿ", "Invalid image" : "ಅಸಾಮರ್ಥ್ಯ ಚಿತ್ರ", "__language_name__" : "ಕನ್ನಡ", + "Help" : "ಸಹಾಯ", "Apps" : "ಕಾರ್ಯಕ್ರಮಗಳು", + "Settings" : "ಆಯ್ಕೆ", + "Log out" : "ಈ ಆವೃತ್ತಿ ಇಂದ ನಿರ್ಗಮಿಸಿ", "Users" : "ಬಳಕೆದಾರರು", + "Sharing" : "ಹಂಚಿಕೆ", + "Sunday" : "ಭಾನುವಾರ", + "Monday" : "ಸೋಮವಾರ", + "Tuesday" : "ಮಂಗಳವಾರ", + "Wednesday" : "ಬುಧವಾರ", + "Thursday" : "ಗುರುವಾರ", + "Friday" : "ಶುಕ್ರವಾರ", + "Saturday" : "ಶನಿವಾರ", + "January" : "ಜನವರಿ", + "February" : "ಫೆಬ್ರುವರಿ", + "March" : "ಮಾರ್ಚ್", + "April" : "ಏಪ್ರಿಲ್", + "May" : "ಮೇ", + "June" : "ಜೂನ್", + "July" : "ಜುಲೈ", + "August" : "ಆಗಸ್ಟ್", + "September" : "ಸೆಪ್ಟೆಂಬರ್", + "October" : "ಅಕ್ಟೋಬರ್", + "November" : "ನವೆಂಬರ್", + "December" : "ಡಿಸೆಂಬರ್", "A valid username must be provided" : "ಮಾನ್ಯ ಬಳಕೆದಾರ ಹೆಸರು ಒದಗಿಸಬೇಕಾಗುತ್ತದೆ", "A valid password must be provided" : "ಸರಿಯಾದ ಬಳಕೆದಾರ ಗುಪ್ತಪದ ಒದಗಿಸಬೇಕಾಗಿದೆ", - "Authentication error" : "ದೃಢೀಕರಣ ದೋಷ" + "Authentication error" : "ದೃಢೀಕರಣ ದೋಷ", + "Create" : "ಸೃಷ್ಟಿಸಿ", + "Delete" : "ಅಳಿಸಿ", + "Share" : "ಹಂಚಿಕೊಳ್ಳಿ" }, "nplurals=2; plural=(n > 1);"); diff --git a/lib/l10n/kn.json b/lib/l10n/kn.json index 34d166cbce8..47a10134fa0 100644 --- a/lib/l10n/kn.json +++ b/lib/l10n/kn.json @@ -2,10 +2,36 @@ "Unknown filetype" : "ಅಪರಿಚಿತ ಕಡತ ಮಾದರಿ", "Invalid image" : "ಅಸಾಮರ್ಥ್ಯ ಚಿತ್ರ", "__language_name__" : "ಕನ್ನಡ", + "Help" : "ಸಹಾಯ", "Apps" : "ಕಾರ್ಯಕ್ರಮಗಳು", + "Settings" : "ಆಯ್ಕೆ", + "Log out" : "ಈ ಆವೃತ್ತಿ ಇಂದ ನಿರ್ಗಮಿಸಿ", "Users" : "ಬಳಕೆದಾರರು", + "Sharing" : "ಹಂಚಿಕೆ", + "Sunday" : "ಭಾನುವಾರ", + "Monday" : "ಸೋಮವಾರ", + "Tuesday" : "ಮಂಗಳವಾರ", + "Wednesday" : "ಬುಧವಾರ", + "Thursday" : "ಗುರುವಾರ", + "Friday" : "ಶುಕ್ರವಾರ", + "Saturday" : "ಶನಿವಾರ", + "January" : "ಜನವರಿ", + "February" : "ಫೆಬ್ರುವರಿ", + "March" : "ಮಾರ್ಚ್", + "April" : "ಏಪ್ರಿಲ್", + "May" : "ಮೇ", + "June" : "ಜೂನ್", + "July" : "ಜುಲೈ", + "August" : "ಆಗಸ್ಟ್", + "September" : "ಸೆಪ್ಟೆಂಬರ್", + "October" : "ಅಕ್ಟೋಬರ್", + "November" : "ನವೆಂಬರ್", + "December" : "ಡಿಸೆಂಬರ್", "A valid username must be provided" : "ಮಾನ್ಯ ಬಳಕೆದಾರ ಹೆಸರು ಒದಗಿಸಬೇಕಾಗುತ್ತದೆ", "A valid password must be provided" : "ಸರಿಯಾದ ಬಳಕೆದಾರ ಗುಪ್ತಪದ ಒದಗಿಸಬೇಕಾಗಿದೆ", - "Authentication error" : "ದೃಢೀಕರಣ ದೋಷ" + "Authentication error" : "ದೃಢೀಕರಣ ದೋಷ", + "Create" : "ಸೃಷ್ಟಿಸಿ", + "Delete" : "ಅಳಿಸಿ", + "Share" : "ಹಂಚಿಕೊಳ್ಳಿ" },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/lib/l10n/ko.js b/lib/l10n/ko.js index 2d006ad6adb..e2f83e01f4e 100644 --- a/lib/l10n/ko.js +++ b/lib/l10n/ko.js @@ -33,6 +33,7 @@ OC.L10N.register( "Logged in user must be an admin" : "로그인한 사용자는 관리자여야 합니다.", "Wiping of device %s has started" : "디바이스 %s의 완전 삭제가 시작되었습니다.", "Wiping of device »%s« has started" : "디바이스 »%s«의 완전 삭제가 시작되었습니다.", + "Authentication" : "인증", "Unknown filetype" : "알 수 없는 파일 형식", "Invalid image" : "잘못된 사진", "Avatar image is not square" : "아바타 사진이 정사각형이 아님", @@ -99,6 +100,7 @@ OC.L10N.register( "Sharing backend %s not found" : "공유 백엔드 %s을(를) 찾을 수 없음", "Sharing backend for %s not found" : "%s의 공유 백엔드를 찾을 수 없음", "Open »%s«" : "%s 열기", + "%1$s via %2$s" : "%1$s(%2$s 경유)", "You are not allowed to share %s" : "%s을(를) 공유할 수 있는 권한이 없습니다", "Can’t increase permissions of %s" : "%s의 권한을 늘릴 수 없습니다", "Files can’t be shared with delete permissions" : "파일을 삭제 권한으로 공유할 수 없습니다", @@ -215,6 +217,7 @@ OC.L10N.register( "Sharing %s failed, because the backend does not allow shares from type %i" : "%s을(를) 공유할 수 없습니다. 백엔드에서 %i 형식의 공유를 허용하지 않습니다", "Sharing %s failed, because the file does not exist" : "%s을(를) 공유할 수 없습니다. 파일이 존재하지 않습니다", "Sharing %s failed, because you can not share with yourself" : "%s을(를) 공유할 수 없습니다. 자기 자신과 공유할 수 없습니다", + "Sharing %1$s failed, because this item is already shared with %2$s" : "%1$s 공유 실패. %2$s와(과) 이미 공유되어 있습니다", "You need to provide a password to create a public link, only protected links are allowed" : "공개 링크를 만들려면 암호를 입력해야 합니다. 보호된 링크만 사용 가능합니다", "Sharing %s failed, because sharing with links is not allowed" : "%s을(를) 공유할 수 없습니다. 링크 공유가 허용되지 않았습니다", "Not allowed to create a federated share with the same user" : "같은 사용자와 연합 공유를 만들 수 없음", diff --git a/lib/l10n/ko.json b/lib/l10n/ko.json index 22f0e7d20e0..4506b2c4dd6 100644 --- a/lib/l10n/ko.json +++ b/lib/l10n/ko.json @@ -31,6 +31,7 @@ "Logged in user must be an admin" : "로그인한 사용자는 관리자여야 합니다.", "Wiping of device %s has started" : "디바이스 %s의 완전 삭제가 시작되었습니다.", "Wiping of device »%s« has started" : "디바이스 »%s«의 완전 삭제가 시작되었습니다.", + "Authentication" : "인증", "Unknown filetype" : "알 수 없는 파일 형식", "Invalid image" : "잘못된 사진", "Avatar image is not square" : "아바타 사진이 정사각형이 아님", @@ -97,6 +98,7 @@ "Sharing backend %s not found" : "공유 백엔드 %s을(를) 찾을 수 없음", "Sharing backend for %s not found" : "%s의 공유 백엔드를 찾을 수 없음", "Open »%s«" : "%s 열기", + "%1$s via %2$s" : "%1$s(%2$s 경유)", "You are not allowed to share %s" : "%s을(를) 공유할 수 있는 권한이 없습니다", "Can’t increase permissions of %s" : "%s의 권한을 늘릴 수 없습니다", "Files can’t be shared with delete permissions" : "파일을 삭제 권한으로 공유할 수 없습니다", @@ -213,6 +215,7 @@ "Sharing %s failed, because the backend does not allow shares from type %i" : "%s을(를) 공유할 수 없습니다. 백엔드에서 %i 형식의 공유를 허용하지 않습니다", "Sharing %s failed, because the file does not exist" : "%s을(를) 공유할 수 없습니다. 파일이 존재하지 않습니다", "Sharing %s failed, because you can not share with yourself" : "%s을(를) 공유할 수 없습니다. 자기 자신과 공유할 수 없습니다", + "Sharing %1$s failed, because this item is already shared with %2$s" : "%1$s 공유 실패. %2$s와(과) 이미 공유되어 있습니다", "You need to provide a password to create a public link, only protected links are allowed" : "공개 링크를 만들려면 암호를 입력해야 합니다. 보호된 링크만 사용 가능합니다", "Sharing %s failed, because sharing with links is not allowed" : "%s을(를) 공유할 수 없습니다. 링크 공유가 허용되지 않았습니다", "Not allowed to create a federated share with the same user" : "같은 사용자와 연합 공유를 만들 수 없음", diff --git a/lib/l10n/lb.js b/lib/l10n/lb.js index f75461de8e6..27c9da36407 100644 --- a/lib/l10n/lb.js +++ b/lib/l10n/lb.js @@ -19,9 +19,55 @@ OC.L10N.register( "_%n hour ago_::_%n hours ago_" : ["%n Stonn hier","%n Stonnen hier"], "seconds ago" : "Sekonnen hir", "__language_name__" : "Lëtzebuergesch", + "Help" : "Hëllef", "Apps" : "Applikatiounen", + "Settings" : "Astellungen", + "Log out" : "Ofmellen", "Users" : "Benotzer", + "Sharing" : "Gedeelt", "Set an admin password." : "Admin Passwuert setzen", - "Authentication error" : "Authentifikatioun's Fehler" + "Sunday" : "Sonndeg", + "Monday" : "Méindeg", + "Tuesday" : "Dënschdeg", + "Wednesday" : "Mëttwoch", + "Thursday" : "Donneschdeg", + "Friday" : "Freideg", + "Saturday" : "Samschdeg", + "Sun." : "So. ", + "Mon." : "Méi.", + "Tue." : "Dë.", + "Wed." : "Më.", + "Thu." : "Do.", + "Fri." : "Fr.", + "Sat." : "Sa.", + "January" : "Januar", + "February" : "Februar", + "March" : "Mäerz", + "April" : "Abrëll", + "May" : "Mee", + "June" : "Juni", + "July" : "Juli", + "August" : "August", + "September" : "September", + "October" : "Oktober", + "November" : "November", + "December" : "Dezember", + "Jan." : "Jan.", + "Feb." : "Feb.", + "Mar." : "Mäe.", + "Apr." : "Abr.", + "May." : "Mee", + "Jun." : "Jun.", + "Jul." : "Jul.", + "Aug." : "Aug.", + "Sep." : "Sep.", + "Oct." : "Okt.", + "Nov." : "Nov.", + "Dec." : "Dez.", + "Authentication error" : "Authentifikatioun's Fehler", + "Storage is temporarily not available" : "Späicherplaatz temporär net erreeschbar", + "Create" : "Erstellen", + "Delete" : "Läschen", + "Share" : "Deelen" }, "nplurals=2; plural=(n != 1);"); diff --git a/lib/l10n/lb.json b/lib/l10n/lb.json index d9f23815021..b5a5690b862 100644 --- a/lib/l10n/lb.json +++ b/lib/l10n/lb.json @@ -17,9 +17,55 @@ "_%n hour ago_::_%n hours ago_" : ["%n Stonn hier","%n Stonnen hier"], "seconds ago" : "Sekonnen hir", "__language_name__" : "Lëtzebuergesch", + "Help" : "Hëllef", "Apps" : "Applikatiounen", + "Settings" : "Astellungen", + "Log out" : "Ofmellen", "Users" : "Benotzer", + "Sharing" : "Gedeelt", "Set an admin password." : "Admin Passwuert setzen", - "Authentication error" : "Authentifikatioun's Fehler" + "Sunday" : "Sonndeg", + "Monday" : "Méindeg", + "Tuesday" : "Dënschdeg", + "Wednesday" : "Mëttwoch", + "Thursday" : "Donneschdeg", + "Friday" : "Freideg", + "Saturday" : "Samschdeg", + "Sun." : "So. ", + "Mon." : "Méi.", + "Tue." : "Dë.", + "Wed." : "Më.", + "Thu." : "Do.", + "Fri." : "Fr.", + "Sat." : "Sa.", + "January" : "Januar", + "February" : "Februar", + "March" : "Mäerz", + "April" : "Abrëll", + "May" : "Mee", + "June" : "Juni", + "July" : "Juli", + "August" : "August", + "September" : "September", + "October" : "Oktober", + "November" : "November", + "December" : "Dezember", + "Jan." : "Jan.", + "Feb." : "Feb.", + "Mar." : "Mäe.", + "Apr." : "Abr.", + "May." : "Mee", + "Jun." : "Jun.", + "Jul." : "Jul.", + "Aug." : "Aug.", + "Sep." : "Sep.", + "Oct." : "Okt.", + "Nov." : "Nov.", + "Dec." : "Dez.", + "Authentication error" : "Authentifikatioun's Fehler", + "Storage is temporarily not available" : "Späicherplaatz temporär net erreeschbar", + "Create" : "Erstellen", + "Delete" : "Läschen", + "Share" : "Deelen" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/lib/l10n/lt_LT.js b/lib/l10n/lt_LT.js index 512c3daad73..1b0997c503a 100644 --- a/lib/l10n/lt_LT.js +++ b/lib/l10n/lt_LT.js @@ -48,6 +48,7 @@ OC.L10N.register( "_%n hour ago_::_%n hours ago_" : ["prieš %n valandą","prieš %n valandas","prieš %n valandų","prieš %n valandų"], "_%n minute ago_::_%n minutes ago_" : ["prieš %n minutę","prieš % minutes","prieš %n minučių","prieš %n minučių"], "seconds ago" : "prieš keletą sekundžių", + "Empty file" : "Tuščias failas", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Modulio, kurio ID: %s, nėra. Prašome jį įjungti savo programėlių nustatymuose arba susisiekti su savo administratoriumi.", "File name is a reserved word" : "Failo pavadinimas negalimas, žodis rezervuotas", "File name contains at least one invalid character" : "Failo vardas sudarytas iš neleistinų simbolių", @@ -86,13 +87,19 @@ OC.L10N.register( "Set an admin password." : "Nustatyti administratoriaus slaptažodį.", "Can't create or write into the data directory %s" : "Negalima nuskaityti arba rašyti į duomenų katalogą. %s", "Invalid Federated Cloud ID" : "Neteisingas federacinės debesijos ID", + "%1$s shared »%2$s« with you and wants to add:" : "%1$s pasidalino „%2$s“ su jumis ir parašė pastabą:", + "%1$s shared »%2$s« with you and wants to add" : "%1$s pasidalino „%2$s“ su jumis ir parašė pastabą", + "»%s« added a note to a file shared with you" : "„%s“ parašė pastabą su jumis pasidalintam failui", "Open »%s«" : "Atverti \"%s\"", + "%1$s via %2$s" : "%1$s per %2$s", "You are not allowed to share %s" : "Jums neleidžiama bendrinti %s", "Can’t increase permissions of %s" : "Negalima pridėti papildomų %s leidimų", "Files can’t be shared with delete permissions" : "Failai negali būti bendrinami su trynimo leidimu.", "Files can’t be shared with create permissions" : "Failai negali būti bendrinami su sukūrimo leidimu.", "Expiration date is in the past" : "Bendrinimo pabaigos data yra praėjęs laikas", "Can’t set expiration date more than %s days in the future" : "Negalima nustatyti galiojimo laiko ilgesnio nei %s dienos.", + "%1$s shared »%2$s« with you" : "%1$s pasidalino „%2$s“ su jumis", + "%1$s shared »%2$s« with you." : "%1$s pasidalino „%2$s“ su jumis.", "Click the button below to open it." : "Norėdami atverti failą, spustelėkite mygtuką žemiau.", "The requested share does not exist anymore" : "Pageidaujamas bendrinimas daugiau neegzistuoja.", "Could not find category \"%s\"" : "Nepavyko rasti kategorijos „%s“", @@ -150,6 +157,7 @@ OC.L10N.register( "Could not create user" : "Nepavyko sukurti naudotojo", "User disabled" : "Naudotojas išjungtas", "Login canceled by app" : "Programėlė nutraukė prisijungimo procesą", + "App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "Programėlė \"%1$s\" negali būti įdiegta, nes nėra patenkinamos šios priklausomybės: %2$s", "a safe home for all your data" : "saugūs namai visiems jūsų duomenims", "File is currently busy, please try again later" : "Failas šiuo metu yra užimtas, prašome vėliau pabandyti dar kartą", "Can't read file" : "Nepavyksta perskaityti failo", @@ -184,12 +192,14 @@ OC.L10N.register( "Your data directory is invalid" : "Neteisingas duomenų katalogas", "Ensure there is a file called \".ocdata\" in the root of the data directory." : "Įsitikinkite, kad šakniniame duomenų kataloge yra yra \".ocdata\" failas.", "Action \"%s\" not supported or implemented." : "Veiksmas \"%s\" nepalaikomas ar neįgyvendintas.", + "Could not obtain lock type %d on \"%s\"." : "Nepavyko gauti užrakto tipo %d ties \"%s\".", "Storage unauthorized. %s" : "Saugykla nesankcionuota. %s", "Storage incomplete configuration. %s" : "Nepilna saugyklos konfigūracija. %s", "Storage connection error. %s" : "Saugyklos sujungimo ryšio klaida. %s", "Storage is temporarily not available" : "Saugykla yra laikinai neprieinama", "Storage connection timeout. %s" : "Sujungimo su saugykla laikas baigėsi. %s", "Create" : "Sukurti", + "Change" : "Keisti", "Delete" : "Ištrinti", "Share" : "Bendrinti", "Unlimited" : "Neribota", @@ -199,9 +209,15 @@ OC.L10N.register( "Sharing %s failed, because the backend does not allow shares from type %i" : "%s dalinimasis nepavyko, nes sistema nepalaiko šio duomenų tipo %i", "Sharing %s failed, because the file does not exist" : "%s dalinimasis nepavyko, nes failas neegzistuoja. ", "Sharing %s failed, because you can not share with yourself" : "%s bendrinimas nepavyko, jūs negalite bendrinti su savimi pačiu.", + "Sharing %1$s failed, because the user %2$s does not exist" : "Nepavyko bendrinti %1$s, nes naudotojo %2$s nėra", + "Sharing %1$s failed, because this item is already shared with %2$s" : "Nepavyko bendrinti %1$s, nes šis elementas jau yra bendrinamas su %2$s", + "Sharing %1$s failed, because this item is already shared with user %2$s" : "Nepavyko bendrinti %1$s, nes šis elementas jau yra bendrinamas su naudotoju %2$s", + "Sharing %1$s failed, because the group %2$s does not exist" : "Nepavyko bendrinti %1$s, nes grupės %2$s nėra", + "Sharing %1$s failed, because %2$s is not a member of the group %3$s" : "Nepavyko bendrinti %1$s, nes %2$s nėra grupės %3$s narys", "You need to provide a password to create a public link, only protected links are allowed" : "Viešoms nuorodoms būtinas slaptažodis, leidžiamos tik apsaugotos nuorodos.", "Sharing %s failed, because sharing with links is not allowed" : "Bendrinimas %s nepavyko, kadangi bendrinimas su nuorodomis yra neleidžiamas.", "Not allowed to create a federated share with the same user" : "Negalima sukurti federacinį viešinį su tuo pačiu naudotoju", + "Sharing %1$s failed, could not find %2$s, maybe the server is currently unreachable." : "Nepavyko bendrinti %1$s, nepavyko rasti %2$s, galbūt, šiuo metu serveris yra nepasiekiamas.", "Cannot set expiration date. Shares cannot expire later than %s after they have been shared" : "Negalima nustatyti galiojimo pabaigos datos. Bendrinimas negali pasibaigti vėliau nei %s po jo pasidalinimo", "Cannot set expiration date. Expiration date is in the past" : "Nepavyko nustatyti galiojimo datos. Galiojimo data yra praėjęs laikas.", "Sharing failed, because the user %s is the original sharer" : "Bendrinimas nepavyko, nes naudotojas %s yra bendrintojas.", diff --git a/lib/l10n/lt_LT.json b/lib/l10n/lt_LT.json index 70893872826..6aeeb115f3f 100644 --- a/lib/l10n/lt_LT.json +++ b/lib/l10n/lt_LT.json @@ -46,6 +46,7 @@ "_%n hour ago_::_%n hours ago_" : ["prieš %n valandą","prieš %n valandas","prieš %n valandų","prieš %n valandų"], "_%n minute ago_::_%n minutes ago_" : ["prieš %n minutę","prieš % minutes","prieš %n minučių","prieš %n minučių"], "seconds ago" : "prieš keletą sekundžių", + "Empty file" : "Tuščias failas", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Modulio, kurio ID: %s, nėra. Prašome jį įjungti savo programėlių nustatymuose arba susisiekti su savo administratoriumi.", "File name is a reserved word" : "Failo pavadinimas negalimas, žodis rezervuotas", "File name contains at least one invalid character" : "Failo vardas sudarytas iš neleistinų simbolių", @@ -84,13 +85,19 @@ "Set an admin password." : "Nustatyti administratoriaus slaptažodį.", "Can't create or write into the data directory %s" : "Negalima nuskaityti arba rašyti į duomenų katalogą. %s", "Invalid Federated Cloud ID" : "Neteisingas federacinės debesijos ID", + "%1$s shared »%2$s« with you and wants to add:" : "%1$s pasidalino „%2$s“ su jumis ir parašė pastabą:", + "%1$s shared »%2$s« with you and wants to add" : "%1$s pasidalino „%2$s“ su jumis ir parašė pastabą", + "»%s« added a note to a file shared with you" : "„%s“ parašė pastabą su jumis pasidalintam failui", "Open »%s«" : "Atverti \"%s\"", + "%1$s via %2$s" : "%1$s per %2$s", "You are not allowed to share %s" : "Jums neleidžiama bendrinti %s", "Can’t increase permissions of %s" : "Negalima pridėti papildomų %s leidimų", "Files can’t be shared with delete permissions" : "Failai negali būti bendrinami su trynimo leidimu.", "Files can’t be shared with create permissions" : "Failai negali būti bendrinami su sukūrimo leidimu.", "Expiration date is in the past" : "Bendrinimo pabaigos data yra praėjęs laikas", "Can’t set expiration date more than %s days in the future" : "Negalima nustatyti galiojimo laiko ilgesnio nei %s dienos.", + "%1$s shared »%2$s« with you" : "%1$s pasidalino „%2$s“ su jumis", + "%1$s shared »%2$s« with you." : "%1$s pasidalino „%2$s“ su jumis.", "Click the button below to open it." : "Norėdami atverti failą, spustelėkite mygtuką žemiau.", "The requested share does not exist anymore" : "Pageidaujamas bendrinimas daugiau neegzistuoja.", "Could not find category \"%s\"" : "Nepavyko rasti kategorijos „%s“", @@ -148,6 +155,7 @@ "Could not create user" : "Nepavyko sukurti naudotojo", "User disabled" : "Naudotojas išjungtas", "Login canceled by app" : "Programėlė nutraukė prisijungimo procesą", + "App \"%1$s\" cannot be installed because the following dependencies are not fulfilled: %2$s" : "Programėlė \"%1$s\" negali būti įdiegta, nes nėra patenkinamos šios priklausomybės: %2$s", "a safe home for all your data" : "saugūs namai visiems jūsų duomenims", "File is currently busy, please try again later" : "Failas šiuo metu yra užimtas, prašome vėliau pabandyti dar kartą", "Can't read file" : "Nepavyksta perskaityti failo", @@ -182,12 +190,14 @@ "Your data directory is invalid" : "Neteisingas duomenų katalogas", "Ensure there is a file called \".ocdata\" in the root of the data directory." : "Įsitikinkite, kad šakniniame duomenų kataloge yra yra \".ocdata\" failas.", "Action \"%s\" not supported or implemented." : "Veiksmas \"%s\" nepalaikomas ar neįgyvendintas.", + "Could not obtain lock type %d on \"%s\"." : "Nepavyko gauti užrakto tipo %d ties \"%s\".", "Storage unauthorized. %s" : "Saugykla nesankcionuota. %s", "Storage incomplete configuration. %s" : "Nepilna saugyklos konfigūracija. %s", "Storage connection error. %s" : "Saugyklos sujungimo ryšio klaida. %s", "Storage is temporarily not available" : "Saugykla yra laikinai neprieinama", "Storage connection timeout. %s" : "Sujungimo su saugykla laikas baigėsi. %s", "Create" : "Sukurti", + "Change" : "Keisti", "Delete" : "Ištrinti", "Share" : "Bendrinti", "Unlimited" : "Neribota", @@ -197,9 +207,15 @@ "Sharing %s failed, because the backend does not allow shares from type %i" : "%s dalinimasis nepavyko, nes sistema nepalaiko šio duomenų tipo %i", "Sharing %s failed, because the file does not exist" : "%s dalinimasis nepavyko, nes failas neegzistuoja. ", "Sharing %s failed, because you can not share with yourself" : "%s bendrinimas nepavyko, jūs negalite bendrinti su savimi pačiu.", + "Sharing %1$s failed, because the user %2$s does not exist" : "Nepavyko bendrinti %1$s, nes naudotojo %2$s nėra", + "Sharing %1$s failed, because this item is already shared with %2$s" : "Nepavyko bendrinti %1$s, nes šis elementas jau yra bendrinamas su %2$s", + "Sharing %1$s failed, because this item is already shared with user %2$s" : "Nepavyko bendrinti %1$s, nes šis elementas jau yra bendrinamas su naudotoju %2$s", + "Sharing %1$s failed, because the group %2$s does not exist" : "Nepavyko bendrinti %1$s, nes grupės %2$s nėra", + "Sharing %1$s failed, because %2$s is not a member of the group %3$s" : "Nepavyko bendrinti %1$s, nes %2$s nėra grupės %3$s narys", "You need to provide a password to create a public link, only protected links are allowed" : "Viešoms nuorodoms būtinas slaptažodis, leidžiamos tik apsaugotos nuorodos.", "Sharing %s failed, because sharing with links is not allowed" : "Bendrinimas %s nepavyko, kadangi bendrinimas su nuorodomis yra neleidžiamas.", "Not allowed to create a federated share with the same user" : "Negalima sukurti federacinį viešinį su tuo pačiu naudotoju", + "Sharing %1$s failed, could not find %2$s, maybe the server is currently unreachable." : "Nepavyko bendrinti %1$s, nepavyko rasti %2$s, galbūt, šiuo metu serveris yra nepasiekiamas.", "Cannot set expiration date. Shares cannot expire later than %s after they have been shared" : "Negalima nustatyti galiojimo pabaigos datos. Bendrinimas negali pasibaigti vėliau nei %s po jo pasidalinimo", "Cannot set expiration date. Expiration date is in the past" : "Nepavyko nustatyti galiojimo datos. Galiojimo data yra praėjęs laikas.", "Sharing failed, because the user %s is the original sharer" : "Bendrinimas nepavyko, nes naudotojas %s yra bendrintojas.", diff --git a/lib/l10n/lv.js b/lib/l10n/lv.js index f1857281ca0..9a37f8d4b6b 100644 --- a/lib/l10n/lv.js +++ b/lib/l10n/lv.js @@ -19,6 +19,7 @@ OC.L10N.register( "Following platforms are supported: %s" : "Tiek atbalstītas šādas platformas: %s", "Server version %s or higher is required." : "Ir vajadzīga servera versija %s vai jaunāka.", "Server version %s or lower is required." : "Ir vajadzīga servera versija %s vai vecāka.", + "Authentication" : "Autentifikācija", "Unknown filetype" : "Nezināms datnes tips", "Invalid image" : "Nederīgs attēls", "Avatar image is not square" : "Avatar attēls nav kvadrāts", @@ -37,10 +38,13 @@ OC.L10N.register( "__language_name__" : "Latviešu", "Help" : "Palīdzība", "Apps" : "Lietotnes", + "Settings" : "Iestatījumi", + "Log out" : "Izrakstīties", "Users" : "Lietotāji", "Unknown user" : "Nezināms lietotājs", "Sharing" : "Koplietošana", "Additional settings" : "Papildu iestatījumi", + "Personal info" : "Personiskā informācija", "%s enter the database username." : "%s ievadiet datubāzes lietotājvārdu.", "%s enter the database name." : "%s ievadiet datubāzes nosaukumu.", "%s you may not use dots in the database name" : "%s datubāžu nosaukumos nedrīkst izmantot punktus", @@ -50,6 +54,7 @@ OC.L10N.register( "Set an admin username." : "Iestatiet administratora lietotājvārdu.", "Set an admin password." : "Iestatiet administratora paroli.", "Invalid Federated Cloud ID" : "Nederīgs Federated Cloud ID", + "Open »%s«" : "Atvērt »%s«", "Could not find category \"%s\"" : "Nevarēja atrast kategoriju “%s”", "Sunday" : "Svētdiena", "Monday" : "Pirmdiena", @@ -118,6 +123,12 @@ OC.L10N.register( "Storage incomplete configuration. %s" : "Storage incomplete configuration. %s", "Storage connection error. %s" : "Datu savienojuma kļūda. %s", "Storage is temporarily not available" : "Glabātuve īslaicīgi nav pieejama", - "Storage connection timeout. %s" : "Datu savienojuma taimauts. %s" + "Storage connection timeout. %s" : "Datu savienojuma taimauts. %s", + "Create" : "Izveidot", + "Change" : "Mainīt", + "Delete" : "Dzēst", + "Share" : "Koplietot", + "Unlimited" : "Neierobežota", + "Verify" : "Verificēt" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/lib/l10n/lv.json b/lib/l10n/lv.json index c511bf7ba26..23226614aa1 100644 --- a/lib/l10n/lv.json +++ b/lib/l10n/lv.json @@ -17,6 +17,7 @@ "Following platforms are supported: %s" : "Tiek atbalstītas šādas platformas: %s", "Server version %s or higher is required." : "Ir vajadzīga servera versija %s vai jaunāka.", "Server version %s or lower is required." : "Ir vajadzīga servera versija %s vai vecāka.", + "Authentication" : "Autentifikācija", "Unknown filetype" : "Nezināms datnes tips", "Invalid image" : "Nederīgs attēls", "Avatar image is not square" : "Avatar attēls nav kvadrāts", @@ -35,10 +36,13 @@ "__language_name__" : "Latviešu", "Help" : "Palīdzība", "Apps" : "Lietotnes", + "Settings" : "Iestatījumi", + "Log out" : "Izrakstīties", "Users" : "Lietotāji", "Unknown user" : "Nezināms lietotājs", "Sharing" : "Koplietošana", "Additional settings" : "Papildu iestatījumi", + "Personal info" : "Personiskā informācija", "%s enter the database username." : "%s ievadiet datubāzes lietotājvārdu.", "%s enter the database name." : "%s ievadiet datubāzes nosaukumu.", "%s you may not use dots in the database name" : "%s datubāžu nosaukumos nedrīkst izmantot punktus", @@ -48,6 +52,7 @@ "Set an admin username." : "Iestatiet administratora lietotājvārdu.", "Set an admin password." : "Iestatiet administratora paroli.", "Invalid Federated Cloud ID" : "Nederīgs Federated Cloud ID", + "Open »%s«" : "Atvērt »%s«", "Could not find category \"%s\"" : "Nevarēja atrast kategoriju “%s”", "Sunday" : "Svētdiena", "Monday" : "Pirmdiena", @@ -116,6 +121,12 @@ "Storage incomplete configuration. %s" : "Storage incomplete configuration. %s", "Storage connection error. %s" : "Datu savienojuma kļūda. %s", "Storage is temporarily not available" : "Glabātuve īslaicīgi nav pieejama", - "Storage connection timeout. %s" : "Datu savienojuma taimauts. %s" + "Storage connection timeout. %s" : "Datu savienojuma taimauts. %s", + "Create" : "Izveidot", + "Change" : "Mainīt", + "Delete" : "Dzēst", + "Share" : "Koplietot", + "Unlimited" : "Neierobežota", + "Verify" : "Verificēt" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" }
\ No newline at end of file diff --git a/lib/l10n/mk.js b/lib/l10n/mk.js index b900667bba4..d8b362d7efd 100644 --- a/lib/l10n/mk.js +++ b/lib/l10n/mk.js @@ -135,6 +135,7 @@ OC.L10N.register( "Authentication error" : "Грешка во автентикација", "Token expired. Please reload page." : "Жетонот е истечен. Ве молам превчитајте ја страницата.", "PostgreSQL >= 9 required" : "Потребно е PostgreSQL >= 9 ", + "Storage is temporarily not available" : "Складиштето моментално не е достапно", "Create" : "Креирај", "Change" : "Измени", "Delete" : "Избриши", @@ -143,6 +144,8 @@ OC.L10N.register( "Verifying" : "Потврдување", "Verifying …" : "Потврдување …", "Verify" : "Потврди", + "Sharing %1$s failed, because this item is already shared with %2$s" : "Споделувањето на %1$s е неуспешно, бидејќи истото веќе е споделено со %2$s", + "Not allowed to create a federated share with the same user" : "Не е овозможено да креирате федерално споделување со ист корисник", "Sharing %1$s failed, could not find %2$s, maybe the server is currently unreachable." : "Споделувањето на %1$s е неуспешно, неможе да се пронајде %2$s, можеби серверот моментално не е достапен.", "Sharing %1$s failed, because the sharing backend for %2$s could not find its source" : "Споделувањето на %1$s е неуспешно, бидејќи серверот на %2$s неможе да го пронајде споделувањето" }, diff --git a/lib/l10n/mk.json b/lib/l10n/mk.json index 0b18620af85..733c72dc5d7 100644 --- a/lib/l10n/mk.json +++ b/lib/l10n/mk.json @@ -133,6 +133,7 @@ "Authentication error" : "Грешка во автентикација", "Token expired. Please reload page." : "Жетонот е истечен. Ве молам превчитајте ја страницата.", "PostgreSQL >= 9 required" : "Потребно е PostgreSQL >= 9 ", + "Storage is temporarily not available" : "Складиштето моментално не е достапно", "Create" : "Креирај", "Change" : "Измени", "Delete" : "Избриши", @@ -141,6 +142,8 @@ "Verifying" : "Потврдување", "Verifying …" : "Потврдување …", "Verify" : "Потврди", + "Sharing %1$s failed, because this item is already shared with %2$s" : "Споделувањето на %1$s е неуспешно, бидејќи истото веќе е споделено со %2$s", + "Not allowed to create a federated share with the same user" : "Не е овозможено да креирате федерално споделување со ист корисник", "Sharing %1$s failed, could not find %2$s, maybe the server is currently unreachable." : "Споделувањето на %1$s е неуспешно, неможе да се пронајде %2$s, можеби серверот моментално не е достапен.", "Sharing %1$s failed, because the sharing backend for %2$s could not find its source" : "Споделувањето на %1$s е неуспешно, бидејќи серверот на %2$s неможе да го пронајде споделувањето" },"pluralForm" :"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;" diff --git a/lib/l10n/mn.js b/lib/l10n/mn.js index d2539ab0791..f19d9261f51 100644 --- a/lib/l10n/mn.js +++ b/lib/l10n/mn.js @@ -2,6 +2,7 @@ OC.L10N.register( "lib", { "Cannot write into \"config\" directory!" : "\"config\" хавтас руу бичих боломжгүй байна!", + "Unknown filetype" : "Үл мэдэгдэх файлын төрөл", "Invalid image" : "буруу зураг", "Avatar image is not square" : "Хөрөг зураг дөрвөлжин биш", "today" : "өнөөдөр", @@ -14,7 +15,31 @@ OC.L10N.register( "File name is too long" : "Файлын нэр хэтэрхий урт байна", "Dot files are not allowed" : "Dot файлууд зөвшөөрөл байхгүй байна", "__language_name__" : "хэлний нэр", + "Help" : "Туслах", + "Apps" : "Аппликэйшинууд", + "Settings" : "Тохиргоо", + "Log out" : "гаргах", + "Users" : "хэрэглэгч", + "Unknown user" : " хэрэглэгч", + "Sharing" : "Түгээх", + "Security" : "Хамгаалалт", + "Personal info" : "Хувийн мэдээлэл", + "Open »%s«" : "»%s« нээх", + "Sunday" : "ням гариг", + "Monday" : "даваа", + "Tuesday" : "мягмар", + "Wednesday" : "лхагва", + "Thursday" : "пүрэв", + "Friday" : "баасан", + "Saturday" : "бямба", "June" : "Зургадугаар сар", - "November" : "Арван нэгдүгээр сар" + "November" : "Арван нэгдүгээр сар", + "a safe home for all your data" : "Таны өгөгдлүүдийн аюулгүй гэр", + "Authentication error" : "Нотолгооны алдаа", + "Storage is temporarily not available" : "Хадгалах төхөөрөмж нь түр хугацаанд ашиглах боломжгүй байна", + "Create" : "Үүсгэх", + "Delete" : "Устгах", + "Share" : "Түгээх", + "Verify" : "Шалнгах" }, "nplurals=2; plural=(n != 1);"); diff --git a/lib/l10n/mn.json b/lib/l10n/mn.json index 10ed4980ac8..0ea3987840e 100644 --- a/lib/l10n/mn.json +++ b/lib/l10n/mn.json @@ -1,5 +1,6 @@ { "translations": { "Cannot write into \"config\" directory!" : "\"config\" хавтас руу бичих боломжгүй байна!", + "Unknown filetype" : "Үл мэдэгдэх файлын төрөл", "Invalid image" : "буруу зураг", "Avatar image is not square" : "Хөрөг зураг дөрвөлжин биш", "today" : "өнөөдөр", @@ -12,7 +13,31 @@ "File name is too long" : "Файлын нэр хэтэрхий урт байна", "Dot files are not allowed" : "Dot файлууд зөвшөөрөл байхгүй байна", "__language_name__" : "хэлний нэр", + "Help" : "Туслах", + "Apps" : "Аппликэйшинууд", + "Settings" : "Тохиргоо", + "Log out" : "гаргах", + "Users" : "хэрэглэгч", + "Unknown user" : " хэрэглэгч", + "Sharing" : "Түгээх", + "Security" : "Хамгаалалт", + "Personal info" : "Хувийн мэдээлэл", + "Open »%s«" : "»%s« нээх", + "Sunday" : "ням гариг", + "Monday" : "даваа", + "Tuesday" : "мягмар", + "Wednesday" : "лхагва", + "Thursday" : "пүрэв", + "Friday" : "баасан", + "Saturday" : "бямба", "June" : "Зургадугаар сар", - "November" : "Арван нэгдүгээр сар" + "November" : "Арван нэгдүгээр сар", + "a safe home for all your data" : "Таны өгөгдлүүдийн аюулгүй гэр", + "Authentication error" : "Нотолгооны алдаа", + "Storage is temporarily not available" : "Хадгалах төхөөрөмж нь түр хугацаанд ашиглах боломжгүй байна", + "Create" : "Үүсгэх", + "Delete" : "Устгах", + "Share" : "Түгээх", + "Verify" : "Шалнгах" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/lib/l10n/ms_MY.js b/lib/l10n/ms_MY.js index 5a09b3f3d85..f79843a68fd 100644 --- a/lib/l10n/ms_MY.js +++ b/lib/l10n/ms_MY.js @@ -2,8 +2,52 @@ OC.L10N.register( "lib", { "__language_name__" : "Bahasa Melayu", + "Help" : "Bantuan", "Apps" : "Aplikasi", + "Settings" : "Tetapan", + "Log out" : "Log keluar", "Users" : "Pengguna", - "Authentication error" : "Ralat pengesahan" + "Sunday" : "Ahad", + "Monday" : "Isnin", + "Tuesday" : "Selasa", + "Wednesday" : "Rabu", + "Thursday" : "Khamis", + "Friday" : "Jumaat", + "Saturday" : "Sabtu", + "Sun." : "Ahad", + "Mon." : "Isnin", + "Tue." : "Selasa", + "Wed." : "Rabu ", + "Thu." : "Khamis", + "Fri." : "Jumaat", + "Sat." : "Sabtu", + "January" : "Januari", + "February" : "Februari", + "March" : "Mac", + "April" : "April", + "May" : "Mei", + "June" : "Jun", + "July" : "Julai", + "August" : "Ogos", + "September" : "September", + "October" : "Oktober", + "November" : "November", + "December" : "Disember", + "Jan." : "Jan.", + "Feb." : "Feb.", + "Mar." : "Mac.", + "Apr." : "Apr.", + "May." : "Mei", + "Jun." : "Jun.", + "Jul." : "Jul.", + "Aug." : "Ogos.", + "Sep." : "Sept.", + "Oct." : "Okt.", + "Nov." : "Nov.", + "Dec." : "Dis.", + "Authentication error" : "Ralat pengesahan", + "Create" : "Buat", + "Delete" : "Padam", + "Share" : "Kongsi" }, "nplurals=1; plural=0;"); diff --git a/lib/l10n/ms_MY.json b/lib/l10n/ms_MY.json index a68af8c01fa..d5df808c3ce 100644 --- a/lib/l10n/ms_MY.json +++ b/lib/l10n/ms_MY.json @@ -1,7 +1,51 @@ { "translations": { "__language_name__" : "Bahasa Melayu", + "Help" : "Bantuan", "Apps" : "Aplikasi", + "Settings" : "Tetapan", + "Log out" : "Log keluar", "Users" : "Pengguna", - "Authentication error" : "Ralat pengesahan" + "Sunday" : "Ahad", + "Monday" : "Isnin", + "Tuesday" : "Selasa", + "Wednesday" : "Rabu", + "Thursday" : "Khamis", + "Friday" : "Jumaat", + "Saturday" : "Sabtu", + "Sun." : "Ahad", + "Mon." : "Isnin", + "Tue." : "Selasa", + "Wed." : "Rabu ", + "Thu." : "Khamis", + "Fri." : "Jumaat", + "Sat." : "Sabtu", + "January" : "Januari", + "February" : "Februari", + "March" : "Mac", + "April" : "April", + "May" : "Mei", + "June" : "Jun", + "July" : "Julai", + "August" : "Ogos", + "September" : "September", + "October" : "Oktober", + "November" : "November", + "December" : "Disember", + "Jan." : "Jan.", + "Feb." : "Feb.", + "Mar." : "Mac.", + "Apr." : "Apr.", + "May." : "Mei", + "Jun." : "Jun.", + "Jul." : "Jul.", + "Aug." : "Ogos.", + "Sep." : "Sept.", + "Oct." : "Okt.", + "Nov." : "Nov.", + "Dec." : "Dis.", + "Authentication error" : "Ralat pengesahan", + "Create" : "Buat", + "Delete" : "Padam", + "Share" : "Kongsi" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/lib/l10n/nb.js b/lib/l10n/nb.js index 60dff9d2b6e..3a29673199a 100644 --- a/lib/l10n/nb.js +++ b/lib/l10n/nb.js @@ -25,6 +25,7 @@ OC.L10N.register( "Server version %s or higher is required." : "Serverversjon %s eller høyere kreves.", "Server version %s or lower is required." : "Serverversjon %s eller lavere kreves.", "Logged in user must be an admin" : "Innlogget bruker må være administrator", + "Authentication" : "Autentisering", "Unknown filetype" : "Ukjent filtype", "Invalid image" : "Ugyldig bilde", "Avatar image is not square" : "Avatarbilde er ikke firkantet", @@ -89,6 +90,8 @@ OC.L10N.register( "Sharing backend %s must implement the interface OCP\\Share_Backend" : "Delings-server %s må implementere grensesnittet OCP\\Share_Backend", "Sharing backend %s not found" : "Delings-server %s ikke funnet", "Sharing backend for %s not found" : "Delings-server for %s ikke funnet", + "%1$s shared »%2$s« with you and wants to add:" : "%1$s delte »%2$s« med deg og vil legge til:", + "%1$s shared »%2$s« with you and wants to add" : "%1$s delte »%2$s« med deg og vil legge til", "»%s« added a note to a file shared with you" : "»%s« la til en melding til en fil delt med deg", "Open »%s«" : "Åpne »%s«", "%1$s via %2$s" : "%1$s via %2$s", diff --git a/lib/l10n/nb.json b/lib/l10n/nb.json index 92aa936e0c7..3ed583b2efd 100644 --- a/lib/l10n/nb.json +++ b/lib/l10n/nb.json @@ -23,6 +23,7 @@ "Server version %s or higher is required." : "Serverversjon %s eller høyere kreves.", "Server version %s or lower is required." : "Serverversjon %s eller lavere kreves.", "Logged in user must be an admin" : "Innlogget bruker må være administrator", + "Authentication" : "Autentisering", "Unknown filetype" : "Ukjent filtype", "Invalid image" : "Ugyldig bilde", "Avatar image is not square" : "Avatarbilde er ikke firkantet", @@ -87,6 +88,8 @@ "Sharing backend %s must implement the interface OCP\\Share_Backend" : "Delings-server %s må implementere grensesnittet OCP\\Share_Backend", "Sharing backend %s not found" : "Delings-server %s ikke funnet", "Sharing backend for %s not found" : "Delings-server for %s ikke funnet", + "%1$s shared »%2$s« with you and wants to add:" : "%1$s delte »%2$s« med deg og vil legge til:", + "%1$s shared »%2$s« with you and wants to add" : "%1$s delte »%2$s« med deg og vil legge til", "»%s« added a note to a file shared with you" : "»%s« la til en melding til en fil delt med deg", "Open »%s«" : "Åpne »%s«", "%1$s via %2$s" : "%1$s via %2$s", diff --git a/lib/l10n/ne.js b/lib/l10n/ne.js new file mode 100644 index 00000000000..931c4f7b739 --- /dev/null +++ b/lib/l10n/ne.js @@ -0,0 +1,6 @@ +OC.L10N.register( + "lib", + { + "Settings" : "सेटिङ्हरू" +}, +"nplurals=2; plural=(n != 1);"); diff --git a/lib/l10n/ne.json b/lib/l10n/ne.json new file mode 100644 index 00000000000..5b6bf994b7d --- /dev/null +++ b/lib/l10n/ne.json @@ -0,0 +1,4 @@ +{ "translations": { + "Settings" : "सेटिङ्हरू" +},"pluralForm" :"nplurals=2; plural=(n != 1);" +}
\ No newline at end of file diff --git a/lib/l10n/nn_NO.js b/lib/l10n/nn_NO.js index de7e2676e2f..032e771240a 100644 --- a/lib/l10n/nn_NO.js +++ b/lib/l10n/nn_NO.js @@ -9,10 +9,64 @@ OC.L10N.register( "last year" : "i fjor", "seconds ago" : "sekund sidan", "__language_name__" : "Nynorsk", + "Help" : "Hjelp", "Apps" : "Program", + "Settings" : "Instillingar", + "Log out" : "Logg ut", "Users" : "Brukarar", + "Sharing" : "Deling", + "Open »%s«" : "Opna »%s«", + "Sunday" : "Søndag", + "Monday" : "Måndag", + "Tuesday" : "Tysdag", + "Wednesday" : "Onsdag", + "Thursday" : "Torsdag", + "Friday" : "Fredag", + "Saturday" : "Laurdag", + "Sun." : "Søn.", + "Mon." : "Mån.", + "Tue." : "Tys.", + "Wed." : "Ons.", + "Thu." : "Tor.", + "Fri." : "Fre.", + "Sat." : "Lau.", + "Su" : "Su", + "Mo" : "Må", + "Tu" : "Ty", + "We" : "On", + "Th" : "To", + "Fr" : "Fr", + "Sa" : "La", + "January" : "Januar", + "February" : "Februar", + "March" : "Mars", + "April" : "April", + "May" : "Mai", + "June" : "Juni", + "July" : "Juli", + "August" : "August", + "September" : "September", + "October" : "Oktober", + "November" : "November", + "December" : "Desember", + "Jan." : "Jan.", + "Feb." : "Feb.", + "Mar." : "Mar,", + "Apr." : "Apr.", + "May." : "Mai.", + "Jun." : "Jun.", + "Jul." : "Jul.", + "Aug." : "Aug.", + "Sep." : "Sep.", + "Oct." : "Okt.", + "Nov." : "Nov.", + "Dec." : "Des.", "A valid username must be provided" : "Du må oppgje eit gyldig brukarnamn", "A valid password must be provided" : "Du må oppgje eit gyldig passord", - "Authentication error" : "Feil i autentisering" + "Authentication error" : "Feil i autentisering", + "Create" : "Lag", + "Delete" : "Ta bort", + "Share" : "Del", + "Unlimited" : "Ubegrensa" }, "nplurals=2; plural=(n != 1);"); diff --git a/lib/l10n/nn_NO.json b/lib/l10n/nn_NO.json index fbc107feec6..92d3e0a4a11 100644 --- a/lib/l10n/nn_NO.json +++ b/lib/l10n/nn_NO.json @@ -7,10 +7,64 @@ "last year" : "i fjor", "seconds ago" : "sekund sidan", "__language_name__" : "Nynorsk", + "Help" : "Hjelp", "Apps" : "Program", + "Settings" : "Instillingar", + "Log out" : "Logg ut", "Users" : "Brukarar", + "Sharing" : "Deling", + "Open »%s«" : "Opna »%s«", + "Sunday" : "Søndag", + "Monday" : "Måndag", + "Tuesday" : "Tysdag", + "Wednesday" : "Onsdag", + "Thursday" : "Torsdag", + "Friday" : "Fredag", + "Saturday" : "Laurdag", + "Sun." : "Søn.", + "Mon." : "Mån.", + "Tue." : "Tys.", + "Wed." : "Ons.", + "Thu." : "Tor.", + "Fri." : "Fre.", + "Sat." : "Lau.", + "Su" : "Su", + "Mo" : "Må", + "Tu" : "Ty", + "We" : "On", + "Th" : "To", + "Fr" : "Fr", + "Sa" : "La", + "January" : "Januar", + "February" : "Februar", + "March" : "Mars", + "April" : "April", + "May" : "Mai", + "June" : "Juni", + "July" : "Juli", + "August" : "August", + "September" : "September", + "October" : "Oktober", + "November" : "November", + "December" : "Desember", + "Jan." : "Jan.", + "Feb." : "Feb.", + "Mar." : "Mar,", + "Apr." : "Apr.", + "May." : "Mai.", + "Jun." : "Jun.", + "Jul." : "Jul.", + "Aug." : "Aug.", + "Sep." : "Sep.", + "Oct." : "Okt.", + "Nov." : "Nov.", + "Dec." : "Des.", "A valid username must be provided" : "Du må oppgje eit gyldig brukarnamn", "A valid password must be provided" : "Du må oppgje eit gyldig passord", - "Authentication error" : "Feil i autentisering" + "Authentication error" : "Feil i autentisering", + "Create" : "Lag", + "Delete" : "Ta bort", + "Share" : "Del", + "Unlimited" : "Ubegrensa" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/lib/l10n/oc.js b/lib/l10n/oc.js new file mode 100644 index 00000000000..501af2ba972 --- /dev/null +++ b/lib/l10n/oc.js @@ -0,0 +1,19 @@ +OC.L10N.register( + "lib", + { + "seconds ago" : "i a qualques segondas", + "Help" : "Ajuda", + "Settings" : "Paramètres", + "Sharing" : "Partiment", + "Sunday" : "Dimenge", + "Monday" : "Diluns", + "Tuesday" : "Dimars", + "Wednesday" : "Dimècres", + "Thursday" : "Dijòus", + "Friday" : "Divendres", + "Saturday" : "Dissabte", + "Create" : "Crear", + "Delete" : "Suprimir", + "Share" : "Partejar" +}, +"nplurals=2; plural=(n > 1);"); diff --git a/lib/l10n/oc.json b/lib/l10n/oc.json new file mode 100644 index 00000000000..9bca278e2db --- /dev/null +++ b/lib/l10n/oc.json @@ -0,0 +1,17 @@ +{ "translations": { + "seconds ago" : "i a qualques segondas", + "Help" : "Ajuda", + "Settings" : "Paramètres", + "Sharing" : "Partiment", + "Sunday" : "Dimenge", + "Monday" : "Diluns", + "Tuesday" : "Dimars", + "Wednesday" : "Dimècres", + "Thursday" : "Dijòus", + "Friday" : "Divendres", + "Saturday" : "Dissabte", + "Create" : "Crear", + "Delete" : "Suprimir", + "Share" : "Partejar" +},"pluralForm" :"nplurals=2; plural=(n > 1);" +}
\ No newline at end of file diff --git a/lib/l10n/pl.js b/lib/l10n/pl.js index 19ea2f0f051..a9d512c6917 100644 --- a/lib/l10n/pl.js +++ b/lib/l10n/pl.js @@ -66,6 +66,7 @@ OC.L10N.register( "_%n minute ago_::_%n minutes ago_" : ["%n minuta temu","%n minuty temu","%n minut temu","%n minut temu"], "in a few seconds" : "za kilka sekund", "seconds ago" : "przed chwilą", + "Empty file" : "Pusty plik", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Moduł o ID: %s nie istnieje. Włącz go w ustawieniach aplikacji lub skontaktuj się z administratorem.", "File name is a reserved word" : "Nazwa pliku jest zarezerwowana", "File name contains at least one invalid character" : "Nazwa pliku zawiera co najmniej jeden nieprawidłowy znak", diff --git a/lib/l10n/pl.json b/lib/l10n/pl.json index 8506f111382..0dcca93d989 100644 --- a/lib/l10n/pl.json +++ b/lib/l10n/pl.json @@ -64,6 +64,7 @@ "_%n minute ago_::_%n minutes ago_" : ["%n minuta temu","%n minuty temu","%n minut temu","%n minut temu"], "in a few seconds" : "za kilka sekund", "seconds ago" : "przed chwilą", + "Empty file" : "Pusty plik", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Moduł o ID: %s nie istnieje. Włącz go w ustawieniach aplikacji lub skontaktuj się z administratorem.", "File name is a reserved word" : "Nazwa pliku jest zarezerwowana", "File name contains at least one invalid character" : "Nazwa pliku zawiera co najmniej jeden nieprawidłowy znak", diff --git a/lib/l10n/ps.js b/lib/l10n/ps.js index b4e283e27a3..5ff71608b97 100644 --- a/lib/l10n/ps.js +++ b/lib/l10n/ps.js @@ -3,6 +3,16 @@ OC.L10N.register( { "Cannot write into \"config\" directory!" : "شسیب", "This can usually be fixed by giving the webserver write access to the config directory" : "شسیب", - "Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "شسیب" + "Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "شسیب", + "Unknown filetype" : "د فایل ډول نامعلوم دی", + "Invalid image" : "انځور سم نه دی", + "Help" : "مرسته", + "Apps" : "اپلېکشنونه", + "Settings" : "سمونې", + "Users" : "کارنان", + "Storage is temporarily not available" : "ذخیره د لنډې مودې لپاره نشته", + "Delete" : "ړنګول", + "Share" : "شریکول", + "Unlimited" : "نامحدود" }, "nplurals=2; plural=(n != 1);"); diff --git a/lib/l10n/ps.json b/lib/l10n/ps.json index 8ad0966d66e..462c4c3a69b 100644 --- a/lib/l10n/ps.json +++ b/lib/l10n/ps.json @@ -1,6 +1,16 @@ { "translations": { "Cannot write into \"config\" directory!" : "شسیب", "This can usually be fixed by giving the webserver write access to the config directory" : "شسیب", - "Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "شسیب" + "Or, if you prefer to keep config.php file read only, set the option \"config_is_read_only\" to true in it." : "شسیب", + "Unknown filetype" : "د فایل ډول نامعلوم دی", + "Invalid image" : "انځور سم نه دی", + "Help" : "مرسته", + "Apps" : "اپلېکشنونه", + "Settings" : "سمونې", + "Users" : "کارنان", + "Storage is temporarily not available" : "ذخیره د لنډې مودې لپاره نشته", + "Delete" : "ړنګول", + "Share" : "شریکول", + "Unlimited" : "نامحدود" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/lib/l10n/pt_BR.js b/lib/l10n/pt_BR.js index 9e473a1a8f3..f8aab004d0f 100644 --- a/lib/l10n/pt_BR.js +++ b/lib/l10n/pt_BR.js @@ -66,6 +66,7 @@ OC.L10N.register( "_%n minute ago_::_%n minutes ago_" : ["há %n minuto atrás","há %n minutos atrás"], "in a few seconds" : "Em alguns segundos", "seconds ago" : "segundos atrás", + "Empty file" : "Arquivo vazio", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "O módulo com a ID: %s não existe. Por favor, habilite-o nas configurações de seu aplicativo ou contacte o administrador.", "File name is a reserved word" : "O nome do arquivo é uma palavra reservada", "File name contains at least one invalid character" : "O nome do arquivo contém pelo menos um caracter inválido", diff --git a/lib/l10n/pt_BR.json b/lib/l10n/pt_BR.json index 4fea0ce642c..7c944dcf3e8 100644 --- a/lib/l10n/pt_BR.json +++ b/lib/l10n/pt_BR.json @@ -64,6 +64,7 @@ "_%n minute ago_::_%n minutes ago_" : ["há %n minuto atrás","há %n minutos atrás"], "in a few seconds" : "Em alguns segundos", "seconds ago" : "segundos atrás", + "Empty file" : "Arquivo vazio", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "O módulo com a ID: %s não existe. Por favor, habilite-o nas configurações de seu aplicativo ou contacte o administrador.", "File name is a reserved word" : "O nome do arquivo é uma palavra reservada", "File name contains at least one invalid character" : "O nome do arquivo contém pelo menos um caracter inválido", diff --git a/lib/l10n/pt_PT.js b/lib/l10n/pt_PT.js index 91d7a473964..e9509879533 100644 --- a/lib/l10n/pt_PT.js +++ b/lib/l10n/pt_PT.js @@ -24,6 +24,7 @@ OC.L10N.register( "Following platforms are supported: %s" : "São suportadas as seguintes plataformas: %s", "Server version %s or higher is required." : "É necessária versão do servidor %s or superior. ", "Server version %s or lower is required." : "É necessária versão do servidor %s or inferior.", + "Authentication" : "Autenticação", "Unknown filetype" : "Tipo de ficheiro desconhecido", "Invalid image" : "Imagem inválida", "Avatar image is not square" : "A imagem do avatar não é quadrada.", @@ -86,13 +87,19 @@ OC.L10N.register( "Sharing backend %s must implement the interface OCP\\Share_Backend" : "Ao partilhar a interface %s deve implementar a interface OCP\\Share_Backend", "Sharing backend %s not found" : "Não foi encontrada a partilha da interface %s", "Sharing backend for %s not found" : "Não foi encontrada a partilha da interface para %s", + "%1$s shared »%2$s« with you and wants to add:" : "%1$s partilhado »%2$s« consigo e quer adicionar:", + "%1$s shared »%2$s« with you and wants to add" : "%1$s partilhado »%2$s« consigo e quer adicionar:", + "»%s« added a note to a file shared with you" : "»%s« adicionou uma nota a um ficheiro partilhado consigo", "Open »%s«" : "Abrir »%s«", + "%1$s via %2$s" : "%1$s via %2$s", "You are not allowed to share %s" : "Não está autorizado a partilhar %s", "Can’t increase permissions of %s" : "Não é possível aumentar as permissões de %s", "Files can’t be shared with delete permissions" : "Ficheiros não podem ser partilhados com permissões de apagar", "Files can’t be shared with create permissions" : "Ficheiros não podem ser partilhados com permissões de criação", "Expiration date is in the past" : "A data de expiração está no passado", "Can’t set expiration date more than %s days in the future" : "Não é possível definir data de expiração a mais de %s dias no futuro", + "%1$s shared »%2$s« with you" : "%1$s partilhado »%2$s« contigo", + "%1$s shared »%2$s« with you." : "%1$s partilhado »%2$s« contigo.", "Click the button below to open it." : "Clicar no botão abaixo para abrir.", "The requested share does not exist anymore" : "A partilha requisitada já não existe", "Could not find category \"%s\"" : "Não foi encontrado a categoria \"%s\"", @@ -191,6 +198,9 @@ OC.L10N.register( "Storage connection error. %s" : "Erro de ligação ao armazenamento. %s", "Storage is temporarily not available" : "Armazenamento temporariamente indisponível", "Storage connection timeout. %s" : "Tempo de ligação ao armazenamento expirou. %s", + "Create" : "Criar", + "Delete" : "Apagar", + "Share" : "Partilhar", "Unlimited" : "Ilimitado", "Verifying" : "A verificar", "Verifying …" : "A verificar...", diff --git a/lib/l10n/pt_PT.json b/lib/l10n/pt_PT.json index 198952d3dfc..56b42b14ce9 100644 --- a/lib/l10n/pt_PT.json +++ b/lib/l10n/pt_PT.json @@ -22,6 +22,7 @@ "Following platforms are supported: %s" : "São suportadas as seguintes plataformas: %s", "Server version %s or higher is required." : "É necessária versão do servidor %s or superior. ", "Server version %s or lower is required." : "É necessária versão do servidor %s or inferior.", + "Authentication" : "Autenticação", "Unknown filetype" : "Tipo de ficheiro desconhecido", "Invalid image" : "Imagem inválida", "Avatar image is not square" : "A imagem do avatar não é quadrada.", @@ -84,13 +85,19 @@ "Sharing backend %s must implement the interface OCP\\Share_Backend" : "Ao partilhar a interface %s deve implementar a interface OCP\\Share_Backend", "Sharing backend %s not found" : "Não foi encontrada a partilha da interface %s", "Sharing backend for %s not found" : "Não foi encontrada a partilha da interface para %s", + "%1$s shared »%2$s« with you and wants to add:" : "%1$s partilhado »%2$s« consigo e quer adicionar:", + "%1$s shared »%2$s« with you and wants to add" : "%1$s partilhado »%2$s« consigo e quer adicionar:", + "»%s« added a note to a file shared with you" : "»%s« adicionou uma nota a um ficheiro partilhado consigo", "Open »%s«" : "Abrir »%s«", + "%1$s via %2$s" : "%1$s via %2$s", "You are not allowed to share %s" : "Não está autorizado a partilhar %s", "Can’t increase permissions of %s" : "Não é possível aumentar as permissões de %s", "Files can’t be shared with delete permissions" : "Ficheiros não podem ser partilhados com permissões de apagar", "Files can’t be shared with create permissions" : "Ficheiros não podem ser partilhados com permissões de criação", "Expiration date is in the past" : "A data de expiração está no passado", "Can’t set expiration date more than %s days in the future" : "Não é possível definir data de expiração a mais de %s dias no futuro", + "%1$s shared »%2$s« with you" : "%1$s partilhado »%2$s« contigo", + "%1$s shared »%2$s« with you." : "%1$s partilhado »%2$s« contigo.", "Click the button below to open it." : "Clicar no botão abaixo para abrir.", "The requested share does not exist anymore" : "A partilha requisitada já não existe", "Could not find category \"%s\"" : "Não foi encontrado a categoria \"%s\"", @@ -189,6 +196,9 @@ "Storage connection error. %s" : "Erro de ligação ao armazenamento. %s", "Storage is temporarily not available" : "Armazenamento temporariamente indisponível", "Storage connection timeout. %s" : "Tempo de ligação ao armazenamento expirou. %s", + "Create" : "Criar", + "Delete" : "Apagar", + "Share" : "Partilhar", "Unlimited" : "Ilimitado", "Verifying" : "A verificar", "Verifying …" : "A verificar...", diff --git a/lib/l10n/ro.js b/lib/l10n/ro.js index 3412b82f520..2706784699c 100644 --- a/lib/l10n/ro.js +++ b/lib/l10n/ro.js @@ -17,6 +17,7 @@ OC.L10N.register( "The command line tool %s could not be found" : "Unealta în linie de comandă %s nu a fost găsită", "The library %s is not available." : "Biblioteca %s nu este disponibilă.", "Following platforms are supported: %s" : "Sunt suportate următoarele platforme: %s", + "Authentication" : "Autentificare", "Unknown filetype" : "Tip fișier necunoscut", "Invalid image" : "Imagine invalidă", "today" : "astăzi", @@ -58,9 +59,14 @@ OC.L10N.register( "Set an admin username." : "Setează un nume de administrator.", "Set an admin password." : "Setează o parolă de administrator.", "Invalid Federated Cloud ID" : "ID invalid cloud federalizat", + "»%s« added a note to a file shared with you" : "%s« a adaugat un comentariu la un fișier partajat cu tine", + "Open »%s«" : "Deschide »%s«", + "%1$s via %2$s" : "%1$sprin %2$s", "You are not allowed to share %s" : "Nu există permisiunea de partajare %s", "Files can’t be shared with delete permissions" : "Fișierele nu pot fi partajate cu permisiuni de ștergere", "Expiration date is in the past" : "Data expirării este în trecut", + "%1$s shared »%2$s« with you." : "%1$sa partajat »%2$s« cu tine.", + "Click the button below to open it." : "Apasă pe butonul de jos pentru a deschide.", "Could not find category \"%s\"" : "Cloud nu a gasit categoria \"%s\"", "Sunday" : "Duminică", "Monday" : "Luni", @@ -125,6 +131,12 @@ OC.L10N.register( "PHP modules have been installed, but they are still listed as missing?" : "Modulele PHP au fost instalate, dar apar ca lipsind?", "PostgreSQL >= 9 required" : "Este necesară versiunea 9 sau mai mare a PostgreSQL", "Please upgrade your database version" : "Actualizați baza de date la o versiune mai nouă", + "Storage is temporarily not available" : "Spațiu de stocare este indisponibil temporar", + "Create" : "Creează", + "Delete" : "Șterge", + "Share" : "Partajează", + "Unlimited" : "Nelimitată", + "Verifying" : "Se verifică", "Verifying …" : "Se verifică ...", "Verify" : "Verifică", "Sharing %s failed, because the file does not exist" : "Partajarea %s a eșuat deoarece fișierul nu există", diff --git a/lib/l10n/ro.json b/lib/l10n/ro.json index 5cd07547156..35dd15e4cab 100644 --- a/lib/l10n/ro.json +++ b/lib/l10n/ro.json @@ -15,6 +15,7 @@ "The command line tool %s could not be found" : "Unealta în linie de comandă %s nu a fost găsită", "The library %s is not available." : "Biblioteca %s nu este disponibilă.", "Following platforms are supported: %s" : "Sunt suportate următoarele platforme: %s", + "Authentication" : "Autentificare", "Unknown filetype" : "Tip fișier necunoscut", "Invalid image" : "Imagine invalidă", "today" : "astăzi", @@ -56,9 +57,14 @@ "Set an admin username." : "Setează un nume de administrator.", "Set an admin password." : "Setează o parolă de administrator.", "Invalid Federated Cloud ID" : "ID invalid cloud federalizat", + "»%s« added a note to a file shared with you" : "%s« a adaugat un comentariu la un fișier partajat cu tine", + "Open »%s«" : "Deschide »%s«", + "%1$s via %2$s" : "%1$sprin %2$s", "You are not allowed to share %s" : "Nu există permisiunea de partajare %s", "Files can’t be shared with delete permissions" : "Fișierele nu pot fi partajate cu permisiuni de ștergere", "Expiration date is in the past" : "Data expirării este în trecut", + "%1$s shared »%2$s« with you." : "%1$sa partajat »%2$s« cu tine.", + "Click the button below to open it." : "Apasă pe butonul de jos pentru a deschide.", "Could not find category \"%s\"" : "Cloud nu a gasit categoria \"%s\"", "Sunday" : "Duminică", "Monday" : "Luni", @@ -123,6 +129,12 @@ "PHP modules have been installed, but they are still listed as missing?" : "Modulele PHP au fost instalate, dar apar ca lipsind?", "PostgreSQL >= 9 required" : "Este necesară versiunea 9 sau mai mare a PostgreSQL", "Please upgrade your database version" : "Actualizați baza de date la o versiune mai nouă", + "Storage is temporarily not available" : "Spațiu de stocare este indisponibil temporar", + "Create" : "Creează", + "Delete" : "Șterge", + "Share" : "Partajează", + "Unlimited" : "Nelimitată", + "Verifying" : "Se verifică", "Verifying …" : "Se verifică ...", "Verify" : "Verifică", "Sharing %s failed, because the file does not exist" : "Partajarea %s a eșuat deoarece fișierul nu există", diff --git a/lib/l10n/si_LK.js b/lib/l10n/si_LK.js index e90fac8266c..28174652723 100644 --- a/lib/l10n/si_LK.js +++ b/lib/l10n/si_LK.js @@ -1,16 +1,64 @@ OC.L10N.register( "lib", { + "Unknown filetype" : "ගොනු මාදිලිය දෝෂ සහිතයි", + "Invalid image" : "පින්තුරය දෝෂ සහිතයි", "today" : "අද", "yesterday" : "ඊයේ", "last month" : "පෙර මාසයේ", "last year" : "පෙර අවුරුද්දේ", "seconds ago" : "තත්පරයන්ට පෙර", "__language_name__" : "සිංහල", + "Help" : "උදව්", "Apps" : "යෙදුම්", + "Settings" : "සැකසුම්", + "Log out" : "නික්මීම", "Users" : "පරිශීලකයන්", + "Unknown user" : "හදුනානොගත් සේවාදායකයා", + "Sharing" : "හුවමාරු කිරීම", + "Sunday" : "ඉරිදා", + "Monday" : "සඳුදා", + "Tuesday" : "අඟහරුවාදා", + "Wednesday" : "බදාදා", + "Thursday" : "බ්රහස්පතින්දා", + "Friday" : "සිකුරාදා", + "Saturday" : "සෙනසුරාදා", + "Sun." : "ඉරිදා", + "Mon." : "සඳුදා", + "Tue." : "අඟ.", + "Wed." : "බදාදා", + "Thu." : "බ්රහස්.", + "Fri." : "සිකු.", + "Sat." : "සෙන.", + "January" : "ජනවාරි", + "February" : "පෙබරවාරි", + "March" : "මාර්තු", + "April" : "අප්රේල්", + "May" : "මැයි", + "June" : "ජූනි", + "July" : "ජූලි", + "August" : "අගෝස්තු", + "September" : "සැප්තැම්බර්", + "October" : "ඔක්තෝබර", + "November" : "නොවැම්බර්", + "December" : "දෙසැම්බර්", + "Jan." : "ජන.", + "Feb." : "පෙබ.", + "Mar." : "මාර්තු", + "Apr." : "අප්රේල්", + "May." : "මැයි", + "Jun." : "ජුනි", + "Jul." : "ජුලි", + "Aug." : "අගෝ.", + "Sep." : "සැප්.", + "Oct." : "ඔක්.", + "Nov." : "නොවැ.", + "Dec." : "දෙසැ.", "Application is not enabled" : "යෙදුම සක්රිය කර නොමැත", "Authentication error" : "සත්යාපන දෝෂයක්", - "Token expired. Please reload page." : "ටෝකනය කල් ඉකුත් වී ඇත. පිටුව නැවුම් කරන්න" + "Token expired. Please reload page." : "ටෝකනය කල් ඉකුත් වී ඇත. පිටුව නැවුම් කරන්න", + "Create" : "තනන්න", + "Delete" : "ඉවත් කරන්න", + "Share" : "බෙදා හදා ගන්න" }, "nplurals=2; plural=(n != 1);"); diff --git a/lib/l10n/si_LK.json b/lib/l10n/si_LK.json index adb01c28391..3f2a5241842 100644 --- a/lib/l10n/si_LK.json +++ b/lib/l10n/si_LK.json @@ -1,14 +1,62 @@ { "translations": { + "Unknown filetype" : "ගොනු මාදිලිය දෝෂ සහිතයි", + "Invalid image" : "පින්තුරය දෝෂ සහිතයි", "today" : "අද", "yesterday" : "ඊයේ", "last month" : "පෙර මාසයේ", "last year" : "පෙර අවුරුද්දේ", "seconds ago" : "තත්පරයන්ට පෙර", "__language_name__" : "සිංහල", + "Help" : "උදව්", "Apps" : "යෙදුම්", + "Settings" : "සැකසුම්", + "Log out" : "නික්මීම", "Users" : "පරිශීලකයන්", + "Unknown user" : "හදුනානොගත් සේවාදායකයා", + "Sharing" : "හුවමාරු කිරීම", + "Sunday" : "ඉරිදා", + "Monday" : "සඳුදා", + "Tuesday" : "අඟහරුවාදා", + "Wednesday" : "බදාදා", + "Thursday" : "බ්රහස්පතින්දා", + "Friday" : "සිකුරාදා", + "Saturday" : "සෙනසුරාදා", + "Sun." : "ඉරිදා", + "Mon." : "සඳුදා", + "Tue." : "අඟ.", + "Wed." : "බදාදා", + "Thu." : "බ්රහස්.", + "Fri." : "සිකු.", + "Sat." : "සෙන.", + "January" : "ජනවාරි", + "February" : "පෙබරවාරි", + "March" : "මාර්තු", + "April" : "අප්රේල්", + "May" : "මැයි", + "June" : "ජූනි", + "July" : "ජූලි", + "August" : "අගෝස්තු", + "September" : "සැප්තැම්බර්", + "October" : "ඔක්තෝබර", + "November" : "නොවැම්බර්", + "December" : "දෙසැම්බර්", + "Jan." : "ජන.", + "Feb." : "පෙබ.", + "Mar." : "මාර්තු", + "Apr." : "අප්රේල්", + "May." : "මැයි", + "Jun." : "ජුනි", + "Jul." : "ජුලි", + "Aug." : "අගෝ.", + "Sep." : "සැප්.", + "Oct." : "ඔක්.", + "Nov." : "නොවැ.", + "Dec." : "දෙසැ.", "Application is not enabled" : "යෙදුම සක්රිය කර නොමැත", "Authentication error" : "සත්යාපන දෝෂයක්", - "Token expired. Please reload page." : "ටෝකනය කල් ඉකුත් වී ඇත. පිටුව නැවුම් කරන්න" + "Token expired. Please reload page." : "ටෝකනය කල් ඉකුත් වී ඇත. පිටුව නැවුම් කරන්න", + "Create" : "තනන්න", + "Delete" : "ඉවත් කරන්න", + "Share" : "බෙදා හදා ගන්න" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/lib/l10n/sk.js b/lib/l10n/sk.js index cce6c45cd8b..30b5f7f0950 100644 --- a/lib/l10n/sk.js +++ b/lib/l10n/sk.js @@ -29,6 +29,7 @@ OC.L10N.register( "Server version %s or higher is required." : "Je vyžadovaná verzia servera %s alebo vyššia.", "Server version %s or lower is required." : "Je vyžadovaná verzia servera %s alebo nižšia.", "Logged in user must be an admin" : "Prihlásený používateľ musí byť správca", + "Authentication" : "Autentifikácia", "Unknown filetype" : "Neznámy typ súboru", "Invalid image" : "Chybný obrázok", "Avatar image is not square" : "Obrázok avatara nie je štvorcový", diff --git a/lib/l10n/sk.json b/lib/l10n/sk.json index fc841c90b9b..1998bdd8341 100644 --- a/lib/l10n/sk.json +++ b/lib/l10n/sk.json @@ -27,6 +27,7 @@ "Server version %s or higher is required." : "Je vyžadovaná verzia servera %s alebo vyššia.", "Server version %s or lower is required." : "Je vyžadovaná verzia servera %s alebo nižšia.", "Logged in user must be an admin" : "Prihlásený používateľ musí byť správca", + "Authentication" : "Autentifikácia", "Unknown filetype" : "Neznámy typ súboru", "Invalid image" : "Chybný obrázok", "Avatar image is not square" : "Obrázok avatara nie je štvorcový", diff --git a/lib/l10n/sl.js b/lib/l10n/sl.js index b8c6733aee5..b920c5b5ed5 100644 --- a/lib/l10n/sl.js +++ b/lib/l10n/sl.js @@ -87,9 +87,12 @@ OC.L10N.register( "Sharing backend %s must implement the interface OCP\\Share_Backend" : "Souporaba ozadnjega programa %s mora vsebovati tudi vmesnik OCP\\Share_Backend", "Sharing backend %s not found" : "Ozadnjega programa %s za souporabo ni mogoče najti", "Sharing backend for %s not found" : "Ozadnjega programa za souporabo za %s ni mogoče najti", + "»%s« added a note to a file shared with you" : "»%s« doda opombo k datoteki v souporabi", "Open »%s«" : "Odpri »%s«", + "%1$s via %2$s" : "%1$s prek %2$s", "You are not allowed to share %s" : "Omogočanje souporabe %s brez ustreznih dovoljenj ni mogoče.", "Expiration date is in the past" : "Datum preteka je že mimo!", + "Click the button below to open it." : "Kliknite na gumb za odpiranje.", "Could not find category \"%s\"" : "Kategorije »%s« ni mogoče najti.", "Sunday" : "nedelja", "Monday" : "ponedeljek", @@ -180,6 +183,7 @@ OC.L10N.register( "Create" : "Ustvari", "Change" : "Spremeni", "Delete" : "Izbriši", + "Share" : "Souporaba", "Unlimited" : "Neomejeno", "Verifying" : "Overjanje", "Verifying …" : "Poteka overjanje ...", diff --git a/lib/l10n/sl.json b/lib/l10n/sl.json index e0319421631..5d9ff844add 100644 --- a/lib/l10n/sl.json +++ b/lib/l10n/sl.json @@ -85,9 +85,12 @@ "Sharing backend %s must implement the interface OCP\\Share_Backend" : "Souporaba ozadnjega programa %s mora vsebovati tudi vmesnik OCP\\Share_Backend", "Sharing backend %s not found" : "Ozadnjega programa %s za souporabo ni mogoče najti", "Sharing backend for %s not found" : "Ozadnjega programa za souporabo za %s ni mogoče najti", + "»%s« added a note to a file shared with you" : "»%s« doda opombo k datoteki v souporabi", "Open »%s«" : "Odpri »%s«", + "%1$s via %2$s" : "%1$s prek %2$s", "You are not allowed to share %s" : "Omogočanje souporabe %s brez ustreznih dovoljenj ni mogoče.", "Expiration date is in the past" : "Datum preteka je že mimo!", + "Click the button below to open it." : "Kliknite na gumb za odpiranje.", "Could not find category \"%s\"" : "Kategorije »%s« ni mogoče najti.", "Sunday" : "nedelja", "Monday" : "ponedeljek", @@ -178,6 +181,7 @@ "Create" : "Ustvari", "Change" : "Spremeni", "Delete" : "Izbriši", + "Share" : "Souporaba", "Unlimited" : "Neomejeno", "Verifying" : "Overjanje", "Verifying …" : "Poteka overjanje ...", diff --git a/lib/l10n/sq.js b/lib/l10n/sq.js index 9043820e59a..690b1215863 100644 --- a/lib/l10n/sq.js +++ b/lib/l10n/sq.js @@ -24,6 +24,7 @@ OC.L10N.register( "Following platforms are supported: %s" : "Mbulohen platformat vijuese: %s", "Server version %s or higher is required." : "Versioni i serverit kërkohet %s ose më lartë", "Server version %s or lower is required." : "Versioni i serverit kërkohet %s ose më poshtë", + "Authentication" : "Mirëfilltësim", "Unknown filetype" : "Lloj i panjohur skedari", "Invalid image" : "Figurë e pavlefshme", "Avatar image is not square" : "Imazhi avatar nuk është katror", @@ -181,6 +182,10 @@ OC.L10N.register( "Storage connection error. %s" : "Gabim lidhje te depozita. %s", "Storage is temporarily not available" : "Hapsira ruajtëse nuk është në dispozicion përkohësisht", "Storage connection timeout. %s" : "Mbarim kohe lidhjeje për depozitën. %s", + "Create" : "Krijo", + "Change" : "Ndrysho", + "Delete" : "Delete", + "Share" : "Shpërndaje", "Unlimited" : "E palimituar", "Verifying" : "Duke e verifikuar", "Verifying …" : "Duke e verifikuar ...", diff --git a/lib/l10n/sq.json b/lib/l10n/sq.json index da2f5623707..3edce07ff6c 100644 --- a/lib/l10n/sq.json +++ b/lib/l10n/sq.json @@ -22,6 +22,7 @@ "Following platforms are supported: %s" : "Mbulohen platformat vijuese: %s", "Server version %s or higher is required." : "Versioni i serverit kërkohet %s ose më lartë", "Server version %s or lower is required." : "Versioni i serverit kërkohet %s ose më poshtë", + "Authentication" : "Mirëfilltësim", "Unknown filetype" : "Lloj i panjohur skedari", "Invalid image" : "Figurë e pavlefshme", "Avatar image is not square" : "Imazhi avatar nuk është katror", @@ -179,6 +180,10 @@ "Storage connection error. %s" : "Gabim lidhje te depozita. %s", "Storage is temporarily not available" : "Hapsira ruajtëse nuk është në dispozicion përkohësisht", "Storage connection timeout. %s" : "Mbarim kohe lidhjeje për depozitën. %s", + "Create" : "Krijo", + "Change" : "Ndrysho", + "Delete" : "Delete", + "Share" : "Shpërndaje", "Unlimited" : "E palimituar", "Verifying" : "Duke e verifikuar", "Verifying …" : "Duke e verifikuar ...", diff --git a/lib/l10n/sr.js b/lib/l10n/sr.js index 2e26ae3fd56..1e1ec2c9a2b 100644 --- a/lib/l10n/sr.js +++ b/lib/l10n/sr.js @@ -174,6 +174,7 @@ OC.L10N.register( "A valid username must be provided" : "Морате унети исправно корисничко име", "Username contains whitespace at the beginning or at the end" : "Корисничко име садржи белине на почетку или на крају", "Username must not consist of dots only" : "Корисничко име не могу бити само тачке", + "Username is invalid because files already exist for this user" : "Корисничко име није исправно пошто већ постоје фајлови за овог корисника", "A valid password must be provided" : "Морате унети исправну лозинку", "The username is already being used" : "Корисничко име се већ користи", "Could not create user" : "Не могу да направим корисника", diff --git a/lib/l10n/sr.json b/lib/l10n/sr.json index 4a4e3b95309..5de5b79988c 100644 --- a/lib/l10n/sr.json +++ b/lib/l10n/sr.json @@ -172,6 +172,7 @@ "A valid username must be provided" : "Морате унети исправно корисничко име", "Username contains whitespace at the beginning or at the end" : "Корисничко име садржи белине на почетку или на крају", "Username must not consist of dots only" : "Корисничко име не могу бити само тачке", + "Username is invalid because files already exist for this user" : "Корисничко име није исправно пошто већ постоје фајлови за овог корисника", "A valid password must be provided" : "Морате унети исправну лозинку", "The username is already being used" : "Корисничко име се већ користи", "Could not create user" : "Не могу да направим корисника", diff --git a/lib/l10n/sr@latin.js b/lib/l10n/sr@latin.js new file mode 100644 index 00000000000..8af28f81058 --- /dev/null +++ b/lib/l10n/sr@latin.js @@ -0,0 +1,17 @@ +OC.L10N.register( + "lib", + { + "__language_name__" : "Srpski", + "Help" : "Help", + "Settings" : "Postavke", + "Sunday" : "Nedelja", + "Monday" : "Ponedeljak", + "Tuesday" : "Utorak", + "Wednesday" : "Sreda", + "Thursday" : "Četvrtak", + "Friday" : "Petak", + "Saturday" : "Subota", + "Delete" : "Delete", + "Share" : "Deljenje" +}, +"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/lib/l10n/sr@latin.json b/lib/l10n/sr@latin.json new file mode 100644 index 00000000000..c0f0cbe06db --- /dev/null +++ b/lib/l10n/sr@latin.json @@ -0,0 +1,15 @@ +{ "translations": { + "__language_name__" : "Srpski", + "Help" : "Help", + "Settings" : "Postavke", + "Sunday" : "Nedelja", + "Monday" : "Ponedeljak", + "Tuesday" : "Utorak", + "Wednesday" : "Sreda", + "Thursday" : "Četvrtak", + "Friday" : "Petak", + "Saturday" : "Subota", + "Delete" : "Delete", + "Share" : "Deljenje" +},"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/lib/l10n/sv.js b/lib/l10n/sv.js index b6c155917c8..f6657b68822 100644 --- a/lib/l10n/sv.js +++ b/lib/l10n/sv.js @@ -66,6 +66,7 @@ OC.L10N.register( "_%n minute ago_::_%n minutes ago_" : ["%n minut sedan","%n minuter sedan"], "in a few seconds" : "om några sekunder", "seconds ago" : "sekunder sedan", + "Empty file" : "Tom fil", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Modul med ID: %s finns inte längre. Vänligen aktivera det i dina appinställningar eller kontakta din administratör.", "File name is a reserved word" : "Filnamnet är ett reserverat ord", "File name contains at least one invalid character" : "Filnamnet innehåller minst ett ogiltigt tecken", diff --git a/lib/l10n/sv.json b/lib/l10n/sv.json index e14f185e662..144ab4eafb5 100644 --- a/lib/l10n/sv.json +++ b/lib/l10n/sv.json @@ -64,6 +64,7 @@ "_%n minute ago_::_%n minutes ago_" : ["%n minut sedan","%n minuter sedan"], "in a few seconds" : "om några sekunder", "seconds ago" : "sekunder sedan", + "Empty file" : "Tom fil", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "Modul med ID: %s finns inte längre. Vänligen aktivera det i dina appinställningar eller kontakta din administratör.", "File name is a reserved word" : "Filnamnet är ett reserverat ord", "File name contains at least one invalid character" : "Filnamnet innehåller minst ett ogiltigt tecken", diff --git a/lib/l10n/ta_LK.js b/lib/l10n/ta_LK.js index df9a6337a1f..186a5e120d5 100644 --- a/lib/l10n/ta_LK.js +++ b/lib/l10n/ta_LK.js @@ -7,11 +7,55 @@ OC.L10N.register( "last year" : "கடந்த வருடம்", "seconds ago" : "செக்கன்களுக்கு முன்", "__language_name__" : "தமிழ்", + "Help" : "உதவி", "Apps" : "செயலிகள்", + "Settings" : "அமைப்புகள்", + "Log out" : "விடுபதிகை செய்க", "Users" : "பயனாளர்", "Could not find category \"%s\"" : "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை", + "Sunday" : "ஞாயிற்றுக்கிழமை", + "Monday" : "திங்கட்கிழமை", + "Tuesday" : "செவ்வாய்க்கிழமை", + "Wednesday" : "புதன்கிழமை", + "Thursday" : "வியாழக்கிழமை", + "Friday" : "வெள்ளிக்கிழமை", + "Saturday" : "சனிக்கிழமை", + "Sun." : "ஞாயிறு", + "Mon." : "திங்கள்", + "Tue." : "செவ்வாய்", + "Wed." : "புதன்", + "Thu." : "வியாழன்", + "Fri." : "வெள்ளி", + "Sat." : "சனி", + "January" : "தை", + "February" : "மாசி", + "March" : "பங்குனி", + "April" : "சித்திரை", + "May" : "வைகாசி", + "June" : "ஆனி", + "July" : "ஆடி", + "August" : "ஆவணி", + "September" : "புரட்டாசி", + "October" : "ஐப்பசி", + "November" : "கார்த்திகை", + "December" : "மார்கழி", + "Jan." : "தை", + "Feb." : "மாசி", + "Mar." : "பங்குனி", + "Apr." : "சித்திரை", + "May." : "வைகாசி", + "Jun." : "ஆனி", + "Jul." : "ஆடி", + "Aug." : "ஆவணி", + "Sep." : "புரட்டாதி", + "Oct." : "ஐப்பசி", + "Nov." : "கார்த்திகை", + "Dec." : "மார்கழி", "Application is not enabled" : "செயலி இயலுமைப்படுத்தப்படவில்லை", "Authentication error" : "அத்தாட்சிப்படுத்தலில் வழு", - "Token expired. Please reload page." : "அடையாளவில்லை காலாவதியாகிவிட்டது. தயவுசெய்து பக்கத்தை மீள் ஏற்றுக." + "Token expired. Please reload page." : "அடையாளவில்லை காலாவதியாகிவிட்டது. தயவுசெய்து பக்கத்தை மீள் ஏற்றுக.", + "Create" : "உருவாக்குக", + "Delete" : "நீக்குக", + "Share" : "பகிர்வு" }, "nplurals=2; plural=(n != 1);"); diff --git a/lib/l10n/ta_LK.json b/lib/l10n/ta_LK.json index b71fcc23a09..068635497e5 100644 --- a/lib/l10n/ta_LK.json +++ b/lib/l10n/ta_LK.json @@ -5,11 +5,55 @@ "last year" : "கடந்த வருடம்", "seconds ago" : "செக்கன்களுக்கு முன்", "__language_name__" : "தமிழ்", + "Help" : "உதவி", "Apps" : "செயலிகள்", + "Settings" : "அமைப்புகள்", + "Log out" : "விடுபதிகை செய்க", "Users" : "பயனாளர்", "Could not find category \"%s\"" : "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை", + "Sunday" : "ஞாயிற்றுக்கிழமை", + "Monday" : "திங்கட்கிழமை", + "Tuesday" : "செவ்வாய்க்கிழமை", + "Wednesday" : "புதன்கிழமை", + "Thursday" : "வியாழக்கிழமை", + "Friday" : "வெள்ளிக்கிழமை", + "Saturday" : "சனிக்கிழமை", + "Sun." : "ஞாயிறு", + "Mon." : "திங்கள்", + "Tue." : "செவ்வாய்", + "Wed." : "புதன்", + "Thu." : "வியாழன்", + "Fri." : "வெள்ளி", + "Sat." : "சனி", + "January" : "தை", + "February" : "மாசி", + "March" : "பங்குனி", + "April" : "சித்திரை", + "May" : "வைகாசி", + "June" : "ஆனி", + "July" : "ஆடி", + "August" : "ஆவணி", + "September" : "புரட்டாசி", + "October" : "ஐப்பசி", + "November" : "கார்த்திகை", + "December" : "மார்கழி", + "Jan." : "தை", + "Feb." : "மாசி", + "Mar." : "பங்குனி", + "Apr." : "சித்திரை", + "May." : "வைகாசி", + "Jun." : "ஆனி", + "Jul." : "ஆடி", + "Aug." : "ஆவணி", + "Sep." : "புரட்டாதி", + "Oct." : "ஐப்பசி", + "Nov." : "கார்த்திகை", + "Dec." : "மார்கழி", "Application is not enabled" : "செயலி இயலுமைப்படுத்தப்படவில்லை", "Authentication error" : "அத்தாட்சிப்படுத்தலில் வழு", - "Token expired. Please reload page." : "அடையாளவில்லை காலாவதியாகிவிட்டது. தயவுசெய்து பக்கத்தை மீள் ஏற்றுக." + "Token expired. Please reload page." : "அடையாளவில்லை காலாவதியாகிவிட்டது. தயவுசெய்து பக்கத்தை மீள் ஏற்றுக.", + "Create" : "உருவாக்குக", + "Delete" : "நீக்குக", + "Share" : "பகிர்வு" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/lib/l10n/th.js b/lib/l10n/th.js index 52c45372681..fa4107c909e 100644 --- a/lib/l10n/th.js +++ b/lib/l10n/th.js @@ -13,6 +13,7 @@ OC.L10N.register( "The command line tool %s could not be found" : "ไม่พบเครื่องมือบรรทัดคำสั่ง %s ", "The library %s is not available." : "ไลบรารี %s ไม่สามารถใช้ได้", "Following platforms are supported: %s" : "แพลตฟอร์มต่อไปนี้ได้รับการสนับสนุน: %s", + "Authentication" : "รับรองความถูกต้อง", "Unknown filetype" : "ไม่รู้จักชนิดของไฟล์", "Invalid image" : "รูปภาพไม่ถูกต้อง", "today" : "วันนี้", @@ -32,9 +33,14 @@ OC.L10N.register( "Empty filename is not allowed" : "ชื่อไฟล์ห้ามว่างเปล่า", "App \"%s\" cannot be installed because appinfo file cannot be read." : "แอพฯ \"%s\" ไม่สามารถติดตั้งได้เพราะไฟล์ appInfo ไม่สามารถอ่านได้", "__language_name__" : "ภาษาไทย - Thai languages", + "Help" : "ช่วยเหลือ", "Apps" : "แอปฯ", + "Settings" : "ตั้งค่า", + "Log out" : "ออกจากระบบ", "Users" : "ผู้ใช้งาน", "Unknown user" : "ไม่รู้จักผู้ใช้", + "Sharing" : "แชร์ข้อมูล", + "Personal info" : "ข้อมูลส่วนบุคคล", "%s enter the database username and name." : "%s ป้อนชื่อผู้ใช้ฐานข้อมูล และชื่อ", "%s enter the database username." : "%s ใส่ชื่อผู้ใช้ฐานข้อมูล", "%s enter the database name." : "%s ใส่ชื่อฐานข้อมูล", @@ -56,6 +62,51 @@ OC.L10N.register( "You are not allowed to share %s" : "คุณยังไม่ได้รับอนุญาตให้แชร์ %s", "Expiration date is in the past" : "วันหมดอายุอยู่ในอดีตที่ผ่านมา", "Could not find category \"%s\"" : "ไม่พบหมวดหมู่ \"%s\"", + "Sunday" : "วันอาทิตย์", + "Monday" : "วันจันทร์", + "Tuesday" : "วันอังคาร", + "Wednesday" : "วันพุธ", + "Thursday" : "วันพฤหัสบดี", + "Friday" : "วันศุกร์", + "Saturday" : "วันเสาร์", + "Sun." : "อา.", + "Mon." : "จ.", + "Tue." : "อ.", + "Wed." : "พ.", + "Thu." : "พฤ.", + "Fri." : "ศ.", + "Sat." : "ส.", + "Su" : "อา", + "Mo" : "จัน", + "Tu" : "อัง", + "We" : "พุธ", + "Th" : "พฤ", + "Fr" : "ศุก", + "Sa" : "เสา", + "January" : "มกราคม", + "February" : "กุมภาพันธ์", + "March" : "มีนาคม", + "April" : "เมษายน", + "May" : "พฤษภาคม", + "June" : "มิถุนายน", + "July" : "กรกฏาคม", + "August" : "สิงหาคม", + "September" : "กันยายน", + "October" : "ตุลาคม", + "November" : "พฤศจิกายน", + "December" : "ธันวาคม", + "Jan." : "ม.ค.", + "Feb." : "ก.พ.", + "Mar." : "มี.ค.", + "Apr." : "เม.ย.", + "May." : "พ.ค.", + "Jun." : "มิ.ย.", + "Jul." : "ก.ค.", + "Aug." : "ส.ค.", + "Sep." : "ก.ย.", + "Oct." : "ต.ค.", + "Nov." : "พ.ย.", + "Dec." : "ธ.ค.", "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-'\"" : "ชื่อผู้ใช้จะใช้ได้แค่อักษรดังต่อไปนี้: \"a-z\", \"A-Z\", \"0-9\" และ \"_.@-'\"", "A valid username must be provided" : "จะต้องระบุชื่อผู้ใช้ที่ถูกต้อง", "A valid password must be provided" : "รหัสผ่านที่ถูกต้องจะต้องให้", @@ -89,6 +140,10 @@ OC.L10N.register( "Storage incomplete configuration. %s" : "การตั้งค่าการจัดเก็บข้อมูลไม่สำเร็จ %s", "Storage connection error. %s" : "ข้อผิดพลาดการเชื่อมต่อพื้นที่จัดเก็บข้อมูล %s", "Storage connection timeout. %s" : "หมดเวลาการเชื่อมต่อพื้นที่จัดเก็บข้อมูล %s", + "Create" : "สร้าง", + "Delete" : "ลบ", + "Share" : "แชร์", + "Unlimited" : "ไม่จำกัด", "Sharing %s failed, because the backend does not allow shares from type %i" : "การแชร์ %s ล้มเหลวเพราะแบ็กเอนด์ไม่อนุญาตให้แชร์จากไฟล์ประเภท %i", "Sharing %s failed, because the file does not exist" : "การแชร์ %s ล้มเหลวเพราะไม่มีไฟล์นี้อยู่", "Sharing %s failed, because you can not share with yourself" : "การแขร์ %s ล้มเหลวเพราะคุณไม่สามารถแชร์ให้กับตัวเอง", diff --git a/lib/l10n/th.json b/lib/l10n/th.json index 7e392fe9905..4f67943914c 100644 --- a/lib/l10n/th.json +++ b/lib/l10n/th.json @@ -11,6 +11,7 @@ "The command line tool %s could not be found" : "ไม่พบเครื่องมือบรรทัดคำสั่ง %s ", "The library %s is not available." : "ไลบรารี %s ไม่สามารถใช้ได้", "Following platforms are supported: %s" : "แพลตฟอร์มต่อไปนี้ได้รับการสนับสนุน: %s", + "Authentication" : "รับรองความถูกต้อง", "Unknown filetype" : "ไม่รู้จักชนิดของไฟล์", "Invalid image" : "รูปภาพไม่ถูกต้อง", "today" : "วันนี้", @@ -30,9 +31,14 @@ "Empty filename is not allowed" : "ชื่อไฟล์ห้ามว่างเปล่า", "App \"%s\" cannot be installed because appinfo file cannot be read." : "แอพฯ \"%s\" ไม่สามารถติดตั้งได้เพราะไฟล์ appInfo ไม่สามารถอ่านได้", "__language_name__" : "ภาษาไทย - Thai languages", + "Help" : "ช่วยเหลือ", "Apps" : "แอปฯ", + "Settings" : "ตั้งค่า", + "Log out" : "ออกจากระบบ", "Users" : "ผู้ใช้งาน", "Unknown user" : "ไม่รู้จักผู้ใช้", + "Sharing" : "แชร์ข้อมูล", + "Personal info" : "ข้อมูลส่วนบุคคล", "%s enter the database username and name." : "%s ป้อนชื่อผู้ใช้ฐานข้อมูล และชื่อ", "%s enter the database username." : "%s ใส่ชื่อผู้ใช้ฐานข้อมูล", "%s enter the database name." : "%s ใส่ชื่อฐานข้อมูล", @@ -54,6 +60,51 @@ "You are not allowed to share %s" : "คุณยังไม่ได้รับอนุญาตให้แชร์ %s", "Expiration date is in the past" : "วันหมดอายุอยู่ในอดีตที่ผ่านมา", "Could not find category \"%s\"" : "ไม่พบหมวดหมู่ \"%s\"", + "Sunday" : "วันอาทิตย์", + "Monday" : "วันจันทร์", + "Tuesday" : "วันอังคาร", + "Wednesday" : "วันพุธ", + "Thursday" : "วันพฤหัสบดี", + "Friday" : "วันศุกร์", + "Saturday" : "วันเสาร์", + "Sun." : "อา.", + "Mon." : "จ.", + "Tue." : "อ.", + "Wed." : "พ.", + "Thu." : "พฤ.", + "Fri." : "ศ.", + "Sat." : "ส.", + "Su" : "อา", + "Mo" : "จัน", + "Tu" : "อัง", + "We" : "พุธ", + "Th" : "พฤ", + "Fr" : "ศุก", + "Sa" : "เสา", + "January" : "มกราคม", + "February" : "กุมภาพันธ์", + "March" : "มีนาคม", + "April" : "เมษายน", + "May" : "พฤษภาคม", + "June" : "มิถุนายน", + "July" : "กรกฏาคม", + "August" : "สิงหาคม", + "September" : "กันยายน", + "October" : "ตุลาคม", + "November" : "พฤศจิกายน", + "December" : "ธันวาคม", + "Jan." : "ม.ค.", + "Feb." : "ก.พ.", + "Mar." : "มี.ค.", + "Apr." : "เม.ย.", + "May." : "พ.ค.", + "Jun." : "มิ.ย.", + "Jul." : "ก.ค.", + "Aug." : "ส.ค.", + "Sep." : "ก.ย.", + "Oct." : "ต.ค.", + "Nov." : "พ.ย.", + "Dec." : "ธ.ค.", "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-'\"" : "ชื่อผู้ใช้จะใช้ได้แค่อักษรดังต่อไปนี้: \"a-z\", \"A-Z\", \"0-9\" และ \"_.@-'\"", "A valid username must be provided" : "จะต้องระบุชื่อผู้ใช้ที่ถูกต้อง", "A valid password must be provided" : "รหัสผ่านที่ถูกต้องจะต้องให้", @@ -87,6 +138,10 @@ "Storage incomplete configuration. %s" : "การตั้งค่าการจัดเก็บข้อมูลไม่สำเร็จ %s", "Storage connection error. %s" : "ข้อผิดพลาดการเชื่อมต่อพื้นที่จัดเก็บข้อมูล %s", "Storage connection timeout. %s" : "หมดเวลาการเชื่อมต่อพื้นที่จัดเก็บข้อมูล %s", + "Create" : "สร้าง", + "Delete" : "ลบ", + "Share" : "แชร์", + "Unlimited" : "ไม่จำกัด", "Sharing %s failed, because the backend does not allow shares from type %i" : "การแชร์ %s ล้มเหลวเพราะแบ็กเอนด์ไม่อนุญาตให้แชร์จากไฟล์ประเภท %i", "Sharing %s failed, because the file does not exist" : "การแชร์ %s ล้มเหลวเพราะไม่มีไฟล์นี้อยู่", "Sharing %s failed, because you can not share with yourself" : "การแขร์ %s ล้มเหลวเพราะคุณไม่สามารถแชร์ให้กับตัวเอง", diff --git a/lib/l10n/tr.js b/lib/l10n/tr.js index 604173ace77..75fa9f7874b 100644 --- a/lib/l10n/tr.js +++ b/lib/l10n/tr.js @@ -66,6 +66,7 @@ OC.L10N.register( "_%n minute ago_::_%n minutes ago_" : ["%n dakika önce","%n dakika önce"], "in a few seconds" : "bir kaç saniye içinde", "seconds ago" : "saniyeler önce", + "Empty file" : "Dosya boş", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "%s kodlu modül bulunamadı. Lütfen uygulamalarınız içinden modülü etkinleştirin ya da sistem yöneticinizle görüşün.", "File name is a reserved word" : "Bu dosya adı sistem kullanıma ayrılmıştır", "File name contains at least one invalid character" : "Dosya adında en az bir geçersiz karakter var", diff --git a/lib/l10n/tr.json b/lib/l10n/tr.json index 47cc0660be2..78a9f8bf31b 100644 --- a/lib/l10n/tr.json +++ b/lib/l10n/tr.json @@ -64,6 +64,7 @@ "_%n minute ago_::_%n minutes ago_" : ["%n dakika önce","%n dakika önce"], "in a few seconds" : "bir kaç saniye içinde", "seconds ago" : "saniyeler önce", + "Empty file" : "Dosya boş", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "%s kodlu modül bulunamadı. Lütfen uygulamalarınız içinden modülü etkinleştirin ya da sistem yöneticinizle görüşün.", "File name is a reserved word" : "Bu dosya adı sistem kullanıma ayrılmıştır", "File name contains at least one invalid character" : "Dosya adında en az bir geçersiz karakter var", diff --git a/lib/l10n/ug.js b/lib/l10n/ug.js index dceb30593e9..eda9ed6cdfa 100644 --- a/lib/l10n/ug.js +++ b/lib/l10n/ug.js @@ -4,10 +4,56 @@ OC.L10N.register( "today" : "بۈگۈن", "yesterday" : "تۈنۈگۈن", "__language_name__" : "ئۇيغۇرچە", + "Help" : "ياردەم", "Apps" : "ئەپلەر", + "Settings" : "تەڭشەكلەر", + "Log out" : "تىزىمدىن چىق", "Users" : "ئىشلەتكۈچىلەر", + "Sharing" : "ھەمبەھىر", + "Sunday" : "يەكشەنبە", + "Monday" : "دۈشەنبە", + "Tuesday" : "سەيشەنبە", + "Wednesday" : "چارشەنبە", + "Thursday" : "پەيشەنبە", + "Friday" : "جۈمە", + "Saturday" : "شەنبە", + "Sun." : "يەك", + "Mon." : "دۈش", + "Tue." : "سەي", + "Wed." : "چار", + "Thu." : "پەي", + "Fri." : "جۈم", + "Sat." : "شەن", + "January" : "قەھرىتان", + "February" : "ھۇت", + "March" : "نەۋرۇز", + "April" : "ئۇمۇت", + "May" : "باھار", + "June" : "سەپەر", + "July" : "چىللە", + "August" : "تومۇز", + "September" : "مىزان", + "October" : "ئوغۇز", + "November" : "ئوغلاق", + "December" : "كۆنەك", + "Jan." : "قەھرىتان", + "Feb." : "ھۇت", + "Mar." : "نەۋرۇز", + "Apr." : "ئۇمۇت", + "May." : "باھار", + "Jun." : "سەپەر", + "Jul." : "چىللە", + "Aug." : "تومۇز", + "Sep." : "مىزان", + "Oct." : "ئوغۇز", + "Nov." : "ئوغلاق", + "Dec." : "كۆنەك", "A valid username must be provided" : "چوقۇم ئىناۋەتلىك ئىشلەتكۈچى ئىسمىدىن بىرنى تەمىنلەش كېرەك", "A valid password must be provided" : "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك", - "Authentication error" : "سالاھىيەت دەلىللەش خاتالىقى" + "Authentication error" : "سالاھىيەت دەلىللەش خاتالىقى", + "Create" : "قۇر", + "Delete" : "ئۆچۈر", + "Share" : "ھەمبەھىر", + "Unlimited" : "چەكسىز" }, "nplurals=1; plural=0;"); diff --git a/lib/l10n/ug.json b/lib/l10n/ug.json index 8af77f82c5d..19a5853b1b5 100644 --- a/lib/l10n/ug.json +++ b/lib/l10n/ug.json @@ -2,10 +2,56 @@ "today" : "بۈگۈن", "yesterday" : "تۈنۈگۈن", "__language_name__" : "ئۇيغۇرچە", + "Help" : "ياردەم", "Apps" : "ئەپلەر", + "Settings" : "تەڭشەكلەر", + "Log out" : "تىزىمدىن چىق", "Users" : "ئىشلەتكۈچىلەر", + "Sharing" : "ھەمبەھىر", + "Sunday" : "يەكشەنبە", + "Monday" : "دۈشەنبە", + "Tuesday" : "سەيشەنبە", + "Wednesday" : "چارشەنبە", + "Thursday" : "پەيشەنبە", + "Friday" : "جۈمە", + "Saturday" : "شەنبە", + "Sun." : "يەك", + "Mon." : "دۈش", + "Tue." : "سەي", + "Wed." : "چار", + "Thu." : "پەي", + "Fri." : "جۈم", + "Sat." : "شەن", + "January" : "قەھرىتان", + "February" : "ھۇت", + "March" : "نەۋرۇز", + "April" : "ئۇمۇت", + "May" : "باھار", + "June" : "سەپەر", + "July" : "چىللە", + "August" : "تومۇز", + "September" : "مىزان", + "October" : "ئوغۇز", + "November" : "ئوغلاق", + "December" : "كۆنەك", + "Jan." : "قەھرىتان", + "Feb." : "ھۇت", + "Mar." : "نەۋرۇز", + "Apr." : "ئۇمۇت", + "May." : "باھار", + "Jun." : "سەپەر", + "Jul." : "چىللە", + "Aug." : "تومۇز", + "Sep." : "مىزان", + "Oct." : "ئوغۇز", + "Nov." : "ئوغلاق", + "Dec." : "كۆنەك", "A valid username must be provided" : "چوقۇم ئىناۋەتلىك ئىشلەتكۈچى ئىسمىدىن بىرنى تەمىنلەش كېرەك", "A valid password must be provided" : "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك", - "Authentication error" : "سالاھىيەت دەلىللەش خاتالىقى" + "Authentication error" : "سالاھىيەت دەلىللەش خاتالىقى", + "Create" : "قۇر", + "Delete" : "ئۆچۈر", + "Share" : "ھەمبەھىر", + "Unlimited" : "چەكسىز" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/lib/l10n/uk.js b/lib/l10n/uk.js index dc8d185f166..f70f42e1119 100644 --- a/lib/l10n/uk.js +++ b/lib/l10n/uk.js @@ -12,6 +12,7 @@ OC.L10N.register( "The command line tool %s could not be found" : "Утиліту командного рядка %s не знайдено", "The library %s is not available." : "Бібліотека %s недоступна.", "Following platforms are supported: %s" : "Підтримуються наступні платформи: %s", + "Authentication" : "Автентифікація", "Unknown filetype" : "Невідомий тип файлу", "Invalid image" : "Невірне зображення", "today" : "сьогодні", @@ -28,9 +29,15 @@ OC.L10N.register( "Empty filename is not allowed" : "Порожні імена файлів не допускаються", "App \"%s\" cannot be installed because appinfo file cannot be read." : "Додаток \"%s\" не може бути встановлений через те, що файл appinfo не може бути прочитано.", "__language_name__" : "Українська", + "Help" : "Допомога", "Apps" : "Додатки", + "Settings" : "Налаштування", + "Log out" : "Вихід", "Users" : "Користувачі", "Unknown user" : "Невідомий користувач", + "Sharing" : "Поділитись", + "Security" : "Безпека", + "Personal info" : "Особиста інформація", "%s enter the database username and name." : "%s введіть назву бази даних та ім'я користувача.", "%s enter the database username." : "%s введіть ім'я користувача бази даних.", "%s enter the database name." : "%s введіть назву бази даних.", @@ -50,6 +57,7 @@ OC.L10N.register( "Sharing backend %s not found" : "Backend загального доступу %s не знайдено", "Sharing backend for %s not found" : "Бекенд загального доступу для %s не знайдено", "%1$s shared »%2$s« with you and wants to add:" : "%1$s надав Вам доступ »%2$s« та хоче додати:", + "%1$s shared »%2$s« with you and wants to add" : "%1$s надав Вам доступ »%2$s« та хоче додати", "»%s« added a note to a file shared with you" : "»%s« додав нотатку до опублікованого файлу", "You are not allowed to share %s" : "Вам заборонено поширювати %s", "Expiration date is in the past" : "Дата закінчення в минулому", @@ -57,6 +65,51 @@ OC.L10N.register( "%1$s shared »%2$s« with you." : "%1$s надав Вам доступ до »%2$s«.", "Click the button below to open it." : "Для відкриття натисніть кнопку нижче.", "Could not find category \"%s\"" : "Не вдалося знайти категорію \"%s\"", + "Sunday" : "Неділя", + "Monday" : "Понеділок", + "Tuesday" : "Вівторок", + "Wednesday" : "Середа", + "Thursday" : "Четвер", + "Friday" : "П'ятниця", + "Saturday" : "Субота", + "Sun." : "Нд.", + "Mon." : "Пн.", + "Tue." : "Вт.", + "Wed." : "Ср.", + "Thu." : "Чт.", + "Fri." : "Пт.", + "Sat." : "Сб.", + "Su" : "Нд.", + "Mo" : "Пн.", + "Tu" : "Вт.", + "We" : "Ср.", + "Th" : "Чт.", + "Fr" : "Пт.", + "Sa" : "Сб.", + "January" : "Січень", + "February" : "Лютий", + "March" : "Березень", + "April" : "Квітень", + "May" : "Травень", + "June" : "Червень", + "July" : "Липень", + "August" : "Серпень", + "September" : "Вересень", + "October" : "Жовтень", + "November" : "Листопад", + "December" : "Грудень", + "Jan." : "Січ.", + "Feb." : "Лют.", + "Mar." : "Бер.", + "Apr." : "Кві.", + "May." : "Тра.", + "Jun." : "Чер.", + "Jul." : "Лип.", + "Aug." : "Сер.", + "Sep." : "Вер.", + "Oct." : "Жов.", + "Nov." : "Лис.", + "Dec." : "Гру.", "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-'\"" : "Тільки такі символи допускаються в імені користувача: \"a-z\", \"A-Z\", \"0-9\", і \"_.@-'\"", "A valid username must be provided" : "Потрібно задати вірне ім'я користувача", "Username contains whitespace at the beginning or at the end" : "Ім'я користувача містить символ пробілу в початку або в кінці", @@ -64,6 +117,7 @@ OC.L10N.register( "The username is already being used" : "Ім'я користувача вже використовується", "User disabled" : "Користувач виключений", "Login canceled by app" : "Вхід скасовано додатком", + "a safe home for all your data" : "безпечний дім для ваших даних", "File is currently busy, please try again later" : "Файл на разі зайнятий, будь ласка, спробуйте пізніше", "Can't read file" : "Не можливо прочитати файл", "Application is not enabled" : "Додаток не увімкнений", @@ -93,7 +147,14 @@ OC.L10N.register( "Storage unauthorized. %s" : "Сховище не авторизовано. %s", "Storage incomplete configuration. %s" : "Неповна конфігурація сховища. %s", "Storage connection error. %s" : "Помилка з'єднання зі сховищем. %s", + "Storage is temporarily not available" : "Сховище тимчасово недоступне", "Storage connection timeout. %s" : "Час під'єднання до сховища вичерпався. %s", + "Create" : "Створити", + "Delete" : "Видалити", + "Share" : "Поділитися", + "Unlimited" : "Необмежено", + "Verifying …" : "Перевірка ...", + "Verify" : "Перевірити", "Sharing %s failed, because the backend does not allow shares from type %i" : "Не вдалося поділитися %s, загальний доступ не допускає публікації з елементів типу %i", "Sharing %s failed, because the file does not exist" : "Не вдалося поділитися %s, оскільки файл не існує", "Sharing %s failed, because you can not share with yourself" : "Не вдалося поділитися %s, оскільки ви не можете ділитись самі з собою", diff --git a/lib/l10n/uk.json b/lib/l10n/uk.json index 578d7665012..8c38775841f 100644 --- a/lib/l10n/uk.json +++ b/lib/l10n/uk.json @@ -10,6 +10,7 @@ "The command line tool %s could not be found" : "Утиліту командного рядка %s не знайдено", "The library %s is not available." : "Бібліотека %s недоступна.", "Following platforms are supported: %s" : "Підтримуються наступні платформи: %s", + "Authentication" : "Автентифікація", "Unknown filetype" : "Невідомий тип файлу", "Invalid image" : "Невірне зображення", "today" : "сьогодні", @@ -26,9 +27,15 @@ "Empty filename is not allowed" : "Порожні імена файлів не допускаються", "App \"%s\" cannot be installed because appinfo file cannot be read." : "Додаток \"%s\" не може бути встановлений через те, що файл appinfo не може бути прочитано.", "__language_name__" : "Українська", + "Help" : "Допомога", "Apps" : "Додатки", + "Settings" : "Налаштування", + "Log out" : "Вихід", "Users" : "Користувачі", "Unknown user" : "Невідомий користувач", + "Sharing" : "Поділитись", + "Security" : "Безпека", + "Personal info" : "Особиста інформація", "%s enter the database username and name." : "%s введіть назву бази даних та ім'я користувача.", "%s enter the database username." : "%s введіть ім'я користувача бази даних.", "%s enter the database name." : "%s введіть назву бази даних.", @@ -48,6 +55,7 @@ "Sharing backend %s not found" : "Backend загального доступу %s не знайдено", "Sharing backend for %s not found" : "Бекенд загального доступу для %s не знайдено", "%1$s shared »%2$s« with you and wants to add:" : "%1$s надав Вам доступ »%2$s« та хоче додати:", + "%1$s shared »%2$s« with you and wants to add" : "%1$s надав Вам доступ »%2$s« та хоче додати", "»%s« added a note to a file shared with you" : "»%s« додав нотатку до опублікованого файлу", "You are not allowed to share %s" : "Вам заборонено поширювати %s", "Expiration date is in the past" : "Дата закінчення в минулому", @@ -55,6 +63,51 @@ "%1$s shared »%2$s« with you." : "%1$s надав Вам доступ до »%2$s«.", "Click the button below to open it." : "Для відкриття натисніть кнопку нижче.", "Could not find category \"%s\"" : "Не вдалося знайти категорію \"%s\"", + "Sunday" : "Неділя", + "Monday" : "Понеділок", + "Tuesday" : "Вівторок", + "Wednesday" : "Середа", + "Thursday" : "Четвер", + "Friday" : "П'ятниця", + "Saturday" : "Субота", + "Sun." : "Нд.", + "Mon." : "Пн.", + "Tue." : "Вт.", + "Wed." : "Ср.", + "Thu." : "Чт.", + "Fri." : "Пт.", + "Sat." : "Сб.", + "Su" : "Нд.", + "Mo" : "Пн.", + "Tu" : "Вт.", + "We" : "Ср.", + "Th" : "Чт.", + "Fr" : "Пт.", + "Sa" : "Сб.", + "January" : "Січень", + "February" : "Лютий", + "March" : "Березень", + "April" : "Квітень", + "May" : "Травень", + "June" : "Червень", + "July" : "Липень", + "August" : "Серпень", + "September" : "Вересень", + "October" : "Жовтень", + "November" : "Листопад", + "December" : "Грудень", + "Jan." : "Січ.", + "Feb." : "Лют.", + "Mar." : "Бер.", + "Apr." : "Кві.", + "May." : "Тра.", + "Jun." : "Чер.", + "Jul." : "Лип.", + "Aug." : "Сер.", + "Sep." : "Вер.", + "Oct." : "Жов.", + "Nov." : "Лис.", + "Dec." : "Гру.", "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-'\"" : "Тільки такі символи допускаються в імені користувача: \"a-z\", \"A-Z\", \"0-9\", і \"_.@-'\"", "A valid username must be provided" : "Потрібно задати вірне ім'я користувача", "Username contains whitespace at the beginning or at the end" : "Ім'я користувача містить символ пробілу в початку або в кінці", @@ -62,6 +115,7 @@ "The username is already being used" : "Ім'я користувача вже використовується", "User disabled" : "Користувач виключений", "Login canceled by app" : "Вхід скасовано додатком", + "a safe home for all your data" : "безпечний дім для ваших даних", "File is currently busy, please try again later" : "Файл на разі зайнятий, будь ласка, спробуйте пізніше", "Can't read file" : "Не можливо прочитати файл", "Application is not enabled" : "Додаток не увімкнений", @@ -91,7 +145,14 @@ "Storage unauthorized. %s" : "Сховище не авторизовано. %s", "Storage incomplete configuration. %s" : "Неповна конфігурація сховища. %s", "Storage connection error. %s" : "Помилка з'єднання зі сховищем. %s", + "Storage is temporarily not available" : "Сховище тимчасово недоступне", "Storage connection timeout. %s" : "Час під'єднання до сховища вичерпався. %s", + "Create" : "Створити", + "Delete" : "Видалити", + "Share" : "Поділитися", + "Unlimited" : "Необмежено", + "Verifying …" : "Перевірка ...", + "Verify" : "Перевірити", "Sharing %s failed, because the backend does not allow shares from type %i" : "Не вдалося поділитися %s, загальний доступ не допускає публікації з елементів типу %i", "Sharing %s failed, because the file does not exist" : "Не вдалося поділитися %s, оскільки файл не існує", "Sharing %s failed, because you can not share with yourself" : "Не вдалося поділитися %s, оскільки ви не можете ділитись самі з собою", diff --git a/lib/l10n/ur_PK.js b/lib/l10n/ur_PK.js index eba333c571b..f7136fabd09 100644 --- a/lib/l10n/ur_PK.js +++ b/lib/l10n/ur_PK.js @@ -9,7 +9,31 @@ OC.L10N.register( "last year" : "پچھلے سال", "seconds ago" : "سیکنڈز پہلے", "__language_name__" : "اردو", + "Help" : "مدد", "Apps" : "ایپز", - "Users" : "یوزرز" + "Settings" : "سیٹینگز", + "Log out" : "لاگ آؤٹ", + "Users" : "یوزرز", + "Sunday" : "اتوار", + "Monday" : "سوموار", + "Tuesday" : "منگل", + "Wednesday" : "بدھ", + "Thursday" : "جمعرات", + "Friday" : "جمعہ", + "Saturday" : "ہفتہ", + "January" : "جنوری", + "February" : "فرورئ", + "March" : "مارچ", + "April" : "اپریل", + "May" : "مئی", + "June" : "جون", + "July" : "جولائی", + "August" : "اگست", + "September" : "ستمبر", + "October" : "اکتوبر", + "November" : "نومبر", + "December" : "دسمبر", + "Delete" : "حذف کریں", + "Share" : "تقسیم" }, "nplurals=2; plural=(n != 1);"); diff --git a/lib/l10n/ur_PK.json b/lib/l10n/ur_PK.json index 6a350b48006..af09a4f8a17 100644 --- a/lib/l10n/ur_PK.json +++ b/lib/l10n/ur_PK.json @@ -7,7 +7,31 @@ "last year" : "پچھلے سال", "seconds ago" : "سیکنڈز پہلے", "__language_name__" : "اردو", + "Help" : "مدد", "Apps" : "ایپز", - "Users" : "یوزرز" + "Settings" : "سیٹینگز", + "Log out" : "لاگ آؤٹ", + "Users" : "یوزرز", + "Sunday" : "اتوار", + "Monday" : "سوموار", + "Tuesday" : "منگل", + "Wednesday" : "بدھ", + "Thursday" : "جمعرات", + "Friday" : "جمعہ", + "Saturday" : "ہفتہ", + "January" : "جنوری", + "February" : "فرورئ", + "March" : "مارچ", + "April" : "اپریل", + "May" : "مئی", + "June" : "جون", + "July" : "جولائی", + "August" : "اگست", + "September" : "ستمبر", + "October" : "اکتوبر", + "November" : "نومبر", + "December" : "دسمبر", + "Delete" : "حذف کریں", + "Share" : "تقسیم" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/lib/l10n/uz.js b/lib/l10n/uz.js index 988715b389e..395f2e8144f 100644 --- a/lib/l10n/uz.js +++ b/lib/l10n/uz.js @@ -2,6 +2,17 @@ OC.L10N.register( "lib", { "Cannot write into \"config\" directory!" : "\"Config\" katalogiga yozish mumkin emas!", - "January" : "Yanvar" + "Unknown filetype" : "Noma'lum filetype", + "Invalid image" : "Tasdiqlanmagan tasvir", + "seconds ago" : "soniya oldin", + "Help" : "Yordam", + "Apps" : "Ilovalar", + "Settings" : "Sozlamalar", + "Users" : "Foydalanuvchilar", + "Unknown user" : "Noma'lum foydalanuvchi", + "January" : "Yanvar", + "Storage is temporarily not available" : "Saqlash vaqti-vaqti bilan mavjud emas", + "Delete" : "O'chir", + "Verify" : "Tasdiqlang" }, "nplurals=1; plural=0;"); diff --git a/lib/l10n/uz.json b/lib/l10n/uz.json index b0a64514c3e..7474f62edf6 100644 --- a/lib/l10n/uz.json +++ b/lib/l10n/uz.json @@ -1,5 +1,16 @@ { "translations": { "Cannot write into \"config\" directory!" : "\"Config\" katalogiga yozish mumkin emas!", - "January" : "Yanvar" + "Unknown filetype" : "Noma'lum filetype", + "Invalid image" : "Tasdiqlanmagan tasvir", + "seconds ago" : "soniya oldin", + "Help" : "Yordam", + "Apps" : "Ilovalar", + "Settings" : "Sozlamalar", + "Users" : "Foydalanuvchilar", + "Unknown user" : "Noma'lum foydalanuvchi", + "January" : "Yanvar", + "Storage is temporarily not available" : "Saqlash vaqti-vaqti bilan mavjud emas", + "Delete" : "O'chir", + "Verify" : "Tasdiqlang" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/lib/l10n/vi.js b/lib/l10n/vi.js index d426768f205..917b1b807ed 100644 --- a/lib/l10n/vi.js +++ b/lib/l10n/vi.js @@ -14,12 +14,68 @@ OC.L10N.register( "_%n minute ago_::_%n minutes ago_" : ["%n phút trước"], "seconds ago" : "vài giây trước", "__language_name__" : "Tiếng Việt", + "Help" : "Giúp đỡ", "Apps" : "Ứng dụng", + "Settings" : "Thiết lập", + "Log out" : "Đăng xuất", "Users" : "Người dùng", + "Unknown user" : "Người dùng không tồn tại", + "Sharing" : "Đang chia sẽ", + "Security" : "Bảo mật", "Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Hãy xóa thiết lập open_basedir tại tập tin cấu hình php.ini hoặc chuyển sang dùng PHP 64-bit.", + "Open »%s«" : "Mở »%s«", "Could not find category \"%s\"" : "không thể tìm thấy mục \"%s\"", + "Sunday" : "Chủ nhật", + "Monday" : "Thứ 2", + "Tuesday" : "Thứ 3", + "Wednesday" : "Thứ 4", + "Thursday" : "Thứ 5", + "Friday" : "Thứ ", + "Saturday" : "Thứ 7", + "Sun." : "Chủ nhật", + "Mon." : "Thứ hai", + "Tue." : "Thứ ba", + "Wed." : "Thứ tư", + "Thu." : "Thứ năm", + "Fri." : "Thứ sáu", + "Sat." : "Thứ bảy", + "January" : "Tháng 1", + "February" : "Tháng 2", + "March" : "Tháng 3", + "April" : "Tháng 4", + "May" : "Tháng 5", + "June" : "Tháng 6", + "July" : "Tháng 7", + "August" : "Tháng 8", + "September" : "Tháng 9", + "October" : "Tháng 10", + "November" : "Tháng 11", + "December" : "Tháng 12", + "Jan." : "Tháng 1", + "Feb." : "Tháng 2", + "Mar." : "Tháng 3", + "Apr." : "Tháng 4", + "May." : "Tháng 5", + "Jun." : "Tháng 6", + "Jul." : "Tháng 7", + "Aug." : "Tháng 8", + "Sep." : "Tháng 9", + "Oct." : "Tháng 10", + "Nov." : "Tháng 11", + "Dec." : "Tháng 12", + "User disabled" : "Vô hiệu hóa sử dụng", + "a safe home for all your data" : "Một ngôi nhà an toàn cho toàn bộ dữ liệu của bạn", "Application is not enabled" : "Ứng dụng không được BẬT", "Authentication error" : "Lỗi xác thực", - "Token expired. Please reload page." : "Mã Token đã hết hạn. Hãy tải lại trang." + "Token expired. Please reload page." : "Mã Token đã hết hạn. Hãy tải lại trang.", + "Storage is temporarily not available" : "Kho lưu trữ tạm thời không khả dụng", + "Create" : "Tạo mới", + "Change" : "Chỉnh sửa", + "Delete" : "Xóa", + "Share" : "Chia sẻ", + "Unlimited" : "Không giới hạn", + "Verifying" : "Đang xác minh", + "Verifying …" : "Đang xác minh ...", + "Verify" : "Xác minh" }, "nplurals=1; plural=0;"); diff --git a/lib/l10n/vi.json b/lib/l10n/vi.json index 7fe311f7019..9f03e9baf5e 100644 --- a/lib/l10n/vi.json +++ b/lib/l10n/vi.json @@ -12,12 +12,68 @@ "_%n minute ago_::_%n minutes ago_" : ["%n phút trước"], "seconds ago" : "vài giây trước", "__language_name__" : "Tiếng Việt", + "Help" : "Giúp đỡ", "Apps" : "Ứng dụng", + "Settings" : "Thiết lập", + "Log out" : "Đăng xuất", "Users" : "Người dùng", + "Unknown user" : "Người dùng không tồn tại", + "Sharing" : "Đang chia sẽ", + "Security" : "Bảo mật", "Please remove the open_basedir setting within your php.ini or switch to 64-bit PHP." : "Hãy xóa thiết lập open_basedir tại tập tin cấu hình php.ini hoặc chuyển sang dùng PHP 64-bit.", + "Open »%s«" : "Mở »%s«", "Could not find category \"%s\"" : "không thể tìm thấy mục \"%s\"", + "Sunday" : "Chủ nhật", + "Monday" : "Thứ 2", + "Tuesday" : "Thứ 3", + "Wednesday" : "Thứ 4", + "Thursday" : "Thứ 5", + "Friday" : "Thứ ", + "Saturday" : "Thứ 7", + "Sun." : "Chủ nhật", + "Mon." : "Thứ hai", + "Tue." : "Thứ ba", + "Wed." : "Thứ tư", + "Thu." : "Thứ năm", + "Fri." : "Thứ sáu", + "Sat." : "Thứ bảy", + "January" : "Tháng 1", + "February" : "Tháng 2", + "March" : "Tháng 3", + "April" : "Tháng 4", + "May" : "Tháng 5", + "June" : "Tháng 6", + "July" : "Tháng 7", + "August" : "Tháng 8", + "September" : "Tháng 9", + "October" : "Tháng 10", + "November" : "Tháng 11", + "December" : "Tháng 12", + "Jan." : "Tháng 1", + "Feb." : "Tháng 2", + "Mar." : "Tháng 3", + "Apr." : "Tháng 4", + "May." : "Tháng 5", + "Jun." : "Tháng 6", + "Jul." : "Tháng 7", + "Aug." : "Tháng 8", + "Sep." : "Tháng 9", + "Oct." : "Tháng 10", + "Nov." : "Tháng 11", + "Dec." : "Tháng 12", + "User disabled" : "Vô hiệu hóa sử dụng", + "a safe home for all your data" : "Một ngôi nhà an toàn cho toàn bộ dữ liệu của bạn", "Application is not enabled" : "Ứng dụng không được BẬT", "Authentication error" : "Lỗi xác thực", - "Token expired. Please reload page." : "Mã Token đã hết hạn. Hãy tải lại trang." + "Token expired. Please reload page." : "Mã Token đã hết hạn. Hãy tải lại trang.", + "Storage is temporarily not available" : "Kho lưu trữ tạm thời không khả dụng", + "Create" : "Tạo mới", + "Change" : "Chỉnh sửa", + "Delete" : "Xóa", + "Share" : "Chia sẻ", + "Unlimited" : "Không giới hạn", + "Verifying" : "Đang xác minh", + "Verifying …" : "Đang xác minh ...", + "Verify" : "Xác minh" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/lib/l10n/zh_CN.js b/lib/l10n/zh_CN.js index 744cbd12e51..97aededa2cc 100644 --- a/lib/l10n/zh_CN.js +++ b/lib/l10n/zh_CN.js @@ -66,6 +66,7 @@ OC.L10N.register( "_%n minute ago_::_%n minutes ago_" : ["%n 分钟前"], "in a few seconds" : "几秒钟内", "seconds ago" : "几秒前", + "Empty file" : "空文件", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "模块:%s不存在。请在 App 设置中开启或联系管理员。", "File name is a reserved word" : "文件名包含敏感字符", "File name contains at least one invalid character" : "文件名中存在至少一个非法字符", diff --git a/lib/l10n/zh_CN.json b/lib/l10n/zh_CN.json index abdebf1809c..e039b938a9a 100644 --- a/lib/l10n/zh_CN.json +++ b/lib/l10n/zh_CN.json @@ -64,6 +64,7 @@ "_%n minute ago_::_%n minutes ago_" : ["%n 分钟前"], "in a few seconds" : "几秒钟内", "seconds ago" : "几秒前", + "Empty file" : "空文件", "Module with ID: %s does not exist. Please enable it in your apps settings or contact your administrator." : "模块:%s不存在。请在 App 设置中开启或联系管理员。", "File name is a reserved word" : "文件名包含敏感字符", "File name contains at least one invalid character" : "文件名中存在至少一个非法字符", diff --git a/lib/l10n/zh_HK.js b/lib/l10n/zh_HK.js index 3efe314c7dc..90ef9f753ab 100644 --- a/lib/l10n/zh_HK.js +++ b/lib/l10n/zh_HK.js @@ -10,7 +10,34 @@ OC.L10N.register( "_%n minute ago_::_%n minutes ago_" : ["%n 分鐘前"], "seconds ago" : "秒前", "__language_name__" : "繁體中文(香港)", + "Help" : "幫助", "Apps" : "軟件", - "Users" : "用戶" + "Settings" : "設定", + "Log out" : "登出", + "Users" : "用戶", + "Sharing" : "分享", + "Sunday" : "星期日", + "Monday" : "星期一", + "Tuesday" : "星期二", + "Wednesday" : "星期三", + "Thursday" : "星期四", + "Friday" : "星期五", + "Saturday" : "星期六", + "January" : "一月", + "February" : "二月", + "March" : "三月", + "April" : "四月", + "May" : "五月", + "June" : "六月", + "July" : "七月", + "August" : "八月", + "September" : "九月", + "October" : "十月", + "November" : "十一月", + "December" : "十二月", + "Create" : "新增", + "Delete" : "刪除", + "Share" : "分享", + "Unlimited" : "無限" }, "nplurals=1; plural=0;"); diff --git a/lib/l10n/zh_HK.json b/lib/l10n/zh_HK.json index 30482f15116..e68c8251e88 100644 --- a/lib/l10n/zh_HK.json +++ b/lib/l10n/zh_HK.json @@ -8,7 +8,34 @@ "_%n minute ago_::_%n minutes ago_" : ["%n 分鐘前"], "seconds ago" : "秒前", "__language_name__" : "繁體中文(香港)", + "Help" : "幫助", "Apps" : "軟件", - "Users" : "用戶" + "Settings" : "設定", + "Log out" : "登出", + "Users" : "用戶", + "Sharing" : "分享", + "Sunday" : "星期日", + "Monday" : "星期一", + "Tuesday" : "星期二", + "Wednesday" : "星期三", + "Thursday" : "星期四", + "Friday" : "星期五", + "Saturday" : "星期六", + "January" : "一月", + "February" : "二月", + "March" : "三月", + "April" : "四月", + "May" : "五月", + "June" : "六月", + "July" : "七月", + "August" : "八月", + "September" : "九月", + "October" : "十月", + "November" : "十一月", + "December" : "十二月", + "Create" : "新增", + "Delete" : "刪除", + "Share" : "分享", + "Unlimited" : "無限" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/lib/l10n/zh_TW.js b/lib/l10n/zh_TW.js index 8f5cb65d6b6..5a41cb66fb3 100644 --- a/lib/l10n/zh_TW.js +++ b/lib/l10n/zh_TW.js @@ -35,6 +35,7 @@ OC.L10N.register( "A remote wipe was started on device %s" : "遠端抹除已經在裝置 %s 開始", "Remote wipe finished" : "遠端抹除已完成", "The remote wipe on %s has finished" : "%s 的遠端抹除已經完成", + "Authentication" : "驗證", "Unknown filetype" : "未知的檔案類型", "Invalid image" : "無效的圖片", "Avatar image is not square" : "頭像不是正方形", diff --git a/lib/l10n/zh_TW.json b/lib/l10n/zh_TW.json index 7a4b8d47697..97dff69a2a4 100644 --- a/lib/l10n/zh_TW.json +++ b/lib/l10n/zh_TW.json @@ -33,6 +33,7 @@ "A remote wipe was started on device %s" : "遠端抹除已經在裝置 %s 開始", "Remote wipe finished" : "遠端抹除已完成", "The remote wipe on %s has finished" : "%s 的遠端抹除已經完成", + "Authentication" : "驗證", "Unknown filetype" : "未知的檔案類型", "Invalid image" : "無效的圖片", "Avatar image is not square" : "頭像不是正方形", diff --git a/lib/private/Accounts/AccountManager.php b/lib/private/Accounts/AccountManager.php index 225d076ca37..5f2ea465ed7 100644 --- a/lib/private/Accounts/AccountManager.php +++ b/lib/private/Accounts/AccountManager.php @@ -1,11 +1,12 @@ <?php - /** * @copyright Copyright (c) 2016, ownCloud, Inc. * @copyright Copyright (c) 2016, Björn Schießle * * @author Bjoern Schiessle <bjoern@schiessle.org> * @author Björn Schießle <bjoern@schiessle.org> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Daniel Kesselberg <mail@danielkesselberg.de> * @author Joas Schilling <coding@schilljs.com> * @author Julius Härtl <jus@bitgrid.net> * @author Morris Jobke <hey@morrisjobke.de> diff --git a/lib/private/Accounts/Hooks.php b/lib/private/Accounts/Hooks.php index 268f9d82753..17eb7a3cf5a 100644 --- a/lib/private/Accounts/Hooks.php +++ b/lib/private/Accounts/Hooks.php @@ -3,6 +3,7 @@ * @copyright Copyright (c) 2016 Bjoern Schiessle <bjoern@schiessle.org> * * @author Bjoern Schiessle <bjoern@schiessle.org> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * diff --git a/lib/private/App/AppManager.php b/lib/private/App/AppManager.php index 130ea1510c3..937cc511985 100644 --- a/lib/private/App/AppManager.php +++ b/lib/private/App/AppManager.php @@ -42,6 +42,7 @@ use OCP\App\AppPathNotFoundException; use OCP\App\IAppManager; use OCP\App\ManagerEvent; use OCP\ICacheFactory; +use OCP\IConfig; use OCP\IGroup; use OCP\IGroupManager; use OCP\ILogger; @@ -66,6 +67,9 @@ class AppManager implements IAppManager { /** @var IUserSession */ private $userSession; + /** @var IConfig */ + private $config; + /** @var AppConfig */ private $appConfig; @@ -101,18 +105,21 @@ class AppManager implements IAppManager { /** * @param IUserSession $userSession + * @param IConfig $config * @param AppConfig $appConfig * @param IGroupManager $groupManager * @param ICacheFactory $memCacheFactory * @param EventDispatcherInterface $dispatcher */ public function __construct(IUserSession $userSession, + IConfig $config, AppConfig $appConfig, IGroupManager $groupManager, ICacheFactory $memCacheFactory, EventDispatcherInterface $dispatcher, ILogger $logger) { $this->userSession = $userSession; + $this->config = $config; $this->appConfig = $appConfig; $this->groupManager = $groupManager; $this->memCacheFactory = $memCacheFactory; @@ -296,16 +303,29 @@ class AppManager implements IAppManager { return isset($installedApps[$appId]); } + public function ignoreNextcloudRequirementForApp(string $appId): void { + $ignoreMaxApps = $this->config->getSystemValue('app_install_overwrite', []); + if (!in_array($appId, $ignoreMaxApps, true)) { + $ignoreMaxApps[] = $appId; + $this->config->setSystemValue('app_install_overwrite', $ignoreMaxApps); + } + } + /** * Enable an app for every user * * @param string $appId + * @param bool $forceEnable * @throws AppPathNotFoundException */ - public function enableApp($appId) { + public function enableApp(string $appId, bool $forceEnable = false): void { // Check if app exists $this->getAppPath($appId); + if ($forceEnable) { + $this->ignoreNextcloudRequirementForApp($appId); + } + $this->installedAppsCache[$appId] = 'yes'; $this->appConfig->setValue($appId, 'enabled', 'yes'); $this->dispatcher->dispatch(ManagerEvent::EVENT_APP_ENABLE, new ManagerEvent( @@ -334,10 +354,11 @@ class AppManager implements IAppManager { * * @param string $appId * @param \OCP\IGroup[] $groups + * @param bool $forceEnable * @throws \InvalidArgumentException if app can't be enabled for groups * @throws AppPathNotFoundException */ - public function enableAppForGroups($appId, $groups) { + public function enableAppForGroups(string $appId, array $groups, bool $forceEnable = false): void { // Check if app exists $this->getAppPath($appId); @@ -346,6 +367,10 @@ class AppManager implements IAppManager { throw new \InvalidArgumentException("$appId can't be enabled for groups."); } + if ($forceEnable) { + $this->ignoreNextcloudRequirementForApp($appId); + } + $groupIds = array_map(function ($group) { /** @var \OCP\IGroup $group */ return ($group instanceof IGroup) diff --git a/lib/private/App/AppStore/Fetcher/Fetcher.php b/lib/private/App/AppStore/Fetcher/Fetcher.php index 78c36d6123c..bcfea94959c 100644 --- a/lib/private/App/AppStore/Fetcher/Fetcher.php +++ b/lib/private/App/AppStore/Fetcher/Fetcher.php @@ -2,7 +2,7 @@ /** * @copyright Copyright (c) 2016 Lukas Reschke <lukas@statuscode.ch> * - * @author Arthur Schiwon <blizzz@arthur-schiwon.de> + * @author Daniel Kesselberg <mail@danielkesselberg.de> * @author Joas Schilling <coding@schilljs.com> * @author Lukas Reschke <lukas@statuscode.ch> * @author Morris Jobke <hey@morrisjobke.de> diff --git a/lib/private/App/CodeChecker/CodeChecker.php b/lib/private/App/CodeChecker/CodeChecker.php index fc35ecf39af..53fee7482ef 100644 --- a/lib/private/App/CodeChecker/CodeChecker.php +++ b/lib/private/App/CodeChecker/CodeChecker.php @@ -59,7 +59,7 @@ class CodeChecker extends BasicEmitter { public function __construct(ICheck $checkList, $checkMigrationSchema) { $this->checkList = $checkList; $this->checkMigrationSchema = $checkMigrationSchema; - $this->parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP7); + $this->parser = (new ParserFactory)->create(ParserFactory::ONLY_PHP7); } /** diff --git a/lib/private/AppFramework/DependencyInjection/DIContainer.php b/lib/private/AppFramework/DependencyInjection/DIContainer.php index 13041532927..1dbccf7590b 100644 --- a/lib/private/AppFramework/DependencyInjection/DIContainer.php +++ b/lib/private/AppFramework/DependencyInjection/DIContainer.php @@ -6,6 +6,7 @@ * @author Bernhard Posselt <dev@bernhard-posselt.com> * @author Bjoern Schiessle <bjoern@schiessle.org> * @author Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Daniel Kesselberg <mail@danielkesselberg.de> * @author Joas Schilling <coding@schilljs.com> * @author Jörn Friedrich Dreyer <jfd@butonic.de> * @author Lukas Reschke <lukas@statuscode.ch> diff --git a/lib/private/AppFramework/Middleware/AdditionalScriptsMiddleware.php b/lib/private/AppFramework/Middleware/AdditionalScriptsMiddleware.php index f8837763373..605422ffefe 100644 --- a/lib/private/AppFramework/Middleware/AdditionalScriptsMiddleware.php +++ b/lib/private/AppFramework/Middleware/AdditionalScriptsMiddleware.php @@ -5,6 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl> * + * @author Robin Appelman <robin@icewind.nl> * @author Roeland Jago Douma <roeland@famdouma.nl> * * @license GNU AGPL version 3 or any later version diff --git a/lib/private/Avatar/UserAvatar.php b/lib/private/Avatar/UserAvatar.php index 220077c32f5..8e2a7475bb9 100644 --- a/lib/private/Avatar/UserAvatar.php +++ b/lib/private/Avatar/UserAvatar.php @@ -108,12 +108,12 @@ class UserAvatar extends Avatar { try { $generated = $this->folder->getFile('generated'); - $this->config->setUserValue($this->user->getUID(), 'avatar', 'generated', 'false'); $generated->delete(); } catch (NotFoundException $e) { // } + $this->config->setUserValue($this->user->getUID(), 'avatar', 'generated', 'false'); $this->user->triggerChange('avatar', $file); } diff --git a/lib/private/Collaboration/Resources/ProviderManager.php b/lib/private/Collaboration/Resources/ProviderManager.php index 059e42dabab..095ffdcd8ee 100644 --- a/lib/private/Collaboration/Resources/ProviderManager.php +++ b/lib/private/Collaboration/Resources/ProviderManager.php @@ -1,8 +1,12 @@ <?php + declare(strict_types=1); + /** * @copyright Copyright (c) 2019 Daniel Kesselberg <mail@danielkesselberg.de> * + * @author Daniel Kesselberg <mail@danielkesselberg.de> + * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify @@ -16,7 +20,7 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ diff --git a/lib/private/DirectEditing/Manager.php b/lib/private/DirectEditing/Manager.php index fcaaf9e0303..a514eaea482 100644 --- a/lib/private/DirectEditing/Manager.php +++ b/lib/private/DirectEditing/Manager.php @@ -40,9 +40,13 @@ use OCP\Files\IRootFolder; use OCP\Files\Node; use OCP\Files\NotFoundException; use OCP\IDBConnection; +use OCP\IL10N; use OCP\IUserSession; +use OCP\L10N\IFactory; use OCP\Security\ISecureRandom; use OCP\Share\IShare; +use function array_key_exists; +use function in_array; class Manager implements IManager { @@ -61,17 +65,21 @@ class Manager implements IManager { private $random; private $userId; private $rootFolder; + /** @var IL10N */ + private $l10n; public function __construct( ISecureRandom $random, IDBConnection $connection, IUserSession $userSession, - IRootFolder $rootFolder + IRootFolder $rootFolder, + IFactory $l10nFactory ) { $this->random = $random; $this->connection = $connection; $this->userId = $userSession->getUser() ? $userSession->getUser()->getUID() : null; $this->rootFolder = $rootFolder; + $this->l10n = $l10nFactory->get('core'); } public function registerDirectEditor(IEditor $directEditor): void { @@ -88,8 +96,24 @@ class Manager implements IManager { } $templates = []; foreach ($this->editors[$editor]->getCreators() as $creator) { - if ($creator instanceof ACreateFromTemplate && $creator->getId() === $type) { - $templates = $creator->getTemplates(); + if ($creator->getId() === $type) { + $templates = [ + 'empty' => [ + 'id' => 'empty', + 'title' => $this->l10n->t('Empty file'), + 'preview' => null + ] + ]; + + if ($creator instanceof ACreateFromTemplate) { + $templates = $creator->getTemplates(); + } + + $templates = array_map(function ($template) use ($creator) { + $template['extension'] = $creator->getExtension(); + $template['mimetype'] = $creator->getMimetype(); + return $template; + }, $templates); } } $return = []; @@ -118,6 +142,9 @@ class Manager implements IManager { if ($editorId === null) { $editorId = $this->findEditorForFile($file); } + if (!array_key_exists($editorId, $this->editors)) { + throw new \RuntimeException("Editor $editorId is unknown"); + } return $this->createToken($editorId, $file, $filePath); } diff --git a/lib/private/Files/Cache/QuerySearchHelper.php b/lib/private/Files/Cache/QuerySearchHelper.php index 233c4a47291..7a0b9f3a24a 100644 --- a/lib/private/Files/Cache/QuerySearchHelper.php +++ b/lib/private/Files/Cache/QuerySearchHelper.php @@ -4,6 +4,7 @@ * * @author Robin Appelman <robin@icewind.nl> * @author Roeland Jago Douma <roeland@famdouma.nl> + * @author Tobias Kaminsky <tobias@kaminsky.me> * * @license GNU AGPL version 3 or any later version * diff --git a/lib/private/Files/Type/Detection.php b/lib/private/Files/Type/Detection.php index 530020fe4b9..1352963fc67 100644 --- a/lib/private/Files/Type/Detection.php +++ b/lib/private/Files/Type/Detection.php @@ -1,9 +1,12 @@ <?php + declare(strict_types=1); + /** * @copyright Copyright (c) 2016, ownCloud, Inc. * * @author Andreas Fischer <bantu@owncloud.com> + * @author Daniel Kesselberg <mail@danielkesselberg.de> * @author Hendrik Leppelsack <hendrik@leppelsack.de> * @author Jens-Christian Fischer <jens-christian.fischer@switch.ch> * @author Joas Schilling <coding@schilljs.com> diff --git a/lib/private/Files/Utils/Scanner.php b/lib/private/Files/Utils/Scanner.php index 53712d28171..943078215b5 100644 --- a/lib/private/Files/Utils/Scanner.php +++ b/lib/private/Files/Utils/Scanner.php @@ -3,6 +3,7 @@ * @copyright Copyright (c) 2016, ownCloud, Inc. * * @author Blaok <i@blaok.me> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * @author Jörn Friedrich Dreyer <jfd@butonic.de> * @author Morris Jobke <hey@morrisjobke.de> * @author Olivier Paroz <github@oparoz.com> diff --git a/lib/private/Hooks/BasicEmitter.php b/lib/private/Hooks/BasicEmitter.php index 37c38b4be1d..ce15dcb3db2 100644 --- a/lib/private/Hooks/BasicEmitter.php +++ b/lib/private/Hooks/BasicEmitter.php @@ -2,6 +2,7 @@ /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * @author Morris Jobke <hey@morrisjobke.de> * @author Robin Appelman <robin@icewind.nl> * diff --git a/lib/private/Hooks/Emitter.php b/lib/private/Hooks/Emitter.php index 65c99f2b94d..cd4793ef3f9 100644 --- a/lib/private/Hooks/Emitter.php +++ b/lib/private/Hooks/Emitter.php @@ -2,6 +2,7 @@ /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * @author Jörn Friedrich Dreyer <jfd@butonic.de> * @author Morris Jobke <hey@morrisjobke.de> * @author Robin Appelman <robin@icewind.nl> diff --git a/lib/private/Hooks/PublicEmitter.php b/lib/private/Hooks/PublicEmitter.php index abb4dedd667..88c3d7ff327 100644 --- a/lib/private/Hooks/PublicEmitter.php +++ b/lib/private/Hooks/PublicEmitter.php @@ -2,6 +2,7 @@ /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * @author Lukas Reschke <lukas@statuscode.ch> * @author Morris Jobke <hey@morrisjobke.de> * @author Robin Appelman <robin@icewind.nl> diff --git a/lib/private/Installer.php b/lib/private/Installer.php index 2ad1fb36af7..d583dd20761 100644 --- a/lib/private/Installer.php +++ b/lib/private/Installer.php @@ -94,10 +94,11 @@ class Installer { * Installs an app that is located in one of the app folders already * * @param string $appId App to install + * @param bool $forceEnable * @throws \Exception * @return string app ID */ - public function installApp($appId) { + public function installApp(string $appId, bool $forceEnable = false): string { $app = \OC_App::findAppInDirectories($appId); if($app === false) { throw new \Exception('App not found in any app directory'); @@ -117,7 +118,7 @@ class Installer { } $ignoreMaxApps = $this->config->getSystemValue('app_install_overwrite', []); - $ignoreMax = in_array($appId, $ignoreMaxApps); + $ignoreMax = $forceEnable || in_array($appId, $ignoreMaxApps, true); $version = implode('.', \OCP\Util::getVersion()); if (!\OC_App::isAppCompatible($version, $info, $ignoreMax)) { diff --git a/lib/private/Log/ExceptionSerializer.php b/lib/private/Log/ExceptionSerializer.php index b561316d91c..4ec35b95673 100644 --- a/lib/private/Log/ExceptionSerializer.php +++ b/lib/private/Log/ExceptionSerializer.php @@ -3,7 +3,6 @@ * @copyright Copyright (c) 2018 Robin Appelman <robin@icewind.nl> * * @author Arthur Schiwon <blizzz@arthur-schiwon.de> - * @author Joas Schilling <213943+nickvergessen@users.noreply.github.com> * @author Joas Schilling <coding@schilljs.com> * @author Morris Jobke <hey@morrisjobke.de> * @author Robin Appelman <robin@icewind.nl> diff --git a/lib/private/Notification/Manager.php b/lib/private/Notification/Manager.php index 7791258d41a..b8b549663b1 100644 --- a/lib/private/Notification/Manager.php +++ b/lib/private/Notification/Manager.php @@ -7,6 +7,7 @@ declare(strict_types=1); * * @author Joas Schilling <coding@schilljs.com> * @author Morris Jobke <hey@morrisjobke.de> + * @author Roeland Jago Douma <roeland@famdouma.nl> * * @license AGPL-3.0 * diff --git a/lib/private/Preview/Office.php b/lib/private/Preview/Office.php index af6a2ef89f8..bdf8c528135 100644 --- a/lib/private/Preview/Office.php +++ b/lib/private/Preview/Office.php @@ -60,7 +60,7 @@ abstract class Office extends ProviderV2 { $pngPreview = null; try { list($dirname, , , $filename) = array_values(pathinfo($absPath)); - $pngPreview = $dirname . '/' . $filename . '.png'; + $pngPreview = $tmpDir . '/' . $filename . '.png'; $png = new \imagick($pngPreview . '[0]'); $png->setImageFormat('jpg'); diff --git a/lib/private/Repair.php b/lib/private/Repair.php index ea06b225be4..e80d6ec7874 100644 --- a/lib/private/Repair.php +++ b/lib/private/Repair.php @@ -48,6 +48,7 @@ use OC\Repair\NC16\CleanupCardDAVPhotoCache; use OC\Repair\NC16\ClearCollectionsAccessCache; use OC\Repair\NC17\SetEnterpriseLogo; use OC\Repair\NC17\SwitchUpdateChannel; +use OC\Repair\NC18\ResetGeneratedAvatarFlag; use OC\Repair\OldGroupMembershipShares; use OC\Repair\Owncloud\DropAccountTermsTable; use OC\Repair\Owncloud\SaveAccountsTableData; @@ -157,6 +158,7 @@ class Repair implements IOutput { new ClearCollectionsAccessCache(\OC::$server->getConfig(), \OC::$server->query(IManager::class)), \OC::$server->query(SwitchUpdateChannel::class), \OC::$server->query(SetEnterpriseLogo::class), + \OC::$server->query(ResetGeneratedAvatarFlag::class), ]; } diff --git a/lib/private/Repair/NC18/ResetGeneratedAvatarFlag.php b/lib/private/Repair/NC18/ResetGeneratedAvatarFlag.php new file mode 100644 index 00000000000..1a86b8706ae --- /dev/null +++ b/lib/private/Repair/NC18/ResetGeneratedAvatarFlag.php @@ -0,0 +1,64 @@ +<?php + +declare(strict_types=1); + +/** + * @copyright Copyright (c) 2019, Joas Schilling <coding@schilljs.com> + * + * @author Joas Schilling <coding@schilljs.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OC\Repair\NC18; + +use OCP\IConfig; +use OCP\IDBConnection; +use OCP\Migration\IOutput; +use OCP\Migration\IRepairStep; + +class ResetGeneratedAvatarFlag implements IRepairStep { + + /** @var IConfig */ + private $config; + /** @var IDBConnection */ + private $connection; + + public function __construct(IConfig $config, + IDBConnection $connection) { + $this->config = $config; + $this->connection = $connection; + } + + public function getName(): string { + return 'Reset generated avatar flag'; + } + + private function shouldRun(): bool { + $versionFromBeforeUpdate = $this->config->getSystemValue('version', '0.0.0.0'); + return version_compare($versionFromBeforeUpdate, '18.0.0.5', '<='); + } + + public function run(IOutput $output): void { + if ($this->shouldRun()) { + $query = $this->connection->getQueryBuilder(); + $query->delete('preferences') + ->where($query->expr()->eq('appid', $query->createNamedParameter('avatar'))) + ->andWhere($query->expr()->eq('configkey', $query->createNamedParameter('generated'))); + } + } +} diff --git a/lib/private/Security/Normalizer/IpAddress.php b/lib/private/Security/Normalizer/IpAddress.php index 8fb7b1003c4..ef9dba6503a 100644 --- a/lib/private/Security/Normalizer/IpAddress.php +++ b/lib/private/Security/Normalizer/IpAddress.php @@ -5,6 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch> * + * @author Konrad Bucheli <kb@open.ch> * @author Lukas Reschke <lukas@statuscode.ch> * @author Roeland Jago Douma <roeland@famdouma.nl> * @author Thomas Citharel <tcit@tcit.fr> diff --git a/lib/private/Security/TrustedDomainHelper.php b/lib/private/Security/TrustedDomainHelper.php index dc6b10c92b3..473e56cdd51 100644 --- a/lib/private/Security/TrustedDomainHelper.php +++ b/lib/private/Security/TrustedDomainHelper.php @@ -4,6 +4,7 @@ * * @author Johannes Ernst <jernst@indiecomputing.com> * @author Johannes Koenig <mail@jokoenig.de> + * @author Julius Härtl <jus@bitgrid.net> * @author Lukas Reschke <lukas@statuscode.ch> * @author Morris Jobke <hey@morrisjobke.de> * @author Roeland Jago Douma <roeland@famdouma.nl> diff --git a/lib/private/Server.php b/lib/private/Server.php index b8765654c3f..caaacab0a0a 100644 --- a/lib/private/Server.php +++ b/lib/private/Server.php @@ -12,6 +12,7 @@ * @author Christopher Schäpers <kondou@ts.unde.re> * @author Christoph Wurst <christoph@winzerhof-wurst.at> * @author Damjan Georgievski <gdamjan@gmail.com> + * @author Daniel Kesselberg <mail@danielkesselberg.de> * @author Georg Ehrke <oc.list@georgehrke.com> * @author Joas Schilling <coding@schilljs.com> * @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> @@ -798,6 +799,7 @@ class Server extends ServerContainer implements IServerContainer { $this->registerService(AppManager::class, function (Server $c) { return new \OC\App\AppManager( $c->getUserSession(), + $c->getConfig(), $c->query(\OC\AppConfig::class), $c->getGroupManager(), $c->getMemCacheFactory(), @@ -1171,7 +1173,8 @@ class Server extends ServerContainer implements IServerContainer { $c->getEventDispatcher(), $c->getMailer(), $c->getURLGenerator(), - $c->getThemingDefaults() + $c->getThemingDefaults(), + $c->query(IEventDispatcher::class) ); return $manager; diff --git a/lib/private/Setup.php b/lib/private/Setup.php index beaac2118ec..a44b0fd488f 100644 --- a/lib/private/Setup.php +++ b/lib/private/Setup.php @@ -18,6 +18,8 @@ * @author Julius Härtl <jus@bitgrid.net> * @author KB7777 <k.burkowski@gmail.com> * @author Lukas Reschke <lukas@statuscode.ch> + * @author MichaIng <28480705+MichaIng@users.noreply.github.com> + * @author MichaIng <micha@dietpi.com> * @author Morris Jobke <hey@morrisjobke.de> * @author Robin Appelman <robin@icewind.nl> * @author Roeland Jago Douma <roeland@famdouma.nl> @@ -556,19 +558,29 @@ class Setup { //Require all denied $now = date('Y-m-d H:i:s'); $content = "# Generated by Nextcloud on $now\n"; - $content .= "# line below if for Apache 2.4\n"; - $content .= "<ifModule mod_authz_core.c>\n"; - $content .= "Require all denied\n"; - $content .= "</ifModule>\n\n"; - $content .= "# line below if for Apache 2.2\n"; - $content .= "<ifModule !mod_authz_core.c>\n"; - $content .= "deny from all\n"; - $content .= "Satisfy All\n"; - $content .= "</ifModule>\n\n"; - $content .= "# section for Apache 2.2 and 2.4\n"; - $content .= "<ifModule mod_autoindex.c>\n"; - $content .= "IndexIgnore *\n"; - $content .= "</ifModule>\n"; + $content .= "# Section for Apache 2.4 to 2.6\n"; + $content .= "<IfModule mod_authz_core.c>\n"; + $content .= " Require all denied\n"; + $content .= "</IfModule>\n"; + $content .= "<IfModule mod_access_compat.c>\n"; + $content .= " Order Allow,Deny\n"; + $content .= " Deny from all\n"; + $content .= " Satisfy All\n"; + $content .= "</IfModule>\n\n"; + $content .= "# Section for Apache 2.2\n"; + $content .= "<IfModule !mod_authz_core.c>\n"; + $content .= " <IfModule !mod_access_compat.c>\n"; + $content .= " <IfModule mod_authz_host.c>\n"; + $content .= " Order Allow,Deny\n"; + $content .= " Deny from all\n"; + $content .= " <IifModule>\n"; + $content .= " Satisfy All\n"; + $content .= " </IfModule>\n"; + $content .= "</IfModule>\n\n"; + $content .= "# Section for Apache 2.2 to 2.6\n"; + $content .= "<IfModule mod_autoindex.c>\n"; + $content .= " IndexIgnore *\n"; + $content .= "</IfModule>"; $baseDir = \OC::$server->getConfig()->getSystemValue('datadirectory', \OC::$SERVERROOT . '/data'); file_put_contents($baseDir . '/.htaccess', $content); diff --git a/lib/private/Share20/Manager.php b/lib/private/Share20/Manager.php index 42db0d8af5d..4c94cf26a4d 100644 --- a/lib/private/Share20/Manager.php +++ b/lib/private/Share20/Manager.php @@ -44,6 +44,7 @@ use OC\Cache\CappedMemoryCache; use OC\Files\Mount\MoveableMount; use OC\HintException; use OC\Share20\Exception\ProviderException; +use OCP\EventDispatcher\IEventDispatcher; use OCP\Files\File; use OCP\Files\Folder; use OCP\Files\IRootFolder; @@ -101,7 +102,7 @@ class Manager implements IManager { /** @var CappedMemoryCache */ private $sharingDisabledForUsersCache; /** @var EventDispatcherInterface */ - private $eventDispatcher; + private $legacyDispatcher; /** @var LegacyHooks */ private $legacyHooks; /** @var IMailer */ @@ -110,6 +111,8 @@ class Manager implements IManager { private $urlGenerator; /** @var \OC_Defaults */ private $defaults; + /** @var IEventDispatcher */ + private $dispatcher; /** @@ -143,10 +146,11 @@ class Manager implements IManager { IProviderFactory $factory, IUserManager $userManager, IRootFolder $rootFolder, - EventDispatcherInterface $eventDispatcher, + EventDispatcherInterface $legacyDispatcher, IMailer $mailer, IURLGenerator $urlGenerator, - \OC_Defaults $defaults + \OC_Defaults $defaults, + IEventDispatcher $dispatcher ) { $this->logger = $logger; $this->config = $config; @@ -159,12 +163,13 @@ class Manager implements IManager { $this->factory = $factory; $this->userManager = $userManager; $this->rootFolder = $rootFolder; - $this->eventDispatcher = $eventDispatcher; + $this->legacyDispatcher = $legacyDispatcher; $this->sharingDisabledForUsersCache = new CappedMemoryCache(); - $this->legacyHooks = new LegacyHooks($this->eventDispatcher); + $this->legacyHooks = new LegacyHooks($this->legacyDispatcher); $this->mailer = $mailer; $this->urlGenerator = $urlGenerator; $this->defaults = $defaults; + $this->dispatcher = $dispatcher; } /** @@ -195,7 +200,7 @@ class Manager implements IManager { // Let others verify the password try { - $this->eventDispatcher->dispatch(new ValidatePasswordPolicyEvent($password)); + $this->legacyDispatcher->dispatch(new ValidatePasswordPolicyEvent($password)); } catch (HintException $e) { throw new \Exception($e->getHint()); } @@ -766,7 +771,7 @@ class Manager implements IManager { // Pre share event $event = new GenericEvent($share); - $this->eventDispatcher->dispatch('OCP\Share::preShare', $event); + $this->legacyDispatcher->dispatch('OCP\Share::preShare', $event); if ($event->isPropagationStopped() && $event->hasArgument('error')) { throw new \Exception($event->getArgument('error')); } @@ -779,7 +784,9 @@ class Manager implements IManager { // Post share event $event = new GenericEvent($share); - $this->eventDispatcher->dispatch('OCP\Share::postShare', $event); + $this->legacyDispatcher->dispatch('OCP\Share::postShare', $event); + + $this->dispatcher->dispatchTyped(new Share\Events\ShareCreatedEvent($share)); if ($share->getShareType() === \OCP\Share::SHARE_TYPE_USER) { $mailSend = $share->getMailSend(); @@ -1041,7 +1048,7 @@ class Manager implements IManager { } $provider->acceptShare($share, $recipientId); $event = new GenericEvent($share); - $this->eventDispatcher->dispatch('OCP\Share::postAcceptShare', $event); + $this->legacyDispatcher->dispatch('OCP\Share::postAcceptShare', $event); return $share; } @@ -1111,7 +1118,7 @@ class Manager implements IManager { } $event = new GenericEvent($share); - $this->eventDispatcher->dispatch('OCP\Share::preUnshare', $event); + $this->legacyDispatcher->dispatch('OCP\Share::preUnshare', $event); // Get all children and delete them as well $deletedShares = $this->deleteChildren($share); @@ -1125,7 +1132,7 @@ class Manager implements IManager { // Emit post hook $event->setArgument('deletedShares', $deletedShares); - $this->eventDispatcher->dispatch('OCP\Share::postUnshare', $event); + $this->legacyDispatcher->dispatch('OCP\Share::postUnshare', $event); } @@ -1144,7 +1151,7 @@ class Manager implements IManager { $provider->deleteFromSelf($share, $recipientId); $event = new GenericEvent($share); - $this->eventDispatcher->dispatch('OCP\Share::postUnshareFromSelf', $event); + $this->legacyDispatcher->dispatch('OCP\Share::postUnshareFromSelf', $event); } public function restoreShare(IShare $share, string $recipientId): IShare { diff --git a/lib/private/Streamer.php b/lib/private/Streamer.php index 549b3a6f485..939bb4ea5d8 100644 --- a/lib/private/Streamer.php +++ b/lib/private/Streamer.php @@ -2,6 +2,7 @@ /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Arthur Schiwon <blizzz@arthur-schiwon.de> * @author Daniel Calviño Sánchez <danxuliu@gmail.com> * @author Joas Schilling <coding@schilljs.com> * @author Roeland Jago Douma <roeland@famdouma.nl> @@ -26,6 +27,12 @@ namespace OC; +use OC\Files\Filesystem; +use OCP\Files\File; +use OCP\Files\Folder; +use OCP\Files\InvalidPathException; +use OCP\Files\NotFoundException; +use OCP\Files\NotPermittedException; use OCP\IRequest; use ownCloud\TarStreamer\TarStreamer; use ZipStreamer\ZipStreamer; @@ -77,23 +84,25 @@ class Streamer { $this->streamerInstance = new ZipStreamer(['zip64' => PHP_INT_SIZE !== 4]); } } - + /** * Send HTTP headers - * @param string $name + * @param string $name */ public function sendHeaders($name){ $extension = $this->streamerInstance instanceof ZipStreamer ? '.zip' : '.tar'; $fullName = $name . $extension; $this->streamerInstance->sendHeaders($fullName); } - + /** * Stream directory recursively - * @param string $dir - * @param string $internalDir + * + * @throws NotFoundException + * @throws NotPermittedException + * @throws InvalidPathException */ - public function addDirRecursive($dir, $internalDir='') { + public function addDirRecursive(string $dir, string $internalDir = ''): void { $dirname = basename($dir); $rootDir = $internalDir . $dirname; if (!empty($rootDir)) { @@ -103,22 +112,33 @@ class Streamer { // prevent absolute dirs $internalDir = ltrim($internalDir, '/'); - $files= \OC\Files\Filesystem::getDirectoryContent($dir); + $userFolder = \OC::$server->getRootFolder()->get(Filesystem::getRoot()); + /** @var Folder $dirNode */ + $dirNode = $userFolder->get($dir); + $files = $dirNode->getDirectoryListing(); + foreach($files as $file) { - $filename = $file['name']; - $file = $dir . '/' . $filename; - if(\OC\Files\Filesystem::is_file($file)) { - $filesize = \OC\Files\Filesystem::filesize($file); - $fileTime = \OC\Files\Filesystem::filemtime($file); - $fh = \OC\Files\Filesystem::fopen($file, 'r'); - $this->addFileFromStream($fh, $internalDir . $filename, $filesize, $fileTime); + if($file instanceof File) { + try { + $fh = $file->fopen('r'); + } catch (NotPermittedException $e) { + continue; + } + $this->addFileFromStream( + $fh, + $internalDir . $file->getName(), + $file->getSize(), + $file->getMTime() + ); fclose($fh); - }elseif(\OC\Files\Filesystem::is_dir($file)) { - $this->addDirRecursive($file, $internalDir); + } elseif ($file instanceof Folder) { + if($file->isReadable()) { + $this->addDirRecursive($dir . '/' . $file->getName(), $internalDir); + } } } } - + /** * Add a file to the archive at the specified location and file name. * diff --git a/lib/private/legacy/files.php b/lib/private/legacy/files.php index be433f3382d..adc793ba9b7 100644 --- a/lib/private/legacy/files.php +++ b/lib/private/legacy/files.php @@ -9,6 +9,7 @@ * @author Jakob Sack <mail@jakobsack.de> * @author Joas Schilling <coding@schilljs.com> * @author Jörn Friedrich Dreyer <jfd@butonic.de> + * @author Julius Härtl <jus@bitgrid.net> * @author Ko- <k.stoffelen@cs.ru.nl> * @author Lukas Reschke <lukas@statuscode.ch> * @author Michael Gapczynski <GapczynskiM@gmail.com> @@ -180,7 +181,11 @@ class OC_Files { $userFolder = \OC::$server->getRootFolder()->get(\OC\Files\Filesystem::getRoot()); $file = $userFolder->get($file); if($file instanceof \OC\Files\Node\File) { - $fh = $file->fopen('r'); + try { + $fh = $file->fopen('r'); + } catch (\OCP\Files\NotPermittedException $e) { + continue; + } $fileSize = $file->getSize(); $fileTime = $file->getMTime(); } else { @@ -284,30 +289,44 @@ class OC_Files { */ private static function getSingleFile($view, $dir, $name, $params) { $filename = $dir . '/' . $name; - OC_Util::obEnd(); - $view->lockFile($filename, ILockingProvider::LOCK_SHARED); - - $rangeArray = array(); + $file = null; - if (isset($params['range']) && substr($params['range'], 0, 6) === 'bytes=') { - $rangeArray = self::parseHttpRangeHeader(substr($params['range'], 6), - \OC\Files\Filesystem::filesize($filename)); - } - - if (\OC\Files\Filesystem::isReadable($filename)) { - self::sendHeaders($filename, $name, $rangeArray); - } elseif (!\OC\Files\Filesystem::file_exists($filename)) { + try { + $userFolder = \OC::$server->getRootFolder()->get(\OC\Files\Filesystem::getRoot()); + $file = $userFolder->get($filename); + if(!$file instanceof \OC\Files\Node\File || !$file->isReadable()) { + http_response_code(403); + die('403 Forbidden'); + } + $fileSize = $file->getSize(); + } catch (\OCP\Files\NotPermittedException $e) { + http_response_code(403); + die('403 Forbidden'); + } catch (\OCP\Files\InvalidPathException $e) { + http_response_code(403); + die('403 Forbidden'); + } catch (\OCP\Files\NotFoundException $e) { http_response_code(404); $tmpl = new OC_Template('', '404', 'guest'); $tmpl->printPage(); exit(); - } else { - http_response_code(403); - die('403 Forbidden'); } + + OC_Util::obEnd(); + $view->lockFile($filename, ILockingProvider::LOCK_SHARED); + + $rangeArray = array(); + + if (isset($params['range']) && substr($params['range'], 0, 6) === 'bytes=') { + $rangeArray = self::parseHttpRangeHeader(substr($params['range'], 6), $fileSize); + } + + self::sendHeaders($filename, $name, $rangeArray); + if (isset($params['head']) && $params['head']) { return; } + if (!empty($rangeArray)) { try { if (count($rangeArray) == 1) { diff --git a/lib/private/legacy/hook.php b/lib/private/legacy/hook.php index 78060d76e0d..6353d1f15db 100644 --- a/lib/private/legacy/hook.php +++ b/lib/private/legacy/hook.php @@ -3,6 +3,7 @@ * @copyright Copyright (c) 2016, ownCloud, Inc. * * @author Bart Visscher <bartv@thisnet.nl> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * @author Jakob Sack <mail@jakobsack.de> * @author Jörn Friedrich Dreyer <jfd@butonic.de> * @author Lukas Reschke <lukas@statuscode.ch> diff --git a/lib/public/App/IAppManager.php b/lib/public/App/IAppManager.php index 918c7597448..4cf8da586e1 100644 --- a/lib/public/App/IAppManager.php +++ b/lib/public/App/IAppManager.php @@ -86,10 +86,11 @@ interface IAppManager { * Enable an app for every user * * @param string $appId + * @param bool $forceEnable * @throws AppPathNotFoundException * @since 8.0.0 */ - public function enableApp($appId); + public function enableApp(string $appId, bool $forceEnable = false): void; /** * Whether a list of types contains a protected app type @@ -105,10 +106,11 @@ interface IAppManager { * * @param string $appId * @param \OCP\IGroup[] $groups + * @param bool $forceEnable * @throws \Exception * @since 8.0.0 */ - public function enableAppForGroups($appId, $groups); + public function enableAppForGroups(string $appId, array $groups, bool $forceEnable = false): void; /** * Disable an app for every user diff --git a/lib/public/Collaboration/Resources/IManager.php b/lib/public/Collaboration/Resources/IManager.php index 69f42bbbe0a..eba4c7becea 100644 --- a/lib/public/Collaboration/Resources/IManager.php +++ b/lib/public/Collaboration/Resources/IManager.php @@ -5,6 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2018 Joas Schilling <coding@schilljs.com> * + * @author Daniel Kesselberg <mail@danielkesselberg.de> * @author Joas Schilling <coding@schilljs.com> * @author Julius Härtl <jus@bitgrid.net> * diff --git a/lib/public/Collaboration/Resources/IProviderManager.php b/lib/public/Collaboration/Resources/IProviderManager.php index 04a1212b315..894d4b8df98 100644 --- a/lib/public/Collaboration/Resources/IProviderManager.php +++ b/lib/public/Collaboration/Resources/IProviderManager.php @@ -1,8 +1,12 @@ <?php + declare(strict_types=1); + /** * @copyright Copyright (c) 2019 Daniel Kesselberg <mail@danielkesselberg.de> * + * @author Daniel Kesselberg <mail@danielkesselberg.de> + * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify @@ -16,7 +20,7 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ diff --git a/lib/public/Files/Events/BeforeFileScannedEvent.php b/lib/public/Files/Events/BeforeFileScannedEvent.php index 3f8dca2b333..fbe228d7310 100644 --- a/lib/public/Files/Events/BeforeFileScannedEvent.php +++ b/lib/public/Files/Events/BeforeFileScannedEvent.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,8 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\Files\Events; diff --git a/lib/public/Files/Events/BeforeFolderScannedEvent.php b/lib/public/Files/Events/BeforeFolderScannedEvent.php index a253974c21e..354b481cb07 100644 --- a/lib/public/Files/Events/BeforeFolderScannedEvent.php +++ b/lib/public/Files/Events/BeforeFolderScannedEvent.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,8 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\Files\Events; diff --git a/lib/public/Files/Events/FileCacheUpdated.php b/lib/public/Files/Events/FileCacheUpdated.php index c0f4771ae52..1bb8a3b39ab 100644 --- a/lib/public/Files/Events/FileCacheUpdated.php +++ b/lib/public/Files/Events/FileCacheUpdated.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,8 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\Files\Events; diff --git a/lib/public/Files/Events/FileScannedEvent.php b/lib/public/Files/Events/FileScannedEvent.php index a93189225e4..fe0817130f7 100644 --- a/lib/public/Files/Events/FileScannedEvent.php +++ b/lib/public/Files/Events/FileScannedEvent.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,8 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\Files\Events; diff --git a/lib/public/Files/Events/FolderScannedEvent.php b/lib/public/Files/Events/FolderScannedEvent.php index d1667cd8bc6..d5dc0c97b55 100644 --- a/lib/public/Files/Events/FolderScannedEvent.php +++ b/lib/public/Files/Events/FolderScannedEvent.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,8 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\Files\Events; diff --git a/lib/public/Files/Events/NodeAddedToCache.php b/lib/public/Files/Events/NodeAddedToCache.php index 966d42a384e..631de66f9ef 100644 --- a/lib/public/Files/Events/NodeAddedToCache.php +++ b/lib/public/Files/Events/NodeAddedToCache.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,8 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\Files\Events; diff --git a/lib/public/Files/Events/NodeRemovedFromCache.php b/lib/public/Files/Events/NodeRemovedFromCache.php index c8d84624a8b..1d09e10bf6d 100644 --- a/lib/public/Files/Events/NodeRemovedFromCache.php +++ b/lib/public/Files/Events/NodeRemovedFromCache.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,8 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\Files\Events; diff --git a/lib/public/Files/IMimeTypeDetector.php b/lib/public/Files/IMimeTypeDetector.php index 3686405b529..ec80b3480d1 100644 --- a/lib/public/Files/IMimeTypeDetector.php +++ b/lib/public/Files/IMimeTypeDetector.php @@ -2,6 +2,7 @@ /** * @copyright Copyright (c) 2016, ownCloud, Inc. * + * @author Joas Schilling <coding@schilljs.com> * @author Roeland Jago Douma <roeland@famdouma.nl> * * @license AGPL-3.0 diff --git a/lib/public/Group/Events/BeforeGroupCreatedEvent.php b/lib/public/Group/Events/BeforeGroupCreatedEvent.php index b2445eb8bb0..b9bb1788f84 100644 --- a/lib/public/Group/Events/BeforeGroupCreatedEvent.php +++ b/lib/public/Group/Events/BeforeGroupCreatedEvent.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,8 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\Group\Events; diff --git a/lib/public/Group/Events/BeforeGroupDeletedEvent.php b/lib/public/Group/Events/BeforeGroupDeletedEvent.php index 39c01095d9b..8cfe28cf9d9 100644 --- a/lib/public/Group/Events/BeforeGroupDeletedEvent.php +++ b/lib/public/Group/Events/BeforeGroupDeletedEvent.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,8 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\Group\Events; diff --git a/lib/public/Group/Events/BeforeUserAddedEvent.php b/lib/public/Group/Events/BeforeUserAddedEvent.php index 722e8ea5079..2e6d6d58d7a 100644 --- a/lib/public/Group/Events/BeforeUserAddedEvent.php +++ b/lib/public/Group/Events/BeforeUserAddedEvent.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,8 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\Group\Events; diff --git a/lib/public/Group/Events/BeforeUserRemovedEvent.php b/lib/public/Group/Events/BeforeUserRemovedEvent.php index a64fcc13305..570297e46f8 100644 --- a/lib/public/Group/Events/BeforeUserRemovedEvent.php +++ b/lib/public/Group/Events/BeforeUserRemovedEvent.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,8 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\Group\Events; diff --git a/lib/public/Group/Events/GroupCreatedEvent.php b/lib/public/Group/Events/GroupCreatedEvent.php index 75c501d6fb7..3f19c1fec27 100644 --- a/lib/public/Group/Events/GroupCreatedEvent.php +++ b/lib/public/Group/Events/GroupCreatedEvent.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,8 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\Group\Events; diff --git a/lib/public/Group/Events/GroupDeletedEvent.php b/lib/public/Group/Events/GroupDeletedEvent.php index 4d1dad1dd29..a4b921fc18b 100644 --- a/lib/public/Group/Events/GroupDeletedEvent.php +++ b/lib/public/Group/Events/GroupDeletedEvent.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,8 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\Group\Events; diff --git a/lib/public/Group/Events/UserAddedEvent.php b/lib/public/Group/Events/UserAddedEvent.php index f608b0cfc20..7f487844943 100644 --- a/lib/public/Group/Events/UserAddedEvent.php +++ b/lib/public/Group/Events/UserAddedEvent.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,8 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\Group\Events; diff --git a/lib/public/Group/Events/UserRemovedEvent.php b/lib/public/Group/Events/UserRemovedEvent.php index a3bd01d9eca..e66be62fe6d 100644 --- a/lib/public/Group/Events/UserRemovedEvent.php +++ b/lib/public/Group/Events/UserRemovedEvent.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,8 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\Group\Events; diff --git a/lib/public/Lock/ManuallyLockedException.php b/lib/public/Lock/ManuallyLockedException.php new file mode 100644 index 00000000000..04b4152c3a0 --- /dev/null +++ b/lib/public/Lock/ManuallyLockedException.php @@ -0,0 +1,91 @@ +<?php declare(strict_types=1); + + + +/** + * This file is licensed under the Affero General Public License version 3 or + * later. See the COPYING file. + * + * @author Maxence Lange <maxence@artificial-owl.com> + * @copyright 2019, Maxence Lange <maxence@artificial-owl.com> + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + + +namespace OCP\Lock; + + +/** + * Class ManuallyLockedException + * + * @package OCP\Lock + * @since 18.0.0 + */ +class ManuallyLockedException extends LockedException { + + + /** + * owner of the lock + * + * @var string|null + */ + private $owner = null; + + /** + * estimated timeout for the lock + * + * @var int + * @since 18.0.0 + */ + private $timeout = -1; + + + /** + * ManuallyLockedException constructor. + * + * @param string $path locked path + * @param \Exception|null $previous previous exception for cascading + * @param string $existingLock + * @param string|null $owner + * @param int $timeout + * + * @since 18.0.0 + */ + public function __construct(string $path, \Exception $previous = null, ?string $existingLock = null, ?string $owner = null, int $timeout = -1) { + parent::__construct($path, $previous, $existingLock); + $this->owner = $owner; + $this->timeout = $timeout; + } + + + /** + * @return int + * @since 18.0.0 + */ + public function getTimeout(): int { + return $this->timeout; + } + + /** + * @return string|null + * @since 18.0.0 + */ + public function getOwner(): ?string { + return $this->owner; + } + +} diff --git a/lib/public/Notification/IDismissableNotifier.php b/lib/public/Notification/IDismissableNotifier.php index 61088fc72e0..2be03ddf40d 100644 --- a/lib/public/Notification/IDismissableNotifier.php +++ b/lib/public/Notification/IDismissableNotifier.php @@ -1,5 +1,7 @@ <?php + declare(strict_types=1); + /** * @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl> * @@ -18,7 +20,7 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ diff --git a/lib/public/Notification/IManager.php b/lib/public/Notification/IManager.php index 2a9b8116a55..4acfa7ce786 100644 --- a/lib/public/Notification/IManager.php +++ b/lib/public/Notification/IManager.php @@ -6,6 +6,7 @@ declare(strict_types=1); * @copyright Copyright (c) 2016, ownCloud, Inc. * * @author Joas Schilling <coding@schilljs.com> + * @author Roeland Jago Douma <roeland@famdouma.nl> * * @license AGPL-3.0 * diff --git a/lib/public/Share/Events/ShareCreatedEvent.php b/lib/public/Share/Events/ShareCreatedEvent.php new file mode 100644 index 00000000000..d0f2defb698 --- /dev/null +++ b/lib/public/Share/Events/ShareCreatedEvent.php @@ -0,0 +1,55 @@ +<?php + +declare(strict_types=1); + +/** + * @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl> + * + * @author Roeland Jago Douma <roeland@famdouma.nl> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OCP\Share\Events; + +use OCP\EventDispatcher\Event; +use OCP\Share\IShare; + +/** + * @since 18.0.0 + */ +class ShareCreatedEvent extends Event { + + /** @var IShare */ + private $share; + + /** + * @since 18.0.0 + */ + public function __construct(IShare $share) { + parent::__construct(); + + $this->share = $share; + } + + /** + * @since 18.0.0 + */ + public function getShare(): IShare { + return $this->share; + } +} diff --git a/lib/public/User/Events/BeforePasswordUpdatedEvent.php b/lib/public/User/Events/BeforePasswordUpdatedEvent.php index c40bd92b619..11221d97009 100644 --- a/lib/public/User/Events/BeforePasswordUpdatedEvent.php +++ b/lib/public/User/Events/BeforePasswordUpdatedEvent.php @@ -1,9 +1,11 @@ -<?php declare(strict_types=1); +<?php + +declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -18,7 +20,8 @@ * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\User\Events; diff --git a/lib/public/User/Events/BeforeUserDeletedEvent.php b/lib/public/User/Events/BeforeUserDeletedEvent.php index b40c498350f..dd4103c29bf 100644 --- a/lib/public/User/Events/BeforeUserDeletedEvent.php +++ b/lib/public/User/Events/BeforeUserDeletedEvent.php @@ -1,9 +1,11 @@ -<?php declare(strict_types=1); +<?php + +declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -18,7 +20,8 @@ * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\User\Events; diff --git a/lib/public/User/Events/BeforeUserLoggedInEvent.php b/lib/public/User/Events/BeforeUserLoggedInEvent.php index 8b819478737..c6eb3fbbf1b 100644 --- a/lib/public/User/Events/BeforeUserLoggedInEvent.php +++ b/lib/public/User/Events/BeforeUserLoggedInEvent.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl> * - * @author Roeland Jago Douma <roeland@famdouma.nl> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,7 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ diff --git a/lib/public/User/Events/BeforeUserLoggedInWithCookieEvent.php b/lib/public/User/Events/BeforeUserLoggedInWithCookieEvent.php index 35f9715516b..fd7463bc0f9 100644 --- a/lib/public/User/Events/BeforeUserLoggedInWithCookieEvent.php +++ b/lib/public/User/Events/BeforeUserLoggedInWithCookieEvent.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl> * - * @author Roeland Jago Douma <roeland@famdouma.nl> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,7 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ diff --git a/lib/public/User/Events/BeforeUserLoggedOutEvent.php b/lib/public/User/Events/BeforeUserLoggedOutEvent.php index a5d617089f7..2d521dc1a94 100644 --- a/lib/public/User/Events/BeforeUserLoggedOutEvent.php +++ b/lib/public/User/Events/BeforeUserLoggedOutEvent.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl> * - * @author Roeland Jago Douma <roeland@famdouma.nl> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,7 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ diff --git a/lib/public/User/Events/PasswordUpdatedEvent.php b/lib/public/User/Events/PasswordUpdatedEvent.php index 83b5b0a7bfd..7169448e0cd 100644 --- a/lib/public/User/Events/PasswordUpdatedEvent.php +++ b/lib/public/User/Events/PasswordUpdatedEvent.php @@ -1,9 +1,11 @@ -<?php declare(strict_types=1); +<?php + +declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -18,7 +20,8 @@ * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\User\Events; diff --git a/lib/public/User/Events/UserChangedEvent.php b/lib/public/User/Events/UserChangedEvent.php index 86b2f439bfb..8bb93d857b5 100644 --- a/lib/public/User/Events/UserChangedEvent.php +++ b/lib/public/User/Events/UserChangedEvent.php @@ -1,9 +1,11 @@ -<?php declare(strict_types=1); +<?php + +declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -18,7 +20,8 @@ * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\User\Events; diff --git a/lib/public/User/Events/UserDeletedEvent.php b/lib/public/User/Events/UserDeletedEvent.php index 284ee35a242..22c0e17c218 100644 --- a/lib/public/User/Events/UserDeletedEvent.php +++ b/lib/public/User/Events/UserDeletedEvent.php @@ -1,9 +1,11 @@ -<?php declare(strict_types=1); +<?php + +declare(strict_types=1); /** * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> * - * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -18,7 +20,8 @@ * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * */ namespace OCP\User\Events; diff --git a/lib/public/User/Events/UserLoggedInEvent.php b/lib/public/User/Events/UserLoggedInEvent.php index 8ce83f42308..e2cb37a64dc 100644 --- a/lib/public/User/Events/UserLoggedInEvent.php +++ b/lib/public/User/Events/UserLoggedInEvent.php @@ -6,7 +6,6 @@ declare(strict_types=1); * @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl> * * @author Christoph Wurst <christoph@winzerhof-wurst.at> - * @author Roeland Jago Douma <roeland@famdouma.nl> * * @license GNU AGPL version 3 or any later version * diff --git a/lib/public/User/Events/UserLoggedInWithCookieEvent.php b/lib/public/User/Events/UserLoggedInWithCookieEvent.php index c9848e1cc7d..57a8c54c87c 100644 --- a/lib/public/User/Events/UserLoggedInWithCookieEvent.php +++ b/lib/public/User/Events/UserLoggedInWithCookieEvent.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl> * - * @author Roeland Jago Douma <roeland@famdouma.nl> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,7 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ diff --git a/lib/public/User/Events/UserLoggedOutEvent.php b/lib/public/User/Events/UserLoggedOutEvent.php index 14259149533..4bd18fac2d2 100644 --- a/lib/public/User/Events/UserLoggedOutEvent.php +++ b/lib/public/User/Events/UserLoggedOutEvent.php @@ -5,7 +5,7 @@ declare(strict_types=1); /** * @copyright Copyright (c) 2019, Roeland Jago Douma <roeland@famdouma.nl> * - * @author Roeland Jago Douma <roeland@famdouma.nl> + * @author Christoph Wurst <christoph@winzerhof-wurst.at> * * @license GNU AGPL version 3 or any later version * @@ -20,7 +20,7 @@ declare(strict_types=1); * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. + * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ diff --git a/lib/public/WorkflowEngine/IFileCheck.php b/lib/public/WorkflowEngine/IFileCheck.php index 546b72fa2dc..b94f3e512d3 100644 --- a/lib/public/WorkflowEngine/IFileCheck.php +++ b/lib/public/WorkflowEngine/IFileCheck.php @@ -6,6 +6,7 @@ declare(strict_types=1); * @copyright Copyright (c) 2019 Arthur Schiwon <blizzz@arthur-schiwon.de> * * @author Arthur Schiwon <blizzz@arthur-schiwon.de> + * @author Joas Schilling <coding@schilljs.com> * * @license GNU AGPL version 3 or any later version * |