Localize strings
This commit is contained in:
parent
734f91c039
commit
960cc613f2
2 changed files with 10 additions and 12 deletions
|
@ -421,9 +421,13 @@ enableServiceworker: "Enable Push-Notifications for your Browser"
|
|||
antennaUsersDescription: "List one username per line"
|
||||
antennaInstancesDescription: "List one server host per line"
|
||||
caseSensitive: "Case sensitive"
|
||||
filterEverything: "Everything"
|
||||
filterNotes: "Posts"
|
||||
filterReplies: "Replies"
|
||||
filterBoosts: "Boosts"
|
||||
filterFiles: "Files"
|
||||
withReplies: "Include replies"
|
||||
connectedTo: "Following account(s) are connected"
|
||||
notesAndReplies: "Posts and replies"
|
||||
withFiles: "Including files"
|
||||
silence: "Silence"
|
||||
silenceConfirm: "Are you sure that you want to silence this user?"
|
||||
|
|
|
@ -2,17 +2,11 @@
|
|||
<MkStickyContainer>
|
||||
<template #header>
|
||||
<MkTab v-model="include" :class="$style.tab">
|
||||
<!-- TODO: Localize these values -->
|
||||
<!-- None -->
|
||||
<option :value="null">Everything</option>
|
||||
<!-- {{ i18n.ts.notes }} -->
|
||||
<option value="posts">Posts</option>
|
||||
<!-- {{ i18n.ts.notesAndReplies }} -->
|
||||
<option value="replies">Replies</option>
|
||||
<!-- None -->
|
||||
<option value="boosts">Boosts</option>
|
||||
<!-- {{ i18n.ts.withFiles }} -->
|
||||
<option value="files">Files</option>
|
||||
<option :value="null">{{ i18n.ts.filterEverything }}</option>
|
||||
<option value="posts">{{ i18n.ts.filterNotes }}</option>
|
||||
<option value="replies">{{ i18n.ts.filterReplies }}</option>
|
||||
<option value="boosts">{{ i18n.ts.filterBoosts }}</option>
|
||||
<option value="files">{{ i18n.ts.filterFiles }}</option>
|
||||
</MkTab>
|
||||
</template>
|
||||
<XNotes :no-gap="true" :pagination="pagination" />
|
||||
|
|
Loading…
Reference in a new issue