mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
global settings: fix i18n
This commit is contained in:
parent
dd039b30c4
commit
2671fd32d3
2 changed files with 5 additions and 1 deletions
|
@ -452,6 +452,9 @@
|
|||
"create": "Create user '{name}'",
|
||||
"delete": "Delete user '{name}'",
|
||||
"update": "Update user '{name}'"
|
||||
},
|
||||
"settings": {
|
||||
"update": "Update global settings"
|
||||
}
|
||||
},
|
||||
"run": "Run",
|
||||
|
@ -501,6 +504,7 @@
|
|||
"experimental_description": "Gives you access to experimental features. These are considered unstable and may break your system.<br> Enable this only if you know what you are doing.",
|
||||
"transitions": "Page transition animations"
|
||||
},
|
||||
"tools_yunohost_settings": "YunoHost settings",
|
||||
"tools_webadmin_settings": "Web-admin settings",
|
||||
"traceback": "Traceback",
|
||||
"udp": "UDP",
|
||||
|
|
|
@ -48,7 +48,7 @@ export default {
|
|||
api.put(
|
||||
'settings',
|
||||
{ key: id_, args: objectToParams(formatedData) },
|
||||
{ key: 'tools.update_settings', name: this.name }
|
||||
{ key: 'settings.update', name: this.name }
|
||||
).then(() => {
|
||||
this.$refs.view.fetchQueries({ triggerLoading: true })
|
||||
}).catch(err => {
|
||||
|
|
Loading…
Reference in a new issue