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 = {
"ABOUT": "",
"AUTOPLAY": "自動再生",
"About": "",
"About": "",
"Add a ": "追加",
"COMMENT": "コメント",
"Categories": "カテゴリー",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

File diff suppressed because one or more lines are too long