add Yes/No translation

This commit is contained in:
yggverse
2025-12-23 06:31:25 +02:00
committed by freedit-dev
parent 2cf84cf0f2
commit 3f19fbb887
7 changed files with 14 additions and 4 deletions

View File

@@ -76,6 +76,7 @@ new_folder = "New Folder"
new_password = "New Password"
new_post = "New Post"
next = "Next"
no = "No"
notifications = "Notifications"
old_password = "Old Password"
only_you_can_see = "Only you can see"
@@ -151,4 +152,5 @@ url = "URL"
user_name = "User Name"
user_name_help = "Username, Not start with number, 2 - 10 chars"
users = "Users"
yes = "Yes"
warning = "Warning"

View File

@@ -76,6 +76,7 @@ new_folder = "Nouveau dossier"
new_password = "Nouveau mot de passe"
new_post = "Nouvel article"
next = "Suivant"
no = "No" # @TODO
notifications = "Notifications" # @TODO
old_password = "Ancien mot de passe"
only_you_can_see = "Only you can see" # @TODO
@@ -151,4 +152,5 @@ url = "URL"
user_name = "Nom d'utilisateur"
user_name_help = "Nom d'utilisateur, ne commence pas par un chiffre, 2 à 10 caractères"
users = "Utilisateurs"
yes = "Yes" # @TODO
warning = "Avertissement"

View File

@@ -76,6 +76,7 @@ new_folder = "新しいフォルダ"
new_password = "新しいパスワード"
new_post = "新しい投稿"
next = "次"
no = "No" # @TODO
notifications = "Notifications" # @TODO
old_password = "旧パスワード"
only_you_can_see = "Only you can see" # @TODO
@@ -151,4 +152,5 @@ url = "URL"
user_name = "ユーザー名"
user_name_help = "ユーザー名、数字で始まらない、2〜10文字"
users = "ユーザー"
yes = "Yes" # @TODO
warning = "警告"

View File

@@ -76,6 +76,7 @@ new_folder = "Нова тека"
new_password = "Новий пароль"
new_post = "Новий допис"
next = "Вперед"
no = "Ні"
notifications = "Сповіщення"
old_password = "Старий пароль"
only_you_can_see = "Можете бачити тільки ви"
@@ -151,4 +152,5 @@ url = "URL"
user_name = "Псевдонім"
user_name_help = "Псевдонім повинен містити від 2 до 10 символів та не починатись з числа"
users = "Користувачі"
yes = "Так"
warning = "Увага"

View File

@@ -76,6 +76,7 @@ new_folder = "新文件夹"
new_password = "新密码"
new_post = "新帖子"
next = "下一页"
no = "No" # @TODO
notifications = "Notifications" # @TODO
old_password = "旧密码"
only_you_can_see = "Only you can see" # @TODO
@@ -151,4 +152,5 @@ url = "URL"
user_name = "用户名"
user_name_help = "用户名不以数字开头2 - 10 个字符"
users = "用户"
yes = "Yes" # @TODO
warning = "警告"

View File

@@ -49,8 +49,8 @@
<div class="field-body">
<div class="field">
<div class="control">
<label class="radio"><input type="radio" name="read_only" value="true" {% if site_config.read_only %} checked {% endif %} autocomplete="off" /> True</label>
<label class="radio"><input type="radio" name="read_only" value="false" {% if !site_config.read_only %} checked {% endif %} autocomplete="off" /> False</label>
<label class="radio"><input type="radio" name="read_only" value="true" {% if site_config.read_only %} checked {% endif %} autocomplete="off" /> {{ "yes"|l10n(page_data.lang) }}</label>
<label class="radio"><input type="radio" name="read_only" value="false" {% if !site_config.read_only %} checked {% endif %} autocomplete="off" /> {{ "no"|l10n(page_data.lang) }}</label>
</div>
</div>
</div>

View File

@@ -52,8 +52,8 @@
<div class="field-body">
<div class="field">
<div class="control">
<label class="radio"><input type="radio" name="is_public" required value="true" autocomplete="off" /> True</label>
<label class="radio"><input type="radio" name="is_public" required value="false" autocomplete="off" /> False</label>
<label class="radio"><input type="radio" name="is_public" required value="true" autocomplete="off" /> {{ "yes"|l10n(page_data.lang) }}</label>
<label class="radio"><input type="radio" name="is_public" required value="false" autocomplete="off" /> {{ "no"|l10n(page_data.lang) }}</label>
</div>
</div>
</div>