This commit is contained in:
grey-cat-1908 2024-03-24 17:30:21 +03:00
parent 59b5c3ac69
commit e409934407
2 changed files with 3 additions and 3 deletions

View file

@ -168,8 +168,8 @@ store.$subscribe((mutation, state) => {
<hr> <hr>
<br> <br>
<h2>{{ $t("app.cursor") }}: ({{ xcord }}; {{ ycord }}) | <a class="text-right" style="text-decoration: none" href="https://arbuz.icu/blog/metro-line/">{{ $t("app.about") }}</a> | <h2>{{ $t("app.cursor") }}: ({{ xcord }}; {{ ycord }}) | <a class="text-right" style="text-decoration: none" href="https://arbuz.icu/blog/metro-line/">{{ $t("app.about") }}</a> |
<a v-if="$i18n.locale == 'ru'" @click="$i18n.locale = 'en'; localStorage.setItem('locale', 'en');" style="color: red; cursor: pointer;">English</a> <a v-if="$i18n.locale == 'ru'" @click="$i18n.locale = 'en'; window.localStorage.setItem('locale', 'en');" style="color: red; cursor: pointer;">English</a>
<a v-else @click="$i18n.locale = 'ru'; localStorage.setItem('locale', 'ru');" style="color: red; cursor: pointer;">Русский</a> <a v-else @click="$i18n.locale = 'ru'; window.localStorage.setItem('locale', 'ru');" style="color: red; cursor: pointer;">Русский</a>
</h2> </h2>
</div> </div>
</v-col> </v-col>

View file

@ -107,7 +107,7 @@ const messages = {
// 2. Create i18n instance with options // 2. Create i18n instance with options
export const i18n = createI18n({ export const i18n = createI18n({
locale: localStorage.getItem("locale") | 'ru', locale: window.localStorage.getItem("locale") | 'ru',
fallbackLocale: 'ru', fallbackLocale: 'ru',
messages messages
}) })