fix(web): small translation issues + remove unused (#10200)

* fix(web): small translation issues + remove unused

* more unused keys

* formatting

* fix(web): incorrectly used translations

* fix and remove unused translations

---------

Co-authored-by: Zack Pollard <zackpollard@ymail.com>
This commit is contained in:
Michel Heusschen
2024-06-12 13:13:10 +02:00
committed by GitHub
parent 476eea44df
commit f99f289f74
10 changed files with 17 additions and 31 deletions

View File

@@ -12,7 +12,7 @@
export let menuItem = false;
export let unarchive = false;
$: text = unarchive ? $t('unarchive') : $t('archive');
$: text = unarchive ? $t('unarchive') : $t('to_archive');
$: icon = unarchive ? mdiArchiveArrowUpOutline : mdiArchiveArrowDownOutline;
let loading = false;

View File

@@ -17,7 +17,7 @@
export let menuItem = false;
export let removeFavorite: boolean;
$: text = removeFavorite ? $t('remove_from_favorites') : $t('favorite');
$: text = removeFavorite ? $t('remove_from_favorites') : $t('to_favorite');
$: icon = removeFavorite ? mdiHeartMinusOutline : mdiHeartOutline;
let loading = false;