Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat translations improvements v1 #1076

Merged
merged 2 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion files/frontend_translations/ja.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
translation_strings = {
"ABOUT": "約",
"AUTOPLAY": "自動再生",
"About": "",
"About": "",
"Add a ": "追加",
"COMMENT": "コメント",
"Categories": "カテゴリー",
Expand Down
2 changes: 1 addition & 1 deletion files/frontend_translations/ko.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
translation_strings = {
"ABOUT": "정보",
"AUTOPLAY": "자동 재생",
"About": "",
"About": "정보",
"Add a ": "추가",
"COMMENT": "댓글",
"Categories": "카테고리",
Expand Down
2 changes: 1 addition & 1 deletion files/frontend_translations/nl.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
translation_strings = {
"ABOUT": "OVER",
"AUTOPLAY": "AUTOMATISCH AFSPELEN",
"About": "",
"About": "Over",
"Add a ": "Voeg een ",
"COMMENT": "REACTIE",
"Categories": "Categorieën",
Expand Down
2 changes: 1 addition & 1 deletion files/frontend_translations/pt.py
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion files/frontend_translations/ru.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
translation_strings = {
"ABOUT": "О",
"AUTOPLAY": "Автовоспроизведение",
"About": "",
"About": "О",
"Add a ": "Добавить ",
"COMMENT": "КОММЕНТАРИЙ",
"Categories": "Категории",
Expand Down
2 changes: 1 addition & 1 deletion files/frontend_translations/tr.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
translation_strings = {
"ABOUT": "HAKKINDA",
"AUTOPLAY": "OTOMATİK OYNATMA",
"About": "",
"About": "Hakkında",
"Add a ": "Ekle ",
"COMMENT": "YORUM",
"Categories": "Kategoriler",
Expand Down
2 changes: 1 addition & 1 deletion files/frontend_translations/ur.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
translation_strings = {
"ABOUT": "کے بارے میں",
"AUTOPLAY": "خودکار پلے",
"About": "",
"About": "کے بارے میں",
"Add a ": "شامل کریں",
"COMMENT": "تبصرہ",
"Categories": "اقسام",
Expand Down
2 changes: 1 addition & 1 deletion files/frontend_translations/zh_hans.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
translation_strings = {
"ABOUT": "关于",
"AUTOPLAY": "自动播放",
"About": "",
"About": "关于",
"Add a ": "添加一个",
"COMMENT": "评论",
"Categories": "分类",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/static/js/components/comments/Comments.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion static/js/media.js

Large diffs are not rendered by default.

Loading