Feat translations improvements v1 (#1076)

This commit is contained in:
Markos Gogoulos 2024-10-04 13:39:28 +03:00 committed by GitHub
parent 4992cc425c
commit 5aa899cef0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 10 additions and 10 deletions

View File

@ -1,7 +1,7 @@
translation_strings = { translation_strings = {
"ABOUT": "", "ABOUT": "",
"AUTOPLAY": "自動再生", "AUTOPLAY": "自動再生",
"About": "", "About": "",
"Add a ": "追加", "Add a ": "追加",
"COMMENT": "コメント", "COMMENT": "コメント",
"Categories": "カテゴリー", "Categories": "カテゴリー",

View File

@ -1,7 +1,7 @@
translation_strings = { translation_strings = {
"ABOUT": "정보", "ABOUT": "정보",
"AUTOPLAY": "자동 재생", "AUTOPLAY": "자동 재생",
"About": "", "About": "정보",
"Add a ": "추가", "Add a ": "추가",
"COMMENT": "댓글", "COMMENT": "댓글",
"Categories": "카테고리", "Categories": "카테고리",

View File

@ -1,7 +1,7 @@
translation_strings = { translation_strings = {
"ABOUT": "OVER", "ABOUT": "OVER",
"AUTOPLAY": "AUTOMATISCH AFSPELEN", "AUTOPLAY": "AUTOMATISCH AFSPELEN",
"About": "", "About": "Over",
"Add a ": "Voeg een ", "Add a ": "Voeg een ",
"COMMENT": "REACTIE", "COMMENT": "REACTIE",
"Categories": "Categorieën", "Categories": "Categorieën",

View File

@ -1,7 +1,7 @@
translation_strings = { translation_strings = {
"ABOUT": "SOBRE", "ABOUT": "SOBRE",
"AUTOPLAY": "REPRODUÇÃO AUTOMÁTICA", "AUTOPLAY": "REPRODUÇÃO AUTOMÁTICA",
"About": "", "About": "Sobre",
"Add a ": "Adicionar um ", "Add a ": "Adicionar um ",
"COMMENT": "COMENTÁRIO", "COMMENT": "COMENTÁRIO",
"Categories": "Categorias", "Categories": "Categorias",

View File

@ -1,7 +1,7 @@
translation_strings = { translation_strings = {
"ABOUT": "О", "ABOUT": "О",
"AUTOPLAY": "Автовоспроизведение", "AUTOPLAY": "Автовоспроизведение",
"About": "", "About": "О",
"Add a ": "Добавить ", "Add a ": "Добавить ",
"COMMENT": "КОММЕНТАРИЙ", "COMMENT": "КОММЕНТАРИЙ",
"Categories": "Категории", "Categories": "Категории",

View File

@ -1,7 +1,7 @@
translation_strings = { translation_strings = {
"ABOUT": "HAKKINDA", "ABOUT": "HAKKINDA",
"AUTOPLAY": "OTOMATİK OYNATMA", "AUTOPLAY": "OTOMATİK OYNATMA",
"About": "", "About": "Hakkında",
"Add a ": "Ekle ", "Add a ": "Ekle ",
"COMMENT": "YORUM", "COMMENT": "YORUM",
"Categories": "Kategoriler", "Categories": "Kategoriler",

View File

@ -1,7 +1,7 @@
translation_strings = { translation_strings = {
"ABOUT": "کے بارے میں", "ABOUT": "کے بارے میں",
"AUTOPLAY": "خودکار پلے", "AUTOPLAY": "خودکار پلے",
"About": "", "About": "کے بارے میں",
"Add a ": "شامل کریں", "Add a ": "شامل کریں",
"COMMENT": "تبصرہ", "COMMENT": "تبصرہ",
"Categories": "اقسام", "Categories": "اقسام",

View File

@ -1,7 +1,7 @@
translation_strings = { translation_strings = {
"ABOUT": "关于", "ABOUT": "关于",
"AUTOPLAY": "自动播放", "AUTOPLAY": "自动播放",
"About": "", "About": "关于",
"Add a ": "添加一个", "Add a ": "添加一个",
"COMMENT": "评论", "COMMENT": "评论",
"Categories": "分类", "Categories": "分类",

View File

@ -413,7 +413,7 @@ const CommentsListHeader = ({ commentsLength }) => {
? commentsLength + ' ' + commentsText.ucfirstPlural ? commentsLength + ' ' + commentsText.ucfirstPlural
: commentsLength + ' ' + commentsText.ucfirstSingle : commentsLength + ' ' + commentsText.ucfirstSingle
: MediaPageStore.get('media-data').enable_comments : MediaPageStore.get('media-data').enable_comments
? translateString('No') + commentsText.single + translateString('yet') ? translateString('No') + ' ' + commentsText.single + ' ' + translateString('yet')
: ''} : ''}
</h2> </h2>
) : null} ) : null}

File diff suppressed because one or more lines are too long