Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Ng <chrng8@gmail.com>2021-08-14 03:16:31 +0300
committerChristopher Ng <chrng8@gmail.com>2021-08-27 08:06:12 +0300
commitcc5815dcd0342a521be400f35cbc8a666b83046d (patch)
treec632864b41e8bc0f991ff866e143423e2d20ec27 /apps/settings/src
parent3b2be23fee0cef9edde5443bfa892ca6407d06ff (diff)
Provide initial state
- camelCase language strings Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/settings/src')
-rw-r--r--apps/settings/src/components/UserList.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/settings/src/components/UserList.vue b/apps/settings/src/components/UserList.vue
index 5459a04398e..afbc1de76f8 100644
--- a/apps/settings/src/components/UserList.vue
+++ b/apps/settings/src/components/UserList.vue
@@ -369,11 +369,11 @@ export default {
return [
{
label: t('settings', 'Common languages'),
- languages: this.settings.languages.commonlanguages,
+ languages: this.settings.languages.commonLanguages,
},
{
- label: t('settings', 'All languages'),
- languages: this.settings.languages.languages,
+ label: t('settings', 'Other languages'),
+ languages: this.settings.languages.otherLanguages,
},
]
},