summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
Diffstat (limited to 'settings')
-rw-r--r--settings/js/users/users.js18
-rw-r--r--settings/l10n/de_DE.js1
-rw-r--r--settings/l10n/de_DE.json1
-rw-r--r--settings/l10n/en_GB.js7
-rw-r--r--settings/l10n/en_GB.json7
-rw-r--r--settings/l10n/es.js6
-rw-r--r--settings/l10n/es.json6
-rw-r--r--settings/l10n/nb_NO.js18
-rw-r--r--settings/l10n/nb_NO.json18
-rw-r--r--settings/l10n/nl.js1
-rw-r--r--settings/l10n/nl.json1
-rw-r--r--settings/l10n/th_TH.js8
-rw-r--r--settings/l10n/th_TH.json8
13 files changed, 89 insertions, 11 deletions
diff --git a/settings/js/users/users.js b/settings/js/users/users.js
index 24c1d610794..e0fdea64773 100644
--- a/settings/js/users/users.js
+++ b/settings/js/users/users.js
@@ -138,10 +138,13 @@ var UserList = {
.find('option').attr('selected', null)
.first().attr('selected', 'selected');
} else {
- if ($quotaSelect.find('option').filterAttr('value', user.quota).length > 0) {
- $quotaSelect.find('option').filterAttr('value', user.quota).attr('selected', 'selected');
+ var $options = $quotaSelect.find('option');
+ var $foundOption = $options.filterAttr('value', user.quota);
+ if ($foundOption.length > 0) {
+ $foundOption.attr('selected', 'selected');
} else {
- $quotaSelect.append('<option value="' + escapeHTML(user.quota) + '" selected="selected">' + escapeHTML(user.quota) + '</option>');
+ // append before "Other" entry
+ $options.last().before('<option value="' + escapeHTML(user.quota) + '" selected="selected">' + escapeHTML(user.quota) + '</option>');
}
}
@@ -576,6 +579,15 @@ var UserList = {
var $select = $(ev.target);
var uid = UserList.getUID($select);
var quota = $select.val();
+ if (quota === 'other') {
+ return;
+ }
+ if (isNaN(parseInt(quota, 10)) || parseInt(quota, 10) < 0) {
+ // the select component has added the bogus value, delete it again
+ $select.find('option[selected]').remove();
+ OC.Notification.showTemporary(t('core', 'Invalid quota value "{val}"', {val: quota}));
+ return;
+ }
UserList._updateQuota(uid, quota, function(returnedQuota){
if (quota !== returnedQuota) {
$select.find(':selected').text(returnedQuota);
diff --git a/settings/l10n/de_DE.js b/settings/l10n/de_DE.js
index a40dd56f24b..e9dde993556 100644
--- a/settings/l10n/de_DE.js
+++ b/settings/l10n/de_DE.js
@@ -279,6 +279,7 @@ OC.L10N.register(
"An app password is a passcode that gives an app or device permissions to access your %s account." : "Ein App-Passwort ist ein Passwort, dass einer App oder einem Gerät erlaubt auf Ihren %s-Konto zuzugreifen.",
"App name" : "App-Name",
"Create new app password" : "Neues App-Passwort erstellen",
+ "Use the credentials below to configure your app or device." : "Verwenden Sie die folgenden Zugangsdaten um Ihre App oder Ihr Gerät zu konfigurieren.",
"Username" : "Benutzername",
"Done" : "Erledigt",
"Get the apps to sync your files" : "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren",
diff --git a/settings/l10n/de_DE.json b/settings/l10n/de_DE.json
index 4cedb8464ec..351cafcd65d 100644
--- a/settings/l10n/de_DE.json
+++ b/settings/l10n/de_DE.json
@@ -277,6 +277,7 @@
"An app password is a passcode that gives an app or device permissions to access your %s account." : "Ein App-Passwort ist ein Passwort, dass einer App oder einem Gerät erlaubt auf Ihren %s-Konto zuzugreifen.",
"App name" : "App-Name",
"Create new app password" : "Neues App-Passwort erstellen",
+ "Use the credentials below to configure your app or device." : "Verwenden Sie die folgenden Zugangsdaten um Ihre App oder Ihr Gerät zu konfigurieren.",
"Username" : "Benutzername",
"Done" : "Erledigt",
"Get the apps to sync your files" : "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren",
diff --git a/settings/l10n/en_GB.js b/settings/l10n/en_GB.js
index 2cd979acba7..cf86594f5da 100644
--- a/settings/l10n/en_GB.js
+++ b/settings/l10n/en_GB.js
@@ -87,9 +87,9 @@ OC.L10N.register(
"App update" : "App update",
"No apps found for {query}" : "No apps found for {query}",
"Disconnect" : "Disconnect",
- "Error while loading browser sessions and device tokens" : "Error while loading browser sessions and device tokens",
- "Error while creating device token" : "Error while creating device token",
- "Error while deleting the token" : "Error while deleting the token",
+ "Error while loading browser sessions and device tokens" : "Error whilst loading browser sessions and device tokens",
+ "Error while creating device token" : "Error whilst creating device token",
+ "Error while deleting the token" : "Error whilst deleting the token",
"An error occurred. Please upload an ASCII-encoded PEM certificate." : "An error occurred. Please upload an ASCII-encoded PEM certificate.",
"Valid until {date}" : "Valid until {date}",
"Delete" : "Delete",
@@ -279,6 +279,7 @@ OC.L10N.register(
"An app password is a passcode that gives an app or device permissions to access your %s account." : "An app password is a passcode that gives an app or device permissions to access your %s account.",
"App name" : "App name",
"Create new app password" : "Create new app password",
+ "Use the credentials below to configure your app or device." : "Use the credentials below to configure your app or device.",
"Username" : "Username",
"Done" : "Done",
"Get the apps to sync your files" : "Get the apps to sync your files",
diff --git a/settings/l10n/en_GB.json b/settings/l10n/en_GB.json
index 7370315c5f1..41c262302d2 100644
--- a/settings/l10n/en_GB.json
+++ b/settings/l10n/en_GB.json
@@ -85,9 +85,9 @@
"App update" : "App update",
"No apps found for {query}" : "No apps found for {query}",
"Disconnect" : "Disconnect",
- "Error while loading browser sessions and device tokens" : "Error while loading browser sessions and device tokens",
- "Error while creating device token" : "Error while creating device token",
- "Error while deleting the token" : "Error while deleting the token",
+ "Error while loading browser sessions and device tokens" : "Error whilst loading browser sessions and device tokens",
+ "Error while creating device token" : "Error whilst creating device token",
+ "Error while deleting the token" : "Error whilst deleting the token",
"An error occurred. Please upload an ASCII-encoded PEM certificate." : "An error occurred. Please upload an ASCII-encoded PEM certificate.",
"Valid until {date}" : "Valid until {date}",
"Delete" : "Delete",
@@ -277,6 +277,7 @@
"An app password is a passcode that gives an app or device permissions to access your %s account." : "An app password is a passcode that gives an app or device permissions to access your %s account.",
"App name" : "App name",
"Create new app password" : "Create new app password",
+ "Use the credentials below to configure your app or device." : "Use the credentials below to configure your app or device.",
"Username" : "Username",
"Done" : "Done",
"Get the apps to sync your files" : "Get the apps to sync your files",
diff --git a/settings/l10n/es.js b/settings/l10n/es.js
index 83c49ce8b4a..de6d619cd7a 100644
--- a/settings/l10n/es.js
+++ b/settings/l10n/es.js
@@ -119,6 +119,7 @@ OC.L10N.register(
"Unlimited" : "Ilimitado",
"Personal info" : "Información personal",
"Sessions" : "Sesiones",
+ "App passwords" : "App de contraseñas",
"Sync clients" : "Sincronizar clientes",
"Everything (fatal issues, errors, warnings, info, debug)" : "Todo (Información, Avisos, Errores, debug y problemas fatales)",
"Info, warnings, errors and fatal issues" : "Información, Avisos, Errores y problemas fatales",
@@ -273,7 +274,12 @@ OC.L10N.register(
"These are the web, desktop and mobile clients currently logged in to your ownCloud." : "Estos son los clientes en web, en escritorio y en móvil actualmente conectados en su OwnCloud.",
"Browser" : "Navegador",
"Most recent activity" : "Actividad más reciente",
+ "You've linked these apps." : "Has enlazado estas apps.",
"Name" : "Nombre",
+ "An app password is a passcode that gives an app or device permissions to access your %s account." : "Una contraseña de app es un código que proporciona permisos a una app o dispositivo para acceder a tu cuenta %s.",
+ "App name" : "nombre de la app",
+ "Create new app password" : "Crear una nueva contraseña en la app",
+ "Use the credentials below to configure your app or device." : "Use la contraseña generada para configurar su app o dispositivo.",
"Username" : "Nombre de usuario",
"Done" : "Hecho",
"Get the apps to sync your files" : "Obtener las aplicaciones para sincronizar sus archivos",
diff --git a/settings/l10n/es.json b/settings/l10n/es.json
index cfe244068ef..4b3969da4ef 100644
--- a/settings/l10n/es.json
+++ b/settings/l10n/es.json
@@ -117,6 +117,7 @@
"Unlimited" : "Ilimitado",
"Personal info" : "Información personal",
"Sessions" : "Sesiones",
+ "App passwords" : "App de contraseñas",
"Sync clients" : "Sincronizar clientes",
"Everything (fatal issues, errors, warnings, info, debug)" : "Todo (Información, Avisos, Errores, debug y problemas fatales)",
"Info, warnings, errors and fatal issues" : "Información, Avisos, Errores y problemas fatales",
@@ -271,7 +272,12 @@
"These are the web, desktop and mobile clients currently logged in to your ownCloud." : "Estos son los clientes en web, en escritorio y en móvil actualmente conectados en su OwnCloud.",
"Browser" : "Navegador",
"Most recent activity" : "Actividad más reciente",
+ "You've linked these apps." : "Has enlazado estas apps.",
"Name" : "Nombre",
+ "An app password is a passcode that gives an app or device permissions to access your %s account." : "Una contraseña de app es un código que proporciona permisos a una app o dispositivo para acceder a tu cuenta %s.",
+ "App name" : "nombre de la app",
+ "Create new app password" : "Crear una nueva contraseña en la app",
+ "Use the credentials below to configure your app or device." : "Use la contraseña generada para configurar su app o dispositivo.",
"Username" : "Nombre de usuario",
"Done" : "Hecho",
"Get the apps to sync your files" : "Obtener las aplicaciones para sincronizar sus archivos",
diff --git a/settings/l10n/nb_NO.js b/settings/l10n/nb_NO.js
index 25a6538d9b9..4d819c80b05 100644
--- a/settings/l10n/nb_NO.js
+++ b/settings/l10n/nb_NO.js
@@ -63,6 +63,7 @@ OC.L10N.register(
"Experimental" : "Eksperimentell",
"All" : "Alle",
"No apps found for your version" : "Ingen apper funnet for din versjon",
+ "The app will be downloaded from the app store" : "Appen vil bli lastet ned fra app-butikken",
"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 tiltrodde 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 tidvis eller normal bruk.",
"This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Denne appen er ikke sjekket for sikkerhetsproblemer og er ny eller ansett for å være ustabil. Installer på egen risiko.",
@@ -85,6 +86,10 @@ OC.L10N.register(
"The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Appen er aktivert men må oppdateres. Du vil bli omdirigert til oppdateringssiden om 5 sekunder.",
"App update" : "Oppdatering av applikasjon",
"No apps found for {query}" : "Ingen apper funnet for \"{query}\"",
+ "Disconnect" : "Koble fra",
+ "Error while loading browser sessions and device tokens" : "Feil ved lasting av nettleser-økter og enhetsnøkler",
+ "Error while creating device token" : "Feil ved oppretting av enhetsnøkkel",
+ "Error while deleting the token" : "Feil ved sletting av nøkkelen",
"An error occurred. Please upload an ASCII-encoded PEM certificate." : "Det oppstod en feil. Vennligst last opp et ASCII-kodet PEM-sertifikat.",
"Valid until {date}" : "Gyldig til {date}",
"Delete" : "Slett",
@@ -113,6 +118,8 @@ OC.L10N.register(
"__language_name__" : "__language_name__",
"Unlimited" : "Ubegrenset",
"Personal info" : "Personlig informasjon",
+ "Sessions" : "Økter",
+ "App passwords" : "App-passord",
"Sync clients" : "Synkroniseringsklienter",
"Everything (fatal issues, errors, warnings, info, debug)" : "Alt (fatale problemer, feil, advarsler, info, debug)",
"Info, warnings, errors and fatal issues" : "Info, advarsler, feil og fatale problemer",
@@ -130,6 +137,7 @@ OC.L10N.register(
"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." : "Den skrivebeskyttede konfigurasjonen er blitt aktivert. Dette forhindrer setting av visse konfigureringer via web-grensesnittet. Videre må config-filen gjøres skrivbar manuelt for hver oppdatering.",
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Det ser ut for at PHP er satt opp til å fjerne innebygde doc blocks. Dette gjør at flere av kjerneapplikasjonene blir utilgjengelige.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dette forårsakes sannsynligvis av en bufrer/akselerator, som f.eks. Zend OPcache eller eAccelerator.",
+ "Your database does not run with \"READ COMMITED\" transaction isolation level. This can cause problems when multiple actions are executed in parallel." : "Databasen din kjører ikke med transaksjonsisoleringsnivå \"READ COMMITED\". Dette kan føre til problemer når flere handlinger kjøres parallelt.",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Serveren din kjører på Microsoft Windows. Vi anbefaler strekt Linux for en optimal brukeropplevelse.",
"%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s lavere enn versjon %2$s er installert. Vi anbefaler å oppgradere til en nyere %1$s-versjon for å få bedre stabilitet og ytelse.",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modulen 'fileinfo' mangler. Vi anbefaler at du aktiverer denne modulen for å kunne detektere mime-typen korrekt.",
@@ -215,6 +223,8 @@ OC.L10N.register(
"Documentation:" : "Dokumentasjon:",
"User documentation" : "Brukerdokumentasjon",
"Admin documentation" : "Admin-dokumentasjon",
+ "Visit website" : "Gå til nettside",
+ "Report a bug" : "Rapporter en feil",
"Show description …" : "Vis beskrivelse …",
"Hide description …" : "Skjul beskrivelse …",
"This app has an update available." : "En oppdatering er tilgjengelig for denne appen.",
@@ -261,7 +271,15 @@ OC.L10N.register(
"Change password" : "Endre passord",
"Language" : "Språk",
"Help translate" : "Bidra til oversettelsen",
+ "These are the web, desktop and mobile clients currently logged in to your ownCloud." : "Disse web-, skrivebords- og mobilklienter er pålogget din ownCloud for øyeblikket.",
+ "Browser" : "Nettleser",
+ "Most recent activity" : "Siste aktivitet",
+ "You've linked these apps." : "Du har lenket disse appene.",
"Name" : "Navn",
+ "An app password is a passcode that gives an app or device permissions to access your %s account." : "Et app-passord er et passord som gir en app eller en enhet tillatelse til å aksessere din %s-konto.",
+ "App name" : "App-navn",
+ "Create new app password" : "Lag nytt app-passord",
+ "Use the credentials below to configure your app or device." : "Bruk detaljene nedenfor for å konfigurere appen eller enheten din.",
"Username" : "Brukernavn",
"Done" : "Ferdig",
"Get the apps to sync your files" : "Hent apper som synkroniserer filene dine",
diff --git a/settings/l10n/nb_NO.json b/settings/l10n/nb_NO.json
index cf6766d862c..0578f2aa2fb 100644
--- a/settings/l10n/nb_NO.json
+++ b/settings/l10n/nb_NO.json
@@ -61,6 +61,7 @@
"Experimental" : "Eksperimentell",
"All" : "Alle",
"No apps found for your version" : "Ingen apper funnet for din versjon",
+ "The app will be downloaded from the app store" : "Appen vil bli lastet ned fra app-butikken",
"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 tiltrodde 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 tidvis eller normal bruk.",
"This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Denne appen er ikke sjekket for sikkerhetsproblemer og er ny eller ansett for å være ustabil. Installer på egen risiko.",
@@ -83,6 +84,10 @@
"The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Appen er aktivert men må oppdateres. Du vil bli omdirigert til oppdateringssiden om 5 sekunder.",
"App update" : "Oppdatering av applikasjon",
"No apps found for {query}" : "Ingen apper funnet for \"{query}\"",
+ "Disconnect" : "Koble fra",
+ "Error while loading browser sessions and device tokens" : "Feil ved lasting av nettleser-økter og enhetsnøkler",
+ "Error while creating device token" : "Feil ved oppretting av enhetsnøkkel",
+ "Error while deleting the token" : "Feil ved sletting av nøkkelen",
"An error occurred. Please upload an ASCII-encoded PEM certificate." : "Det oppstod en feil. Vennligst last opp et ASCII-kodet PEM-sertifikat.",
"Valid until {date}" : "Gyldig til {date}",
"Delete" : "Slett",
@@ -111,6 +116,8 @@
"__language_name__" : "__language_name__",
"Unlimited" : "Ubegrenset",
"Personal info" : "Personlig informasjon",
+ "Sessions" : "Økter",
+ "App passwords" : "App-passord",
"Sync clients" : "Synkroniseringsklienter",
"Everything (fatal issues, errors, warnings, info, debug)" : "Alt (fatale problemer, feil, advarsler, info, debug)",
"Info, warnings, errors and fatal issues" : "Info, advarsler, feil og fatale problemer",
@@ -128,6 +135,7 @@
"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." : "Den skrivebeskyttede konfigurasjonen er blitt aktivert. Dette forhindrer setting av visse konfigureringer via web-grensesnittet. Videre må config-filen gjøres skrivbar manuelt for hver oppdatering.",
"PHP is apparently setup to strip inline doc blocks. This will make several core apps inaccessible." : "Det ser ut for at PHP er satt opp til å fjerne innebygde doc blocks. Dette gjør at flere av kjerneapplikasjonene blir utilgjengelige.",
"This is probably caused by a cache/accelerator such as Zend OPcache or eAccelerator." : "Dette forårsakes sannsynligvis av en bufrer/akselerator, som f.eks. Zend OPcache eller eAccelerator.",
+ "Your database does not run with \"READ COMMITED\" transaction isolation level. This can cause problems when multiple actions are executed in parallel." : "Databasen din kjører ikke med transaksjonsisoleringsnivå \"READ COMMITED\". Dette kan føre til problemer når flere handlinger kjøres parallelt.",
"Your server is running on Microsoft Windows. We highly recommend Linux for optimal user experience." : "Serveren din kjører på Microsoft Windows. Vi anbefaler strekt Linux for en optimal brukeropplevelse.",
"%1$s below version %2$s is installed, for stability and performance reasons we recommend updating to a newer %1$s version." : "%1$s lavere enn versjon %2$s er installert. Vi anbefaler å oppgradere til en nyere %1$s-versjon for å få bedre stabilitet og ytelse.",
"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." : "PHP modulen 'fileinfo' mangler. Vi anbefaler at du aktiverer denne modulen for å kunne detektere mime-typen korrekt.",
@@ -213,6 +221,8 @@
"Documentation:" : "Dokumentasjon:",
"User documentation" : "Brukerdokumentasjon",
"Admin documentation" : "Admin-dokumentasjon",
+ "Visit website" : "Gå til nettside",
+ "Report a bug" : "Rapporter en feil",
"Show description …" : "Vis beskrivelse …",
"Hide description …" : "Skjul beskrivelse …",
"This app has an update available." : "En oppdatering er tilgjengelig for denne appen.",
@@ -259,7 +269,15 @@
"Change password" : "Endre passord",
"Language" : "Språk",
"Help translate" : "Bidra til oversettelsen",
+ "These are the web, desktop and mobile clients currently logged in to your ownCloud." : "Disse web-, skrivebords- og mobilklienter er pålogget din ownCloud for øyeblikket.",
+ "Browser" : "Nettleser",
+ "Most recent activity" : "Siste aktivitet",
+ "You've linked these apps." : "Du har lenket disse appene.",
"Name" : "Navn",
+ "An app password is a passcode that gives an app or device permissions to access your %s account." : "Et app-passord er et passord som gir en app eller en enhet tillatelse til å aksessere din %s-konto.",
+ "App name" : "App-navn",
+ "Create new app password" : "Lag nytt app-passord",
+ "Use the credentials below to configure your app or device." : "Bruk detaljene nedenfor for å konfigurere appen eller enheten din.",
"Username" : "Brukernavn",
"Done" : "Ferdig",
"Get the apps to sync your files" : "Hent apper som synkroniserer filene dine",
diff --git a/settings/l10n/nl.js b/settings/l10n/nl.js
index 78163d592c0..6f7393a118e 100644
--- a/settings/l10n/nl.js
+++ b/settings/l10n/nl.js
@@ -276,6 +276,7 @@ OC.L10N.register(
"Most recent activity" : "Meest recente activiteit",
"You've linked these apps." : "U hebt deze apps gelinkt.",
"Name" : "Naam",
+ "An app password is a passcode that gives an app or device permissions to access your %s account." : "Een app wachtwoord is een toegangscode waarmee een app of apparaat toegang krijgt om uw %s account te gebruiken.",
"App name" : "App naam",
"Create new app password" : "Creëer nieuw app wachtwoord",
"Use the credentials below to configure your app or device." : "Gebruik onderstaande inloggegevens om uw app of apparaat te configureren.",
diff --git a/settings/l10n/nl.json b/settings/l10n/nl.json
index a4e1aa2ccba..dc5eba1d53c 100644
--- a/settings/l10n/nl.json
+++ b/settings/l10n/nl.json
@@ -274,6 +274,7 @@
"Most recent activity" : "Meest recente activiteit",
"You've linked these apps." : "U hebt deze apps gelinkt.",
"Name" : "Naam",
+ "An app password is a passcode that gives an app or device permissions to access your %s account." : "Een app wachtwoord is een toegangscode waarmee een app of apparaat toegang krijgt om uw %s account te gebruiken.",
"App name" : "App naam",
"Create new app password" : "Creëer nieuw app wachtwoord",
"Use the credentials below to configure your app or device." : "Gebruik onderstaande inloggegevens om uw app of apparaat te configureren.",
diff --git a/settings/l10n/th_TH.js b/settings/l10n/th_TH.js
index b205728a30f..5b59c341b98 100644
--- a/settings/l10n/th_TH.js
+++ b/settings/l10n/th_TH.js
@@ -86,6 +86,10 @@ OC.L10N.register(
"The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "แอพฯจะต้องเปิดใช้งานก่อนทำการอัพเดท คุณจะถูกนำไปยังหน้าอัพเดทใน 5 วินาที",
"App update" : "อัพเดทแอพฯ",
"No apps found for {query}" : "ไม่พบแอพฯสำหรับ {query}",
+ "Disconnect" : "ตัดการเชื่อมต่อ",
+ "Error while loading browser sessions and device tokens" : "ข้อผิดพลาดขณะโหลดเซสชันของเบราเซอร์และโทเค็นของอุปกรณ์",
+ "Error while creating device token" : "เกิดข้อผิดพลาดขณะที่การสร้างโทเค็นของอุปกรณ์",
+ "Error while deleting the token" : "เกิดข้อผิดพลาดขณะลบโทเค็น",
"An error occurred. Please upload an ASCII-encoded PEM certificate." : "เกิดข้อผิดพลาด กรุณาอัพโหลดใบรับรองเข้ารหัส ASCII PEM",
"Valid until {date}" : "ใช้ได้จนถึงวันที่ {date}",
"Delete" : "ลบ",
@@ -114,6 +118,8 @@ OC.L10N.register(
"__language_name__" : "ภาษาไทย - Thai languages",
"Unlimited" : "ไม่จำกัด",
"Personal info" : "ข้อมูลส่วนบุคคล",
+ "Sessions" : "เซสชัน",
+ "App passwords" : "รหัส่านแอพฯ",
"Sync clients" : "ประสานข้อมูลไคลเอนต์",
"Everything (fatal issues, errors, warnings, info, debug)" : "ทุกอย่าง (ปัญหาร้ายแรง ข้อผิดพลาด คำเตือน ข้อมูล การแก้ปัญหา)",
"Info, warnings, errors and fatal issues" : "ข้อมูล คำเตือน ข้อผิดพลาดและปัญหาร้ายแรง",
@@ -200,7 +206,7 @@ OC.L10N.register(
"How to do backups" : "วิธีการสำรองข้อมูล",
"Advanced monitoring" : "การตรวจสอบขั้นสูง",
"Performance tuning" : "การปรับแต่งประสิทธิภาพ",
- "Improving the config.php" : "ปรับปรุงไฟล์ config.php",
+ "Improving the config.php" : "อัพเดทไฟล์ config.php",
"Theming" : "ชุดรูปแบบ",
"Hardening and security guidance" : "คำแนะนำการรักษาความปลอดภัย",
"Version" : "รุ่น",
diff --git a/settings/l10n/th_TH.json b/settings/l10n/th_TH.json
index ab451fbcb4c..dacba9a6475 100644
--- a/settings/l10n/th_TH.json
+++ b/settings/l10n/th_TH.json
@@ -84,6 +84,10 @@
"The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "แอพฯจะต้องเปิดใช้งานก่อนทำการอัพเดท คุณจะถูกนำไปยังหน้าอัพเดทใน 5 วินาที",
"App update" : "อัพเดทแอพฯ",
"No apps found for {query}" : "ไม่พบแอพฯสำหรับ {query}",
+ "Disconnect" : "ตัดการเชื่อมต่อ",
+ "Error while loading browser sessions and device tokens" : "ข้อผิดพลาดขณะโหลดเซสชันของเบราเซอร์และโทเค็นของอุปกรณ์",
+ "Error while creating device token" : "เกิดข้อผิดพลาดขณะที่การสร้างโทเค็นของอุปกรณ์",
+ "Error while deleting the token" : "เกิดข้อผิดพลาดขณะลบโทเค็น",
"An error occurred. Please upload an ASCII-encoded PEM certificate." : "เกิดข้อผิดพลาด กรุณาอัพโหลดใบรับรองเข้ารหัส ASCII PEM",
"Valid until {date}" : "ใช้ได้จนถึงวันที่ {date}",
"Delete" : "ลบ",
@@ -112,6 +116,8 @@
"__language_name__" : "ภาษาไทย - Thai languages",
"Unlimited" : "ไม่จำกัด",
"Personal info" : "ข้อมูลส่วนบุคคล",
+ "Sessions" : "เซสชัน",
+ "App passwords" : "รหัส่านแอพฯ",
"Sync clients" : "ประสานข้อมูลไคลเอนต์",
"Everything (fatal issues, errors, warnings, info, debug)" : "ทุกอย่าง (ปัญหาร้ายแรง ข้อผิดพลาด คำเตือน ข้อมูล การแก้ปัญหา)",
"Info, warnings, errors and fatal issues" : "ข้อมูล คำเตือน ข้อผิดพลาดและปัญหาร้ายแรง",
@@ -198,7 +204,7 @@
"How to do backups" : "วิธีการสำรองข้อมูล",
"Advanced monitoring" : "การตรวจสอบขั้นสูง",
"Performance tuning" : "การปรับแต่งประสิทธิภาพ",
- "Improving the config.php" : "ปรับปรุงไฟล์ config.php",
+ "Improving the config.php" : "อัพเดทไฟล์ config.php",
"Theming" : "ชุดรูปแบบ",
"Hardening and security guidance" : "คำแนะนำการรักษาความปลอดภัย",
"Version" : "รุ่น",