mirror of
https://github.com/freedit-org/freedit.git
synced 2026-01-10 04:58:07 -05:00
add Yes/No translation
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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 = "警告"
|
||||
|
||||
@@ -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 = "Увага"
|
||||
@@ -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 = "警告"
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user