mirror of
https://github.com/TeamPiped/Piped.git
synced 2026-06-02 12:54:34 +00:00
Fix: Make more text translatable (#414)
* Make more text translatable * update subscription page * Update slovak locale
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user