mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-05-01 08:23:57 -04:00
Update uk.coffee (#3645)
Add translation of lines 185-233 ("code" section)
This commit is contained in:
parent
5862c8e21c
commit
97551aee36
1 changed files with 52 additions and 52 deletions
|
@ -102,7 +102,7 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
blog: "Блоґ"
|
blog: "Блоґ"
|
||||||
forum: "Форум"
|
forum: "Форум"
|
||||||
account: "Акаунт"
|
account: "Акаунт"
|
||||||
# my_account: "My Account"
|
my_account: "Мій Акаунт"
|
||||||
profile: "Профіль"
|
profile: "Профіль"
|
||||||
stats: "Статистика"
|
stats: "Статистика"
|
||||||
code: "Код"
|
code: "Код"
|
||||||
|
@ -115,8 +115,8 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
students: "Учням"
|
students: "Учням"
|
||||||
teachers: "Учителям"
|
teachers: "Учителям"
|
||||||
careers: "Робота"
|
careers: "Робота"
|
||||||
# facebook: "Facebook"
|
facebook: "Facebook"
|
||||||
# twitter: "Twitter"
|
twitter: "Twitter"
|
||||||
# create_a_class: "Create a Class"
|
# create_a_class: "Create a Class"
|
||||||
other: "Інше"
|
other: "Інше"
|
||||||
# learn_to_code: "Learn to Code!"
|
# learn_to_code: "Learn to Code!"
|
||||||
|
@ -182,55 +182,55 @@ module.exports = nativeDescription: "Українська", englishDescription:
|
||||||
campaign_old_multiplayer: "(Застаріло) Стара багатокористувацька арена"
|
campaign_old_multiplayer: "(Застаріло) Стара багатокористувацька арена"
|
||||||
# campaign_old_multiplayer_description: "Relics of a more civilized age. No simulations are run for these older, hero-less multiplayer arenas."
|
# campaign_old_multiplayer_description: "Relics of a more civilized age. No simulations are run for these older, hero-less multiplayer arenas."
|
||||||
|
|
||||||
# code:
|
code:
|
||||||
# if: "if" # Keywords--these translations show up on hover, so please translate them all, even if it's kind of long. (In the code editor, they will still be in English.)
|
if: "якщо" # Keywords--these translations show up on hover, so please translate them all, even if it's kind of long. (In the code editor, they will still be in English.)
|
||||||
# else: "else"
|
else: "інакше"
|
||||||
# elif: "else if"
|
elif: "інакше якщо"
|
||||||
# while: "while"
|
while: "поки"
|
||||||
# loop: "loop"
|
loop: "цикл"
|
||||||
# for: "for"
|
for: "для"
|
||||||
# break: "break"
|
break: "перервати цикл"
|
||||||
# continue: "continue"
|
continue: "розпочати виконання наступної ітерації циклу"
|
||||||
# pass: "pass"
|
pass: "передати"
|
||||||
# return: "return"
|
return: "повернути"
|
||||||
# then: "then"
|
then: "то"
|
||||||
# do: "do"
|
do: "чинити"
|
||||||
# end: "end"
|
end: "кінець"
|
||||||
# function: "function"
|
function: "функція"
|
||||||
# def: "define"
|
def: "визначити"
|
||||||
# var: "variable"
|
var: "змінна"
|
||||||
# self: "self"
|
self: "'сам' - вказує на об'єкт, функція якого викликається"
|
||||||
# hero: "hero"
|
hero: "герой"
|
||||||
# this: "this"
|
this: "'це' - вказує на об'єкт, функція якого викликається"
|
||||||
# or: "or"
|
or: "або"
|
||||||
# "||": "or"
|
"||": "або"
|
||||||
# and: "and"
|
and: "та"
|
||||||
# "&&": "and"
|
"&&": "та"
|
||||||
# not: "not"
|
not: "не"
|
||||||
# "!": "not"
|
"!": "не"
|
||||||
# "=": "assign"
|
"=": "присвоїти"
|
||||||
# "==": "equals"
|
"==": "дорівнює"
|
||||||
# "===": "strictly equals"
|
"===": "строго дорівнює"
|
||||||
# "!=": "does not equal"
|
"!=": "не дорівнює"
|
||||||
# "!==": "does not strictly equal"
|
"!==": "строго не дорівнює"
|
||||||
# ">": "is greater than"
|
">": "більше"
|
||||||
# ">=": "is greater than or equal"
|
">=": "більше або дорівнює"
|
||||||
# "<": "is less than"
|
"<": "менше"
|
||||||
# "<=": "is less than or equal"
|
"<=": "менше або дорівнює"
|
||||||
# "*": "multiplied by"
|
"*": "помножити"
|
||||||
# "/": "divided by"
|
"/": "поділити"
|
||||||
# "+": "plus"
|
"+": "додати"
|
||||||
# "-": "minus"
|
"-": "відняти"
|
||||||
# "+=": "add and assign"
|
"+=": "додати та присвоїти"
|
||||||
# "-=": "subtract and assign"
|
"-=": "відняти та присвоїти"
|
||||||
# True: "True"
|
True: "Істинний"
|
||||||
# true: "true"
|
true: "істинний"
|
||||||
# False: "False"
|
False: "Хибний"
|
||||||
# false: "false"
|
false: "хибний"
|
||||||
# undefined: "undefined"
|
undefined: "невизначений"
|
||||||
# null: "null"
|
null: "нуль"
|
||||||
# nil: "nil"
|
nil: "нуль"
|
||||||
# None: "None"
|
None: "Жоден"
|
||||||
|
|
||||||
share_progress_modal:
|
share_progress_modal:
|
||||||
blurb: "У тебе гарно виходить! Розкажи своїм батькам як багато ти знаєш завдяки CodeCombat."
|
blurb: "У тебе гарно виходить! Розкажи своїм батькам як багато ти знаєш завдяки CodeCombat."
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue