🌐 Adds missing translations for view-switcher

This commit is contained in:
Alicia Sykes 2021-08-27 23:32:58 +01:00
parent f1df24ef72
commit 42884a03e7
2 changed files with 8 additions and 3 deletions

View File

@ -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",

View File

@ -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>