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,13 +1,14 @@
<template>
<h1 class="uk-text-bold uk-text-center">Watch History</h1>
<div style="text-align: right">
Sort by:
{{ $t("actions.sort_by") }}:
<select class="uk-select uk-width-auto" v-model="selectedSort" @change="onChange()">
<option value="descending">Most Recent</option>
<option value="ascending">Least Recent</option>
<option value="channel_ascending">Channel Name (A-Z)</option>
<option value="channel_descending">Channel Name (Z-A)</option>
<option value="descending" v-t="'actions.most_recent'" />
<option value="ascending" v-t="'actions.least_recent'" />
<option value="channel_ascending" v-t="'actions.channel_name_asc'" />
<option value="channel_descending" v-t="'actions.channel_name_desc'" />
</select>
</div>