mirror of
https://github.com/Lissy93/dashy.git
synced 2024-12-11 10:05:50 +03:00
🌐 Adds missing translations for view-switcher
This commit is contained in:
parent
f1df24ef72
commit
42884a03e7
@ -60,6 +60,11 @@
|
||||
"css-note-l2": "Styles overrides are only stored locally, so it is recommended to make a copy of your CSS.",
|
||||
"css-note-l3": "To remove all custom styles, delete the contents and hit Save Changes"
|
||||
},
|
||||
"alternate-views": {
|
||||
"default": "Default",
|
||||
"workspace": "Workspace",
|
||||
"minimal": "Minimal"
|
||||
},
|
||||
"settings": {
|
||||
"theme-label": "Theme",
|
||||
"layout-label": "Layout",
|
||||
|
@ -26,16 +26,16 @@
|
||||
<ul>
|
||||
<li>
|
||||
<router-link to="/home">
|
||||
<IconHome /><span>Default</span>
|
||||
<IconHome /><span>{{ $t('alternate-views.default') }}</span>
|
||||
</router-link>
|
||||
</li>
|
||||
<li>
|
||||
<router-link to="/minimal">
|
||||
<IconMinimalView /><span>Minimal</span>
|
||||
<IconMinimalView /><span>{{ $t('alternate-views.minimal') }}</span>
|
||||
</router-link>
|
||||
<li>
|
||||
<router-link to="/workspace">
|
||||
<IconWorkspaceView /><span>Workspace</span>
|
||||
<IconWorkspaceView /><span>{{ $t('alternate-views.workspace') }}</span>
|
||||
</router-link>
|
||||
</li>
|
||||
</ul>
|
||||
|
Loading…
Reference in New Issue
Block a user