Settings: Rename "Index" tab to "Library"

This commit is contained in:
Michael Mayer 2020-12-21 18:01:14 +01:00
parent fc8592206f
commit 9f72d03d3f
3 changed files with 9 additions and 9 deletions

View file

@ -28,7 +28,7 @@
<script>
import General from "pages/settings/general.vue";
import Index from "pages/settings/index.vue";
import Library from "pages/settings/library.vue";
import Advanced from "pages/settings/advanced.vue";
import Sync from "pages/settings/sync.vue";
import Account from "pages/settings/account.vue";
@ -65,11 +65,11 @@ export default {
'demo': true,
},
{
'name': 'settings-index',
'component': Index,
'label': this.$gettext('Index'),
'name': 'settings-library',
'component': Library,
'label': this.$gettext('Library'),
'class': '',
'path': '/settings/index',
'path': '/settings/library',
'icon': 'camera_roll',
'public': true,
'admin': true,

View file

@ -6,7 +6,7 @@
<v-card flat tile class="mt-0 px-1 application">
<v-card-title primary-title class="pb-0">
<h3 class="body-2 mb-0">
<translate>Library</translate>
<translate>Index</translate>
</h3>
</v-card-title>

View file

@ -282,8 +282,8 @@ export default [
props: { tab: "settings-general" },
},
{
name: "settings_index",
path: "/settings/index",
name: "settings_library",
path: "/settings/library",
component: Settings,
meta: {
title: $gettext("Settings"),
@ -291,7 +291,7 @@ export default [
settings: true,
background: "application-light",
},
props: { tab: "settings-index" },
props: { tab: "settings-library" },
},
{
name: "settings_sync",