This commit is contained in:
2020-06-24 22:17:57 +00:00
parent b95d92dc92
commit 6bb3ac290c
4 changed files with 78 additions and 85 deletions

View File

@@ -32,7 +32,7 @@
>
<template v-slot:activator>
<!--group activator -->
<v-list-item-title>{{ item.title }}</v-list-item-title>
<v-list-item-title>{{ $ay.t(item.title) }}</v-list-item-title>
</template>
<!-- TOP LEVEL HOLDER SUBITEMS -->
@@ -50,7 +50,7 @@
<template v-slot:activator>
<v-list-item-content>
<v-list-item-title>{{
subitem.title
$ay.t(subitem.title)
}}</v-list-item-title>
</v-list-item-content>
</template>
@@ -68,7 +68,7 @@
>
</v-list-item-action>
<v-list-item-title
v-text="subsub.title"
:v-text="$ay.t(subsub.title)"
></v-list-item-title>
</v-list-item>
<!-- was end of v-list-group here -->
@@ -91,7 +91,7 @@
</v-list-item-action>
<v-list-item-content>
<v-list-item-title>{{
subitem.title
$ay.t(subitem.title)
}}</v-list-item-title>
</v-list-item-content>
</v-list-item>
@@ -115,7 +115,7 @@
}}</v-icon>
</v-list-item-action>
<v-list-item-content>
<v-list-item-title>{{ item.title }}</v-list-item-title>
<v-list-item-title>{{ $ay.t(item.title) }}</v-list-item-title>
</v-list-item-content>
</v-list-item>
</div>
@@ -140,7 +140,7 @@
<v-toolbar-title style="width: 300px" class="ml-0 pl-4">
<v-icon>{{ appBar.icon }}</v-icon
>&nbsp;
<span>{{ appBar.title }}</span>
<span>{{ $ay.t(appBar.title) }}</span>
</v-toolbar-title>
<v-spacer></v-spacer>
<v-toolbar-items>
@@ -198,7 +198,7 @@
</v-list-item-action>
<v-list-item-content>
<v-list-item-title>
<span>{{ item.title }}</span>
<span>{{ $ay.t(item.title) }}</span>
</v-list-item-title>
</v-list-item-content>
</v-list-item>