This commit is contained in:
Shinigami92 2023-04-02 16:01:11 +02:00
parent 73854730f0
commit 21db78a314
2 changed files with 12 additions and 5 deletions

View file

@ -17,11 +17,11 @@ const isActive = $computed(() => {
</button>
<template #popper>
<CommonCheckbox v-model="homeFilter.bot" label="post by bot" />
<CommonCheckbox v-model="homeFilter.sensitive" label="post contains sensitive" />
<CommonCheckbox v-model="homeFilter.repost" label="post is a repost" />
<CommonCheckbox v-model="homeFilter.mutual" label="post is from a mutual" />
<CommonCheckbox v-model="homeFilter.tag" label="post is from a tag I follow" />
<CommonCheckbox v-model="homeFilter.bot" :label="$t('timeline.filter.include_bot')" />
<CommonCheckbox v-model="homeFilter.sensitive" :label="$t('timeline.filter.include_sensitive')" />
<CommonCheckbox v-model="homeFilter.repost" :label="$t('timeline.filter.include_repost')" />
<CommonCheckbox v-model="homeFilter.mutual" :label="$t('timeline.filter.include_mutual')" />
<CommonCheckbox v-model="homeFilter.tag" :label="$t('timeline.filter.include_tag')" />
</template>
</VDropdown>
</template>

View file

@ -574,6 +574,13 @@
"year_past": "0 years ago|last year|{n} years ago"
},
"timeline": {
"filter": {
"include_bot": "post by bot",
"include_mutual": "post is from a mutual",
"include_repost": "post is a repost",
"include_sensitive": "post contains sensitive",
"include_tag": "post is from a tag I follow"
},
"show_new_items": "Show {v} new items|Show {v} new item|Show {v} new items",
"view_older_posts": "Older posts from other instances may not be displayed."
},