diff options
Diffstat (limited to 'settings')
-rw-r--r-- | settings/controller/appsettingscontroller.php | 24 | ||||
-rw-r--r-- | settings/js/apps.js | 16 | ||||
-rw-r--r-- | settings/l10n/de.js | 2 | ||||
-rw-r--r-- | settings/l10n/de.json | 2 | ||||
-rw-r--r-- | settings/l10n/de_DE.js | 2 | ||||
-rw-r--r-- | settings/l10n/de_DE.json | 2 | ||||
-rw-r--r-- | settings/l10n/es.js | 2 | ||||
-rw-r--r-- | settings/l10n/es.json | 2 | ||||
-rw-r--r-- | settings/l10n/fr.js | 3 | ||||
-rw-r--r-- | settings/l10n/fr.json | 3 | ||||
-rw-r--r-- | settings/l10n/gl.js | 2 | ||||
-rw-r--r-- | settings/l10n/gl.json | 2 | ||||
-rw-r--r-- | settings/l10n/it.js | 2 | ||||
-rw-r--r-- | settings/l10n/it.json | 2 | ||||
-rw-r--r-- | settings/l10n/nb_NO.js | 2 | ||||
-rw-r--r-- | settings/l10n/nb_NO.json | 2 | ||||
-rw-r--r-- | settings/l10n/oc.js | 285 | ||||
-rw-r--r-- | settings/l10n/oc.json | 285 | ||||
-rw-r--r-- | settings/l10n/pl.js | 1 | ||||
-rw-r--r-- | settings/l10n/pl.json | 1 | ||||
-rw-r--r-- | settings/l10n/pt_BR.js | 2 | ||||
-rw-r--r-- | settings/l10n/pt_BR.json | 2 | ||||
-rw-r--r-- | settings/l10n/pt_PT.js | 2 | ||||
-rw-r--r-- | settings/l10n/pt_PT.json | 2 | ||||
-rw-r--r-- | settings/l10n/sr.js | 9 | ||||
-rw-r--r-- | settings/l10n/sr.json | 9 | ||||
-rw-r--r-- | settings/l10n/th_TH.js | 209 | ||||
-rw-r--r-- | settings/l10n/th_TH.json | 209 | ||||
-rw-r--r-- | settings/templates/apps.php | 4 |
29 files changed, 987 insertions, 103 deletions
diff --git a/settings/controller/appsettingscontroller.php b/settings/controller/appsettingscontroller.php index f1b62bb1d38..d64c945c02c 100644 --- a/settings/controller/appsettingscontroller.php +++ b/settings/controller/appsettingscontroller.php @@ -147,16 +147,20 @@ class AppSettingsController extends Controller { * Get all available apps in a category * * @param int $category + * @param bool $includeUpdateInfo Should we check whether there is an update + * in the app store? * @return array */ - public function listApps($category = 0) { - if(!is_null($this->cache->get('listApps-'.$category))) { - $apps = $this->cache->get('listApps-'.$category); + public function listApps($category = 0, $includeUpdateInfo = true) { + $cacheName = 'listApps-' . $category . '-' . (int) $includeUpdateInfo; + + if(!is_null($this->cache->get($cacheName))) { + $apps = $this->cache->get($cacheName); } else { switch ($category) { // installed apps case 0: - $apps = $this->getInstalledApps(); + $apps = $this->getInstalledApps($includeUpdateInfo); usort($apps, function ($a, $b) { $a = (string)$a['name']; $b = (string)$b['name']; @@ -168,7 +172,7 @@ class AppSettingsController extends Controller { break; // not-installed apps case 1: - $apps = \OC_App::listAllApps(true); + $apps = \OC_App::listAllApps(true, $includeUpdateInfo); $apps = array_filter($apps, function ($app) { return !$app['active']; }); @@ -189,7 +193,7 @@ class AppSettingsController extends Controller { $apps = array(); } else { // don't list installed apps - $installedApps = $this->getInstalledApps(); + $installedApps = $this->getInstalledApps(false); $installedApps = array_map(function ($app) { if (isset($app['ocsid'])) { return $app['ocsid']; @@ -239,16 +243,18 @@ class AppSettingsController extends Controller { return $app; }, $apps); - $this->cache->set('listApps-'.$category, $apps, 300); + $this->cache->set($cacheName, $apps, 300); return ['apps' => $apps, 'status' => 'success']; } /** + * @param bool $includeUpdateInfo Should we check whether there is an update + * in the app store? * @return array */ - private function getInstalledApps() { - $apps = \OC_App::listAllApps(true); + private function getInstalledApps($includeUpdateInfo = true) { + $apps = \OC_App::listAllApps(true, $includeUpdateInfo); $apps = array_filter($apps, function ($app) { return $app['active']; }); diff --git a/settings/js/apps.js b/settings/js/apps.js index 1d115eb8182..2863e86dba8 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -81,7 +81,7 @@ OC.Settings.Apps = OC.Settings.Apps || { $('#app-category-' + categoryId).addClass('active'); OC.Settings.Apps.State.currentCategory = categoryId; - this._loadCategoryCall = $.ajax(OC.generateUrl('settings/apps/list?category={categoryId}', { + this._loadCategoryCall = $.ajax(OC.generateUrl('settings/apps/list?category={categoryId}&includeUpdateInfo=0', { categoryId: categoryId }), { type:'GET', @@ -123,6 +123,20 @@ OC.Settings.Apps = OC.Settings.Apps || { }, complete: function() { $('#apps-list').removeClass('icon-loading'); + $.ajax(OC.generateUrl('settings/apps/list?category={categoryId}&includeUpdateInfo=1', { + categoryId: categoryId + }), { + type: 'GET', + success: function (apps) { + _.each(apps.apps, function(app) { + if (app.update) { + var $update = $('#app-' + app.id + ' .update'); + $update.removeClass('hidden'); + $update.val(t('settings', 'Update to %s').replace(/%s/g, app.update)); + } + }) + } + }); } }); }, diff --git a/settings/l10n/de.js b/settings/l10n/de.js index 179db8b75ad..611bea53b9d 100644 --- a/settings/l10n/de.js +++ b/settings/l10n/de.js @@ -63,6 +63,7 @@ OC.L10N.register( "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Offizielle Apps werden von und innerhalb der ownCloud-Community entwickelt. Sie stellen zentrale Funktionen von ownCloud bereit und sind auf den Produktiveinsatz vorbereitet.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Geprüfte Apps werden von vertrauenswürdigen Entwicklern entwickelt und haben eine oberflächliche Sicherheitsprüfung durchlaufen. Sie werden innerhalb eines offenen Code-Repositorys aktiv gepflegt und ihre Betreuer erachten sie als stabil genug für für den gelegentlichen bis normalen Einsatz.", "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "Diese App ist nicht auf Sicherheitsprobleme hin überprüft und ist neu oder bekanntermaßen instabil. Die Installation erfolgt auf eigenes Risiko.", + "Update to %s" : "Aktualisierung auf %s", "Please wait...." : "Bitte warten…", "Error while disabling app" : "Beim Deaktivieren der App ist ein Fehler aufgetreten", "Disable" : "Deaktivieren", @@ -199,7 +200,6 @@ OC.L10N.register( "Show description …" : "Beschreibung anzeigen…", "Hide description …" : "Beschreibung ausblenden…", "This app cannot be installed because the following dependencies are not fulfilled:" : "Die App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", - "Update to %s" : "Aktualisierung auf %s", "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", "Uninstall App" : "App deinstallieren", "Enable experimental apps" : "Experimentelle Apps aktivieren", diff --git a/settings/l10n/de.json b/settings/l10n/de.json index 639bd6508ab..82d0e966dbd 100644 --- a/settings/l10n/de.json +++ b/settings/l10n/de.json @@ -61,6 +61,7 @@ "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Offizielle Apps werden von und innerhalb der ownCloud-Community entwickelt. Sie stellen zentrale Funktionen von ownCloud bereit und sind auf den Produktiveinsatz vorbereitet.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Geprüfte Apps werden von vertrauenswürdigen Entwicklern entwickelt und haben eine oberflächliche Sicherheitsprüfung durchlaufen. Sie werden innerhalb eines offenen Code-Repositorys aktiv gepflegt und ihre Betreuer erachten sie als stabil genug für für den gelegentlichen bis normalen Einsatz.", "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "Diese App ist nicht auf Sicherheitsprobleme hin überprüft und ist neu oder bekanntermaßen instabil. Die Installation erfolgt auf eigenes Risiko.", + "Update to %s" : "Aktualisierung auf %s", "Please wait...." : "Bitte warten…", "Error while disabling app" : "Beim Deaktivieren der App ist ein Fehler aufgetreten", "Disable" : "Deaktivieren", @@ -197,7 +198,6 @@ "Show description …" : "Beschreibung anzeigen…", "Hide description …" : "Beschreibung ausblenden…", "This app cannot be installed because the following dependencies are not fulfilled:" : "Die App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", - "Update to %s" : "Aktualisierung auf %s", "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", "Uninstall App" : "App deinstallieren", "Enable experimental apps" : "Experimentelle Apps aktivieren", diff --git a/settings/l10n/de_DE.js b/settings/l10n/de_DE.js index 7fd874cf6e3..dbc229b73b6 100644 --- a/settings/l10n/de_DE.js +++ b/settings/l10n/de_DE.js @@ -63,6 +63,7 @@ OC.L10N.register( "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Offizielle Apps werden von und innerhalb der ownCloud-Community entwickelt. Sie stellen zentrale Funktionen von ownCloud bereit und sind auf den Produktiveinsatz vorbereitet.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Geprüfte Apps werden von vertrauenswürdigen Entwicklern entwickelt und haben eine oberflächliche Sicherheitsprüfung durchlaufen. Sie werden innerhalb eines offenen Code-Repositorys aktiv gepflegt und ihre Betreuer erachten sie als stabil genug für für den gelegentlichen bis normalen Einsatz.", "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "Diese App ist nicht auf Sicherheitsprobleme hin überprüft und ist neu oder bekanntermaßen instabil. Die Installation erfolgt auf eigenes Risiko.", + "Update to %s" : "Aktualisierung auf %s", "Please wait...." : "Bitte warten…", "Error while disabling app" : "Beim Deaktivieren der App ist ein Fehler aufgetreten", "Disable" : "Deaktivieren", @@ -199,7 +200,6 @@ OC.L10N.register( "Show description …" : "Beschreibung anzeigen…", "Hide description …" : "Beschreibung ausblenden…", "This app cannot be installed because the following dependencies are not fulfilled:" : "Diese App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", - "Update to %s" : "Aktualisierung auf %s", "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", "Uninstall App" : "App deinstallieren", "Enable experimental apps" : "Experimentelle Apps aktivieren", diff --git a/settings/l10n/de_DE.json b/settings/l10n/de_DE.json index 43077df24cd..7a145a75c2d 100644 --- a/settings/l10n/de_DE.json +++ b/settings/l10n/de_DE.json @@ -61,6 +61,7 @@ "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Offizielle Apps werden von und innerhalb der ownCloud-Community entwickelt. Sie stellen zentrale Funktionen von ownCloud bereit und sind auf den Produktiveinsatz vorbereitet.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Geprüfte Apps werden von vertrauenswürdigen Entwicklern entwickelt und haben eine oberflächliche Sicherheitsprüfung durchlaufen. Sie werden innerhalb eines offenen Code-Repositorys aktiv gepflegt und ihre Betreuer erachten sie als stabil genug für für den gelegentlichen bis normalen Einsatz.", "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "Diese App ist nicht auf Sicherheitsprobleme hin überprüft und ist neu oder bekanntermaßen instabil. Die Installation erfolgt auf eigenes Risiko.", + "Update to %s" : "Aktualisierung auf %s", "Please wait...." : "Bitte warten…", "Error while disabling app" : "Beim Deaktivieren der App ist ein Fehler aufgetreten", "Disable" : "Deaktivieren", @@ -197,7 +198,6 @@ "Show description …" : "Beschreibung anzeigen…", "Hide description …" : "Beschreibung ausblenden…", "This app cannot be installed because the following dependencies are not fulfilled:" : "Diese App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", - "Update to %s" : "Aktualisierung auf %s", "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", "Uninstall App" : "App deinstallieren", "Enable experimental apps" : "Experimentelle Apps aktivieren", diff --git a/settings/l10n/es.js b/settings/l10n/es.js index 06e54ce9c68..ada06afde90 100644 --- a/settings/l10n/es.js +++ b/settings/l10n/es.js @@ -63,6 +63,7 @@ OC.L10N.register( "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Aplicaciones oficiales son desarrolladas por y dentro de la comunidad ownCloud. Estas ofrecen una funcionalidad central con ownCloud y están listas para su uso en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado un control de seguridad superficial. Estas se mantienen activamente en un repositorio de código abierto y sus mantenedores las consideran estables para un uso normal.", "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "Esta aplicación no está verificada por problemas de seguridad, es nueva o conocida por ser inestable. Instálela bajo su propio riesgo.", + "Update to %s" : "Actualizar a %s", "Please wait...." : "Espere, por favor....", "Error while disabling app" : "Error mientras se desactivaba la aplicación", "Disable" : "Desactivar", @@ -199,7 +200,6 @@ OC.L10N.register( "Show description …" : "Mostrar descripción…", "Hide description …" : "Ocultar descripción…", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:", - "Update to %s" : "Actualizar a %s", "Enable only for specific groups" : "Activar solamente para grupos específicos", "Uninstall App" : "Desinstalar aplicación", "Enable experimental apps" : "Habilitar aplicaciones experimentales", diff --git a/settings/l10n/es.json b/settings/l10n/es.json index 6644ae49a45..4fef2e03251 100644 --- a/settings/l10n/es.json +++ b/settings/l10n/es.json @@ -61,6 +61,7 @@ "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Aplicaciones oficiales son desarrolladas por y dentro de la comunidad ownCloud. Estas ofrecen una funcionalidad central con ownCloud y están listas para su uso en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado un control de seguridad superficial. Estas se mantienen activamente en un repositorio de código abierto y sus mantenedores las consideran estables para un uso normal.", "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "Esta aplicación no está verificada por problemas de seguridad, es nueva o conocida por ser inestable. Instálela bajo su propio riesgo.", + "Update to %s" : "Actualizar a %s", "Please wait...." : "Espere, por favor....", "Error while disabling app" : "Error mientras se desactivaba la aplicación", "Disable" : "Desactivar", @@ -197,7 +198,6 @@ "Show description …" : "Mostrar descripción…", "Hide description …" : "Ocultar descripción…", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:", - "Update to %s" : "Actualizar a %s", "Enable only for specific groups" : "Activar solamente para grupos específicos", "Uninstall App" : "Desinstalar aplicación", "Enable experimental apps" : "Habilitar aplicaciones experimentales", diff --git a/settings/l10n/fr.js b/settings/l10n/fr.js index 437a221367f..0cd0e20bd13 100644 --- a/settings/l10n/fr.js +++ b/settings/l10n/fr.js @@ -58,6 +58,7 @@ OC.L10N.register( "Sending..." : "Envoi en cours...", "Official" : "Officiel", "Approved" : "Approuvé", + "Experimental" : "Expérimental", "All" : "Tous", "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Les applications officielles sont développées par et avec la communauté ownCloud. Elles offrent ses fonctionnalités principales à ownCloud et sont prêtes pour une utilisation en production. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Les applications approuvées sont créées par des développeurs de confiance et ont passé les test de sécurité. Elles sont activement maintenues dans un dépôt ouvert et leurs développeurs pensent qu'elles sont stables pour une utilisation normale.", @@ -184,6 +185,8 @@ OC.L10N.register( "Improving the config.php" : "Amélioration du config.php ", "Theming" : "Thème", "Hardening and security guidance" : "Guide pour le renforcement et la sécurité", + "Experimental File Lock is enabled." : "Le verrouillage expérimental de fichiers est activé.", + "Experimental File Lock is disabled." : "Le verrouillage expérimental de fichiers est désactivé.", "Version" : "Version", "Developer documentation" : "Documentation pour les développeurs", "Experimental applications ahead" : "Attention! Applications expérimentales", diff --git a/settings/l10n/fr.json b/settings/l10n/fr.json index 86d56e79d25..ad93a9ae7c5 100644 --- a/settings/l10n/fr.json +++ b/settings/l10n/fr.json @@ -56,6 +56,7 @@ "Sending..." : "Envoi en cours...", "Official" : "Officiel", "Approved" : "Approuvé", + "Experimental" : "Expérimental", "All" : "Tous", "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Les applications officielles sont développées par et avec la communauté ownCloud. Elles offrent ses fonctionnalités principales à ownCloud et sont prêtes pour une utilisation en production. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Les applications approuvées sont créées par des développeurs de confiance et ont passé les test de sécurité. Elles sont activement maintenues dans un dépôt ouvert et leurs développeurs pensent qu'elles sont stables pour une utilisation normale.", @@ -182,6 +183,8 @@ "Improving the config.php" : "Amélioration du config.php ", "Theming" : "Thème", "Hardening and security guidance" : "Guide pour le renforcement et la sécurité", + "Experimental File Lock is enabled." : "Le verrouillage expérimental de fichiers est activé.", + "Experimental File Lock is disabled." : "Le verrouillage expérimental de fichiers est désactivé.", "Version" : "Version", "Developer documentation" : "Documentation pour les développeurs", "Experimental applications ahead" : "Attention! Applications expérimentales", diff --git a/settings/l10n/gl.js b/settings/l10n/gl.js index 4d2865b3c9b..25d6388cdfe 100644 --- a/settings/l10n/gl.js +++ b/settings/l10n/gl.js @@ -63,6 +63,7 @@ OC.L10N.register( "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "As aplicacións oficiais son desenvolvidas pola comunidade dentro de ownCloud. Ofrecen una funcionalidade central para ownCloud e están preparadas para o seu uso en produción.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "As aplicacións aprobadas son desenvolvidas por desenvolvedores de confianza e pasaron un control de seguridade superficial. Mantéñense activamente nun repositorio de código aberto e os seus mantedores consideran que son estábeis para uso casual normal.", "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "A esta aplicación non se lle fixeron comprobacións de seguridade, ademais é nova ou coñecida por ser inestábel. Instálea baixo a súa responsabilidade.", + "Update to %s" : "Actualizar a %s", "Please wait...." : "Agarde...", "Error while disabling app" : "Produciuse un erro ao desactivar a aplicación", "Disable" : "Desactivar", @@ -199,7 +200,6 @@ OC.L10N.register( "Show description …" : "Amosar a descrición ...", "Hide description …" : "Agochar a descrición ...", "This app cannot be installed because the following dependencies are not fulfilled:" : "Non é posíbel instalar esta aplicación por mor de non cumprirse as dependencias:", - "Update to %s" : "Actualizar a %s", "Enable only for specific groups" : "Activar só para grupos específicos", "Uninstall App" : "Desinstalar unha aplicación", "Enable experimental apps" : "Activar as aplicacións experimentais", diff --git a/settings/l10n/gl.json b/settings/l10n/gl.json index d41543aafbc..36d7da358b5 100644 --- a/settings/l10n/gl.json +++ b/settings/l10n/gl.json @@ -61,6 +61,7 @@ "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "As aplicacións oficiais son desenvolvidas pola comunidade dentro de ownCloud. Ofrecen una funcionalidade central para ownCloud e están preparadas para o seu uso en produción.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "As aplicacións aprobadas son desenvolvidas por desenvolvedores de confianza e pasaron un control de seguridade superficial. Mantéñense activamente nun repositorio de código aberto e os seus mantedores consideran que son estábeis para uso casual normal.", "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "A esta aplicación non se lle fixeron comprobacións de seguridade, ademais é nova ou coñecida por ser inestábel. Instálea baixo a súa responsabilidade.", + "Update to %s" : "Actualizar a %s", "Please wait...." : "Agarde...", "Error while disabling app" : "Produciuse un erro ao desactivar a aplicación", "Disable" : "Desactivar", @@ -197,7 +198,6 @@ "Show description …" : "Amosar a descrición ...", "Hide description …" : "Agochar a descrición ...", "This app cannot be installed because the following dependencies are not fulfilled:" : "Non é posíbel instalar esta aplicación por mor de non cumprirse as dependencias:", - "Update to %s" : "Actualizar a %s", "Enable only for specific groups" : "Activar só para grupos específicos", "Uninstall App" : "Desinstalar unha aplicación", "Enable experimental apps" : "Activar as aplicacións experimentais", diff --git a/settings/l10n/it.js b/settings/l10n/it.js index d7d50c2d505..69a5de1a841 100644 --- a/settings/l10n/it.js +++ b/settings/l10n/it.js @@ -63,6 +63,7 @@ OC.L10N.register( "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Le applicazioni ufficiali sono sviluppate da e con la comunità di ownCloud. Offrono le funzioni fondamentali di ownCloud e sono pronte per l'utilizzo in produzione.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Le applicazioni approvate sono sviluppate da sviluppatori affidabili e hanno passato un rapido controllo di sicurezza. Sono attivamente mantenute in un deposito aperto del codice e i loro responsabili le ritengono pronte sia per un utilizzo casuale che per un utilizzo continuativo.", "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "Questa applicazione non è stata sottoposta a controlli di sicurezza, è nuova o notoriamente instabile. Installala a tuo rischio.", + "Update to %s" : "Aggiornato a %s", "Please wait...." : "Attendere...", "Error while disabling app" : "Errore durante la disattivazione", "Disable" : "Disabilita", @@ -199,7 +200,6 @@ OC.L10N.register( "Show description …" : "Mostra descrizione...", "Hide description …" : "Nascondi descrizione...", "This app cannot be installed because the following dependencies are not fulfilled:" : "Questa applicazione non può essere installata perché le seguenti dipendenze non sono soddisfatte:", - "Update to %s" : "Aggiornato a %s", "Enable only for specific groups" : "Abilita solo per gruppi specifici", "Uninstall App" : "Disinstalla applicazione", "Enable experimental apps" : "Abilita le applicazioni sperimentali", diff --git a/settings/l10n/it.json b/settings/l10n/it.json index 4ee75126af0..9bdbd870e38 100644 --- a/settings/l10n/it.json +++ b/settings/l10n/it.json @@ -61,6 +61,7 @@ "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Le applicazioni ufficiali sono sviluppate da e con la comunità di ownCloud. Offrono le funzioni fondamentali di ownCloud e sono pronte per l'utilizzo in produzione.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Le applicazioni approvate sono sviluppate da sviluppatori affidabili e hanno passato un rapido controllo di sicurezza. Sono attivamente mantenute in un deposito aperto del codice e i loro responsabili le ritengono pronte sia per un utilizzo casuale che per un utilizzo continuativo.", "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "Questa applicazione non è stata sottoposta a controlli di sicurezza, è nuova o notoriamente instabile. Installala a tuo rischio.", + "Update to %s" : "Aggiornato a %s", "Please wait...." : "Attendere...", "Error while disabling app" : "Errore durante la disattivazione", "Disable" : "Disabilita", @@ -197,7 +198,6 @@ "Show description …" : "Mostra descrizione...", "Hide description …" : "Nascondi descrizione...", "This app cannot be installed because the following dependencies are not fulfilled:" : "Questa applicazione non può essere installata perché le seguenti dipendenze non sono soddisfatte:", - "Update to %s" : "Aggiornato a %s", "Enable only for specific groups" : "Abilita solo per gruppi specifici", "Uninstall App" : "Disinstalla applicazione", "Enable experimental apps" : "Abilita le applicazioni sperimentali", diff --git a/settings/l10n/nb_NO.js b/settings/l10n/nb_NO.js index 6e88750814c..c0d84e63c80 100644 --- a/settings/l10n/nb_NO.js +++ b/settings/l10n/nb_NO.js @@ -63,6 +63,7 @@ OC.L10N.register( "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Offisielle apper utvikles av og innenfor ownCloud-fellesskapet. De tilbyr funksjonalitet som er sentral for ownCloud og er forberedt for produksjonsbruk.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Godkjente apper er utviklet av pålitelige utviklere og har gjennomgått en rask sikkerhetssjekk. De vedlikeholdes aktivt i et åpent kode-depot og utviklerne anser dem for å være stabile for tilfeldig til normal bruk.", "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "Denne appen er ikke sjekket for sikkerhetsproblemer og er ny eller ansett for å være ustabil. Installer på egen risiko.", + "Update to %s" : "Oppdater til %s", "Please wait...." : "Vennligst vent...", "Error while disabling app" : "Deaktivering av app feilet", "Disable" : "Deaktiver ", @@ -199,7 +200,6 @@ OC.L10N.register( "Show description …" : "Vis beskrivelse …", "Hide description …" : "Skjul beskrivelse …", "This app cannot be installed because the following dependencies are not fulfilled:" : "Denne appen kan ikke installeres fordi følgende avhengigheter ikke er tilfredsstilt:", - "Update to %s" : "Oppdater til %s", "Enable only for specific groups" : "Aktiver kun for visse grupper", "Uninstall App" : "Avinstaller app", "Enable experimental apps" : "Aktiver eksperimentelle apper", diff --git a/settings/l10n/nb_NO.json b/settings/l10n/nb_NO.json index 0f47138d15a..9a7a9a8b973 100644 --- a/settings/l10n/nb_NO.json +++ b/settings/l10n/nb_NO.json @@ -61,6 +61,7 @@ "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Offisielle apper utvikles av og innenfor ownCloud-fellesskapet. De tilbyr funksjonalitet som er sentral for ownCloud og er forberedt for produksjonsbruk.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Godkjente apper er utviklet av pålitelige utviklere og har gjennomgått en rask sikkerhetssjekk. De vedlikeholdes aktivt i et åpent kode-depot og utviklerne anser dem for å være stabile for tilfeldig til normal bruk.", "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "Denne appen er ikke sjekket for sikkerhetsproblemer og er ny eller ansett for å være ustabil. Installer på egen risiko.", + "Update to %s" : "Oppdater til %s", "Please wait...." : "Vennligst vent...", "Error while disabling app" : "Deaktivering av app feilet", "Disable" : "Deaktiver ", @@ -197,7 +198,6 @@ "Show description …" : "Vis beskrivelse …", "Hide description …" : "Skjul beskrivelse …", "This app cannot be installed because the following dependencies are not fulfilled:" : "Denne appen kan ikke installeres fordi følgende avhengigheter ikke er tilfredsstilt:", - "Update to %s" : "Oppdater til %s", "Enable only for specific groups" : "Aktiver kun for visse grupper", "Uninstall App" : "Avinstaller app", "Enable experimental apps" : "Aktiver eksperimentelle apper", diff --git a/settings/l10n/oc.js b/settings/l10n/oc.js index 4b1f3d25c91..6980231f7a5 100644 --- a/settings/l10n/oc.js +++ b/settings/l10n/oc.js @@ -1,44 +1,271 @@ OC.L10N.register( "settings", { - "Sharing" : "Al partejar", + "Security & setup warnings" : "Avertiments de seguretat & configuracion", + "Sharing" : "Partiment", + "Server-side encryption" : "Chiframent costat servidor", + "External Storage" : "Emmagazinatge extèrne", "Cron" : "Cron", - "Log" : "Jornal", + "Email server" : "Servidor mail", + "Log" : "Log", + "Tips & tricks" : "Estècs e astúcias", + "Updates" : "Mesas a jorn", "Authentication error" : "Error d'autentificacion", - "Language changed" : "Lengas cambiadas", - "Invalid request" : "Demanda invalida", - "Unable to add user to group %s" : "Pas capable d'apondre un usancièr al grop %s", - "Unable to remove user from group %s" : "Pas capable de tira un usancièr del grop %s", - "Email saved" : "Corrièl enregistrat", - "Disable" : "Desactiva", - "Enable" : "Activa", - "Delete" : "Escafa", - "Groups" : "Grops", - "undo" : "defar", - "never" : "jamai", - "__language_name__" : "__language_name__", + "Your full name has been changed." : "Vòstre nom complet es estat modificat.", + "Unable to change full name" : "Impossible de cambiar lo nom complet", + "Couldn't remove app." : "Impossible de suprimir l'aplicacion.", + "Language changed" : "Lenga cambiada", + "Invalid request" : "Requèsta invalida", + "Admins can't remove themself from the admin group" : "Los administrators se pòdon pas levar eles-meteisses del grop admin", + "Unable to add user to group %s" : "Impossible d'apondre l'utilizaire al grop %s", + "Unable to remove user from group %s" : "Impossible de suprimir l'utilizaire del grop %s", + "Couldn't update app." : "Impossible de metre a jorn l'aplicacion", + "Wrong password" : "Senhal incorrècte", + "No user supplied" : "Cap d'utilizaire pas provesit", + "Please provide an admin recovery password, otherwise all user data will be lost" : "Provesissètz un senhal administrator de recuperacion de donadas, siquenon totas las donadas de l'utilizaire seràn perdudas", + "Wrong admin recovery password. Please check the password and try again." : "Senhal administrator de recuperacion de donadas pas valable. Verificatz lo senhal e ensajar tornamai.", + "Backend doesn't support password change, but the user's encryption key was successfully updated." : "L'infrastructura de rèire plan supòrta pas la modification de senhal, mas la clau de chiframent de l'utilizaire es estada mesa a jorn amb succès.", + "Unable to change password" : "Impossible de modificar lo senhal", + "Enabled" : "Activadas", + "Not enabled" : "Desactivadas", + "A problem occurred, please check your log files (Error: %s)" : "Una error s'es produsida, verificatz vòstres fichièrs de log (Error: %s)", + "Migration Completed" : "Migracion acabada", + "Group already exists." : "Aqueste grop existís ja.", + "Unable to add group." : "Impossible d'apondre lo grop.", + "Unable to delete group." : "Impossible de suprimir lo grop.", + "log-level out of allowed range" : "nivèl de jornalizacion fòra bòrna", + "Saved" : "Salvat", + "test email settings" : "testar los paramètres d'e-mail", + "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Una error s'es produsida al moment del mandadís de l'e-mail. Verificatz vòstres paramètres. (Error: %s)", + "Email sent" : "Email mandat", + "You need to set your user email before being able to send test emails." : "Vos cal especificar vòstra adreça email dins los paramètres personals abans de poder mandar d'emails de tèst.", + "Invalid mail address" : "Adreça email invalida", + "A user with that name already exists." : "Un utilizaire amb aqueste nom existís ja.", + "Unable to create user." : "Impossible de crear l'utilizaire.", + "Your %s account was created" : "Vòstre compte %s es estat creat.", + "Unable to delete user." : "Impossible de suprimir l'utilizaire.", + "Forbidden" : "Interdich", + "Invalid user" : "Utilizaire invalid", + "Unable to change mail address" : "Impossible de modificar l'adreça de corrièl", + "Email saved" : "Email salvat", + "Are you really sure you want add \"{domain}\" as trusted domain?" : "Sètz segur que volètz apondre \"{domain}\" coma domeni de fisança ?", + "Add trusted domain" : "Apondre un domeni de fisança", + "Migration in progress. Please wait until the migration is finished" : "Migracion en cors. Esperatz qu'aquela s'acabe", + "Migration started …" : "Migracion aviada...", + "Sending..." : "Mandadís en cors...", + "All" : "Totes", + "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Las aplicacions oficialas son desvolopadas per e amb la comunautat ownCloud. Ofrisson sas foncionalitats principalas a ownCloud e son prèstas per una utilizacion en produccion. ", + "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicacions aprovadas son creadas per de desvolopaires de fisança e an passat los tèst de seguretat. Son activament mantengudas dins un depaus dobèrt e lors desvolopaires pensan que son establas per una utilizacion normala.", + "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "Aquesta aplicacion es pas estada testada per sa seguretat, e es novèla o coneguda coma instabla. D'installar en essent conscient de las riscas.", + "Update to %s" : "Metre a nivèl cap a la version %s", + "Please wait...." : "Pacientatz…", + "Error while disabling app" : "Error al moment de la desactivacion de l'aplicacion", + "Disable" : "Desactivar", + "Enable" : "Activar", + "Error while enabling app" : "Error al moment de l'activacion de l'aplicacion", + "Updating...." : "Mesa a jorn...", + "Error while updating app" : "Error al moment de la mesa a jorn de l'aplicacion", + "Updated" : "Mesa a jorn efectuada", + "Uninstalling ...." : "Desinstallacion...", + "Error while uninstalling app" : "Error al moment de la desinstallacion de l'aplicacion", + "Uninstall" : "Desinstallar", + "Select a profile picture" : "Seleccionar una fòto de perfil ", + "Very weak password" : "Senhal de fòrt febla seguretat", + "Weak password" : "Senhal de febla seguretat", + "So-so password" : "Senhal de seguretat tot bèl juste acceptable", + "Good password" : "Senhal de seguretat sufisenta", + "Strong password" : "Senhal de fòrta seguretat", + "Valid until {date}" : "Valid fins al {date}", + "Delete" : "Suprimir", + "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Una error s'es produsida. Provesissètz un certificat PEM encodat al format ASCII.", + "Groups" : "Gropes", + "Unable to delete {objName}" : "Impossible de suprimir {objName}", + "Error creating group" : "Error al moment de la creacion del grop", + "A valid group name must be provided" : "Vos cal especificar un nom de grop valid", + "deleted {groupName}" : "{groupName} suprimit", + "undo" : "anullar", + "no group" : "Pas cap de grop", + "never" : "pas jamai", + "deleted {userName}" : "{userName} suprimit", + "add group" : "apondre un grop", + "Changing the password will result in data loss, because data recovery is not available for this user" : "La modificacion del senhal entraïnarà la pèrta de las donadas perque lo restabliment de donadas es pas disponible per aqueste utilizaire", + "A valid username must be provided" : "Un nom d'utilizaire valid deu èsser picat", + "Error creating user" : "Error al moment de la creacion de l'utilizaire", + "A valid password must be provided" : "Un senhal valid deu èsser picat", + "A valid email must be provided" : "Vos cal provesir una adreça de corrièl valida", + "__language_name__" : "Occitan-lengadocian", + "Sync clients" : "Clients de sincronizacion", + "Personal info" : "Informacions personalas", + "SSL root certificates" : "Certificats raiç SSL", + "Everything (fatal issues, errors, warnings, info, debug)" : "Tot (errors fatalas, errors, avertiments, informacions, desbugatge)", + "Info, warnings, errors and fatal issues" : "Informacions, avertiments, errors e errors fatalas", + "Warnings, errors and fatal issues" : "Avertiments, errors e errors fatalas", + "Errors and fatal issues" : "Errors e errors fatalas", + "Fatal issues only" : "Errors fatalas unicament", + "None" : "Pas cap", "Login" : "Login", - "Execute one task with each page loaded" : "Executa un prètfach amb cada pagina cargada", - "More" : "Mai d'aquò", + "Plain" : "En clar", + "NT LAN Manager" : "Gestionari de la ret NT", + "SSL" : "SSL", + "TLS" : "TLS", + "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "sembla que php es pas configurat de manièra a recuperar las valors de las variablas d’environament. Lo test de la comanda getenv(\"PATH\") torna solament una responsa voida. ", + "Please check the installation documentation for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Verificatz la documentacion d'installacion a prepaus de las instruccions de configuracion de php e tanben de la configuracion de vòstre servidor, en particular dins lo cas qu'utilizatz php-fpm.", + "The Read-Only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "La configuracion es en mòde lectura sola. Aquò empacha la modificacion de certanas configuracions via l'interfàcia web. Amai, lo fichièr deu èsser passat manualament en lectura-escritura per cada mesa a jorn.", + "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP es aparentament configurat per suprimir los blòts de documentacion intèrnes. Aquò rendrà mantuna aplicacion de basa inaccessiblas.", + "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "La rason es probablament l'utilizacion d'un escondedor / accelerador tal coma Zend OPcache o eAccelerator.", + "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Vòstre servidor fonciona actualament sus una plataforma Microsoft Windows. Vos recomandam fòrtament d'utilizar una plataforma Linux per una experiéncia utilizaire optimala.", + "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Lo modul PHP 'fileinfo' es mancant. Es bravament recomandat de l'activar per fin d'obténer de melhors resultats de deteccion mime-type.", + "System locale can not be set to a one which supports UTF-8." : "Los paramètres regionals pòdon pas èsser configurats amb presa en carga d'UTF-8.", + "This means that there might be problems with certain characters in file names." : "Aquò significa qu'i poiriá aver de problèmas amb certans caractèrs dins los noms de fichièr.", + "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vos recomandam d'installar sus vòstre sistèma los paquets requesits a la presa en carga d'un dels paramètres regionals seguents : %s", + "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se vòstra installacion es pas estada efectuada a la raiç del domeni e qu'utiliza lo cron del sistèma, i pòt aver de problèmas amb la generacion d'URL. Per los evitar, configuratz l'opcion \"overwrite.cli.url\" de vòstre fichièr config.php amb lo camin de la raiç de vòstra installacion (suggerit : \"%s\")", + "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Lo prètzfach cron a pas pogut s'executar via CLI. Aquelas errors tecnicas son aparegudas :", + "Please double check the <a target=\"_blank\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Consultatz los <a target=\"_blank\" href=\"%s\">guidas d'installacion ↗</a>, e cercatz d'errors o avertiments dins <a href=\"#log-section\">los logs</a>.", + "Open documentation" : "Veire la documentacion", + "Allow apps to use the Share API" : "Autorizar las aplicacions a utilizar l'API de partiment", + "Allow users to share via link" : "Autorizar los utilizaires a partejar per ligam", + "Enforce password protection" : "Obligar la proteccion per senhal", + "Allow public uploads" : "Autorizar los mandadisses publics", + "Allow users to send mail notification for shared files" : "Autorizar los utilizaires a mandar de notificacions per corrièl a prepaus dels partiments", + "Set default expiration date" : "Especificar la data d'expiracion per defaut", + "Expire after " : "Expiracion aprèp ", + "days" : "jorns", + "Enforce expiration date" : "Impausar la data d'expiracion", + "Allow resharing" : "Autorizar lo re-partiment", + "Restrict users to only share with users in their groups" : "Autorizar pas los partiments qu'entre membres de meteisses gropes", + "Allow users to send mail notification for shared files to other users" : "Autorizar los utilizaires a mandar una notificacion per corrièl a prepaus dels fichièrs partejats", + "Exclude groups from sharing" : "Empachar certans gropes de partejar", + "These groups will still be able to receive shares, but not to initiate them." : "Aqueles gropes poiràn pas mai iniciar cap de partiment, mas poiràn totjorn rejónher los partiments faches per d'autres. ", + "Last cron job execution: %s." : "Darrièr prètzfach cron d'executat : %s.", + "Last cron job execution: %s. Something seems wrong." : "Darrièr prètzfach cron d'executat : %s. Quicòm a trucat.", + "Cron was not executed yet!" : "Lo cron es pas encara estat executat !", + "Execute one task with each page loaded" : "Executa un prètzfach a cada cargament de pagina", + "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php es enregistrat alprèp d'un servici webcron que l'executarà a cada 15 minutas via http.", + "Use system's cron service to call the cron.php file every 15 minutes." : "Utilizatz lo servici cron del sistèma per apelar lo fichièr cron.php a cada 15 minutas.", + "Enable server-side encryption" : "Activar lo chiframent costat servidor", + "Encryption is a one way process. Once encryption is enabled, all files from that point forward will be encrypted on the server and it will not be possible to disable encryption at a later date. This is the final warning: Do you really want to enable encryption?" : "Lo chiframent es un processus amb sens unic. Un còp que lo chiframent es activat, totes los fichièrs a partir d'aqueste moment seràn chifrats sul servidor e serà pas possible de desactivar lo chiframent ulteriorament. Aquò es lo darrièr avertiment : Sètz segur que volètz activar lo chiframent?", + "Enable encryption" : "Activar lo chiframent", + "No encryption module loaded, please enable an encryption module in the app menu." : "Cap de modul de chiframent es pas cargat. Mercé d'activar un modul de chiframent dins lo menú de las aplicacions.", + "Select default encryption module:" : "Seleccionatz lo modul de chiframent per defaut :", + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Vos cal migrar vòstras claus de chiframent de l'anciana version (ownCloud <= 8.0) cap a la novèla. Activatz \"ownCloud Default Encryption Modul\" e executatz 'occ encryption:migrate'", + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Vos cal migrar vòstras claus de chiframent de l'anciana version (ownCloud <= 8.0) cap a la novèla.", + "Start migration" : "Aviar la migracion", + "This is used for sending out notifications." : "Aquò es utilizat pel mandadís de las notificacions.", + "Send mode" : "Mòde de mandadís", + "Encryption" : "Chiframent", + "From address" : "Adreça font", + "mail" : "mail", + "Authentication method" : "Metòde d'autentificacion", + "Authentication required" : "Autentificacion requesida", + "Server address" : "Adreça del servidor", + "Port" : "Pòrt", + "Credentials" : "Informacions d'identificacion", + "SMTP Username" : "Nom d'utilizaire SMTP", + "SMTP Password" : "Senhal SMTP", + "Store credentials" : "Enregistrar los identificants", + "Test email settings" : "Testar los paramètres e-mail", + "Send email" : "Mandar un mail", + "Log level" : "Nivèl de log", + "Download logfile" : "Telecargar lo fichièr de jornalizacion", + "More" : "Mai", + "Less" : "Mens", + "The logfile is bigger than 100 MB. Downloading it may take some time!" : "La talha del fichièr jornal excedís 100 Mo. Lo telecargar pòt prene un certan temps!", + "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite es actualament utilizat coma gestionari de banca de donadas. Per d'installacions mai voluminosas, vos conselham d'utilizar un autre gestionari de banca de donadas.", + "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "L'utilizacion de SQLite es particularament desconselhada se utilizatz lo client de burèu per sincronizar vòstras donadas.", + "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" href=\"%s\">documentation ↗</a>." : "Per migrar cap a un autre tipe de banca de donadas, utilizatz la linha de comanda : 'occ db:convert-type' o consultatz la <a target=\"_blank\" href=\"%s\">documentacion ↗</a>.", + "How to do backups" : "Cossí far de salvaments", + "Advanced monitoring" : "Susvelhança avançada", + "Performance tuning" : "Ajustament de las performàncias", + "Improving the config.php" : "Melhorament del config.php ", + "Hardening and security guidance" : "Guida pel renforçament e la seguretat", + "Version" : "Version", + "Developer documentation" : "Documentacion pels desvolopaires", + "Experimental applications ahead" : "Atencion! Aplicacions experimentalas", + "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Las aplicacions experimentalas son pas estadas testadas pels problèmas de seguretat, son novèlas o conegudasper èsser instablas e son encara en desvolopament. Las installar pòt causar de pèrdas de donadas o de falhas de seguretat. ", "by" : "per", - "Get the apps to sync your files" : "Obtenètz las aplicacions que vos permeton de sincronizar vòstres fichièrs", + "licensed" : "Jos licéncia", + "Documentation:" : "Documentacion :", + "User Documentation" : "Documentacion utilizaire", + "Admin Documentation" : "Documentacion administrator", + "Show description …" : "Afichar la descripcion...", + "Hide description …" : "Amagar la descripcion...", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Aquesta aplicacion pòt pas èsser installada a causa d'aquelas dependéncias pas satisfachas :", + "Enable only for specific groups" : "Activar unicament per certans gropes", + "Uninstall App" : "Desinstallar l'aplicacion", + "Enable experimental apps" : "Activar las aplicacions experimentalas", + "No apps found for your version" : "Pas d'aplicacion trobada per vòstra version", + "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Bonjorn,<br><br>Un compte %s es estat creat per vos.<br><br>Vòstre nom d'utilizaire es : %s<br>Visitatz vòstre compte : <a href=\"%s\">%s</a><br><br>", + "Cheers!" : "A lèu !", + "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Bonjorn,<br><br>Un compte %s es estat creat per vos.<br><br>Vòstre nom d'utilizaire es : %s<br>Visitatz vòstre compte : %s<br><br>\n", + "User documentation" : "Documentacion utilizaire", + "Administrator documentation" : "Documentacion administrator", + "Online documentation" : "Documentacion en linha", + "Forum" : "Forum", + "Issue tracker" : "Seguiment de problèmas", + "Commercial support" : "Supòrt comercial", + "Get the apps to sync your files" : "Obtenètz las aplicacions de sincronizacion de vòstres fichièrs", "Desktop client" : "Client de burèu", "Android app" : "Aplicacion Android", "iOS app" : "Aplicacion iOS", + "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Se volètz aportar vòstre supòrt al projècte\n <a href=\"https://owncloud.org/contribute\"\n target=\"_blank\" rel=\"noreferrer\">rejonhètz lo desvolopament</a>\n o\n <a href=\"https://owncloud.org/promote\"\n target=\"_blank\" rel=\"noreferrer\">fasètz passar l'informacion</a> !", + "Show First Run Wizard again" : "Reveire la fenèstra d'acuèlh afichada al moment de vòstra primièra connexion", + "You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Utilizatz <strong>%s</strong> dels <strong>%s<strong> disponibles", "Password" : "Senhal", - "Unable to change your password" : "Pas possible de cambiar ton senhal", - "Current password" : "Senhal en cors", + "Unable to change your password" : "Impossible de cambiar vòstre senhal", + "Current password" : "Senhal actual", "New password" : "Senhal novèl", - "Change password" : "Cambia lo senhal", - "Email" : "Corrièl", - "Your email address" : "Ton adreiça de corrièl", - "Cancel" : "Annula", + "Change password" : "Cambiar de senhal", + "Full name" : "Nom complet", + "No display name set" : "Cap de nom d'afichatge pas configurat", + "Email" : "Adreça mail", + "Your email address" : "Vòstra adreça mail", + "Fill in an email address to enable password recovery and receive notifications" : "Picatz vòstra adreça mail per permetre la reïnicializacion del senhal e la recepcion de las notificacions", + "No email address set" : "Cap d'adreça e-mail pas configurada", + "You are member of the following groups:" : "Sètz membre dels gropes seguents :", + "Profile picture" : "Fòto de perfil", + "Upload new" : "Novèla dempuèi vòstre ordenador", + "Select new from Files" : "Novèla dempuèi los Fichièrs", + "Remove image" : "Suprimir l'imatge", + "Either png or jpg. Ideally square but you will be able to crop it." : "Format png o jpg. Idealament carrada, mas la poiretz requadrar.", + "Your avatar is provided by your original account." : "Vòstre avatar es provesit per vòstre compte original.", + "Cancel" : "Anullar", + "Choose as profile image" : "Causir en tant que fòto de perfil", "Language" : "Lenga", - "Help translate" : "Ajuda a la revirada", - "Username" : "Non d'usancièr", - "Create" : "Crea", - "Default Quota" : "Quota per defaut", - "Other" : "Autres", - "Quota" : "Quota" + "Help translate" : "Ajudatz a tradusir", + "Common Name" : "Nom d'usatge", + "Valid until" : "Valid fins a", + "Issued By" : "Desliurat per", + "Valid until %s" : "Valid fins a %s", + "Import root certificate" : "Importar un certificat raiç", + "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Desvolopat per la {communityopen}comunautat ownCloud{linkclose}, lo {githubopen}code font{linkclose} es jos licéncia {licenseopen}<abbr lang=\"en\" title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", + "Show storage location" : "Afichar l'emplaçament de l'emmagazinatge", + "Show last log in" : "Far veire la darrièra connexion", + "Show user backend" : "Far veire la font de l'identificant", + "Send email to new user" : "Mandar un corrièl als utilizaires creats", + "Show email address" : "Afichar l'adreça email", + "Username" : "Nom d'utilizaire", + "E-Mail" : "Corrièl", + "Create" : "Crear", + "Admin Recovery Password" : "Recuperacion del senhal administrator", + "Enter the recovery password in order to recover the users files during password change" : "Entratz lo senhal de recuperacion per recuperar los fichièrs utilizaires pendent lo cambiament de senhal", + "Search Users" : "Recèrca dels utilizaires", + "Add Group" : "Apondre un grop", + "Group" : "Grop", + "Everyone" : "Tot lo monde", + "Admins" : "Administrators", + "Default Quota" : "Quòta per defaut", + "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Entratz lo quòta d'emmagazinatge (ex. \"512 MB\" o \"12 GB\")", + "Unlimited" : "Illimitat", + "Other" : "Autre", + "Full Name" : "Nom complet", + "Group Admin for" : "Administrator de grop per", + "Quota" : "Quòta", + "Storage Location" : "Emplaçament de l'Emmagazinatge", + "User Backend" : "Font", + "Last Login" : "Darrièra Connexion", + "change full name" : "Modificar lo nom complet", + "set new password" : "Cambiar lo senhal", + "change email address" : "cambiar l'adreça email", + "Default" : "Defaut" }, "nplurals=2; plural=(n > 1);"); diff --git a/settings/l10n/oc.json b/settings/l10n/oc.json index 47813761fca..d6873f15527 100644 --- a/settings/l10n/oc.json +++ b/settings/l10n/oc.json @@ -1,42 +1,269 @@ { "translations": { - "Sharing" : "Al partejar", + "Security & setup warnings" : "Avertiments de seguretat & configuracion", + "Sharing" : "Partiment", + "Server-side encryption" : "Chiframent costat servidor", + "External Storage" : "Emmagazinatge extèrne", "Cron" : "Cron", - "Log" : "Jornal", + "Email server" : "Servidor mail", + "Log" : "Log", + "Tips & tricks" : "Estècs e astúcias", + "Updates" : "Mesas a jorn", "Authentication error" : "Error d'autentificacion", - "Language changed" : "Lengas cambiadas", - "Invalid request" : "Demanda invalida", - "Unable to add user to group %s" : "Pas capable d'apondre un usancièr al grop %s", - "Unable to remove user from group %s" : "Pas capable de tira un usancièr del grop %s", - "Email saved" : "Corrièl enregistrat", - "Disable" : "Desactiva", - "Enable" : "Activa", - "Delete" : "Escafa", - "Groups" : "Grops", - "undo" : "defar", - "never" : "jamai", - "__language_name__" : "__language_name__", + "Your full name has been changed." : "Vòstre nom complet es estat modificat.", + "Unable to change full name" : "Impossible de cambiar lo nom complet", + "Couldn't remove app." : "Impossible de suprimir l'aplicacion.", + "Language changed" : "Lenga cambiada", + "Invalid request" : "Requèsta invalida", + "Admins can't remove themself from the admin group" : "Los administrators se pòdon pas levar eles-meteisses del grop admin", + "Unable to add user to group %s" : "Impossible d'apondre l'utilizaire al grop %s", + "Unable to remove user from group %s" : "Impossible de suprimir l'utilizaire del grop %s", + "Couldn't update app." : "Impossible de metre a jorn l'aplicacion", + "Wrong password" : "Senhal incorrècte", + "No user supplied" : "Cap d'utilizaire pas provesit", + "Please provide an admin recovery password, otherwise all user data will be lost" : "Provesissètz un senhal administrator de recuperacion de donadas, siquenon totas las donadas de l'utilizaire seràn perdudas", + "Wrong admin recovery password. Please check the password and try again." : "Senhal administrator de recuperacion de donadas pas valable. Verificatz lo senhal e ensajar tornamai.", + "Backend doesn't support password change, but the user's encryption key was successfully updated." : "L'infrastructura de rèire plan supòrta pas la modification de senhal, mas la clau de chiframent de l'utilizaire es estada mesa a jorn amb succès.", + "Unable to change password" : "Impossible de modificar lo senhal", + "Enabled" : "Activadas", + "Not enabled" : "Desactivadas", + "A problem occurred, please check your log files (Error: %s)" : "Una error s'es produsida, verificatz vòstres fichièrs de log (Error: %s)", + "Migration Completed" : "Migracion acabada", + "Group already exists." : "Aqueste grop existís ja.", + "Unable to add group." : "Impossible d'apondre lo grop.", + "Unable to delete group." : "Impossible de suprimir lo grop.", + "log-level out of allowed range" : "nivèl de jornalizacion fòra bòrna", + "Saved" : "Salvat", + "test email settings" : "testar los paramètres d'e-mail", + "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "Una error s'es produsida al moment del mandadís de l'e-mail. Verificatz vòstres paramètres. (Error: %s)", + "Email sent" : "Email mandat", + "You need to set your user email before being able to send test emails." : "Vos cal especificar vòstra adreça email dins los paramètres personals abans de poder mandar d'emails de tèst.", + "Invalid mail address" : "Adreça email invalida", + "A user with that name already exists." : "Un utilizaire amb aqueste nom existís ja.", + "Unable to create user." : "Impossible de crear l'utilizaire.", + "Your %s account was created" : "Vòstre compte %s es estat creat.", + "Unable to delete user." : "Impossible de suprimir l'utilizaire.", + "Forbidden" : "Interdich", + "Invalid user" : "Utilizaire invalid", + "Unable to change mail address" : "Impossible de modificar l'adreça de corrièl", + "Email saved" : "Email salvat", + "Are you really sure you want add \"{domain}\" as trusted domain?" : "Sètz segur que volètz apondre \"{domain}\" coma domeni de fisança ?", + "Add trusted domain" : "Apondre un domeni de fisança", + "Migration in progress. Please wait until the migration is finished" : "Migracion en cors. Esperatz qu'aquela s'acabe", + "Migration started …" : "Migracion aviada...", + "Sending..." : "Mandadís en cors...", + "All" : "Totes", + "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Las aplicacions oficialas son desvolopadas per e amb la comunautat ownCloud. Ofrisson sas foncionalitats principalas a ownCloud e son prèstas per una utilizacion en produccion. ", + "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicacions aprovadas son creadas per de desvolopaires de fisança e an passat los tèst de seguretat. Son activament mantengudas dins un depaus dobèrt e lors desvolopaires pensan que son establas per una utilizacion normala.", + "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "Aquesta aplicacion es pas estada testada per sa seguretat, e es novèla o coneguda coma instabla. D'installar en essent conscient de las riscas.", + "Update to %s" : "Metre a nivèl cap a la version %s", + "Please wait...." : "Pacientatz…", + "Error while disabling app" : "Error al moment de la desactivacion de l'aplicacion", + "Disable" : "Desactivar", + "Enable" : "Activar", + "Error while enabling app" : "Error al moment de l'activacion de l'aplicacion", + "Updating...." : "Mesa a jorn...", + "Error while updating app" : "Error al moment de la mesa a jorn de l'aplicacion", + "Updated" : "Mesa a jorn efectuada", + "Uninstalling ...." : "Desinstallacion...", + "Error while uninstalling app" : "Error al moment de la desinstallacion de l'aplicacion", + "Uninstall" : "Desinstallar", + "Select a profile picture" : "Seleccionar una fòto de perfil ", + "Very weak password" : "Senhal de fòrt febla seguretat", + "Weak password" : "Senhal de febla seguretat", + "So-so password" : "Senhal de seguretat tot bèl juste acceptable", + "Good password" : "Senhal de seguretat sufisenta", + "Strong password" : "Senhal de fòrta seguretat", + "Valid until {date}" : "Valid fins al {date}", + "Delete" : "Suprimir", + "An error occurred. Please upload an ASCII-encoded PEM certificate." : "Una error s'es produsida. Provesissètz un certificat PEM encodat al format ASCII.", + "Groups" : "Gropes", + "Unable to delete {objName}" : "Impossible de suprimir {objName}", + "Error creating group" : "Error al moment de la creacion del grop", + "A valid group name must be provided" : "Vos cal especificar un nom de grop valid", + "deleted {groupName}" : "{groupName} suprimit", + "undo" : "anullar", + "no group" : "Pas cap de grop", + "never" : "pas jamai", + "deleted {userName}" : "{userName} suprimit", + "add group" : "apondre un grop", + "Changing the password will result in data loss, because data recovery is not available for this user" : "La modificacion del senhal entraïnarà la pèrta de las donadas perque lo restabliment de donadas es pas disponible per aqueste utilizaire", + "A valid username must be provided" : "Un nom d'utilizaire valid deu èsser picat", + "Error creating user" : "Error al moment de la creacion de l'utilizaire", + "A valid password must be provided" : "Un senhal valid deu èsser picat", + "A valid email must be provided" : "Vos cal provesir una adreça de corrièl valida", + "__language_name__" : "Occitan-lengadocian", + "Sync clients" : "Clients de sincronizacion", + "Personal info" : "Informacions personalas", + "SSL root certificates" : "Certificats raiç SSL", + "Everything (fatal issues, errors, warnings, info, debug)" : "Tot (errors fatalas, errors, avertiments, informacions, desbugatge)", + "Info, warnings, errors and fatal issues" : "Informacions, avertiments, errors e errors fatalas", + "Warnings, errors and fatal issues" : "Avertiments, errors e errors fatalas", + "Errors and fatal issues" : "Errors e errors fatalas", + "Fatal issues only" : "Errors fatalas unicament", + "None" : "Pas cap", "Login" : "Login", - "Execute one task with each page loaded" : "Executa un prètfach amb cada pagina cargada", - "More" : "Mai d'aquò", + "Plain" : "En clar", + "NT LAN Manager" : "Gestionari de la ret NT", + "SSL" : "SSL", + "TLS" : "TLS", + "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "sembla que php es pas configurat de manièra a recuperar las valors de las variablas d’environament. Lo test de la comanda getenv(\"PATH\") torna solament una responsa voida. ", + "Please check the installation documentation for php configuration notes and the php configuration of your server, especially when using php-fpm." : "Verificatz la documentacion d'installacion a prepaus de las instruccions de configuracion de php e tanben de la configuracion de vòstre servidor, en particular dins lo cas qu'utilizatz php-fpm.", + "The Read-Only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "La configuracion es en mòde lectura sola. Aquò empacha la modificacion de certanas configuracions via l'interfàcia web. Amai, lo fichièr deu èsser passat manualament en lectura-escritura per cada mesa a jorn.", + "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "PHP es aparentament configurat per suprimir los blòts de documentacion intèrnes. Aquò rendrà mantuna aplicacion de basa inaccessiblas.", + "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "La rason es probablament l'utilizacion d'un escondedor / accelerador tal coma Zend OPcache o eAccelerator.", + "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Vòstre servidor fonciona actualament sus una plataforma Microsoft Windows. Vos recomandam fòrtament d'utilizar una plataforma Linux per una experiéncia utilizaire optimala.", + "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Lo modul PHP 'fileinfo' es mancant. Es bravament recomandat de l'activar per fin d'obténer de melhors resultats de deteccion mime-type.", + "System locale can not be set to a one which supports UTF-8." : "Los paramètres regionals pòdon pas èsser configurats amb presa en carga d'UTF-8.", + "This means that there might be problems with certain characters in file names." : "Aquò significa qu'i poiriá aver de problèmas amb certans caractèrs dins los noms de fichièr.", + "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "Vos recomandam d'installar sus vòstre sistèma los paquets requesits a la presa en carga d'un dels paramètres regionals seguents : %s", + "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "Se vòstra installacion es pas estada efectuada a la raiç del domeni e qu'utiliza lo cron del sistèma, i pòt aver de problèmas amb la generacion d'URL. Per los evitar, configuratz l'opcion \"overwrite.cli.url\" de vòstre fichièr config.php amb lo camin de la raiç de vòstra installacion (suggerit : \"%s\")", + "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "Lo prètzfach cron a pas pogut s'executar via CLI. Aquelas errors tecnicas son aparegudas :", + "Please double check the <a target=\"_blank\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "Consultatz los <a target=\"_blank\" href=\"%s\">guidas d'installacion ↗</a>, e cercatz d'errors o avertiments dins <a href=\"#log-section\">los logs</a>.", + "Open documentation" : "Veire la documentacion", + "Allow apps to use the Share API" : "Autorizar las aplicacions a utilizar l'API de partiment", + "Allow users to share via link" : "Autorizar los utilizaires a partejar per ligam", + "Enforce password protection" : "Obligar la proteccion per senhal", + "Allow public uploads" : "Autorizar los mandadisses publics", + "Allow users to send mail notification for shared files" : "Autorizar los utilizaires a mandar de notificacions per corrièl a prepaus dels partiments", + "Set default expiration date" : "Especificar la data d'expiracion per defaut", + "Expire after " : "Expiracion aprèp ", + "days" : "jorns", + "Enforce expiration date" : "Impausar la data d'expiracion", + "Allow resharing" : "Autorizar lo re-partiment", + "Restrict users to only share with users in their groups" : "Autorizar pas los partiments qu'entre membres de meteisses gropes", + "Allow users to send mail notification for shared files to other users" : "Autorizar los utilizaires a mandar una notificacion per corrièl a prepaus dels fichièrs partejats", + "Exclude groups from sharing" : "Empachar certans gropes de partejar", + "These groups will still be able to receive shares, but not to initiate them." : "Aqueles gropes poiràn pas mai iniciar cap de partiment, mas poiràn totjorn rejónher los partiments faches per d'autres. ", + "Last cron job execution: %s." : "Darrièr prètzfach cron d'executat : %s.", + "Last cron job execution: %s. Something seems wrong." : "Darrièr prètzfach cron d'executat : %s. Quicòm a trucat.", + "Cron was not executed yet!" : "Lo cron es pas encara estat executat !", + "Execute one task with each page loaded" : "Executa un prètzfach a cada cargament de pagina", + "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php es enregistrat alprèp d'un servici webcron que l'executarà a cada 15 minutas via http.", + "Use system's cron service to call the cron.php file every 15 minutes." : "Utilizatz lo servici cron del sistèma per apelar lo fichièr cron.php a cada 15 minutas.", + "Enable server-side encryption" : "Activar lo chiframent costat servidor", + "Encryption is a one way process. Once encryption is enabled, all files from that point forward will be encrypted on the server and it will not be possible to disable encryption at a later date. This is the final warning: Do you really want to enable encryption?" : "Lo chiframent es un processus amb sens unic. Un còp que lo chiframent es activat, totes los fichièrs a partir d'aqueste moment seràn chifrats sul servidor e serà pas possible de desactivar lo chiframent ulteriorament. Aquò es lo darrièr avertiment : Sètz segur que volètz activar lo chiframent?", + "Enable encryption" : "Activar lo chiframent", + "No encryption module loaded, please enable an encryption module in the app menu." : "Cap de modul de chiframent es pas cargat. Mercé d'activar un modul de chiframent dins lo menú de las aplicacions.", + "Select default encryption module:" : "Seleccionatz lo modul de chiframent per defaut :", + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "Vos cal migrar vòstras claus de chiframent de l'anciana version (ownCloud <= 8.0) cap a la novèla. Activatz \"ownCloud Default Encryption Modul\" e executatz 'occ encryption:migrate'", + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "Vos cal migrar vòstras claus de chiframent de l'anciana version (ownCloud <= 8.0) cap a la novèla.", + "Start migration" : "Aviar la migracion", + "This is used for sending out notifications." : "Aquò es utilizat pel mandadís de las notificacions.", + "Send mode" : "Mòde de mandadís", + "Encryption" : "Chiframent", + "From address" : "Adreça font", + "mail" : "mail", + "Authentication method" : "Metòde d'autentificacion", + "Authentication required" : "Autentificacion requesida", + "Server address" : "Adreça del servidor", + "Port" : "Pòrt", + "Credentials" : "Informacions d'identificacion", + "SMTP Username" : "Nom d'utilizaire SMTP", + "SMTP Password" : "Senhal SMTP", + "Store credentials" : "Enregistrar los identificants", + "Test email settings" : "Testar los paramètres e-mail", + "Send email" : "Mandar un mail", + "Log level" : "Nivèl de log", + "Download logfile" : "Telecargar lo fichièr de jornalizacion", + "More" : "Mai", + "Less" : "Mens", + "The logfile is bigger than 100 MB. Downloading it may take some time!" : "La talha del fichièr jornal excedís 100 Mo. Lo telecargar pòt prene un certan temps!", + "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "SQLite es actualament utilizat coma gestionari de banca de donadas. Per d'installacions mai voluminosas, vos conselham d'utilizar un autre gestionari de banca de donadas.", + "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "L'utilizacion de SQLite es particularament desconselhada se utilizatz lo client de burèu per sincronizar vòstras donadas.", + "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" href=\"%s\">documentation ↗</a>." : "Per migrar cap a un autre tipe de banca de donadas, utilizatz la linha de comanda : 'occ db:convert-type' o consultatz la <a target=\"_blank\" href=\"%s\">documentacion ↗</a>.", + "How to do backups" : "Cossí far de salvaments", + "Advanced monitoring" : "Susvelhança avançada", + "Performance tuning" : "Ajustament de las performàncias", + "Improving the config.php" : "Melhorament del config.php ", + "Hardening and security guidance" : "Guida pel renforçament e la seguretat", + "Version" : "Version", + "Developer documentation" : "Documentacion pels desvolopaires", + "Experimental applications ahead" : "Atencion! Aplicacions experimentalas", + "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "Las aplicacions experimentalas son pas estadas testadas pels problèmas de seguretat, son novèlas o conegudasper èsser instablas e son encara en desvolopament. Las installar pòt causar de pèrdas de donadas o de falhas de seguretat. ", "by" : "per", - "Get the apps to sync your files" : "Obtenètz las aplicacions que vos permeton de sincronizar vòstres fichièrs", + "licensed" : "Jos licéncia", + "Documentation:" : "Documentacion :", + "User Documentation" : "Documentacion utilizaire", + "Admin Documentation" : "Documentacion administrator", + "Show description …" : "Afichar la descripcion...", + "Hide description …" : "Amagar la descripcion...", + "This app cannot be installed because the following dependencies are not fulfilled:" : "Aquesta aplicacion pòt pas èsser installada a causa d'aquelas dependéncias pas satisfachas :", + "Enable only for specific groups" : "Activar unicament per certans gropes", + "Uninstall App" : "Desinstallar l'aplicacion", + "Enable experimental apps" : "Activar las aplicacions experimentalas", + "No apps found for your version" : "Pas d'aplicacion trobada per vòstra version", + "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "Bonjorn,<br><br>Un compte %s es estat creat per vos.<br><br>Vòstre nom d'utilizaire es : %s<br>Visitatz vòstre compte : <a href=\"%s\">%s</a><br><br>", + "Cheers!" : "A lèu !", + "Hey there,\n\njust letting you know that you now have an %s account.\n\nYour username: %s\nAccess it: %s\n\n" : "Bonjorn,<br><br>Un compte %s es estat creat per vos.<br><br>Vòstre nom d'utilizaire es : %s<br>Visitatz vòstre compte : %s<br><br>\n", + "User documentation" : "Documentacion utilizaire", + "Administrator documentation" : "Documentacion administrator", + "Online documentation" : "Documentacion en linha", + "Forum" : "Forum", + "Issue tracker" : "Seguiment de problèmas", + "Commercial support" : "Supòrt comercial", + "Get the apps to sync your files" : "Obtenètz las aplicacions de sincronizacion de vòstres fichièrs", "Desktop client" : "Client de burèu", "Android app" : "Aplicacion Android", "iOS app" : "Aplicacion iOS", + "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "Se volètz aportar vòstre supòrt al projècte\n <a href=\"https://owncloud.org/contribute\"\n target=\"_blank\" rel=\"noreferrer\">rejonhètz lo desvolopament</a>\n o\n <a href=\"https://owncloud.org/promote\"\n target=\"_blank\" rel=\"noreferrer\">fasètz passar l'informacion</a> !", + "Show First Run Wizard again" : "Reveire la fenèstra d'acuèlh afichada al moment de vòstra primièra connexion", + "You have used <strong>%s</strong> of the available <strong>%s</strong>" : "Utilizatz <strong>%s</strong> dels <strong>%s<strong> disponibles", "Password" : "Senhal", - "Unable to change your password" : "Pas possible de cambiar ton senhal", - "Current password" : "Senhal en cors", + "Unable to change your password" : "Impossible de cambiar vòstre senhal", + "Current password" : "Senhal actual", "New password" : "Senhal novèl", - "Change password" : "Cambia lo senhal", - "Email" : "Corrièl", - "Your email address" : "Ton adreiça de corrièl", - "Cancel" : "Annula", + "Change password" : "Cambiar de senhal", + "Full name" : "Nom complet", + "No display name set" : "Cap de nom d'afichatge pas configurat", + "Email" : "Adreça mail", + "Your email address" : "Vòstra adreça mail", + "Fill in an email address to enable password recovery and receive notifications" : "Picatz vòstra adreça mail per permetre la reïnicializacion del senhal e la recepcion de las notificacions", + "No email address set" : "Cap d'adreça e-mail pas configurada", + "You are member of the following groups:" : "Sètz membre dels gropes seguents :", + "Profile picture" : "Fòto de perfil", + "Upload new" : "Novèla dempuèi vòstre ordenador", + "Select new from Files" : "Novèla dempuèi los Fichièrs", + "Remove image" : "Suprimir l'imatge", + "Either png or jpg. Ideally square but you will be able to crop it." : "Format png o jpg. Idealament carrada, mas la poiretz requadrar.", + "Your avatar is provided by your original account." : "Vòstre avatar es provesit per vòstre compte original.", + "Cancel" : "Anullar", + "Choose as profile image" : "Causir en tant que fòto de perfil", "Language" : "Lenga", - "Help translate" : "Ajuda a la revirada", - "Username" : "Non d'usancièr", - "Create" : "Crea", - "Default Quota" : "Quota per defaut", - "Other" : "Autres", - "Quota" : "Quota" + "Help translate" : "Ajudatz a tradusir", + "Common Name" : "Nom d'usatge", + "Valid until" : "Valid fins a", + "Issued By" : "Desliurat per", + "Valid until %s" : "Valid fins a %s", + "Import root certificate" : "Importar un certificat raiç", + "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "Desvolopat per la {communityopen}comunautat ownCloud{linkclose}, lo {githubopen}code font{linkclose} es jos licéncia {licenseopen}<abbr lang=\"en\" title=\"Affero General Public License\">AGPL</abbr>{linkclose}.", + "Show storage location" : "Afichar l'emplaçament de l'emmagazinatge", + "Show last log in" : "Far veire la darrièra connexion", + "Show user backend" : "Far veire la font de l'identificant", + "Send email to new user" : "Mandar un corrièl als utilizaires creats", + "Show email address" : "Afichar l'adreça email", + "Username" : "Nom d'utilizaire", + "E-Mail" : "Corrièl", + "Create" : "Crear", + "Admin Recovery Password" : "Recuperacion del senhal administrator", + "Enter the recovery password in order to recover the users files during password change" : "Entratz lo senhal de recuperacion per recuperar los fichièrs utilizaires pendent lo cambiament de senhal", + "Search Users" : "Recèrca dels utilizaires", + "Add Group" : "Apondre un grop", + "Group" : "Grop", + "Everyone" : "Tot lo monde", + "Admins" : "Administrators", + "Default Quota" : "Quòta per defaut", + "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Entratz lo quòta d'emmagazinatge (ex. \"512 MB\" o \"12 GB\")", + "Unlimited" : "Illimitat", + "Other" : "Autre", + "Full Name" : "Nom complet", + "Group Admin for" : "Administrator de grop per", + "Quota" : "Quòta", + "Storage Location" : "Emplaçament de l'Emmagazinatge", + "User Backend" : "Font", + "Last Login" : "Darrièra Connexion", + "change full name" : "Modificar lo nom complet", + "set new password" : "Cambiar lo senhal", + "change email address" : "cambiar l'adreça email", + "Default" : "Defaut" },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/settings/l10n/pl.js b/settings/l10n/pl.js index 97421042b76..3f14ebe860d 100644 --- a/settings/l10n/pl.js +++ b/settings/l10n/pl.js @@ -116,6 +116,7 @@ OC.L10N.register( "Execute one task with each page loaded" : "Wykonuj jedno zadanie wraz z każdą wczytaną stroną", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php jest zarejestrowany w serwisie webcron do uruchamiania cron.php raz na 15 minut przez http.", "Use system's cron service to call the cron.php file every 15 minutes." : "Użyj systemowej usługi cron do wywoływania cron.php co 15 minut.", + "Enable encryption" : "Włącz szyfrowanie", "This is used for sending out notifications." : "To jest używane do wysyłania powiadomień", "Send mode" : "Tryb wysyłki", "Encryption" : "Szyfrowanie", diff --git a/settings/l10n/pl.json b/settings/l10n/pl.json index 63bc9f4e514..92192d49745 100644 --- a/settings/l10n/pl.json +++ b/settings/l10n/pl.json @@ -114,6 +114,7 @@ "Execute one task with each page loaded" : "Wykonuj jedno zadanie wraz z każdą wczytaną stroną", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php jest zarejestrowany w serwisie webcron do uruchamiania cron.php raz na 15 minut przez http.", "Use system's cron service to call the cron.php file every 15 minutes." : "Użyj systemowej usługi cron do wywoływania cron.php co 15 minut.", + "Enable encryption" : "Włącz szyfrowanie", "This is used for sending out notifications." : "To jest używane do wysyłania powiadomień", "Send mode" : "Tryb wysyłki", "Encryption" : "Szyfrowanie", diff --git a/settings/l10n/pt_BR.js b/settings/l10n/pt_BR.js index 397d45ac5e4..0d86dea128a 100644 --- a/settings/l10n/pt_BR.js +++ b/settings/l10n/pt_BR.js @@ -63,6 +63,7 @@ OC.L10N.register( "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Aplicativos oficiais são desenvolvidos por e dentro da comunidade ownCloud. Eles oferecem funcionalidade central para ownCloud e estão prontos para uso em produção.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Aplicativos aprovados são desenvolvidos pelos desenvolvedores confiáveis e passaram por uma verificação de segurança superficial. Eles são ativamente mantidos em um repositório de código aberto e seus mantenedores consideram que eles para sejam estáveis para um casual uso normal.", "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "Este aplicativo não está marcado por questões de segurança e é novo ou conhecido por ser instável. Instale por seu próprio risco.", + "Update to %s" : "Atualizado para %s", "Please wait...." : "Por favor, aguarde...", "Error while disabling app" : "Erro enquanto desabilitava o aplicativo", "Disable" : "Desabilitar", @@ -199,7 +200,6 @@ OC.L10N.register( "Show description …" : "Mostrar descrição ...", "Hide description …" : "Esconder descrição ...", "This app cannot be installed because the following dependencies are not fulfilled:" : "Este aplicativo não pode ser instalado porque as seguintes dependências não forão cumpridas:", - "Update to %s" : "Atualizado para %s", "Enable only for specific groups" : "Ativar apenas para grupos específicos", "Uninstall App" : "Desinstalar Aplicativo", "Enable experimental apps" : "Habilitar aplicativos experimentais", diff --git a/settings/l10n/pt_BR.json b/settings/l10n/pt_BR.json index 3ed9456b99d..638af944c73 100644 --- a/settings/l10n/pt_BR.json +++ b/settings/l10n/pt_BR.json @@ -61,6 +61,7 @@ "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Aplicativos oficiais são desenvolvidos por e dentro da comunidade ownCloud. Eles oferecem funcionalidade central para ownCloud e estão prontos para uso em produção.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Aplicativos aprovados são desenvolvidos pelos desenvolvedores confiáveis e passaram por uma verificação de segurança superficial. Eles são ativamente mantidos em um repositório de código aberto e seus mantenedores consideram que eles para sejam estáveis para um casual uso normal.", "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "Este aplicativo não está marcado por questões de segurança e é novo ou conhecido por ser instável. Instale por seu próprio risco.", + "Update to %s" : "Atualizado para %s", "Please wait...." : "Por favor, aguarde...", "Error while disabling app" : "Erro enquanto desabilitava o aplicativo", "Disable" : "Desabilitar", @@ -197,7 +198,6 @@ "Show description …" : "Mostrar descrição ...", "Hide description …" : "Esconder descrição ...", "This app cannot be installed because the following dependencies are not fulfilled:" : "Este aplicativo não pode ser instalado porque as seguintes dependências não forão cumpridas:", - "Update to %s" : "Atualizado para %s", "Enable only for specific groups" : "Ativar apenas para grupos específicos", "Uninstall App" : "Desinstalar Aplicativo", "Enable experimental apps" : "Habilitar aplicativos experimentais", diff --git a/settings/l10n/pt_PT.js b/settings/l10n/pt_PT.js index f294e997812..f216dc40ec6 100644 --- a/settings/l10n/pt_PT.js +++ b/settings/l10n/pt_PT.js @@ -53,6 +53,7 @@ OC.L10N.register( "Sending..." : "A enviar...", "All" : "Todos", "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "As apps oficiais são desenvolvidas por e na comunidade da ownCloud. Elas oferecem funcionalidade central para a ownCloud e está pronta para uma utilização na produção.", + "Update to %s" : "Actualizar para %s", "Please wait...." : "Por favor, aguarde...", "Error while disabling app" : "Ocorreu um erro enquanto desativava a app", "Disable" : "Desativar", @@ -176,7 +177,6 @@ OC.L10N.register( "Show description …" : "Mostrar descrição ...", "Hide description …" : "Esconder descrição ...", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicação não pode ser instalada porque as seguintes dependências não podem ser realizadas:", - "Update to %s" : "Actualizar para %s", "Enable only for specific groups" : "Activar só para grupos específicos", "Uninstall App" : "Desinstalar aplicação", "Enable experimental apps" : "Ativar apps experimentais", diff --git a/settings/l10n/pt_PT.json b/settings/l10n/pt_PT.json index a3c20fec3d2..9864f43c323 100644 --- a/settings/l10n/pt_PT.json +++ b/settings/l10n/pt_PT.json @@ -51,6 +51,7 @@ "Sending..." : "A enviar...", "All" : "Todos", "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "As apps oficiais são desenvolvidas por e na comunidade da ownCloud. Elas oferecem funcionalidade central para a ownCloud e está pronta para uma utilização na produção.", + "Update to %s" : "Actualizar para %s", "Please wait...." : "Por favor, aguarde...", "Error while disabling app" : "Ocorreu um erro enquanto desativava a app", "Disable" : "Desativar", @@ -174,7 +175,6 @@ "Show description …" : "Mostrar descrição ...", "Hide description …" : "Esconder descrição ...", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicação não pode ser instalada porque as seguintes dependências não podem ser realizadas:", - "Update to %s" : "Actualizar para %s", "Enable only for specific groups" : "Activar só para grupos específicos", "Uninstall App" : "Desinstalar aplicação", "Enable experimental apps" : "Ativar apps experimentais", diff --git a/settings/l10n/sr.js b/settings/l10n/sr.js index bb28ebf16be..a18c8b800c8 100644 --- a/settings/l10n/sr.js +++ b/settings/l10n/sr.js @@ -1,6 +1,8 @@ OC.L10N.register( "settings", { + "APCu" : "APCu", + "Redis" : "Redis", "Security & setup warnings" : "Безбедносна и упозорења поставе", "Sharing" : "Дељење", "Server-side encryption" : "Шифровање на страни сервера", @@ -8,6 +10,7 @@ OC.L10N.register( "Cron" : "Крон", "Email server" : "Сервер е-поште", "Log" : "Бележење", + "Server Status" : "Стање сервера", "Tips & tricks" : "Савети и трикови", "Updates" : "Ажурирања", "Authentication error" : "Грешка при провери идентитета", @@ -53,6 +56,9 @@ OC.L10N.register( "Migration in progress. Please wait until the migration is finished" : "Пресељење је у току. Сачекајте док се не заврши", "Migration started …" : "Пресељење покренуто...", "Sending..." : "Шаљем...", + "Official" : "Званичне", + "Approved" : "Одобрене", + "Experimental" : "Експерименталне", "All" : "Све", "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Званичнe апликације су развиjене од стране и унутар оунКлауд заједнице. Оне пружају главне функционалности и спремне су и стабилне за свакодневну употребу.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Одобрене апликације су развили проверени програмери и апликације су прошле основне безбедносне провере. Оне се активно одржавају у репозиторијуму за апликације отвореног кода и њихови одржаватељи сматрају да су стабилне за уобичајену употребу.", @@ -113,6 +119,7 @@ OC.L10N.register( "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "ПХП је очигледно подешен да се скида уметнуте док блокова. То ће учинити неколико кључних апликација недоступним.", "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Ово је вероватно изазвано кешом или акцелератором као што су ЗендОПкеш или еАкцелератор.", "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Ваш сервер ради под оперативним системом Microsoft Windows. Препоручујемо оперативни систем Linux за оптималaн кориснички доживљај.", + "%1$s below version %2$s is installed, for stability and performance reasons we recommend to update to a newer %1$s version." : "%1$s верзије ниже од %2$s је инсталиран. Због стабилности и перформанси препоручујемо да ажурирате на новију %1$s верзију.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Недостаје ПХП модул „fileinfo“. Препоручујемо вам да га укључите да бисте добили најбоље резултате с откривањем МИМЕ врста.", "System locale can not be set to a one which supports UTF-8." : "Системски локалитет се не може поставити на неки који подржава УТФ-8", "This means that there might be problems with certain characters in file names." : "То значи да може доћи до проблема са неким знаковима у називима фајлова.", @@ -178,6 +185,8 @@ OC.L10N.register( "Improving the config.php" : "Побољшање фајла поставки", "Theming" : "Теме", "Hardening and security guidance" : "Ојачавање система и безбедносне препоруке", + "Experimental File Lock is enabled." : "Експериментални катанац фајла је укључен.", + "Experimental File Lock is disabled." : "Експериментални катанац фајла је искључен.", "Version" : "Верзија", "Developer documentation" : "Програмерска документација", "Experimental applications ahead" : "Експериментална апликација", diff --git a/settings/l10n/sr.json b/settings/l10n/sr.json index cf6c25d77ff..054c3f4bc92 100644 --- a/settings/l10n/sr.json +++ b/settings/l10n/sr.json @@ -1,4 +1,6 @@ { "translations": { + "APCu" : "APCu", + "Redis" : "Redis", "Security & setup warnings" : "Безбедносна и упозорења поставе", "Sharing" : "Дељење", "Server-side encryption" : "Шифровање на страни сервера", @@ -6,6 +8,7 @@ "Cron" : "Крон", "Email server" : "Сервер е-поште", "Log" : "Бележење", + "Server Status" : "Стање сервера", "Tips & tricks" : "Савети и трикови", "Updates" : "Ажурирања", "Authentication error" : "Грешка при провери идентитета", @@ -51,6 +54,9 @@ "Migration in progress. Please wait until the migration is finished" : "Пресељење је у току. Сачекајте док се не заврши", "Migration started …" : "Пресељење покренуто...", "Sending..." : "Шаљем...", + "Official" : "Званичне", + "Approved" : "Одобрене", + "Experimental" : "Експерименталне", "All" : "Све", "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "Званичнe апликације су развиjене од стране и унутар оунКлауд заједнице. Оне пружају главне функционалности и спремне су и стабилне за свакодневну употребу.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Одобрене апликације су развили проверени програмери и апликације су прошле основне безбедносне провере. Оне се активно одржавају у репозиторијуму за апликације отвореног кода и њихови одржаватељи сматрају да су стабилне за уобичајену употребу.", @@ -111,6 +117,7 @@ "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "ПХП је очигледно подешен да се скида уметнуте док блокова. То ће учинити неколико кључних апликација недоступним.", "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Ово је вероватно изазвано кешом или акцелератором као што су ЗендОПкеш или еАкцелератор.", "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Ваш сервер ради под оперативним системом Microsoft Windows. Препоручујемо оперативни систем Linux за оптималaн кориснички доживљај.", + "%1$s below version %2$s is installed, for stability and performance reasons we recommend to update to a newer %1$s version." : "%1$s верзије ниже од %2$s је инсталиран. Због стабилности и перформанси препоручујемо да ажурирате на новију %1$s верзију.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "Недостаје ПХП модул „fileinfo“. Препоручујемо вам да га укључите да бисте добили најбоље резултате с откривањем МИМЕ врста.", "System locale can not be set to a one which supports UTF-8." : "Системски локалитет се не може поставити на неки који подржава УТФ-8", "This means that there might be problems with certain characters in file names." : "То значи да може доћи до проблема са неким знаковима у називима фајлова.", @@ -176,6 +183,8 @@ "Improving the config.php" : "Побољшање фајла поставки", "Theming" : "Теме", "Hardening and security guidance" : "Ојачавање система и безбедносне препоруке", + "Experimental File Lock is enabled." : "Експериментални катанац фајла је укључен.", + "Experimental File Lock is disabled." : "Експериментални катанац фајла је искључен.", "Version" : "Верзија", "Developer documentation" : "Програмерска документација", "Experimental applications ahead" : "Експериментална апликација", diff --git a/settings/l10n/th_TH.js b/settings/l10n/th_TH.js index daeb0bb84a6..66efd35bd47 100644 --- a/settings/l10n/th_TH.js +++ b/settings/l10n/th_TH.js @@ -1,12 +1,22 @@ OC.L10N.register( "settings", { + "APCu" : "APCu", + "Redis" : "Redis", + "Security & setup warnings" : "คำเตือนความปลอดภัยและการติดตั้ง", "Sharing" : "การแชร์ข้อมูล", + "Server-side encryption" : "เข้ารหัสฝั่งเซิร์ฟเวอร์", "External Storage" : "พื้นทีจัดเก็บข้อมูลจากภายนอก", "Cron" : "Cron", + "Email server" : "อีเมลเซิร์ฟเวอร์", "Log" : "บันทึกการเปลี่ยนแปลง", + "Server Status" : "สถานะของเซิร์ฟเวอร์", + "Tips & tricks" : "เคล็ดลับและเทคนิค", "Updates" : "อัพเดท", "Authentication error" : "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน", + "Your full name has been changed." : "ชื่อเต็มของคุณถูกเปลี่ยนแปลง", + "Unable to change full name" : "ไม่สามารถเปลี่ยนชื่อเต็ม", + "Couldn't remove app." : "ไม่สามารถลบแอพฯ", "Language changed" : "เปลี่ยนภาษาเรียบร้อยแล้ว", "Invalid request" : "คำร้องขอไม่ถูกต้อง", "Admins can't remove themself from the admin group" : "ผู้ดูแลระบบไม่สามารถลบตัวเองออกจากกลุ่มผู้ดูแลได้", @@ -14,52 +24,199 @@ OC.L10N.register( "Unable to remove user from group %s" : "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้", "Couldn't update app." : "ไม่สามารถอัพเดทแอปฯ", "Wrong password" : "รหัสผ่านไม่ถูกต้อง", + "No user supplied" : "ไม่มีผู้ใช้", + "Please provide an admin recovery password, otherwise all user data will be lost" : "โปรดให้กู้คืนรหัสผ่านของผู้ดูแลระบบมิฉะนั้นข้อมูลของผู้ใช้ทั้งหมดจะหายไป", + "Wrong admin recovery password. Please check the password and try again." : "กู้คืนรหัสผ่านของผู้ดูแลระบบไม่ถูกต้อง กรุณาตรวจสอบรหัสผ่านและลองอีกครั้ง.", + "Backend doesn't support password change, but the user's encryption key was successfully updated." : "แบ็กเอนด์ไม่สนับสนุนการเปลี่ยนแปลงรหัสผ่าน แต่คีย์การเข้ารหัสลับของผู้ใช้จะถูกอัพเดทสำเร็จ", + "Unable to change password" : "ไม่สามารถเปลี่ยนรหัสผ่าน", "Enabled" : "เปิดการใช้งาน", + "Not enabled" : "ใช้งานไม่ได้", + "A problem occurred, please check your log files (Error: %s)" : "มีปัญหาเกิดขึ้นโปรดตรวจสอบบันทึกไฟล์ของคุณ (ข้อผิดพลาด: %s)", + "Migration Completed" : "การโยกย้ายเสร็จสมบูรณ์", + "Group already exists." : "มีกลุ่มนี้อยู่แล้ว", + "Unable to add group." : "ไม่สามารถเพิ่มกลุ่ม", + "Unable to delete group." : "ไม่สามารถลบกลุ่ม", + "log-level out of allowed range" : "ระดับ-บันทึก ไม่ได้อยู่ในช่วงที่ได้รับอนุญาต", "Saved" : "บันทึกแล้ว", - "Email sent" : "ส่งอีเมล์แล้ว", + "test email settings" : "การตั้งค่าอีเมลทดสอบ", + "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "เกิดปัญหาขึ้นในขณะที่ส่งอีเมล กรุณาแก้ไขการตั้งค่าของคุณ (ข้อผิดพลาด: %s)", + "Email sent" : "ส่งอีเมลแล้ว", + "You need to set your user email before being able to send test emails." : "คุณจำเป็นต้องตั้งค่าอีเมลผู้ใช้ของคุณก่อนที่จะสามารถส่งอีเมลทดสอบ", + "Invalid mail address" : "ที่อยู่อีเมลไม่ถูกต้อง", + "A user with that name already exists." : "มีชื้อผู้ใช้นี้อยู่แล้ว", + "Unable to create user." : "ไม่สามารถสร้างผู้ใช้", + "Your %s account was created" : "บัญชี %s ของคุณถูกสร้างขึ้น", + "Unable to delete user." : "ไม่สามารถลบผู้ใช้", + "Forbidden" : "เขตหวงห้าม", + "Invalid user" : "ผู้ใช้ไม่ถูกต้อง", + "Unable to change mail address" : "ไม่สามารถที่จะเปลี่ยนที่อยู่อีเมล", "Email saved" : "อีเมลถูกบันทึกแล้ว", + "Are you really sure you want add \"{domain}\" as trusted domain?" : "คุณแน่ใจจริงๆ ว่าคุณต้องการเพิ่ม \"{domain}\" เป็นโดเมนที่เชื่อถือได้?", + "Add trusted domain" : "เพิ่มโดเมนที่เชื่อถือได้", + "Migration in progress. Please wait until the migration is finished" : "ในระหว่างดำเนินการโยกย้าย กรุณารอสักครู่จนกว่าการโยกย้ายจะเสร็จสิ้น", + "Migration started …" : "เริ่มต้นการโยกย้าย …", + "Sending..." : "กำลังส่ง...", + "Official" : "เป็นทางการ", + "Approved" : "ได้รับการอนุมัติ", + "Experimental" : "การทดลอง", "All" : "ทั้งหมด", + "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "แอพพลิเคชันมีการพัฒนาอย่างเป็นทางการภายในชุมชน ownCloud พวกเขามีการทำงานเป็นศูนย์กลางของ ownCloud และพร้อมสำหรับการใช้งานผลิตภัณฑ์", + "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "แอพพลิเคชันได้รับการอนุมัติและพัฒนาโดยนักพัฒนาที่น่าเชื่อถือและได้ผ่านการตรวจสอบความปลอดภัยคร่าวๆ พวกเขาจะได้รับการบำรุงรักษาอย่างดีในการเก็บข้อมูลรหัสเปิด มันอาจยังไม่เสถียรพอสำหรับการเปิดใช้งานปกติ", + "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "แอพพลิเคชันนี้ไม่ได้ตรวจสอบปัญหาด้านความปลอดภัยและเป็นของใหม่หรือที่รู้กันคือจะไม่เสถียร มันติดตั้งอยู่บนความเสี่ยงของคุณเอง", "Please wait...." : "กรุณารอสักครู่...", + "Error while disabling app" : "เกิดข้อผิดพลาดขณะปิดการใช้งานแอพพลิเคชัน", "Disable" : "ปิดใช้งาน", "Enable" : "เปิดใช้งาน", + "Error while enabling app" : "เกิดข้อผิดพลาดขณะกำลังตรวจสอบแอพฯ", "Updating...." : "กำลังอัพเดทข้อมูล...", - "Error while updating app" : "เกิดข้อผิดพลาดในระหว่างการอัพเดทแอปฯ", + "Error while updating app" : "เกิดข้อผิดพลาดขณะกำลังอัพเดทแอพฯ", "Updated" : "อัพเดทแล้ว", + "Uninstalling ...." : "กำลังถอนการติดตั้ง ...", + "Error while uninstalling app" : "เกิดข้อผิดพลาดขณะถอนการติดตั้งแอพพลิเคชัน", + "Uninstall" : "ถอนการติดตั้ง", + "Select a profile picture" : "เลือกรูปภาพโปรไฟล์", "Very weak password" : "รหัสผ่านระดับต่ำมาก", "Weak password" : "รหัสผ่านระดับต่ำ", "So-so password" : "รหัสผ่านระดับปกติ", "Good password" : "รหัสผ่านระดับดี", "Strong password" : "รหัสผ่านระดับดีมาก", + "Valid until {date}" : "ใช้ได้จนถึงวันที่ {date}", "Delete" : "ลบ", + "An error occurred. Please upload an ASCII-encoded PEM certificate." : "เกิดข้อผิดพลาด กรุณาอัพโหลดใบรับรองเข้ารหัส ASCII PEM", "Groups" : "กลุ่ม", + "Unable to delete {objName}" : "ไม่สามารถลบ {objName}", + "Error creating group" : "ข้อผิดพลาดขณะกำลังสร้างกลุ่ม", + "A valid group name must be provided" : "จะต้องระบุชื่อกลุ่มที่ถูกต้อง", + "deleted {groupName}" : "ลบกลุ่ม {groupName} เรียบร้อยแล้ว", "undo" : "เลิกทำ", + "no group" : "ไม่มีกลุ่ม", "never" : "ไม่ต้องเลย", - "__language_name__" : "ภาษาไทย", + "deleted {userName}" : "ลบผู้ใช้ {userName} เรียบร้อยแล้ว", + "add group" : "เพิ่มกลุ่ม", + "Changing the password will result in data loss, because data recovery is not available for this user" : "การเปลี่ยนรหัสผ่านจะส่งผลให้เกิดการสูญเสียข้อมูลเพราะการกู้คืนข้อมูลจะไม่สามารถใช้ได้สำหรับผู้ใช้นี้", + "A valid username must be provided" : "จะต้องระบุชื่อผู้ใช้ที่ถูกต้อง", + "Error creating user" : "เกิดข้อผิดพลาดขณะกำลังสร้างผู้ใช้", + "A valid password must be provided" : "จะต้องระบุรหัสผ่านที่ถูกต้อง", + "A valid email must be provided" : "จะต้องระบุอีเมลที่ถูกต้อง", + "__language_name__" : "ภาษาไทย - Thai languages", + "Sync clients" : "ผสานข้อมูลของไคลเอนต์", + "Personal info" : "ข้อมูลส่วนบุคคล", "SSL root certificates" : "ใบรับรองความปลอดภัยด้วยระบบ SSL จาก Root", + "Everything (fatal issues, errors, warnings, info, debug)" : "ทุกอย่าง (ปัญหาร้ายแรง ข้อผิดพลาด คำเตือน ข้อมูล การแก้ปัญหา)", + "Info, warnings, errors and fatal issues" : "ข้อมูล คำเตือน ข้อผิดพลาดและปัญหาร้ายแรง", + "Warnings, errors and fatal issues" : "คำเตือนข้อผิดพลาดและปัญหาที่ร้ายแรง", + "Errors and fatal issues" : "ข้อผิดพลาดและปัญหาที่ร้ายแรง", + "Fatal issues only" : "ปัญหาร้ายแรงเท่านั้น", "None" : "ไม่มี", "Login" : "เข้าสู่ระบบ", + "Plain" : "ธรรมดา", + "NT LAN Manager" : "ตัวจัดการ NT LAN", + "SSL" : "SSL", + "TLS" : "TLS", + "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "ไม่ได้ติดตั้งphp อย่างถูกต้องค้นหาตัวแปรสภาพแวดล้อมของระบบการทดสอบกับ getenv(\"PATH\") ส่งกลับเฉพาะการตอบสนองที่ว่างเปล่า", + "Please check the installation documentation for php configuration notes and the php configuration of your server, especially when using php-fpm." : "กรุณาตรวจสอบเอกสารการติดตั้งสำหรับการบันทึกการตั้งค่าและการกำหนดค่า PHP ของเซิร์ฟเวอร์ของคุณโดยเฉพาะอย่างยิ่งเมื่อใช้ PHP-FPM", + "The Read-Only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "ตั้งค่าให้สามารถอ่านได้อย่างเดียวถูกเปิดใช้งาน นี้จะช่วยป้องกันการตั้งค่าผ่านทางบางเว็บอินเตอร์เฟซ นอกจากนี้จะต้องเขียนไฟล์ด้วยตนเองสำหรับทุกการอัพเดท", + "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "เห็นได้ชัดว่าการตั้งค่า PHP จะตัดบล็อคเอกสารแบบอินไลน์ ซึ่งจะทำให้แอพพลิเคชันอีกหลายแกนไม่สามารถเข้าถึงได้", + "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "นี้อาจเกิดจาก cache/accelerator อย่างเช่น Zend OPcache หรือ eAccelerator", + "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "เซิร์ฟเวอร์ของคุณทำงานบน Microsoft Windows เราขอแนะนำให้ใช้ลินุกซ์หากคุณต้องการ การใช้งานที่ดีที่สุด", + "%1$s below version %2$s is installed, for stability and performance reasons we recommend to update to a newer %1$s version." : "%1$s รุ่นเก่ากว่า %2$s ที่มีการติดตั้ง สำหรับเหตุผลเรื่องเสถียรภาพและประสิทธิภาพการทำงาน เราแนะนำให้อัพเดทเป็นรุ่น %1$s", + "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "โมดูล PHP 'fileinfo' หายไป เราขอแนะนำให้เปิดใช้งานโมดูลนี้เพื่อให้ได้ผลลัพธ์ที่ดีที่สุดกับการตรวจสอบชนิด mime", + "System locale can not be set to a one which supports UTF-8." : "ตำแหน่งที่ตั้งของระบบไม่สามารถตั้งค่าให้รองรับ UTF-8", + "This means that there might be problems with certain characters in file names." : "นี้หมายความว่าอาจจะมีปัญหากับตัวอักษรบางตัวในชื่อไฟล์", + "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "เราขอแนะนำให้ติดตั้งแพคเกจที่จำเป็นต้องใช้ในระบบของคุณ ให้การสนับสนุนตำแหน่งที่ตั้งดังต่อไปนี้: %s", + "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "หากการติดตั้งของคุณไม่ได้ติดตั้งในรากของโดเมนและใช้ระบบ cron อาจมีปัญหาเกี่ยวกับการสร้าง URL เพื่อหลีกเลี่ยงปัญหาเหล่านี้โปรดไปตั้งค่า \"overwrite.cli.url\" ในไฟล์ config.php ของคุณไปยังเส้นทาง webroot ของการติดตั้งของคุณ (แนะนำ: \"%s\")", + "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "มันเป็นไปไม่ได้ที่จะดำเนินการ cronjob ผ่านทาง CLI ข้อผิดพลาดทางเทคนิคต่อไปนี้จะปรากฏ:", + "Please double check the <a target=\"_blank\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "กรุณาตรวจสอบ <a target=\"_blank\" href=\"%s\">คู่มือการติดตั้ง</a> และตรวจสอบข้อผิดพลาดหรือคำเตือนใน <a href=\"#log-section\">บันทึก</a>", + "Open documentation" : "เปิดเอกสาร", "Allow apps to use the Share API" : "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", + "Allow users to share via link" : "อนุญาตให้ผู้ใช้สามารถแชร์ผ่านทางลิงค์", + "Enforce password protection" : "บังคับใช้การป้องกันรหัสผ่าน", + "Allow public uploads" : "อนุญาตให้อัพโหลดสาธารณะ", + "Allow users to send mail notification for shared files" : "อนุญาตให้ผู้ใช้ส่งการแจ้งเตือนอีเมลสำหรับไฟล์ที่ถูกแชร์", + "Set default expiration date" : "ตั้งค่าเริ่มต้นวันหมดอายุ", + "Expire after " : "หมดอายุหลังจาก", "days" : "วัน", + "Enforce expiration date" : "บังคับให้มีวันที่หมดอายุ", "Allow resharing" : "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้", + "Restrict users to only share with users in their groups" : "จำกัดให้ผู้ใช้สามารถแชร์กับผู้ใช้ในกลุ่มของพวกเขาเท่านั้น", + "Allow users to send mail notification for shared files to other users" : "อนุญาตให้ผู้ใช้ส่งการแจ้งเตือนอีเมลสำหรับไฟล์ที่แชร์กับผู้ใช้อื่นๆ", + "Exclude groups from sharing" : "ไม่รวมกลุ่มที่แชร์", + "These groups will still be able to receive shares, but not to initiate them." : "กลุ่มนี้จะยังคงสามารถได้รับการแชร์ แต่พวกเขาจะไม่รู้จักมัน", + "Last cron job execution: %s." : "การดำเนินการ cron job ล่าสุด: %s", + "Last cron job execution: %s. Something seems wrong." : "การดำเนินการ cron job ล่าสุด: %s ดูเหมือนมีบางสิ่งไม่ถูกต้อง", + "Cron was not executed yet!" : "Cron ไม่ได้ถูกดำเนินการ!", "Execute one task with each page loaded" : "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ", + "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php มีการลงทะเบียนให้บริการ Webcron เรียก cron.php ทุกๆ 15 นาที บน Http", + "Use system's cron service to call the cron.php file every 15 minutes." : "บริการ cron ของระบบจะเรียกไฟล์ cron.php ทุกq 15 นาที", + "Enable server-side encryption" : "เปิดการใช้งานเข้ารหัสฝั่งเซิร์ฟเวอร์", + "Encryption is a one way process. Once encryption is enabled, all files from that point forward will be encrypted on the server and it will not be possible to disable encryption at a later date. This is the final warning: Do you really want to enable encryption?" : "การเข้ารหัสเป็นกระบวนการหนึ่ง เมื่อมีการเปิดใช้การเข้ารหัส ไฟล์ทั้งหมดจะถูกเข้ารหัสบนเซิร์ฟเวอร์และมันจะไม่เป็นไปได้ที่จะปิดการใช้งานการเข้ารหัสในภายหลัง นี้เป็นคำเตือนครั้งสุดท้าย: คุณต้องการที่จะเปิดใช้การเข้ารหัส?", + "Enable encryption" : "เปิดใช้งานการเข้ารหัส", + "No encryption module loaded, please enable an encryption module in the app menu." : "ไม่มีโมดูลการเข้ารหัสโหลดโปรดเปิดใช้งานโมดูลการเข้ารหัสในเมนูแอพฯ", + "Select default encryption module:" : "เลือกค่าเริ่มต้นโมดูลการเข้ารหัส:", + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "คุณจำเป็นต้องโอนย้ายคีย์การเข้ารหัสลับของคุณจากการเข้ารหัสเก่า (ownCloud <= 8.0) ไปใหม่ กรุณาเปิดใช้งาน \"โมดูลการเข้ารหัสเริ่มต้น\" และเรียกใช้ 'occ encryption:migrate'", + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "คุณจำเป็นต้องโอนย้ายคีย์การเข้ารหัสลับของคุณจากการเข้ารหัสเก่า (ownCloud <= 8.0) ไปใหม่", + "Start migration" : "เริ่มการโยกย้าย", + "This is used for sending out notifications." : "นี้จะใช้สำหรับการส่งออกการแจ้งเตือน", + "Send mode" : "โหมดการส่ง", "Encryption" : "การเข้ารหัส", - "Authentication required" : "ตรวจสอบความถูกต้อง", + "From address" : "จากที่อยู่", + "mail" : "อีเมล", + "Authentication method" : "วิธีการตรวจสอบ", + "Authentication required" : "จำเป็นต้องตรวจสอบความถูกต้อง", "Server address" : "ที่อยู่เซิร์ฟเวอร์", "Port" : "พอร์ต", "Credentials" : "ข้อมูลส่วนตัวสำหรับเข้าระบบ", + "SMTP Username" : "ชื่อผู้ใช้ SMTP", + "SMTP Password" : "รหัสผ่าน SMTP", + "Store credentials" : "ข้อมูลประจำตัวของร้านค้า", + "Test email settings" : "การตั้งค่าอีเมลทดสอบ", + "Send email" : "ส่งอีเมล", "Log level" : "ระดับการเก็บบันทึก log", + "Download logfile" : "ดาวน์โหลดไฟล์บันทึก", "More" : "มาก", "Less" : "น้อย", + "The logfile is bigger than 100 MB. Downloading it may take some time!" : "ไฟล์บันทึกมีขนาดใหญ่กว่า 100 เมกะไบต์ มันอาจจะใช้เวลาดาวน์โหลดนาน!", + "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "จะใช้ SQLite เป็นฐานข้อมูล สำหรับการติดตั้งขนาดใหญ่เราขอแนะนำเพื่อสลับไปยังฐานข้อมูลแบ็กเอนด์ที่แตกต่างกัน", "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "โดยเฉพาะอย่างยิ่งเมื่อใช้ไคลเอนต์เดสก์ทอปสำหรับการผสานข้อมูลโดย SQLite", + "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" href=\"%s\">documentation ↗</a>." : "การโยกย้ายไปยังฐานข้อมูลอื่นใช้เครื่องมือบรรทัดคำสั่ง: 'occ db:convert-type' หรือดูที่ <a target=\"_blank\" href=\"%s\">เอกสาร</a>", + "How to do backups" : "วิธีการสำรองข้อมูล", + "Advanced monitoring" : "การตรวจสอบขั้นสูง", + "Performance tuning" : "การปรับแต่งประสิทธิภาพ", + "Improving the config.php" : "ปรับปรุงไฟล์ config.php", + "Theming" : "ชุดรูปแบบ", + "Hardening and security guidance" : "คำแนะนำการรักษาความปลอดภัย", + "Experimental File Lock is enabled." : "ทดลองล็อคไฟล์ถูกเปิดใช้งาน", + "Experimental File Lock is disabled." : "ทดลองล็อคไฟล์ถูกปิดใช้งาน", "Version" : "รุ่น", + "Developer documentation" : "เอกสารสำหรับนักพัฒนา", + "Experimental applications ahead" : "การใช้งานก่อนการทดลอง", + "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "การทดลองแอพพลิเคชันไม่ได้ถูกตรวจสอบปัญหาด้านความปลอดภัย การติดตั้งพวกเขาสามารถก่อให้เกิดการสูญเสียข้อมูลหรือการละเมิดความปลอดภัย", "by" : "โดย", + "licensed" : "ได้รับใบอนุญาต", + "Documentation:" : "เอกสาร:", "User Documentation" : "เอกสารคู่มือการใช้งานสำหรับผู้ใช้งาน", + "Admin Documentation" : "เอกสารดูแลระบบ", + "Show description …" : "แสดงรายละเอียด ...", + "Hide description …" : "ซ่อนรายละเอียด ...", + "This app cannot be installed because the following dependencies are not fulfilled:" : "ไม่สามารถติดตั้งแอพฯนี้เพราะไม่มีตัวอ้างอิงต่อไปนี้:", + "Update to %s" : "อัพเดทไปยัง %s", + "Enable only for specific groups" : "เปิดใช้งานเพียงเฉพาะกลุ่ม", + "Uninstall App" : "ถอนการติดตั้งแอพฯ", + "Enable experimental apps" : "เปิดใช้งานแอพพลิเคชั่นทดลอง", + "No apps found for your version" : "ไม่พบแอพพลิเคชันสำหรับรุ่นของคุณ", + "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "นี่คุณ<br><br>อยากจะแจ้งให้คุณทราบว่าขณะนี้คุณมีบัญชี %s<br><br>ชื่อผู้ใช้ของคุณคือ: %s<br>เข้าไปงานได้ที่: <a href=\"%s\">%s</a><br><br>", "Cheers!" : "ไชโย!", - "Forum" : "กระดานสนทนา", + "User documentation" : "เอกสารสำหรับผู้ใช้", + "Administrator documentation" : "เอกสารของผู้ดูแลระบบ", + "Online documentation" : "เอกสารออนไลน์", + "Forum" : "ฟอรั่ม", + "Issue tracker" : "ติดตามปัญหา", + "Commercial support" : "สนับสนุนเชิงพาณิชย์", "Get the apps to sync your files" : "ใช้แอพพลิเคชันในการผสานไฟล์ของคุณ", "Desktop client" : "เดสก์ทอปผู้ใช้", "Android app" : "แอพฯ แอนดรอยด์", "iOS app" : "แอพฯ IOS", + "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "หากคุณต้องการที่จะสนับสนุนโครงการ <a href=\"https://owncloud.org/contribute\" target=\"_blank\" rel=\"noreferrer\">เข้าร่วมการพัฒนา</a> หรือ <a href=\"https://owncloud.org/promote\" target=\"_blank\" rel=\"noreferrer\">กระจายข่าวสาร</a>!\n\t\t", "Show First Run Wizard again" : "แสดงหน้าจอวิซาร์ดนำทางครั้งแรกอีกครั้ง", "You have used <strong>%s</strong> of the available <strong>%s</strong>" : "คุณได้ใช้งานไปแล้ว <strong>%s</strong> จากจำนวนที่สามารถใช้ได้ <strong>%s</strong>", "Password" : "รหัสผ่าน", @@ -67,21 +224,57 @@ OC.L10N.register( "Current password" : "รหัสผ่านปัจจุบัน", "New password" : "รหัสผ่านใหม่", "Change password" : "เปลี่ยนรหัสผ่าน", + "Full name" : "ชื่อเต็ม", + "No display name set" : "ไม่มีชื่อที่แสดง", "Email" : "อีเมล", "Your email address" : "ที่อยู่อีเมล์ของคุณ", + "Fill in an email address to enable password recovery and receive notifications" : "กรอกที่อยู่อีเมลเพื่อเปิดใช้งานการกู้คืนรหัสผ่านและการได้รับการแจ้งเตือน", + "No email address set" : "ไม่ได้ตั้งค่าที่อยู่อีเมล", + "You are member of the following groups:" : "คุณเป็นสมาชิกของกลุ่มต่อไปนี้:", "Profile picture" : "รูปภาพโปรไฟล์", + "Upload new" : "อัพโหลดใหม่", + "Select new from Files" : "เลือกใหม่จากไฟล์", + "Remove image" : "ลบรูปภาพ", + "Either png or jpg. Ideally square but you will be able to crop it." : "ไฟล์ PNG และ JPG ควรจะเป็นสี่เหลี่ยม แต่คุณจะสามารถที่จะครอบตัดมัน", + "Your avatar is provided by your original account." : "อวตาลของคุณถูกระบุโดยบัญชีเดิมของคุณ", "Cancel" : "ยกเลิก", + "Choose as profile image" : "เลือกรูปภาพโปรไฟล์", "Language" : "ภาษา", - "Help translate" : "ช่วยกันแปล", + "Help translate" : "มาช่วยกันแปลสิ!", + "Common Name" : "ชื่อทั่วไป", + "Valid until" : "ใช้ได้จนถึง", + "Issued By" : "ปัญหาโดย", + "Valid until %s" : "ใช้ได้จนถึง %s", + "Import root certificate" : "นำเข้าใบรับรองหลัก", + "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "ที่พัฒนาโดย {communityopen} ชุมชน ownCloud {linkclose} {githubopen}รหัสต้นฉบับ{linkclose} อยู่ภายใต้สัญญา {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}", + "Show storage location" : "แสดงสถานที่จัดเก็บข้อมูล", + "Show last log in" : "แสดงการเข้าสู่ระบบล่าสุด", + "Show user backend" : "แสดงแบ็กเอนด์ของผู้ใช้", + "Send email to new user" : "ส่งอีเมลไปยังผู้ใช้ใหม่", + "Show email address" : "แสดงที่อยู่อีเมล", "Username" : "ชื่อผู้ใช้งาน", + "E-Mail" : "อีเมล", "Create" : "สร้าง", + "Admin Recovery Password" : "กู้คืนรหัสผ่านดูแลระบบ", "Enter the recovery password in order to recover the users files during password change" : "ป้อนรหัสผ่านการกู้คืนเพื่อกู้คืนไฟล์ผู้ใช้ในช่วงการเปลี่ยนรหัสผ่าน", + "Search Users" : "ค้นหาผู้ใช้", + "Add Group" : "เพิ่มกลุ่ม", "Group" : "กลุ่ม", - "Default Quota" : "โควต้าที่กำหนดไว้เริ่มต้น", + "Everyone" : "ทุกคน", + "Admins" : "ผู้ดูแลระบบ", + "Default Quota" : "ค่าโควต้าเริ่มต้น", + "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "กรุณากรอกโควต้าการจัดเก็บข้อมูล (ต.ย. : \"512 MB\" หรือ \"12 GB\")", "Unlimited" : "ไม่จำกัดจำนวน", "Other" : "อื่นๆ", - "Quota" : "พื้นที่", + "Full Name" : "ชื่อเต็ม", + "Group Admin for" : "กลุ่มผู้ดูแลระบบสำหรับ", + "Quota" : "โควต้า", + "Storage Location" : "สถานที่จัดเก็บข้อมูล", + "User Backend" : "ผู้ใช้แบ็กเอนด์", + "Last Login" : "เข้าสู่ระบบล่าสุด", + "change full name" : "เปลี่ยนชื่อเต็ม", "set new password" : "ตั้งค่ารหัสผ่านใหม่", + "change email address" : "เปลี่ยนแปลงที่อยู่อีเมล", "Default" : "ค่าเริ่มต้น" }, "nplurals=1; plural=0;"); diff --git a/settings/l10n/th_TH.json b/settings/l10n/th_TH.json index 7db24c70e3c..c908303ade2 100644 --- a/settings/l10n/th_TH.json +++ b/settings/l10n/th_TH.json @@ -1,10 +1,20 @@ { "translations": { + "APCu" : "APCu", + "Redis" : "Redis", + "Security & setup warnings" : "คำเตือนความปลอดภัยและการติดตั้ง", "Sharing" : "การแชร์ข้อมูล", + "Server-side encryption" : "เข้ารหัสฝั่งเซิร์ฟเวอร์", "External Storage" : "พื้นทีจัดเก็บข้อมูลจากภายนอก", "Cron" : "Cron", + "Email server" : "อีเมลเซิร์ฟเวอร์", "Log" : "บันทึกการเปลี่ยนแปลง", + "Server Status" : "สถานะของเซิร์ฟเวอร์", + "Tips & tricks" : "เคล็ดลับและเทคนิค", "Updates" : "อัพเดท", "Authentication error" : "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน", + "Your full name has been changed." : "ชื่อเต็มของคุณถูกเปลี่ยนแปลง", + "Unable to change full name" : "ไม่สามารถเปลี่ยนชื่อเต็ม", + "Couldn't remove app." : "ไม่สามารถลบแอพฯ", "Language changed" : "เปลี่ยนภาษาเรียบร้อยแล้ว", "Invalid request" : "คำร้องขอไม่ถูกต้อง", "Admins can't remove themself from the admin group" : "ผู้ดูแลระบบไม่สามารถลบตัวเองออกจากกลุ่มผู้ดูแลได้", @@ -12,52 +22,199 @@ "Unable to remove user from group %s" : "ไม่สามารถลบผู้ใช้งานออกจากกลุ่ม %s ได้", "Couldn't update app." : "ไม่สามารถอัพเดทแอปฯ", "Wrong password" : "รหัสผ่านไม่ถูกต้อง", + "No user supplied" : "ไม่มีผู้ใช้", + "Please provide an admin recovery password, otherwise all user data will be lost" : "โปรดให้กู้คืนรหัสผ่านของผู้ดูแลระบบมิฉะนั้นข้อมูลของผู้ใช้ทั้งหมดจะหายไป", + "Wrong admin recovery password. Please check the password and try again." : "กู้คืนรหัสผ่านของผู้ดูแลระบบไม่ถูกต้อง กรุณาตรวจสอบรหัสผ่านและลองอีกครั้ง.", + "Backend doesn't support password change, but the user's encryption key was successfully updated." : "แบ็กเอนด์ไม่สนับสนุนการเปลี่ยนแปลงรหัสผ่าน แต่คีย์การเข้ารหัสลับของผู้ใช้จะถูกอัพเดทสำเร็จ", + "Unable to change password" : "ไม่สามารถเปลี่ยนรหัสผ่าน", "Enabled" : "เปิดการใช้งาน", + "Not enabled" : "ใช้งานไม่ได้", + "A problem occurred, please check your log files (Error: %s)" : "มีปัญหาเกิดขึ้นโปรดตรวจสอบบันทึกไฟล์ของคุณ (ข้อผิดพลาด: %s)", + "Migration Completed" : "การโยกย้ายเสร็จสมบูรณ์", + "Group already exists." : "มีกลุ่มนี้อยู่แล้ว", + "Unable to add group." : "ไม่สามารถเพิ่มกลุ่ม", + "Unable to delete group." : "ไม่สามารถลบกลุ่ม", + "log-level out of allowed range" : "ระดับ-บันทึก ไม่ได้อยู่ในช่วงที่ได้รับอนุญาต", "Saved" : "บันทึกแล้ว", - "Email sent" : "ส่งอีเมล์แล้ว", + "test email settings" : "การตั้งค่าอีเมลทดสอบ", + "A problem occurred while sending the email. Please revise your settings. (Error: %s)" : "เกิดปัญหาขึ้นในขณะที่ส่งอีเมล กรุณาแก้ไขการตั้งค่าของคุณ (ข้อผิดพลาด: %s)", + "Email sent" : "ส่งอีเมลแล้ว", + "You need to set your user email before being able to send test emails." : "คุณจำเป็นต้องตั้งค่าอีเมลผู้ใช้ของคุณก่อนที่จะสามารถส่งอีเมลทดสอบ", + "Invalid mail address" : "ที่อยู่อีเมลไม่ถูกต้อง", + "A user with that name already exists." : "มีชื้อผู้ใช้นี้อยู่แล้ว", + "Unable to create user." : "ไม่สามารถสร้างผู้ใช้", + "Your %s account was created" : "บัญชี %s ของคุณถูกสร้างขึ้น", + "Unable to delete user." : "ไม่สามารถลบผู้ใช้", + "Forbidden" : "เขตหวงห้าม", + "Invalid user" : "ผู้ใช้ไม่ถูกต้อง", + "Unable to change mail address" : "ไม่สามารถที่จะเปลี่ยนที่อยู่อีเมล", "Email saved" : "อีเมลถูกบันทึกแล้ว", + "Are you really sure you want add \"{domain}\" as trusted domain?" : "คุณแน่ใจจริงๆ ว่าคุณต้องการเพิ่ม \"{domain}\" เป็นโดเมนที่เชื่อถือได้?", + "Add trusted domain" : "เพิ่มโดเมนที่เชื่อถือได้", + "Migration in progress. Please wait until the migration is finished" : "ในระหว่างดำเนินการโยกย้าย กรุณารอสักครู่จนกว่าการโยกย้ายจะเสร็จสิ้น", + "Migration started …" : "เริ่มต้นการโยกย้าย …", + "Sending..." : "กำลังส่ง...", + "Official" : "เป็นทางการ", + "Approved" : "ได้รับการอนุมัติ", + "Experimental" : "การทดลอง", "All" : "ทั้งหมด", + "Official apps are developed by and within the ownCloud community. They offer functionality central to ownCloud and are ready for production use." : "แอพพลิเคชันมีการพัฒนาอย่างเป็นทางการภายในชุมชน ownCloud พวกเขามีการทำงานเป็นศูนย์กลางของ ownCloud และพร้อมสำหรับการใช้งานผลิตภัณฑ์", + "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "แอพพลิเคชันได้รับการอนุมัติและพัฒนาโดยนักพัฒนาที่น่าเชื่อถือและได้ผ่านการตรวจสอบความปลอดภัยคร่าวๆ พวกเขาจะได้รับการบำรุงรักษาอย่างดีในการเก็บข้อมูลรหัสเปิด มันอาจยังไม่เสถียรพอสำหรับการเปิดใช้งานปกติ", + "This app is not checked for security issues and is new or known to be unstable. Install on your own risk." : "แอพพลิเคชันนี้ไม่ได้ตรวจสอบปัญหาด้านความปลอดภัยและเป็นของใหม่หรือที่รู้กันคือจะไม่เสถียร มันติดตั้งอยู่บนความเสี่ยงของคุณเอง", "Please wait...." : "กรุณารอสักครู่...", + "Error while disabling app" : "เกิดข้อผิดพลาดขณะปิดการใช้งานแอพพลิเคชัน", "Disable" : "ปิดใช้งาน", "Enable" : "เปิดใช้งาน", + "Error while enabling app" : "เกิดข้อผิดพลาดขณะกำลังตรวจสอบแอพฯ", "Updating...." : "กำลังอัพเดทข้อมูล...", - "Error while updating app" : "เกิดข้อผิดพลาดในระหว่างการอัพเดทแอปฯ", + "Error while updating app" : "เกิดข้อผิดพลาดขณะกำลังอัพเดทแอพฯ", "Updated" : "อัพเดทแล้ว", + "Uninstalling ...." : "กำลังถอนการติดตั้ง ...", + "Error while uninstalling app" : "เกิดข้อผิดพลาดขณะถอนการติดตั้งแอพพลิเคชัน", + "Uninstall" : "ถอนการติดตั้ง", + "Select a profile picture" : "เลือกรูปภาพโปรไฟล์", "Very weak password" : "รหัสผ่านระดับต่ำมาก", "Weak password" : "รหัสผ่านระดับต่ำ", "So-so password" : "รหัสผ่านระดับปกติ", "Good password" : "รหัสผ่านระดับดี", "Strong password" : "รหัสผ่านระดับดีมาก", + "Valid until {date}" : "ใช้ได้จนถึงวันที่ {date}", "Delete" : "ลบ", + "An error occurred. Please upload an ASCII-encoded PEM certificate." : "เกิดข้อผิดพลาด กรุณาอัพโหลดใบรับรองเข้ารหัส ASCII PEM", "Groups" : "กลุ่ม", + "Unable to delete {objName}" : "ไม่สามารถลบ {objName}", + "Error creating group" : "ข้อผิดพลาดขณะกำลังสร้างกลุ่ม", + "A valid group name must be provided" : "จะต้องระบุชื่อกลุ่มที่ถูกต้อง", + "deleted {groupName}" : "ลบกลุ่ม {groupName} เรียบร้อยแล้ว", "undo" : "เลิกทำ", + "no group" : "ไม่มีกลุ่ม", "never" : "ไม่ต้องเลย", - "__language_name__" : "ภาษาไทย", + "deleted {userName}" : "ลบผู้ใช้ {userName} เรียบร้อยแล้ว", + "add group" : "เพิ่มกลุ่ม", + "Changing the password will result in data loss, because data recovery is not available for this user" : "การเปลี่ยนรหัสผ่านจะส่งผลให้เกิดการสูญเสียข้อมูลเพราะการกู้คืนข้อมูลจะไม่สามารถใช้ได้สำหรับผู้ใช้นี้", + "A valid username must be provided" : "จะต้องระบุชื่อผู้ใช้ที่ถูกต้อง", + "Error creating user" : "เกิดข้อผิดพลาดขณะกำลังสร้างผู้ใช้", + "A valid password must be provided" : "จะต้องระบุรหัสผ่านที่ถูกต้อง", + "A valid email must be provided" : "จะต้องระบุอีเมลที่ถูกต้อง", + "__language_name__" : "ภาษาไทย - Thai languages", + "Sync clients" : "ผสานข้อมูลของไคลเอนต์", + "Personal info" : "ข้อมูลส่วนบุคคล", "SSL root certificates" : "ใบรับรองความปลอดภัยด้วยระบบ SSL จาก Root", + "Everything (fatal issues, errors, warnings, info, debug)" : "ทุกอย่าง (ปัญหาร้ายแรง ข้อผิดพลาด คำเตือน ข้อมูล การแก้ปัญหา)", + "Info, warnings, errors and fatal issues" : "ข้อมูล คำเตือน ข้อผิดพลาดและปัญหาร้ายแรง", + "Warnings, errors and fatal issues" : "คำเตือนข้อผิดพลาดและปัญหาที่ร้ายแรง", + "Errors and fatal issues" : "ข้อผิดพลาดและปัญหาที่ร้ายแรง", + "Fatal issues only" : "ปัญหาร้ายแรงเท่านั้น", "None" : "ไม่มี", "Login" : "เข้าสู่ระบบ", + "Plain" : "ธรรมดา", + "NT LAN Manager" : "ตัวจัดการ NT LAN", + "SSL" : "SSL", + "TLS" : "TLS", + "php does not seem to be setup properly to query system environment variables. The test with getenv(\"PATH\") only returns an empty response." : "ไม่ได้ติดตั้งphp อย่างถูกต้องค้นหาตัวแปรสภาพแวดล้อมของระบบการทดสอบกับ getenv(\"PATH\") ส่งกลับเฉพาะการตอบสนองที่ว่างเปล่า", + "Please check the installation documentation for php configuration notes and the php configuration of your server, especially when using php-fpm." : "กรุณาตรวจสอบเอกสารการติดตั้งสำหรับการบันทึกการตั้งค่าและการกำหนดค่า PHP ของเซิร์ฟเวอร์ของคุณโดยเฉพาะอย่างยิ่งเมื่อใช้ PHP-FPM", + "The Read-Only config has been enabled. This prevents setting some configurations via the web-interface. Furthermore, the file needs to be made writable manually for every update." : "ตั้งค่าให้สามารถอ่านได้อย่างเดียวถูกเปิดใช้งาน นี้จะช่วยป้องกันการตั้งค่าผ่านทางบางเว็บอินเตอร์เฟซ นอกจากนี้จะต้องเขียนไฟล์ด้วยตนเองสำหรับทุกการอัพเดท", + "PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "เห็นได้ชัดว่าการตั้งค่า PHP จะตัดบล็อคเอกสารแบบอินไลน์ ซึ่งจะทำให้แอพพลิเคชันอีกหลายแกนไม่สามารถเข้าถึงได้", + "This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "นี้อาจเกิดจาก cache/accelerator อย่างเช่น Zend OPcache หรือ eAccelerator", + "Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "เซิร์ฟเวอร์ของคุณทำงานบน Microsoft Windows เราขอแนะนำให้ใช้ลินุกซ์หากคุณต้องการ การใช้งานที่ดีที่สุด", + "%1$s below version %2$s is installed, for stability and performance reasons we recommend to update to a newer %1$s version." : "%1$s รุ่นเก่ากว่า %2$s ที่มีการติดตั้ง สำหรับเหตุผลเรื่องเสถียรภาพและประสิทธิภาพการทำงาน เราแนะนำให้อัพเดทเป็นรุ่น %1$s", + "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "โมดูล PHP 'fileinfo' หายไป เราขอแนะนำให้เปิดใช้งานโมดูลนี้เพื่อให้ได้ผลลัพธ์ที่ดีที่สุดกับการตรวจสอบชนิด mime", + "System locale can not be set to a one which supports UTF-8." : "ตำแหน่งที่ตั้งของระบบไม่สามารถตั้งค่าให้รองรับ UTF-8", + "This means that there might be problems with certain characters in file names." : "นี้หมายความว่าอาจจะมีปัญหากับตัวอักษรบางตัวในชื่อไฟล์", + "We strongly suggest installing the required packages on your system to support one of the following locales: %s." : "เราขอแนะนำให้ติดตั้งแพคเกจที่จำเป็นต้องใช้ในระบบของคุณ ให้การสนับสนุนตำแหน่งที่ตั้งดังต่อไปนี้: %s", + "If your installation is not installed in the root of the domain and uses system cron, there can be issues with the URL generation. To avoid these problems, please set the \"overwrite.cli.url\" option in your config.php file to the webroot path of your installation (Suggested: \"%s\")" : "หากการติดตั้งของคุณไม่ได้ติดตั้งในรากของโดเมนและใช้ระบบ cron อาจมีปัญหาเกี่ยวกับการสร้าง URL เพื่อหลีกเลี่ยงปัญหาเหล่านี้โปรดไปตั้งค่า \"overwrite.cli.url\" ในไฟล์ config.php ของคุณไปยังเส้นทาง webroot ของการติดตั้งของคุณ (แนะนำ: \"%s\")", + "It was not possible to execute the cronjob via CLI. The following technical errors have appeared:" : "มันเป็นไปไม่ได้ที่จะดำเนินการ cronjob ผ่านทาง CLI ข้อผิดพลาดทางเทคนิคต่อไปนี้จะปรากฏ:", + "Please double check the <a target=\"_blank\" href=\"%s\">installation guides ↗</a>, and check for any errors or warnings in the <a href=\"#log-section\">log</a>." : "กรุณาตรวจสอบ <a target=\"_blank\" href=\"%s\">คู่มือการติดตั้ง</a> และตรวจสอบข้อผิดพลาดหรือคำเตือนใน <a href=\"#log-section\">บันทึก</a>", + "Open documentation" : "เปิดเอกสาร", "Allow apps to use the Share API" : "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", + "Allow users to share via link" : "อนุญาตให้ผู้ใช้สามารถแชร์ผ่านทางลิงค์", + "Enforce password protection" : "บังคับใช้การป้องกันรหัสผ่าน", + "Allow public uploads" : "อนุญาตให้อัพโหลดสาธารณะ", + "Allow users to send mail notification for shared files" : "อนุญาตให้ผู้ใช้ส่งการแจ้งเตือนอีเมลสำหรับไฟล์ที่ถูกแชร์", + "Set default expiration date" : "ตั้งค่าเริ่มต้นวันหมดอายุ", + "Expire after " : "หมดอายุหลังจาก", "days" : "วัน", + "Enforce expiration date" : "บังคับให้มีวันที่หมดอายุ", "Allow resharing" : "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้", + "Restrict users to only share with users in their groups" : "จำกัดให้ผู้ใช้สามารถแชร์กับผู้ใช้ในกลุ่มของพวกเขาเท่านั้น", + "Allow users to send mail notification for shared files to other users" : "อนุญาตให้ผู้ใช้ส่งการแจ้งเตือนอีเมลสำหรับไฟล์ที่แชร์กับผู้ใช้อื่นๆ", + "Exclude groups from sharing" : "ไม่รวมกลุ่มที่แชร์", + "These groups will still be able to receive shares, but not to initiate them." : "กลุ่มนี้จะยังคงสามารถได้รับการแชร์ แต่พวกเขาจะไม่รู้จักมัน", + "Last cron job execution: %s." : "การดำเนินการ cron job ล่าสุด: %s", + "Last cron job execution: %s. Something seems wrong." : "การดำเนินการ cron job ล่าสุด: %s ดูเหมือนมีบางสิ่งไม่ถูกต้อง", + "Cron was not executed yet!" : "Cron ไม่ได้ถูกดำเนินการ!", "Execute one task with each page loaded" : "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ", + "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." : "cron.php มีการลงทะเบียนให้บริการ Webcron เรียก cron.php ทุกๆ 15 นาที บน Http", + "Use system's cron service to call the cron.php file every 15 minutes." : "บริการ cron ของระบบจะเรียกไฟล์ cron.php ทุกq 15 นาที", + "Enable server-side encryption" : "เปิดการใช้งานเข้ารหัสฝั่งเซิร์ฟเวอร์", + "Encryption is a one way process. Once encryption is enabled, all files from that point forward will be encrypted on the server and it will not be possible to disable encryption at a later date. This is the final warning: Do you really want to enable encryption?" : "การเข้ารหัสเป็นกระบวนการหนึ่ง เมื่อมีการเปิดใช้การเข้ารหัส ไฟล์ทั้งหมดจะถูกเข้ารหัสบนเซิร์ฟเวอร์และมันจะไม่เป็นไปได้ที่จะปิดการใช้งานการเข้ารหัสในภายหลัง นี้เป็นคำเตือนครั้งสุดท้าย: คุณต้องการที่จะเปิดใช้การเข้ารหัส?", + "Enable encryption" : "เปิดใช้งานการเข้ารหัส", + "No encryption module loaded, please enable an encryption module in the app menu." : "ไม่มีโมดูลการเข้ารหัสโหลดโปรดเปิดใช้งานโมดูลการเข้ารหัสในเมนูแอพฯ", + "Select default encryption module:" : "เลือกค่าเริ่มต้นโมดูลการเข้ารหัส:", + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one. Please enable the \"Default encryption module\" and run 'occ encryption:migrate'" : "คุณจำเป็นต้องโอนย้ายคีย์การเข้ารหัสลับของคุณจากการเข้ารหัสเก่า (ownCloud <= 8.0) ไปใหม่ กรุณาเปิดใช้งาน \"โมดูลการเข้ารหัสเริ่มต้น\" และเรียกใช้ 'occ encryption:migrate'", + "You need to migrate your encryption keys from the old encryption (ownCloud <= 8.0) to the new one." : "คุณจำเป็นต้องโอนย้ายคีย์การเข้ารหัสลับของคุณจากการเข้ารหัสเก่า (ownCloud <= 8.0) ไปใหม่", + "Start migration" : "เริ่มการโยกย้าย", + "This is used for sending out notifications." : "นี้จะใช้สำหรับการส่งออกการแจ้งเตือน", + "Send mode" : "โหมดการส่ง", "Encryption" : "การเข้ารหัส", - "Authentication required" : "ตรวจสอบความถูกต้อง", + "From address" : "จากที่อยู่", + "mail" : "อีเมล", + "Authentication method" : "วิธีการตรวจสอบ", + "Authentication required" : "จำเป็นต้องตรวจสอบความถูกต้อง", "Server address" : "ที่อยู่เซิร์ฟเวอร์", "Port" : "พอร์ต", "Credentials" : "ข้อมูลส่วนตัวสำหรับเข้าระบบ", + "SMTP Username" : "ชื่อผู้ใช้ SMTP", + "SMTP Password" : "รหัสผ่าน SMTP", + "Store credentials" : "ข้อมูลประจำตัวของร้านค้า", + "Test email settings" : "การตั้งค่าอีเมลทดสอบ", + "Send email" : "ส่งอีเมล", "Log level" : "ระดับการเก็บบันทึก log", + "Download logfile" : "ดาวน์โหลดไฟล์บันทึก", "More" : "มาก", "Less" : "น้อย", + "The logfile is bigger than 100 MB. Downloading it may take some time!" : "ไฟล์บันทึกมีขนาดใหญ่กว่า 100 เมกะไบต์ มันอาจจะใช้เวลาดาวน์โหลดนาน!", + "SQLite is used as database. For larger installations we recommend to switch to a different database backend." : "จะใช้ SQLite เป็นฐานข้อมูล สำหรับการติดตั้งขนาดใหญ่เราขอแนะนำเพื่อสลับไปยังฐานข้อมูลแบ็กเอนด์ที่แตกต่างกัน", "Especially when using the desktop client for file syncing the use of SQLite is discouraged." : "โดยเฉพาะอย่างยิ่งเมื่อใช้ไคลเอนต์เดสก์ทอปสำหรับการผสานข้อมูลโดย SQLite", + "To migrate to another database use the command line tool: 'occ db:convert-type', or see the <a target=\"_blank\" href=\"%s\">documentation ↗</a>." : "การโยกย้ายไปยังฐานข้อมูลอื่นใช้เครื่องมือบรรทัดคำสั่ง: 'occ db:convert-type' หรือดูที่ <a target=\"_blank\" href=\"%s\">เอกสาร</a>", + "How to do backups" : "วิธีการสำรองข้อมูล", + "Advanced monitoring" : "การตรวจสอบขั้นสูง", + "Performance tuning" : "การปรับแต่งประสิทธิภาพ", + "Improving the config.php" : "ปรับปรุงไฟล์ config.php", + "Theming" : "ชุดรูปแบบ", + "Hardening and security guidance" : "คำแนะนำการรักษาความปลอดภัย", + "Experimental File Lock is enabled." : "ทดลองล็อคไฟล์ถูกเปิดใช้งาน", + "Experimental File Lock is disabled." : "ทดลองล็อคไฟล์ถูกปิดใช้งาน", "Version" : "รุ่น", + "Developer documentation" : "เอกสารสำหรับนักพัฒนา", + "Experimental applications ahead" : "การใช้งานก่อนการทดลอง", + "Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches." : "การทดลองแอพพลิเคชันไม่ได้ถูกตรวจสอบปัญหาด้านความปลอดภัย การติดตั้งพวกเขาสามารถก่อให้เกิดการสูญเสียข้อมูลหรือการละเมิดความปลอดภัย", "by" : "โดย", + "licensed" : "ได้รับใบอนุญาต", + "Documentation:" : "เอกสาร:", "User Documentation" : "เอกสารคู่มือการใช้งานสำหรับผู้ใช้งาน", + "Admin Documentation" : "เอกสารดูแลระบบ", + "Show description …" : "แสดงรายละเอียด ...", + "Hide description …" : "ซ่อนรายละเอียด ...", + "This app cannot be installed because the following dependencies are not fulfilled:" : "ไม่สามารถติดตั้งแอพฯนี้เพราะไม่มีตัวอ้างอิงต่อไปนี้:", + "Update to %s" : "อัพเดทไปยัง %s", + "Enable only for specific groups" : "เปิดใช้งานเพียงเฉพาะกลุ่ม", + "Uninstall App" : "ถอนการติดตั้งแอพฯ", + "Enable experimental apps" : "เปิดใช้งานแอพพลิเคชั่นทดลอง", + "No apps found for your version" : "ไม่พบแอพพลิเคชันสำหรับรุ่นของคุณ", + "Hey there,<br><br>just letting you know that you now have an %s account.<br><br>Your username: %s<br>Access it: <a href=\"%s\">%s</a><br><br>" : "นี่คุณ<br><br>อยากจะแจ้งให้คุณทราบว่าขณะนี้คุณมีบัญชี %s<br><br>ชื่อผู้ใช้ของคุณคือ: %s<br>เข้าไปงานได้ที่: <a href=\"%s\">%s</a><br><br>", "Cheers!" : "ไชโย!", - "Forum" : "กระดานสนทนา", + "User documentation" : "เอกสารสำหรับผู้ใช้", + "Administrator documentation" : "เอกสารของผู้ดูแลระบบ", + "Online documentation" : "เอกสารออนไลน์", + "Forum" : "ฟอรั่ม", + "Issue tracker" : "ติดตามปัญหา", + "Commercial support" : "สนับสนุนเชิงพาณิชย์", "Get the apps to sync your files" : "ใช้แอพพลิเคชันในการผสานไฟล์ของคุณ", "Desktop client" : "เดสก์ทอปผู้ใช้", "Android app" : "แอพฯ แอนดรอยด์", "iOS app" : "แอพฯ IOS", + "If you want to support the project\n\t\t<a href=\"https://owncloud.org/contribute\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">join development</a>\n\t\tor\n\t\t<a href=\"https://owncloud.org/promote\"\n\t\t\ttarget=\"_blank\" rel=\"noreferrer\">spread the word</a>!" : "หากคุณต้องการที่จะสนับสนุนโครงการ <a href=\"https://owncloud.org/contribute\" target=\"_blank\" rel=\"noreferrer\">เข้าร่วมการพัฒนา</a> หรือ <a href=\"https://owncloud.org/promote\" target=\"_blank\" rel=\"noreferrer\">กระจายข่าวสาร</a>!\n\t\t", "Show First Run Wizard again" : "แสดงหน้าจอวิซาร์ดนำทางครั้งแรกอีกครั้ง", "You have used <strong>%s</strong> of the available <strong>%s</strong>" : "คุณได้ใช้งานไปแล้ว <strong>%s</strong> จากจำนวนที่สามารถใช้ได้ <strong>%s</strong>", "Password" : "รหัสผ่าน", @@ -65,21 +222,57 @@ "Current password" : "รหัสผ่านปัจจุบัน", "New password" : "รหัสผ่านใหม่", "Change password" : "เปลี่ยนรหัสผ่าน", + "Full name" : "ชื่อเต็ม", + "No display name set" : "ไม่มีชื่อที่แสดง", "Email" : "อีเมล", "Your email address" : "ที่อยู่อีเมล์ของคุณ", + "Fill in an email address to enable password recovery and receive notifications" : "กรอกที่อยู่อีเมลเพื่อเปิดใช้งานการกู้คืนรหัสผ่านและการได้รับการแจ้งเตือน", + "No email address set" : "ไม่ได้ตั้งค่าที่อยู่อีเมล", + "You are member of the following groups:" : "คุณเป็นสมาชิกของกลุ่มต่อไปนี้:", "Profile picture" : "รูปภาพโปรไฟล์", + "Upload new" : "อัพโหลดใหม่", + "Select new from Files" : "เลือกใหม่จากไฟล์", + "Remove image" : "ลบรูปภาพ", + "Either png or jpg. Ideally square but you will be able to crop it." : "ไฟล์ PNG และ JPG ควรจะเป็นสี่เหลี่ยม แต่คุณจะสามารถที่จะครอบตัดมัน", + "Your avatar is provided by your original account." : "อวตาลของคุณถูกระบุโดยบัญชีเดิมของคุณ", "Cancel" : "ยกเลิก", + "Choose as profile image" : "เลือกรูปภาพโปรไฟล์", "Language" : "ภาษา", - "Help translate" : "ช่วยกันแปล", + "Help translate" : "มาช่วยกันแปลสิ!", + "Common Name" : "ชื่อทั่วไป", + "Valid until" : "ใช้ได้จนถึง", + "Issued By" : "ปัญหาโดย", + "Valid until %s" : "ใช้ได้จนถึง %s", + "Import root certificate" : "นำเข้าใบรับรองหลัก", + "Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}." : "ที่พัฒนาโดย {communityopen} ชุมชน ownCloud {linkclose} {githubopen}รหัสต้นฉบับ{linkclose} อยู่ภายใต้สัญญา {licenseopen}<abbr title=\"Affero General Public License\">AGPL</abbr>{linkclose}", + "Show storage location" : "แสดงสถานที่จัดเก็บข้อมูล", + "Show last log in" : "แสดงการเข้าสู่ระบบล่าสุด", + "Show user backend" : "แสดงแบ็กเอนด์ของผู้ใช้", + "Send email to new user" : "ส่งอีเมลไปยังผู้ใช้ใหม่", + "Show email address" : "แสดงที่อยู่อีเมล", "Username" : "ชื่อผู้ใช้งาน", + "E-Mail" : "อีเมล", "Create" : "สร้าง", + "Admin Recovery Password" : "กู้คืนรหัสผ่านดูแลระบบ", "Enter the recovery password in order to recover the users files during password change" : "ป้อนรหัสผ่านการกู้คืนเพื่อกู้คืนไฟล์ผู้ใช้ในช่วงการเปลี่ยนรหัสผ่าน", + "Search Users" : "ค้นหาผู้ใช้", + "Add Group" : "เพิ่มกลุ่ม", "Group" : "กลุ่ม", - "Default Quota" : "โควต้าที่กำหนดไว้เริ่มต้น", + "Everyone" : "ทุกคน", + "Admins" : "ผู้ดูแลระบบ", + "Default Quota" : "ค่าโควต้าเริ่มต้น", + "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "กรุณากรอกโควต้าการจัดเก็บข้อมูล (ต.ย. : \"512 MB\" หรือ \"12 GB\")", "Unlimited" : "ไม่จำกัดจำนวน", "Other" : "อื่นๆ", - "Quota" : "พื้นที่", + "Full Name" : "ชื่อเต็ม", + "Group Admin for" : "กลุ่มผู้ดูแลระบบสำหรับ", + "Quota" : "โควต้า", + "Storage Location" : "สถานที่จัดเก็บข้อมูล", + "User Backend" : "ผู้ใช้แบ็กเอนด์", + "Last Login" : "เข้าสู่ระบบล่าสุด", + "change full name" : "เปลี่ยนชื่อเต็ม", "set new password" : "ตั้งค่ารหัสผ่านใหม่", + "change email address" : "เปลี่ยนแปลงที่อยู่อีเมล", "Default" : "ค่าเริ่มต้น" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 0904f31df4d..c88efb8746a 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -108,9 +108,7 @@ script( </div> {{/unless}} - {{#if update}} - <input class="update" type="submit" value="<?php p($l->t('Update to %s', array('{{update}}'))); ?>" data-appid="{{id}}" /> - {{/if}} + <input class="update hidden" type="submit" value="<?php p($l->t('Update to %s', array('{{update}}'))); ?>" data-appid="{{id}}" /> {{#if active}} <input class="enable" type="submit" data-appid="{{id}}" data-active="true" value="<?php p($l->t("Disable"));?>"/> <input type="checkbox" class="groups-enable" id="groups_enable-{{id}}"/> |