mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 05:43:09 +02:00
デッキからホームに行くメニューをホームと表記する (#4359)
This commit is contained in:
parent
e13fe97ebb
commit
94e3ac9b72
2 changed files with 3 additions and 3 deletions
|
@ -60,6 +60,7 @@ common:
|
||||||
trash: "ゴミ箱"
|
trash: "ゴミ箱"
|
||||||
drive: "ドライブ"
|
drive: "ドライブ"
|
||||||
messaging: "トーク"
|
messaging: "トーク"
|
||||||
|
home: "ホーム"
|
||||||
deck: "デッキ"
|
deck: "デッキ"
|
||||||
timeline: "タイムライン"
|
timeline: "タイムライン"
|
||||||
explore: "みつける"
|
explore: "みつける"
|
||||||
|
|
|
@ -62,9 +62,8 @@
|
||||||
<ul>
|
<ul>
|
||||||
<li @click="toggleDeckMode">
|
<li @click="toggleDeckMode">
|
||||||
<p>
|
<p>
|
||||||
<span>{{ $t('@.deck') }}</span>
|
<template v-if="$store.state.device.inDeckMode"><span>{{ $t('@.home') }}</span><i><fa :icon="faHome"/></i></template>
|
||||||
<template v-if="$store.state.device.inDeckMode"><i><fa :icon="faHome"/></i></template>
|
<template v-else><span>{{ $t('@.deck') }}</span><i><fa :icon="faColumns"/></i></template>
|
||||||
<template v-else><i><fa :icon="faColumns"/></i></template>
|
|
||||||
</p>
|
</p>
|
||||||
</li>
|
</li>
|
||||||
<li @click="dark">
|
<li @click="dark">
|
||||||
|
|
Loading…
Reference in a new issue