fix: add missing translation for preferences drawer (#6094)
This commit is contained in:
parent
3e6d608a2f
commit
0517a7014f
@ -79,14 +79,14 @@ const handleCheckboxChange = () => {
|
|||||||
</SwitchItem>
|
</SwitchItem>
|
||||||
<CheckboxItem
|
<CheckboxItem
|
||||||
:items="[
|
:items="[
|
||||||
{ label: '收缩按钮', value: 'collapsed' },
|
{ label: $t('preferences.sidebar.buttonCollapsed'), value: 'collapsed' },
|
||||||
{ label: '固定按钮', value: 'fixed' },
|
{ label: $t('preferences.sidebar.buttonFixed'), value: 'fixed' },
|
||||||
]"
|
]"
|
||||||
multiple
|
multiple
|
||||||
v-model="sidebarButtons"
|
v-model="sidebarButtons"
|
||||||
:on-btn-click="handleCheckboxChange"
|
:on-btn-click="handleCheckboxChange"
|
||||||
>
|
>
|
||||||
按钮配置
|
{{ $t('preferences.sidebar.buttons') }}
|
||||||
</CheckboxItem>
|
</CheckboxItem>
|
||||||
<NumberFieldItem
|
<NumberFieldItem
|
||||||
v-model="sidebarWidth"
|
v-model="sidebarWidth"
|
||||||
|
@ -45,6 +45,9 @@
|
|||||||
"fixed": "Fixed"
|
"fixed": "Fixed"
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
|
"buttons": "Show Buttons",
|
||||||
|
"buttonFixed": "Fixed",
|
||||||
|
"buttonCollapsed": "Collapsed",
|
||||||
"title": "Sidebar",
|
"title": "Sidebar",
|
||||||
"width": "Width",
|
"width": "Width",
|
||||||
"visible": "Show Sidebar",
|
"visible": "Show Sidebar",
|
||||||
|
@ -45,6 +45,9 @@
|
|||||||
"fixed": "固定"
|
"fixed": "固定"
|
||||||
},
|
},
|
||||||
"sidebar": {
|
"sidebar": {
|
||||||
|
"buttons": "显示按钮",
|
||||||
|
"buttonFixed": "固定按钮",
|
||||||
|
"buttonCollapsed": "折叠按钮",
|
||||||
"title": "侧边栏",
|
"title": "侧边栏",
|
||||||
"width": "宽度",
|
"width": "宽度",
|
||||||
"visible": "显示侧边栏",
|
"visible": "显示侧边栏",
|
||||||
|
Loading…
Reference in New Issue
Block a user