Fix: Make more text translatable (#414)

* Make more text translatable

* update subscription page

* Update slovak locale
This commit is contained in:
ChunkyProgrammer
2021-09-05 09:08:26 -04:00
committed by GitHub
parent d9063a6bf2
commit d350a026b2
25 changed files with 72 additions and 42 deletions

View File

@@ -1,5 +1,6 @@
<template>
<h1 class="uk-text-bold uk-text-center">Subscriptions</h1>
<h1 class="uk-text-bold uk-text-center">{{ $t("titles.subscriptions") }}</h1>
<div style="text-align: center">
<button
@@ -9,7 +10,7 @@
type="button"
>
<router-link to="/import">
Import from JSON
{{ $t("actions.import_from_json") }}
</router-link>
</button>
@@ -20,8 +21,9 @@
style="background: #222; color: white"
type="button"
>
Export to JSON
{{ $t("actions.export_to_json") }}
</button>
</div>
<hr />
@@ -38,7 +40,7 @@
type="button"
@click="handleButton(subscription)"
>
{{ subscription.subscribed ? "Unsubscribe" : "Subscribe" }}
{{ subscription.subscribed ? $t("actions.unsubscribe") : $t("actions.subscribe") }}
</button>
</div>
<br />