diff --git a/src/components/SaveRelayDropdownMenu/index.tsx b/src/components/SaveRelayDropdownMenu/index.tsx index a22153b..bfab436 100644 --- a/src/components/SaveRelayDropdownMenu/index.tsx +++ b/src/components/SaveRelayDropdownMenu/index.tsx @@ -123,7 +123,7 @@ function RelayItem({ urls }: { urls: string[] }) { return ( {saved ? : } - {t('Favorite')} + {saved ? t('Unfavorite') : t('Favorite')} ) } @@ -131,7 +131,7 @@ function RelayItem({ urls }: { urls: string[] }) { return ( {saved ? : } - {t('Favorite')} + {saved ? t('Unfavorite') : t('Favorite')} ) } diff --git a/src/i18n/locales/ar.ts b/src/i18n/locales/ar.ts index ead95a1..7f9396f 100644 --- a/src/i18n/locales/ar.ts +++ b/src/i18n/locales/ar.ts @@ -285,6 +285,7 @@ export default { Community: 'المجتمع', Group: 'المجموعة', 'Live event': 'حدث مباشر', - Article: 'مقالة' + Article: 'مقالة', + Unfavorite: 'إلغاء المفضلة' } } diff --git a/src/i18n/locales/de.ts b/src/i18n/locales/de.ts index ccfadf2..7484f8a 100644 --- a/src/i18n/locales/de.ts +++ b/src/i18n/locales/de.ts @@ -292,6 +292,7 @@ export default { Community: 'Community', Group: 'Gruppe', 'Live event': 'Live-Event', - Article: 'Artikel' + Article: 'Artikel', + Unfavorite: 'Nicht mehr favorisieren' } } diff --git a/src/i18n/locales/en.ts b/src/i18n/locales/en.ts index 8072c40..e04a8c8 100644 --- a/src/i18n/locales/en.ts +++ b/src/i18n/locales/en.ts @@ -285,6 +285,7 @@ export default { Community: 'Community', Group: 'Group', 'Live event': 'Live event', - Article: 'Article' + Article: 'Article', + Unfavorite: 'Unfavorite' } } diff --git a/src/i18n/locales/es.ts b/src/i18n/locales/es.ts index 41dabf5..6ad2674 100644 --- a/src/i18n/locales/es.ts +++ b/src/i18n/locales/es.ts @@ -290,6 +290,7 @@ export default { Community: 'Comunidad', Group: 'Grupo', 'Live event': 'Evento en vivo', - Article: 'Artículo' + Article: 'Artículo', + Unfavorite: 'Desfavoritar' } } diff --git a/src/i18n/locales/fr.ts b/src/i18n/locales/fr.ts index 816029c..b3efac8 100644 --- a/src/i18n/locales/fr.ts +++ b/src/i18n/locales/fr.ts @@ -290,6 +290,7 @@ export default { Community: 'Communauté', Group: 'Groupe', 'Live event': 'Événement en direct', - Article: 'Article' + Article: 'Article', + Unfavorite: 'Ne plus aimer' } } diff --git a/src/i18n/locales/it.ts b/src/i18n/locales/it.ts index 0dc1d9d..f18999b 100644 --- a/src/i18n/locales/it.ts +++ b/src/i18n/locales/it.ts @@ -289,6 +289,7 @@ export default { Community: 'Comunità', Group: 'Gruppo', 'Live event': 'Evento dal vivo', - Article: 'Articolo' + Article: 'Articolo', + Unfavorite: 'Rimuovi dai preferiti' } } diff --git a/src/i18n/locales/ja.ts b/src/i18n/locales/ja.ts index 5ba4e0f..c5e6a08 100644 --- a/src/i18n/locales/ja.ts +++ b/src/i18n/locales/ja.ts @@ -287,6 +287,7 @@ export default { Community: 'コミュニティ', Group: 'グループ', 'Live event': 'ライブイベント', - Article: '記事' + Article: '記事', + Unfavorite: 'お気に入り解除' } } diff --git a/src/i18n/locales/ko.ts b/src/i18n/locales/ko.ts index 13089e8..bb08d93 100644 --- a/src/i18n/locales/ko.ts +++ b/src/i18n/locales/ko.ts @@ -287,6 +287,7 @@ export default { Community: '커뮤니티', Group: '그룹', 'Live event': '라이브 이벤트', - Article: '기사' + Article: '기사', + Unfavorite: '즐겨찾기 취소' } } diff --git a/src/i18n/locales/pl.ts b/src/i18n/locales/pl.ts index 4f4eb2b..e397fa6 100644 --- a/src/i18n/locales/pl.ts +++ b/src/i18n/locales/pl.ts @@ -288,6 +288,7 @@ export default { Community: 'Społeczność', Group: 'Grupa', 'Live event': 'Wydarzenie na żywo', - Article: 'Artykuł' + Article: 'Artykuł', + Unfavorite: 'Usuń z ulubionych' } } diff --git a/src/i18n/locales/pt-BR.ts b/src/i18n/locales/pt-BR.ts index 523d37d..edada4a 100644 --- a/src/i18n/locales/pt-BR.ts +++ b/src/i18n/locales/pt-BR.ts @@ -288,6 +288,7 @@ export default { Community: 'Comunidade', Group: 'Grupo', 'Live event': 'Evento ao vivo', - Article: 'Artigo' + Article: 'Artigo', + Unfavorite: 'Desfavoritar' } } diff --git a/src/i18n/locales/pt-PT.ts b/src/i18n/locales/pt-PT.ts index 291c536..52a6b52 100644 --- a/src/i18n/locales/pt-PT.ts +++ b/src/i18n/locales/pt-PT.ts @@ -289,6 +289,7 @@ export default { Community: 'Comunidade', Group: 'Grupo', 'Live event': 'Evento ao vivo', - Article: 'Artigo' + Article: 'Artigo', + Unfavorite: 'Desfavoritar' } } diff --git a/src/i18n/locales/ru.ts b/src/i18n/locales/ru.ts index 148df2a..15a9a06 100644 --- a/src/i18n/locales/ru.ts +++ b/src/i18n/locales/ru.ts @@ -290,6 +290,7 @@ export default { Community: 'Сообщество', Group: 'Группа', 'Live event': 'Живое событие', - Article: 'Статья' + Article: 'Статья', + Unfavorite: 'Убрать из избранного' } } diff --git a/src/i18n/locales/th.ts b/src/i18n/locales/th.ts index 28d6f9a..ea6b54e 100644 --- a/src/i18n/locales/th.ts +++ b/src/i18n/locales/th.ts @@ -284,6 +284,7 @@ export default { Community: 'ชุมชน', Group: 'กลุ่ม', 'Live event': 'เหตุการณ์สด', - Article: 'บทความ' + Article: 'บทความ', + Unfavorite: 'เลิกชื่นชอบ' } } diff --git a/src/i18n/locales/zh.ts b/src/i18n/locales/zh.ts index a049579..e16f144 100644 --- a/src/i18n/locales/zh.ts +++ b/src/i18n/locales/zh.ts @@ -285,6 +285,7 @@ export default { Community: '社区', Group: '群组', 'Live event': '直播', - Article: '文章' + Article: '文章', + Unfavorite: '取消收藏' } }